/* ========================================
   GLOBAL SETTINGS, COLORS, AND RESET
   Change the main site colors here first.
   ======================================== */
:root{
  --ink:#0b120e;
  --ink-2:#111c16;
  --navy:#17251d;
  --paper:#eef0e8;
  --white:#fff;
  --muted:#626b63;
  --coral:#c5a34b;
  --coral-dark:#a88732;
  --blue:#71856f;
  --line:#cbd1c8;
  --max:1180px;
  --radius:18px
}

*{
  box-sizing:border-box
}

html{
  scroll-behavior:smooth
}

body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:'DM Sans',sans-serif;
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  background-image:linear-gradient(rgba(20,37,28,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(20,37,28,.025) 1px,transparent 1px);
  background-size:48px 48px
}

body.menu-open{
  overflow:hidden
}

a{
  color:inherit;
  text-decoration:none
}

button,input,textarea{
  font:inherit
}

.container{
  width:min(var(--max),calc(100% - 48px));
  margin:auto
}

.skip-link{
  position:fixed;
  left:16px;
  top:-60px;
  z-index:1000;
  background:#fff;
  padding:12px 18px;
  border-radius:8px
}

.skip-link:focus{
  top:16px
}

/* HEADER AND NAVIGATION */
.site-header{
  position:absolute;
  top:0;
  left:0;
  right:0;
  z-index:20;
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.09)
}

.nav-wrap{
  height:90px;
  display:flex;
  align-items:center;
  justify-content:space-between
}

.brand{
  display:flex;
  align-items:center;
  width:260px
}

/* The supplied logo is 1802×873 with generous black margins.
   This frame clips those margins without altering the original asset. */
.logo-crop{
  position:relative;
  display:block;
  width:260px;
  height:36px;
  overflow:hidden
}

.logo-crop img{
  position:absolute;
  width:288px;
  max-width:none;
  height:auto;
  left:-22px;
  top:-50px
}

nav{
  display:flex;
  align-items:center;
  gap:36px;
  font-size:14px;
  font-weight:700;
  letter-spacing:.07em;
  text-transform:uppercase
}

nav>a:not(.nav-cta){
  color:#cbd2de;
  transition:.2s
}

nav>a:not(.nav-cta):hover{
  color:#fff
}

.nav-cta{
  border:1px solid rgba(255,255,255,.3);
  border-radius:2px;
  padding:11px 18px
}

.nav-cta span,.button span{
  margin-left:12px
}

.menu-toggle{
  display:none;
  background:none;
  border:0;
  padding:8px
}

.menu-toggle span{
  display:block;
  width:26px;
  height:2px;
  background:#fff;
  margin:6px
}

