:root{
  --accent:#d63b36;
  --accent-deep:#b92d28;
  --ink:#14202b;
  --ink-soft:#314252;
  --slate:#5f6c78;
  --line:#d6dde3;
  --mist:#f4f6f7;
  --panel:#ffffff;
  --night:#0d1822;
  --night-soft:#152635;
  --shadow:0 24px 60px rgba(12,24,36,.14);
  --radius:8px;
  --header-h:96px;
  --hero-x:50%;
  --hero-y:50%;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

[id]{
  scroll-margin-top:118px;
}

body{
  font-family:"Aptos","Segoe UI","Helvetica Neue",Arial,sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at top left, rgba(214,59,54,.08), transparent 34%),
    linear-gradient(180deg, #fbfcfc 0%, #f1f4f5 100%);
  line-height:1.6;
}

img{
  display:block;
  max-width:100%;
}

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

button,
input,
textarea{
  font:inherit;
}

ul{
  list-style:none;
}

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

.site-shell.menu-open{
  overflow:hidden;
}

.site-shell{
  min-height:100vh;
}

.topbar{
  background:var(--night);
  color:#d4dde5;
  font-size:13px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.topbar-inner{
  min-height:44px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.topbar a{
  color:#ffffff;
  font-weight:600;
}

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  backdrop-filter:blur(14px);
  background:rgba(250,252,252,.88);
  border-bottom:1px solid rgba(20,32,43,.08);
}

.site-header.scrolled{
  box-shadow:0 14px 30px rgba(15,28,40,.08);
}

.nav-wrap{
  min-height:84px;
  display:flex;
  align-items:center;
  gap:28px;
}

.brand{
  flex:none;
}

.brand img{
  width:auto;
  height:60px;
}

.site-nav{
  display:flex;
  align-items:center;
  gap:28px;
  margin-left:auto;
}

.site-nav a{
  position:relative;
  color:var(--ink-soft);
  font-size:15px;
  font-weight:600;
  padding:8px 0;
}

.site-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:2px;
  background:var(--accent);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .24s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after{
  transform:scaleX(1);
}

.site-nav a.is-current{
  color:var(--accent);
}

.site-nav a.is-current::after{
  transform:scaleX(1);
}

.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  border:1px solid rgba(20,32,43,.14);
  border-radius:6px;
  background:#fff;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.menu-toggle span{
  width:20px;
  height:2px;
  background:var(--ink);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 22px;
  border-radius:6px;
  border:1px solid transparent;
  font-size:14px;
  font-weight:700;
  letter-spacing:.02em;
  transition:transform .22s ease, background-color .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn-primary{
  background:var(--accent);
  color:#fff;
  box-shadow:0 12px 24px rgba(214,59,54,.18);
}

.btn-primary:hover{
  background:var(--accent-deep);
}

.btn-secondary{
  background:rgba(255,255,255,.12);
  color:#fff;
  border-color:rgba(255,255,255,.28);
}

.btn-secondary:hover{
  background:#fff;
  color:var(--night);
}

.nav-btn{
  flex:none;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
  color:var(--accent);
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.eyebrow::before{
  content:"";
  width:32px;
  height:2px;
  background:currentColor;
}

h1,
h2,
h3{
  font-family:"Bahnschrift","Aptos","Segoe UI",sans-serif;
  font-weight:700;
  line-height:1.12;
  letter-spacing:0;
}

h1{
  font-size:clamp(38px, 5vw, 66px);
}

h2{
  font-size:clamp(30px, 4vw, 48px);
}

h3{
  font-size:22px;
}

p{
  color:var(--slate);
}

p + p{
  margin-top:16px;
}

.section{
  padding:96px 0;
}

.section-light{
  background:linear-gradient(180deg, rgba(255,255,255,.9), rgba(244,246,247,.88));
}

.section-dark{
  background:
    linear-gradient(180deg, rgba(9,18,28,.94), rgba(16,30,43,.96)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.03) 0, rgba(255,255,255,.03) 1px, transparent 1px, transparent 120px);
  color:#fff;
}

.section-dark p,
.section-dark .section-head p{
  color:#b8c4cd;
}

.section-accent{
  background:
    linear-gradient(120deg, rgba(214,59,54,.96), rgba(171,41,36,.96)),
    radial-gradient(circle at right top, rgba(255,255,255,.14), transparent 36%);
  color:#fff;
}

.section-accent p{
  color:#ffe4e1;
}

.section-head{
  /* max-width:760px; */
  margin-bottom:40px;
}

.section-head p{
  margin-top:16px;
}

.hero{
  position:relative;
  overflow:hidden;
  color:#fff;
  background:
    radial-gradient(circle at var(--hero-x) var(--hero-y), rgba(255,141,123,.16), transparent 18%),
    linear-gradient(135deg, rgba(10,18,28,.96), rgba(17,32,44,.92));
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size:108px 108px;
  opacity:.18;
  animation:gridDrift 20s linear infinite;
}

.hero-backdrop{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(10,18,28,.86) 0%, rgba(10,18,28,.74) 44%, rgba(10,18,28,.5) 100%),
    url("../images/hero-bg.jpg") center/cover no-repeat;
  opacity:.72;
}

.hero-grid{
  position:relative;
  display:grid;
  /* grid-template-columns:minmax(0, 1.1fr) minmax(320px, .9fr); */
  gap:40px;
  align-items:center;
  min-height:calc(100vh - 128px);
  padding:84px 0 64px;
}

.hero-copy{
  /* max-width:700px; */
}

.hero-copy p{
  /* max-width:620px; */
  margin-top:22px;
  color:#d7dfe6;
  font-size:18px;
}

.hero-proof{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
  margin-top:24px;
}

.hero-proof div{
  padding:16px 16px 14px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius);
  background:rgba(255,255,255,.06);
  transition:transform .24s ease, border-color .24s ease, background-color .24s ease;
}