/* HERO SECTION */
.hero{
  position:relative;
  min-height:720px;
  padding:155px 0 75px;
  overflow:hidden;
  color:#fff;
  background:radial-gradient(circle at 72% 48%,#304438 0,#1a2a21 31%,var(--ink) 68%)
}

.hero-grid{
  position:absolute;
  inset:0;
  background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
  background-size:70px 70px;
  mask-image:linear-gradient(to right,transparent 0,#000 60%,transparent)
}

.orb{
  position:absolute;
  border-radius:50%;
  filter:blur(1px)
}

.orb-one{
  width:380px;
  height:380px;
  right:10%;
  top:22%;
  border:1px solid rgba(96,120,250,.18);
  box-shadow:0 0 120px rgba(96,120,250,.13)
}

.orb-two{
  width:580px;
  height:580px;
  right:-14%;
  bottom:-42%;
  background:rgba(255,118,87,.05)
}

.hero-layout{
  position:relative;
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  align-items:center;
  gap:32px
}

.hero-copy{
  min-height:470px;
  display:flex;
  flex-direction:column;
  justify-content:center
}

.hero-copy .eyebrow{
  margin-bottom:18px
}

.hero h1{
  max-width:100%
}

.eyebrow{
  display:flex;
  align-items:center;
  gap:10px;
  color:#c8d0df;
  text-transform:uppercase;
  font-size:12px;
  font-weight:700;
  letter-spacing:.18em;
  margin-bottom:25px
}

.eyebrow span{
  width:30px;
  height:2px;
  background:var(--coral)
}

.hero h1,.section h2,.contact h2{
  font-family:'Manrope',sans-serif;
  font-size:clamp(54px,6vw,82px);
  line-height:1.02;
  letter-spacing:-.055em;
  margin:0;
  font-weight:700
}

.hero h1 em,.section h2 em,.contact h2 em{
  font-weight:500;
  color:var(--coral);
  font-style:normal
}

/* Keep the hero headline inside its narrower text column. */
.hero h1{
  font-size:clamp(48px,4.8vw,64px)
}

.hero-copy>p{
  max-width:520px;
  color:#b8c1d1;
  font-size:18px;
  line-height:1.65;
  margin:18px 0 24px
}

.hero-actions{
  display:flex;
  align-items:center;
  gap:24px;
  flex-wrap:wrap
}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:0;
  border-radius:2px;
  padding:15px 23px;
  font-weight:700;
  cursor:pointer;
  transition:transform .2s,background .2s
}

.button:hover{
  transform:translateY(-2px)
}

.button-primary{
  background:var(--coral);
  color:var(--ink)
}

.button-primary:hover{
  background:#d2b45f
}

.text-link{
  display:inline-flex;
  align-items:center;
  gap:12px;
  color:#fff;
  font-weight:600;
  border-bottom:1px solid rgba(255,255,255,.35);
  padding-bottom:4px
}

.text-link span{
  color:var(--coral)
}

.hero-proof{
  display:flex;
  align-items:center;
  margin-top:28px
}

.avatars{
  display:flex;
  margin-right:15px
}

.avatars b{
  width:35px;
  height:35px;
  border-radius:50%;
  display:grid;
  place-items:center;
  margin-left:-7px;
  border:2px solid var(--ink-2);
  background:#6c7e9e;
  font-size:10px
}

.avatars b:nth-child(2){
  background:#b86f60
}

.avatars b:nth-child(3){
  background:#647567
}

.hero-proof p{
  font-size:12px;
  color:#8f9aab;
  line-height:1.45
}

.hero-proof strong{
  color:#dbe0e8
}

/* HERO MEDIA STAGE */
.product-stage{
  position:relative;
  perspective:1100px
}

.dashboard{
  overflow:hidden;
  border:1px solid rgba(255,255,255,.2);
  border-radius:3px;
  background:#f7f9fd;
  box-shadow:0 40px 80px rgba(0,0,0,.42);
  color:#192036;
  transform:rotateY(-4deg) rotateX(2deg)
}

.dash-top{
  height:58px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 20px;
  border-bottom:1px solid #e9edf3
}

.dash-brand{
  font-size:14px;
  font-weight:700
}

.dash-brand span{
  color:#788294
}

.mini-mark{
  display:inline-block!important;
  width:14px;
  height:14px;
  background:var(--coral);
  border-radius:4px;
  vertical-align:-2px;
  margin-right:6px
}

.dash-actions{
  display:flex;
  align-items:center;
  gap:13px
}

.dash-actions i{
  width:14px;
  height:14px;
  border-radius:50%;
  border:1px solid #b7bfcc
}

.dash-actions b{
  background:#26395d;
  color:#fff;
  width:27px;
  height:27px;
  border-radius:50%;
  font-size:9px;
  display:grid;
  place-items:center
}

.dash-body{
  display:flex;
  height:380px
}

.dash-body aside{
  width:58px;
  padding-top:20px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:20px;
  background:#101b31
}

.dash-body aside i{
  width:16px;
  height:16px;
  border:2px solid #71809d;
  border-radius:4px
}

.dash-body aside i.active{
  background:var(--coral);
  border-color:var(--coral);
  box-shadow:0 0 0 6px rgba(255,118,87,.12)
}

.dash-main{
  padding:24px;
  width:100%;
  min-width:0
}

.dash-heading{
  display:flex;
  justify-content:space-between;
  align-items:center
}

.dash-heading small,.metrics small{
  display:block;
  font-size:7px;
  letter-spacing:.12em;
  color:#97a0b0
}

.dash-heading strong{
  font-size:17px
}

.dash-heading button{
  background:var(--coral);
  border:0;
  padding:8px 12px;
  border-radius:5px;
  color:#fff;
  font-size:8px
}

.metrics{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:20px
}

.metrics article{
  position:relative;
  min-height:110px;
  background:#fff;
  border:1px solid #edf0f5;
  border-radius:8px;
  padding:14px;
  overflow:hidden
}

.metrics strong{
  display:block;
  font-size:19px
}

.metrics .up{
  font-size:7px;
  color:#2aad7e
}

.metrics svg{
  width:100%;
  height:38px;
  position:absolute;
  bottom:0;
  left:0
}

.spark{
  position:absolute;
  right:10px;
  bottom:13px;
  display:flex;
  align-items:end;
  gap:4px;
  height:45px
}

.spark i{
  width:6px;
  border-radius:3px;
  background:#dce2ff
}

.spark i:nth-child(1){
  height:22%
}

.spark i:nth-child(2){
  height:42%
}

.spark i:nth-child(3){
  height:34%
}

.spark i:nth-child(4){
  height:68%
}

.spark i:nth-child(5){
  height:55%
}

.spark i:nth-child(6){
  height:88%;
  background:var(--blue)
}

.activity{
  background:#fff;
  border:1px solid #edf0f5;
  border-radius:8px;
  margin-top:12px;
  padding:14px
}

.activity-title{
  display:flex;
  justify-content:space-between;
  font-size:10px
}

.activity-title span{
  font-size:7px;
  color:#7b8596
}

.activity-grid{
  display:flex;
  height:150px;
  margin-top:8px
}

.y-axis{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  font-size:7px;
  color:#a8b0bc;
  padding-right:9px
}

.line-chart{
  flex:1;
  background:repeating-linear-gradient(to bottom,#eef1f5 0,#eef1f5 1px,transparent 1px,transparent 37px)
}

.line-chart svg{
  width:100%;
  height:100%
}

.code-chip{
  position:absolute;
  z-index:3;
  background:rgba(19,31,54,.95);
  border:1px solid rgba(255,255,255,.13);
  border-radius:2px;
  color:#dbe2ef;
  padding:10px 14px;
  font-size:10px;
  box-shadow:0 12px 30px rgba(0,0,0,.3)
}

.chip-one{
  right:-28px;
  top:-28px
}

.chip-one span{
  display:inline-block;
  width:7px;
  height:7px;
  border-radius:50%;
  background:#54d59c;
  margin-right:6px
}

.chip-two{
  left:-32px;
  bottom:46px;
  color:#ffad99
}

/* Mission image slideshow; sized to match the dashboard it replaced. */
.hero-slideshow{
  position:relative;
  height:470px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.24);
  border-radius:3px;
  background:var(--ink);
  box-shadow:0 40px 80px rgba(0,0,0,.42)
}

.hero-slide{
  position:absolute;
  inset:0;
  margin:0;
  opacity:0;
  visibility:hidden;
  transition:opacity .8s ease,visibility .8s ease
}

.hero-slide.active{
  opacity:1;
  visibility:visible
}

.hero-slide::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(5,12,8,.08) 20%,rgba(5,12,8,.86) 100%)
}

.hero-slide img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover
}

.hero-slide figcaption{
  position:absolute;
  z-index:2;
  left:34px;
  right:34px;
  bottom:44px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  color:#fff
}

.hero-slide figcaption small{
  margin-bottom:10px;
  color:var(--coral);
  font-size:10px;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase
}

.hero-slide figcaption strong{
  max-width:480px;
  font-family:'Manrope',sans-serif;
  font-size:clamp(25px,3vw,38px);
  line-height:1.08;
  letter-spacing:-.035em
}

.hero-slide figcaption span{
  max-width:430px;
  margin-top:10px;
  color:#d4dbd5;
  font-size:13px
}

.slide-dots{
  position:absolute;
  z-index:4;
  right:25px;
  bottom:24px;
  display:flex;
  gap:8px
}

.slide-dots button{
  width:28px;
  height:3px;
  padding:0;
  border:0;
  background:rgba(255,255,255,.42);
  cursor:pointer;
  transition:background .2s,width .2s
}

.slide-dots button:hover,.slide-dots button:focus-visible{
  background:#fff;
  outline:2px solid var(--coral);
  outline-offset:4px
}

.slide-dots button.active{
  width:42px;
  background:var(--coral)
}

.scroll-cue{
  position:absolute;
  bottom:30px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  align-items:center;
  gap:13px;
  font-size:9px;
  letter-spacing:.18em;
  color:#7f8a9c
}