.hero-proof div:hover{
  transform:translateY(-3px);
  border-color:rgba(255,255,255,.22);
  background:rgba(255,255,255,.09);
}

.hero-proof strong{
  display:block;
  margin-bottom:8px;
  color:#fff;
  font-size:14px;
}

.hero-proof span{
  display:block;
  color:#c1ccd5;
  font-size:13px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:34px;
}

.hero-capabilities{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:20px;
}

.hero-capabilities span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:34px;
  padding:0 12px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:#dce5eb;
  font-size:12px;
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.hero-capabilities span::before{
  content:"";
  width:7px;
  height:7px;
  border-radius:50%;
  background:#ff8d7b;
  box-shadow:0 0 0 0 rgba(255,141,123,.55);
  animation:chipPulse 2.8s ease infinite;
}

.hero-metrics{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
  margin-top:46px;
}

.hero-metrics div{
  padding:18px 18px 0 0;
  border-top:1px solid rgba(255,255,255,.18);
  animation:metricRise .8s ease both;
}

.hero-metrics strong{
  display:block;
  margin-bottom:8px;
  color:#fff;
  font-size:30px;
}

.hero-metrics span{
  display:block;
  color:#b8c6d1;
  font-size:13px;
}

.hero-panel{
  display:grid;
  gap:18px;
  transform:translateY(6px);
}

.hero-visual{
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  min-height:320px;
}

.hero-visual::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size:52px 52px;
  opacity:.22;
  pointer-events:none;
}

.hero-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.02);
}

.panel-card{
  background:rgba(244,247,249,.97);
  color:var(--ink);
  border:1px solid rgba(255,255,255,.32);
  border-radius:var(--radius);
  padding:26px;
  box-shadow:var(--shadow);
}

.panel-kicker{
  display:inline-block;
  margin-bottom:8px;
  color:var(--accent);
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.panel-card h2{
  font-size:26px;
}

.status-chip{
  position:absolute;
  z-index:2;
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(13,24,34,.82);
  border:1px solid rgba(255,255,255,.16);
  color:#eef4f7;
  font-size:11px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  backdrop-filter:blur(6px);
}

.chip-live{
  top:16px;
  left:16px;
}

.chip-ready{
  right:16px;
  bottom:16px;
}

.status-chip::before{
  content:"";
  width:8px;
  height:8px;
  margin-right:8px;
  border-radius:50%;
  background:#7df1a9;
  box-shadow:0 0 0 0 rgba(125,241,169,.48);
  animation:chipPulse 2.2s ease infinite;
}

.scan-line{
  position:absolute;
  inset:-30% 0 auto 0;
  height:34%;
  background:linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.18), rgba(255,255,255,0));
  mix-blend-mode:screen;
  animation:scanMove 5.4s linear infinite;
}