.scroll-cue i{
  display:block;
  width:75px;
  height:1px;
  background:#455169
}

/* TECHNOLOGY NAME STRIP */
.client-strip{
  background:#fff;
  border-bottom:1px solid #eceff2
}

.logos{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  color:#7c8491;
  font-family:'Manrope';
  font-size:17px;
  font-weight:700;
  filter:grayscale(1)
}

/* SHARED SECTION HEADINGS AND SPACING */
.section{
  padding:92px 0
}

.section-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:60px;
  margin-bottom:50px
}

.section-head>div{
  flex:1
}

.section-head>p{
  max-width:430px;
  color:var(--muted);
  font-size:17px
}

.eyebrow.dark{
  color:#6d7581
}

.section h2{
  font-size:clamp(45px,5vw,66px)
}

/* SERVICES CARDS AND INLINE SVG ICONS */
.service-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-top:1px solid #cfd4da;
  border-bottom:1px solid #cfd4da
}

.service-card{
  position:relative;
  min-height:350px;
  padding:28px 24px;
  border-right:1px solid #cfd4da;
  transition:.3s
}

.service-card:last-child{
  border-right:0
}

.service-card:hover,.service-card.featured{
  background:var(--navy);
  color:#fff;
  transform:translateY(-8px);
  box-shadow:0 25px 45px rgba(16,29,53,.14)
}

.service-number{
  font-size:11px;
  letter-spacing:.14em;
  color:#8b929e
}

.service-icon{
  margin:48px 0 28px
}

.service-icon svg{
  width:47px;
  height:47px;
  fill:none;
  stroke:var(--coral);
  stroke-width:1.6
}

.service-card h3{
  font-family:'Manrope';
  font-size:20px;
  margin:0 0 15px
}

.service-card p{
  color:#767f8d;
  font-size:14px;
  line-height:1.75
}

.service-card:hover p,.service-card.featured p{
  color:#aeb8c9
}

.service-card>a{
  position:absolute;
  bottom:30px;
  right:26px;
  color:var(--coral);
  font-size:20px
}

/* SELECTED WORK AND CSS-BUILT PRODUCT MOCKUPS */
.work{
  background:var(--ink);
  color:#fff
}

.section-head.light p{
  color:#aeb8c9
}

.button-outline{
  border:1px solid #566278;
  color:#fff;
  background:transparent
}

.case-grid{
  display:grid;
  grid-template-columns:1.35fr .65fr;
  gap:24px
}

.case-card{
  background:#121f37
}

.case-visual{
  position:relative;
  height:420px;
  overflow:hidden
}