.ops-list{
  display:grid;
  gap:14px;
  margin-top:22px;
}

.ops-row{
  display:grid;
  grid-template-columns:minmax(0, 1fr) auto;
  gap:16px;
  align-items:center;
  padding-bottom:12px;
  border-bottom:1px solid var(--line);
}

.ops-row span{
  color:var(--ink-soft);
  font-size:14px;
  font-weight:600;
}

.ops-row strong{
  color:var(--accent);
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.signal-matrix{
  display:grid;
  gap:12px;
  margin-top:18px;
}

.signal-line{
  display:grid;
  gap:8px;
}

.signal-line label{
  color:var(--ink);
  font-size:13px;
  font-weight:700;
}

.bar-track{
  position:relative;
  height:9px;
  overflow:hidden;
  border-radius:999px;
  background:rgba(20,32,43,.08);
}

.bar-track span{
  display:block;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg, var(--accent), #ff7f60);
  transform-origin:left;
  animation:barFill 1.4s ease both;
}

.bar-track .w-92{
  width:92%;
}

.bar-track .w-78{
  width:78%;
}

.bar-track .w-88{
  width:88%;
}

.panel-note{
  margin-top:18px;
  color:var(--slate);
  font-size:14px;
}

.hero-lane{
  position:relative;
  z-index:1;
  border-top:1px solid rgba(255,255,255,.12);
  border-bottom:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
  overflow:hidden;
}

.lane-track{
  display:flex;
  align-items:center;
  gap:34px;
  min-height:52px;
  white-space:nowrap;
  color:#d5dde4;
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  animation:laneMove 18s linear infinite;
}

.lane-track span{
  position:relative;
}

.lane-track span::after{
  content:"";
  display:inline-block;
  width:8px;
  height:8px;
  margin-left:34px;
  border-radius:50%;
  background:rgba(255,141,123,.9);
}

.trust-band{
  background:#fff;
  border-bottom:1px solid rgba(20,32,43,.08);
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:24px;
  padding:28px 0;
}

.trust-item{
  padding-right:12px;
}

.trust-label{
  display:block;
  margin-bottom:10px;
  color:var(--ink);
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.trust-item p{
  font-size:15px;
}

.company-band{
  background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(244,246,247,.92));
}

.company-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}

.company-grid-logos{
  grid-template-columns:repeat(5, minmax(0, 1fr));
}