.fintech{
  background:linear-gradient(145deg,#f1a75f,#fc705d);
  display:grid;
  place-items:center
}

.phone{
  width:220px;
  height:410px;
  background:#fff;
  border:7px solid #151b29;
  border-radius:28px;
  box-shadow:0 30px 45px rgba(52,20,16,.3);
  padding:24px 17px;
  color:#181f31;
  transform:rotate(-5deg)
}

.phone-bar{
  width:53px;
  height:5px;
  border-radius:10px;
  background:#1b2231;
  position:absolute;
  top:10px;
  left:50%;
  transform:translateX(-50%)
}

.phone small{
  display:block;
  font-size:7px;
  color:#9299a7;
  letter-spacing:.1em
}

.phone>strong{
  display:block;
  font-size:23px;
  margin-top:5px
}

.phone .gain{
  font-size:8px;
  color:#29a776
}

.phone-chart{
  height:90px;
  display:flex;
  gap:7px;
  align-items:end;
  border-bottom:1px solid #e7eaf0;
  margin:16px 0
}

.phone-chart i{
  width:16px;
  background:#f9a98f;
  border-radius:4px 4px 0 0
}

.phone-row{
  display:flex;
  justify-content:space-between;
  font-size:9px;
  margin:12px 0
}

.phone-row span{
  color:#ef6a4d
}

.transaction{
  display:flex;
  align-items:center;
  gap:8px;
  border-top:1px solid #edf0f3;
  padding:9px 0
}

.transaction>i{
  display:grid;
  place-items:center;
  width:25px;
  height:25px;
  border-radius:7px;
  background:#ffe8e1;
  color:#ed6b4d;
  font-style:normal
}

.transaction>i.blue{
  background:#e5e9ff;
  color:#6078fa
}

.transaction p{
  flex:1;
  margin:0;
  line-height:1.2
}

.transaction p b{
  font-size:8px
}

.transaction>strong{
  font-size:8px
}

.float-card{
  position:absolute;
  right:55px;
  bottom:85px;
  background:#fff;
  color:#182034;
  border-radius:9px;
  padding:13px 18px;
  box-shadow:0 13px 30px rgba(30,31,45,.22)
}

.float-card small{
  display:block;
  font-size:7px;
  color:#8e96a4
}

.float-card strong{
  font-size:16px;
  color:#2aa877
}

.case-info{
  min-height:150px;
  padding:27px 30px;
  display:flex;
  align-items:flex-start;
  gap:20px
}

.case-info>div{
  flex:1
}

.case-info span{
  font-size:9px;
  color:var(--coral);
  letter-spacing:.13em
}

.case-info h3{
  font-family:'Manrope';
  font-size:25px;
  margin:4px 0
}

.case-info p{
  max-width:260px;
  color:#9ba6b8;
  font-size:13px;
  margin:6px 0
}

.case-info>a{
  font-size:23px;
  color:var(--coral)
}

.health{
  background:linear-gradient(145deg,#96d5c5,#58ae9a);
  display:flex;
  align-items:end;
  justify-content:center
}

.health-ui{
  width:85%;
  height:82%;
  background:#f7faf9;
  border-radius:3px 3px 0 0;
  box-shadow:0 28px 45px rgba(25,75,67,.25);
  color:#12302b
}

.health-top{
  height:48px;
  border-bottom:1px solid #dce9e5;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0 15px;
  font-size:8px
}

.health-top span{
  color:#a9c6bf
}

.health-top i{
  width:24px;
  height:24px;
  background:#d0e7e1;
  border-radius:50%;
  font-size:7px;
  display:grid;
  place-items:center
}

.health-content{
  padding:25px 20px
}

.health-content>small{
  font-size:7px;
  letter-spacing:.15em;
  color:#65958a
}

.health-content h4{
  font-size:22px;
  line-height:1.1;
  margin:8px 0 22px
}

.health-stats{
  display:flex;
  gap:8px
}

.health-stats span{
  background:white;
  border:1px solid #e1eeea;
  border-radius:8px;
  padding:10px;
  font-size:7px
}

.health-stats b{
  font-size:15px
}

.health-graph{
  margin-top:25px;
  background:#fff;
  border-radius:8px
}

.health-graph svg{
  width:100%;
  height:90px
}

/* WHY MAXCOM / EMERGENCY COMMUNICATION BENEFITS */
.process{
  background:#fff
}

.maxcom-head{
  text-align:center;
  margin-bottom:48px
}

.maxcom-head .eyebrow{
  justify-content:center;
  margin-bottom:22px
}

.maxcom-head h2{
  font-size:clamp(44px,5vw,68px)
}

.benefit-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line)
}

.benefit-card{
  min-height:200px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:24px;
  padding:28px 20px;
  text-align:center;
  border-right:1px solid var(--line);
  transition:background .25s,transform .25s
}

.benefit-card:last-child{
  border-right:0
}

.benefit-card:hover{
  background:var(--paper);
  transform:translateY(-6px)
}

.benefit-card svg{
  width:62px;
  height:62px;
  fill:none;
  stroke:var(--coral);
  stroke-width:2.3;
  stroke-linecap:round;
  stroke-linejoin:round
}

.benefit-card h3{
  margin:0;
  font-family:'Manrope',sans-serif;
  font-size:16px;
  line-height:1.35;
  text-transform:uppercase;
  letter-spacing:.025em
}

/* ABOUT / OPERATIONAL EXPERIENCE */
.about{
  position:relative;
  background:#e5e8df;
  border-top:1px solid #bcc4ba;
  border-bottom:1px solid #bcc4ba
}

.about::before{
  content:'URIT // OPERATIONAL CAPABILITY';
  position:absolute;
  top:28px;
  right:32px;
  color:#8b958c;
  font-size:9px;
  font-weight:700;
  letter-spacing:.2em
}

.about-head{
  text-align:center;
  margin-bottom:52px
}

.about-head .eyebrow{
  justify-content:center;
  margin-bottom:22px
}

.about-head h2{
  font-size:clamp(44px,5vw,68px)
}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  border-top:1px solid #aeb7ad;
  border-bottom:1px solid #aeb7ad
}

.about-grid article{
  padding:34px 42px 36px 0
}

.about-grid article+article{
  border-left:1px solid #aeb7ad;
  padding-right:0;
  padding-left:42px
}

.about-label{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:22px
}

.about-label span{
  display:grid;
  place-items:center;
  width:34px;
  height:25px;
  background:var(--ink);
  color:var(--coral);
  font-size:10px;
  font-weight:800;
  letter-spacing:.08em
}

.about-label h3{
  margin:0;
  font-family:'Manrope',sans-serif;
  font-size:17px;
  text-transform:uppercase;
  letter-spacing:.06em
}

.about-grid p{
  margin:0 0 22px;
  color:#3e4841;
  font-size:16px;
  line-height:1.9
}

.about-links{
  display:flex;
  flex-direction:column;
  margin-top:30px;
  border-top:1px solid #aeb7ad
}

.about-links a{
  display:flex;
  justify-content:space-between;
  gap:24px;
  padding:17px 0;
  border-bottom:1px solid #aeb7ad;
  color:#304637;
  font-size:13px;
  font-weight:700;
  line-height:1.5;
  text-transform:uppercase;
  letter-spacing:.025em
}

.about-links a:hover{
  color:var(--coral-dark)
}

.about-links span{
  color:var(--coral);
  font-size:18px
}

/* TESTIMONIAL */
.testimonial{
  background:#fff;
  text-align:center
}

.quote-wrap{
  max-width:880px
}

.quote-mark{
  color:var(--coral);
  font-family:Georgia;
  font-size:80px;
  line-height:.7
}

.quote-wrap blockquote{
  font-family:'Manrope';
  font-size:clamp(27px,3vw,40px);
  font-weight:600;
  line-height:1.4;
  letter-spacing:-.025em;
  margin:25px 0 35px
}

.quote-person{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px
}

.quote-person>div{
  width:45px;
  height:45px;
  border-radius:50%;
  background:#c5d0da;
  display:grid;
  place-items:center;
  font-weight:700
}

.quote-person p{
  margin:0;
  text-align:left;
  line-height:1.3;
  font-size:13px
}

.quote-person span{
  display:block;
  color:#87909d;
  font-size:11px
}

/* CONTACT SECTION AND FORM */
.contact{
  position:relative;
  overflow:hidden;
  background:var(--navy);
  color:#fff;
  padding:88px 0
}

.contact-orb{
  position:absolute;
  width:650px;
  height:650px;
  border-radius:50%;
  left:-300px;
  bottom:-400px;
  border:1px solid rgba(255,118,87,.15);
  box-shadow:0 0 120px rgba(255,118,87,.08)
}

.contact-grid{
  position:relative;
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:70px
}

.contact h2{
  font-size:clamp(48px,5vw,67px)
}

.contact-copy>p{
  color:#aeb8c8;
  max-width:430px;
  margin:26px 0
}

.contact-email{
  display:inline-flex;
  align-items:center;
  gap:20px;
  color:var(--coral);
  border-bottom:1px solid rgba(255,118,87,.4);
  font-weight:700
}