.company-card{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:22px;
  border:1px solid rgba(20,32,43,.08);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:0 16px 34px rgba(14,25,37,.06);
  transition:transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.company-card:hover{
  transform:translateY(-4px);
  border-color:rgba(214,59,54,.22);
  box-shadow:0 24px 48px rgba(14,25,37,.12);
}

.company-card img{
  width:100%;
  max-width:170px;
  height:58px;
  object-fit:contain;
}

.company-mark{
  display:flex;
  align-items:center;
  justify-content:center;
  width:72px;
  height:72px;
  border-radius:10px;
  background:linear-gradient(180deg, rgba(214,59,54,.12), rgba(214,59,54,.05));
  color:var(--accent);
  font-size:24px;
  font-weight:800;
  letter-spacing:.06em;
}

.company-copy h3{
  margin-bottom:6px;
  font-size:20px;
}

.company-copy p{
  font-size:14px;
}

.about-grid{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(0, 1fr);
  gap:48px;
  align-items:start;
}

.about-facts{
  display:grid;
  gap:18px;
}

.fact{
  display:grid;
  grid-template-columns:72px minmax(0, 1fr);
  gap:20px;
  padding:24px;
  background:rgba(255,255,255,.84);
  border:1px solid rgba(20,32,43,.08);
  border-radius:var(--radius);
  box-shadow:0 16px 34px rgba(14,25,37,.06);
}

.fact span{
  display:flex;
  align-items:center;
  justify-content:center;
  width:72px;
  height:72px;
  border-radius:6px;
  background:linear-gradient(180deg, rgba(214,59,54,.14), rgba(214,59,54,.06));
  color:var(--accent);
  font-size:24px;
  font-weight:800;
}

.fact h3{
  margin-bottom:8px;
  font-size:22px;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:24px;
}

.service-card{
  position:relative;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(20,32,43,.09);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 18px 40px rgba(14,25,37,.06);
  transition:transform .24s ease, box-shadow .24s ease, border-color .24s ease, background-color .24s ease;
  cursor:pointer;
}

.service-card:hover{
  transform:translateY(-5px);
  border-color:rgba(214,59,54,.28);
  box-shadow:0 26px 52px rgba(12,25,39,.14);
}

.service-card::after{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:4px;
  background:linear-gradient(180deg, var(--accent), #ff7f60);
  transform:scaleY(0);
  transform-origin:top;
  transition:transform .24s ease;
}

.service-card:hover::after,
.service-card.is-active::after{
  transform:scaleY(1);
}

.service-card:focus-visible{
  outline:none;
  border-color:rgba(214,59,54,.42);
  box-shadow:0 0 0 4px rgba(214,59,54,.1), 0 22px 46px rgba(12,25,39,.12);
}

.service-card.is-active{
  transform:translateY(-5px);
  border-color:rgba(214,59,54,.28);
  background:#fff;
  box-shadow:0 28px 58px rgba(12,25,39,.14);
}

.service-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  transition:transform .32s ease;
}

.service-card:hover img,
.service-card.is-active img{
  transform:scale(1.04);
}

.product-card{
  min-height:230px;
}

.product-card .service-body{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  height:100%;
}

.product-card .service-body p{
  margin-top:8px;
  font-size:14px;
}

.product-browser{
  display:grid;
  grid-template-columns:minmax(320px, .9fr) minmax(0, 1.1fr);
  gap:24px;
  align-items:start;
}

.service-body{
  padding:24px;
}

.service-index{
  display:inline-block;
  margin-bottom:10px;
  color:var(--accent);
  font-size:12px;
  font-weight:800;
  letter-spacing:.16em;
}

.service-body h3{
  margin-bottom:10px;
}

.service-spotlight{
  display:block;
  position:sticky;
  top:118px;
  margin:0;
  padding:22px;
  border:1px solid rgba(20,32,43,.08);
  border-radius:var(--radius);
  background:rgba(255,255,255,.94);
  box-shadow:0 18px 44px rgba(14,25,37,.08);
}

.service-spotlight.is-swapping .spotlight-content{
  animation:spotlightSwap .35s ease;
}

.spotlight-content{
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-width:0;
}

.spotlight-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  padding-bottom:14px;
  margin-bottom:14px;
  border-bottom:1px solid rgba(20,32,43,.08);
}

.spotlight-kicker{
  display:inline-flex;
  align-items:center;
  width:max-content;
  min-height:30px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(214,59,54,.1);
  color:var(--accent);
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
}

.spotlight-index{
  margin-top:4px;
}

.spotlight-hint{
  max-width:240px;
  margin:0;
  color:var(--slate);
  font-size:13px;
  text-align:right;
}

.spotlight-content h3{
  margin-top:16px;
  font-size:30px;
}

.spotlight-content p{
  margin-top:14px;
  max-width:58ch;
}

.spotlight-points{
  display:grid;
  gap:12px;
  margin-top:20px;
}

.spotlight-points li{
  display:flex;
  gap:12px;
  color:var(--ink);
  font-size:15px;
  font-weight:600;
}

.spotlight-points li::before{
  content:"";
  flex:none;
  width:10px;
  height:10px;
  margin-top:7px;
  border-radius:50%;
  background:linear-gradient(180deg, var(--accent), #ff7f60);
  box-shadow:0 0 0 5px rgba(214,59,54,.08);
}

.delivery-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}

.delivery-step{
  padding:28px 24px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius);
  background:rgba(255,255,255,.03);
  transition:transform .24s ease, background-color .24s ease, border-color .24s ease;
}

.delivery-step:hover{
  transform:translateY(-4px);
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.18);
}

.delivery-step span{
  display:inline-block;
  margin-bottom:16px;
  color:#ff9b93;
  font-size:13px;
  font-weight:800;
  letter-spacing:.16em;
}