.contact-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:25px 20px;
  background:#fff;
  color:var(--ink);
  padding:40px;
  border-radius:2px;
  border-top:4px solid var(--coral)
}

.field{
  display:flex;
  flex-direction:column;
  gap:7px
}

.field.full{
  grid-column:1/-1
}

.field label{
  font-size:11px;
  font-weight:700;
  letter-spacing:.05em
}

.field input,.field textarea{
  width:100%;
  border:0;
  border-bottom:1px solid #d9dee5;
  background:transparent;
  padding:9px 0;
  outline:none;
  resize:vertical
}

.field input:focus,.field textarea:focus{
  border-color:var(--coral)
}

.timeline-options{
  display:flex;
  gap:8px
}

.timeline-options button{
  flex:1;
  background:#f2f4f7;
  border:1px solid transparent;
  border-radius:2px;
  padding:9px;
  font-size:11px;
  cursor:pointer
}

.timeline-options button.selected{
  background:#fff1ed;
  border-color:var(--coral);
  color:#cf4e31
}

.form-submit{
  justify-self:start
}

.form-note{
  grid-column:1/-1;
  margin:0;
  color:#7b8390;
  font-size:11px
}

/* FOOTER */
footer{
  background:var(--ink);
  color:#fff;
  padding:52px 0 22px
}

.footer-top{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:start;
  gap:60px;
  padding-bottom:42px
}

.footer-top>.brand{
  justify-self:start
}

.footer-top>p{
  color:#b5beb7;
  margin:0;
  justify-self:end;
  text-align:right
}

.footer-links{
  display:grid;
  grid-template-columns:1fr 1fr;
  justify-self:end;
  text-align:right
}

.footer-links>div{
  display:flex;
  flex-direction:column;
  gap:8px
}

.footer-links span{
  font-size:9px;
  letter-spacing:.16em;
  color:var(--coral);
  margin-bottom:8px
}

.footer-links a{
  font-size:13px;
  color:#d2d9d3
}

.footer-links a:hover{
  color:var(--coral)
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  border-top:1px solid #2b3b31;
  padding-top:24px;
  font-size:10px;
  color:#818d84
}

.footer-bottom a{
  color:#cdd5cf
}

/* Content appears immediately; reveal classes remain only as editing hooks. */
.reveal{
  opacity:1;
  transform:none
}

/* TABLET LAYOUT */
@media (max-width:980px){
  .container{
    width:min(var(--max),calc(100% - 36px))
  }

  .hero{
    padding-top:150px
  }

  .hero-layout{
    grid-template-columns:1fr
  }

  .hero-copy{
    max-width:680px;
    min-height:auto
  }

  .product-stage{
    max-width:680px;
    margin:20px auto 0;
    width:100%
  }

  .scroll-cue{
    display:none
  }

  .service-grid{
    grid-template-columns:1fr 1fr
  }

  .service-card:nth-child(2){
    border-right:0
  }

  .service-card{
    border-bottom:1px solid #cfd4da
  }

  .case-grid{
    grid-template-columns:1fr
  }

  .contact-grid{
    grid-template-columns:1fr;
    gap:65px
  }

  .benefit-grid{
    grid-template-columns:1fr 1fr
  }

  .benefit-card:nth-child(2){
    border-right:0
  }

  .benefit-card:nth-child(-n+2){
    border-bottom:1px solid var(--line)
  }

  .contact-copy{
    max-width:650px
  }

  .about-grid{
    grid-template-columns:1fr
  }

  .about-grid article{
    padding:28px 0
  }

  .about-grid article+article{
    border-left:0;
    border-top:1px solid #aeb7ad;
    padding:28px 0
  }

  .footer-top{
    grid-template-columns:1fr 1fr
  }

  .footer-top>p{
    display:none
  }

}