.delivery-step h3{
  margin-bottom:12px;
  color:#fff;
  font-size:21px;
}

.industry-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:22px;
}

.industry-card{
  display:grid;
  grid-template-columns:minmax(220px, 1fr) minmax(0, 1fr);
  min-height:250px;
  background:#fff;
  border:1px solid rgba(20,32,43,.08);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 18px 44px rgba(14,25,37,.06);
  transition:transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.industry-card:hover{
  transform:translateY(-4px);
  border-color:rgba(214,59,54,.2);
  box-shadow:0 24px 54px rgba(14,25,37,.12);
}

.industry-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.industry-copy{
  padding:28px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.industry-copy h3{
  margin-bottom:10px;
}

.highlight-grid{
  display:grid;
  grid-template-columns:minmax(0, .9fr) minmax(0, 1.1fr);
  gap:40px;
  align-items:start;
}

.highlight-list{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.highlight-list div{
  padding:24px 20px;
  border:1px solid rgba(255,255,255,.2);
  border-radius:var(--radius);
  background:rgba(255,255,255,.08);
}

.highlight-list strong{
  display:block;
  margin-bottom:10px;
  color:#000;
  font-size:16px;
}

.contact-grid{
  display:grid;
  grid-template-columns:minmax(0, .9fr) minmax(0, 1.1fr);
  gap:36px;
  align-items:start;
}

.contact-points{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
  margin-top:28px;
}

.contact-points div{
  padding:18px;
  border:1px solid rgba(20,32,43,.08);
  border-radius:var(--radius);
  background:rgba(255,255,255,.9);
}

.contact-points span{
  display:block;
  margin-bottom:8px;
  color:var(--slate);
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.12em;
}

.contact-points strong{
  color:var(--ink);
  font-size:15px;
}

.contact-form{
  padding:28px;
  border:1px solid rgba(20,32,43,.08);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:0 18px 40px rgba(14,25,37,.08);
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
}

.contact-form label{
  display:grid;
  gap:8px;
}

.contact-form span{
  color:var(--ink);
  font-size:13px;
  font-weight:700;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:6px;
  background:#fff;
  padding:14px 14px;
  color:var(--ink);
  transition:border-color .2s ease, box-shadow .2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus{
  outline:none;
  border-color:rgba(214,59,54,.72);
  box-shadow:0 0 0 4px rgba(214,59,54,.08);
}

.contact-form textarea{
  min-height:144px;
  resize:vertical;
}

.contact-form .full{
  grid-column:1 / -1;
}

.form-btn{
  width:100%;
  margin-top:18px;
}

.site-footer{
  background:var(--night);
  color:#d3dbe3;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.3fr .8fr .8fr;
  gap:32px;
  padding:56px 0 34px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.site-footer img{
  height:60px;
  width:auto;
  margin-bottom:16px;
  filter:brightness(0) invert(1);
}

.site-footer h3{
  margin-bottom:16px;
  color:#fff;
  font-size:18px;
}

.site-footer p,
.site-footer li,
.site-footer a{
  color:#aebbc7;
}

.site-footer ul{
  display:grid;
  gap:10px;
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding:18px 0 28px;
  font-size:13px;
}

.reveal{
  opacity:1;
  transform:none;
}

.js .reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .6s ease, transform .6s ease;
}

.js .reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

@keyframes gridDrift{
  from{
    transform:translate3d(0, 0, 0);
  }
  to{
    transform:translate3d(-54px, -54px, 0);
  }
}

@keyframes chipPulse{
  0%{
    box-shadow:0 0 0 0 rgba(255,141,123,.55);
  }
  70%{
    box-shadow:0 0 0 9px rgba(255,141,123,0);
  }
  100%{
    box-shadow:0 0 0 0 rgba(255,141,123,0);
  }
}

@keyframes scanMove{
  from{
    transform:translateY(-10%);
  }
  to{
    transform:translateY(320%);
  }
}

@keyframes laneMove{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(-50%);
  }
}

@keyframes barFill{
  from{
    transform:scaleX(0);
  }
  to{
    transform:scaleX(1);
  }
}

@keyframes metricRise{
  from{
    opacity:0;
    transform:translateY(16px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes spotlightSwap{
  0%{
    opacity:.4;
    transform:translateY(10px);
  }
  100%{
    opacity:1;
    transform:translateY(0);
  }
}

@media (prefers-reduced-motion: reduce){
  html{
    scroll-behavior:auto;
  }

  .hero::before,
  .hero-capabilities span::before,
  .status-chip::before,
  .scan-line,
  .lane-track,
  .bar-track span,
  .hero-metrics div,
  .js .reveal{
    animation:none !important;
    transition:none !important;
    transform:none !important;
  }

  .js .reveal{
    opacity:1 !important;
  }
}

@media (max-width: 1080px){
  .nav-wrap{
    gap:20px;
  }

  .site-nav{
    gap:22px;
  }

  .hero-grid,
  .about-grid,
  .highlight-grid,
  .contact-grid,
  .product-browser{
    grid-template-columns:1fr;
  }

  .delivery-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .service-grid,
  .company-grid,
  .highlight-list{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .company-grid-logos{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }

  .hero-proof{
    grid-template-columns:1fr;
  }

  .service-spotlight{
    position:relative;
    top:auto;
  }
}

@media (max-width: 860px){
  .topbar-inner,
  .nav-wrap,
  .footer-bottom{
    flex-wrap:wrap;
  }

  .topbar-inner{
    justify-content:center;
    text-align:center;
  }

  .nav-wrap{
    min-height:auto;
    padding:16px 0;
  }

  .brand img{
    height:64px;
  }

  .menu-toggle{
    display:flex;
    margin-left:auto;
  }

  .nav-btn{
    display:none;
  }

  .site-nav{
    display:none;
    width:100%;
    margin-left:0;
    padding:14px 16px 10px;
    border-top:1px solid rgba(20,32,43,.08);
    border-radius:0 0 var(--radius) var(--radius);
    background:rgba(255,255,255,.98);
    box-shadow:0 18px 34px rgba(14,25,37,.08);
    flex-direction:column;
    align-items:flex-start;
    gap:4px;
  }

  .site-nav.is-open{
    display:flex;
  }

  .site-nav a{
    width:100%;
    padding:10px 0;
  }

  .hero-grid{
    min-height:auto;
    padding:56px 0 54px;
  }

  .hero-panel{
    transform:none;
  }

  .hero-metrics,
  .trust-grid,
  .company-grid,
  .industry-grid,
  .contact-points,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .company-grid-logos{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .industry-card{
    grid-template-columns:1fr;
  }

  .spotlight-content h3{
    font-size:26px;
  }

  .spotlight-head{
    flex-direction:column;
    align-items:flex-start;
  }

  .spotlight-hint{
    max-width:none;
    text-align:left;
  }
}

@media (max-width: 640px){
  .container{
    width:min(100% - 32px, 1180px);
  }

  .section{
    padding:76px 0;
  }

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

  .hero-capabilities{
    gap:8px;
  }

  .service-grid,
  .delivery-grid,
  .company-grid,
  .highlight-list,
  .form-grid{
    grid-template-columns:1fr;
  }

  .company-grid-logos{
    grid-template-columns:1fr;
  }

  .hero-metrics{
    grid-template-columns:1fr;
  }

  .service-spotlight{
    padding:18px;
  }

  .panel-card,
  .contact-form,
  .fact,
  .industry-copy,
  .spotlight-content{
    padding:22px;
  }

  .hero-proof div{
    padding:14px;
  }

  .status-chip{
    font-size:10px;
  }

  .fact{
    grid-template-columns:1fr;
  }

  .fact span{
    width:64px;
    height:64px;
  }

  .site-footer img{
    height:48px;
  }
}

@media (max-width: 1024px) and (orientation: landscape){
  .hero-grid{
    gap:28px;
    padding:46px 0 42px;
  }

  .hero-visual{
    min-height:260px;
  }

  .brand img{
    height:60px;
  }
}

@media (max-height: 540px) and (orientation: landscape){
  .topbar{
    display:none;
  }

  .hero-grid{
    padding:34px 0 32px;
  }

  .hero-copy p{
    font-size:15px;
  }

  .hero-metrics{
    gap:14px;
    margin-top:28px;
  }
}