/* MOBILE LAYOUT AND FULL-SCREEN MOBILE MENU */
@media (max-width:700px){
  .container{
    width:calc(100% - 32px)
  }

  .site-header{
    position:absolute
  }

  .nav-wrap{
    height:72px
  }

  .brand{
    width:210px
  }

  .logo-crop{
    width:210px;
    height:29px
  }

  .logo-crop img{
    width:234px;
    left:-18px;
    top:-40px
  }

  .menu-toggle{
    display:block;
    z-index:2
  }

  nav{
    position:fixed;
    inset:0;
    background:var(--ink);
    display:flex;
    flex-direction:column;
    justify-content:center;
    font-size:23px;
    transform:translateX(100%);
    transition:.3s
  }

  nav.open{
    transform:none
  }

  .nav-cta{
    margin-top:10px
  }

  .menu-toggle.active span:first-child{
    transform:translateY(4px) rotate(45deg)
  }

  .menu-toggle.active span:last-child{
    transform:translateY(-4px) rotate(-45deg)
  }

  .hero{
    min-height:auto;
    padding:110px 0 55px
  }

  .hero h1{
    font-size:52px
  }

  .hero-copy>p{
    font-size:16px
  }

  .hero-actions{
    align-items:flex-start;
    flex-direction:column;
    gap:20px
  }

  .hero-proof{
    margin-top:30px
  }

  .product-stage{
    margin-top:30px
  }

  .dashboard{
    transform:none
  }

  .hero-slideshow{
    height:395px
  }

  .hero-slide figcaption{
    left:22px;
    right:22px;
    bottom:48px
  }

  .hero-slide figcaption strong{
    font-size:27px
  }

  .slide-dots{
    right:20px;
    bottom:20px
  }

  .dash-body{
    height:310px
  }

  .dash-main{
    padding:13px
  }

  .metrics article{
    min-height:92px;
    padding:10px
  }

  .metrics strong{
    font-size:15px
  }

  .activity-grid{
    height:105px
  }

  .chip-one{
    right:-6px
  }

  .chip-two{
    left:-8px;
    bottom:20px
  }

  .logos{
    flex-wrap:wrap;
    justify-content:center;
    padding:18px 0;
    font-size:14px
  }

  .section{
    padding:66px 0
  }

  .section-head{
    display:block;
    margin-bottom:34px
  }

  .section-head>p{
    margin-top:25px
  }

  .section-head .button{
    margin-top:25px
  }

  .service-grid{
    grid-template-columns:1fr
  }

  .service-card{
    border-right:0;
    min-height:285px
  }

  .service-icon{
    margin:40px 0 22px
  }

  .case-visual{
    height:350px
  }

  .phone{
    transform:scale(.88) rotate(-4deg)
  }

  .float-card{
    right:15px
  }

  .case-info{
    min-height:130px;
    padding:22px;
    flex-wrap:wrap
  }

  .case-info p{
    display:none
  }

  .maxcom-head{
    margin-bottom:34px
  }

  .benefit-grid{
    grid-template-columns:1fr
  }

  .benefit-card{
    min-height:165px;
    border-right:0;
    border-bottom:1px solid var(--line)
  }

  .benefit-card:last-child{
    border-bottom:0
  }

  .about::before{
    display:none
  }

  .about-head{
    margin-bottom:36px
  }

  .about-grid p{
    font-size:15px;
    line-height:1.75
  }

  .contact{
    padding:66px 0
  }

  .contact-form{
    grid-template-columns:1fr;
    padding:26px 20px
  }

  .field{
    grid-column:1/-1
  }

  .timeline-options{
    flex-wrap:wrap
  }

  .timeline-options button{
    min-width:100px
  }

  .footer-top{
    grid-template-columns:1fr;
    gap:40px
  }

  .footer-links{
    width:min(100%,280px);
    justify-self:end
  }

  .footer-bottom{
    flex-direction:column;
    gap:12px
  }

  .footer-bottom span:nth-child(2){
    display:none
  }

}

/* ACCESSIBILITY: disable animation when the visitor requests less motion */
@media (prefers-reduced-motion:reduce){
  html{
    scroll-behavior:auto
  }

  .button{
    transition:none
  }

  .hero-slide{
    transition:none
  }

}

/* Prevent wide decorative elements from causing horizontal scrolling. */
body{
  overflow-x:hidden
}

.hero-copy,.product-stage{
  min-width:0
}
