/* Self-hosted brand fonts (SIL OFL) */
@font-face { font-family: 'Poppins'; font-weight: 600; font-style: normal; font-display: swap; src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-weight: 700; font-style: normal; font-display: swap; src: url('../fonts/Poppins-Bold.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-weight: 400; font-style: normal; font-display: swap; src: url('../fonts/Inter-Regular.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-weight: 500; font-style: normal; font-display: swap; src: url('../fonts/Inter-Medium.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-weight: 600; font-style: normal; font-display: swap; src: url('../fonts/Inter-SemiBold.woff2') format('woff2'); }
/* ==========================================================================
   AcousticAI Lab — Global stylesheet
   Palette: Navy #0B1F3B · Blue #2563EB · Teal #00C2A8 · Light Blue #7DD3FC · Gray #E5E7EB
   ========================================================================== */
:root {
  --navy: #0B1F3B; --navy-2: #112B4F; --navy-3: #0F2A52;
  --blue: #2563EB; --blue-dark: #1E40AF; --teal: #00C2A8; --light: #7DD3FC; --gray: #E5E7EB;
  --ink: #1E293B; --muted: #64748B; --pale: #F8FAFC; --white: #fff; --line: #E2E8F0;
  --font-head: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
  --radius: 16px; --radius-sm: 10px;
  --shadow: 0 10px 30px -12px rgba(11, 31, 59, .18);
  --shadow-lg: 0 30px 60px -20px rgba(11, 31, 59, .28);
  --container: 1200px;
  --header-h: 80px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font-body); color: var(--ink); background: var(--white); line-height: 1.65; font-size: 16px; overflow-x: hidden; }
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.15; margin: 0 0 .6em; font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p { margin: 0 0 1em; }
p.lead { font-size: 1.15rem; color: var(--muted); }
ul.clean { list-style: none; padding: 0; margin: 0; }
.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.container.narrow { max-width: 820px; }
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; position: relative; }
.section.tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section.pale { background: var(--pale); }
.section.navy { background: var(--navy); color: #CBD5E1; }
.section.navy h2, .section.navy h3, .section.navy h4 { color: #fff; }
.section.navy p.lead { color: #94A3B8; }
.label { display: inline-block; font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--blue); margin-bottom: .9rem; }
.section.navy .label { color: var(--teal); }
.section-head { max-width: 760px; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 1.5rem; border-radius: 999px; font-weight: 600; font-size: .95rem; font-family: var(--font-body); border: 2px solid transparent; cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s; line-height: 1.2; white-space: nowrap; }
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 10px 24px -10px rgba(37, 99, 235, .7); }
.btn-primary:hover { background: var(--blue-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(37, 99, 235, .8); }
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.btn-outline-light { border-color: rgba(255, 255, 255, .5); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--navy); border-color: #fff; transform: translateY(-2px); }
.btn-teal { background: var(--teal); color: var(--navy); }
.btn-teal:hover { background: #00d9bb; color: var(--navy); transform: translateY(-2px); }
.btn-lg { padding: 1.05rem 1.9rem; font-size: 1.02rem; }
.btn-sm { padding: .55rem 1.05rem; font-size: .85rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.link-arrow { font-weight: 600; display: inline-flex; align-items: center; gap: .35rem; }
.link-arrow svg { width: 16px; height: 16px; transition: transform .25s; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ==========================================================================
   HEADER (global)
   ========================================================================== */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 1000; height: var(--header-h); transition: background .35s, box-shadow .35s, height .35s, backdrop-filter .35s; }
.site-header .container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; height: 100%; }
.brand img { height: 44px; width: auto; transition: height .3s; }
.brand .logo-light { display: none; }
.site-header.on-dark:not(.scrolled) .logo-dark { display: none; }
.site-header.on-dark:not(.scrolled) .logo-light { display: block; }
.site-header.scrolled, .site-header.solid { background: rgba(255, 255, 255, .92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 6px 24px -14px rgba(11, 31, 59, .25); height: 68px; }
.site-header.scrolled .brand img { height: 38px; }
.nav { display: flex; align-items: center; gap: .25rem; }
.nav a { padding: .55rem .9rem; border-radius: 999px; font-weight: 500; font-size: .95rem; color: var(--navy); transition: background .25s, color .25s; position: relative; }
.site-header.on-dark:not(.scrolled) .nav a { color: #E2E8F0; }
.nav a:hover { background: rgba(37, 99, 235, .08); color: var(--blue); }
.site-header.on-dark:not(.scrolled) .nav a:hover { background: rgba(255, 255, 255, .1); color: #fff; }
.nav a.active { color: var(--blue); font-weight: 600; }
.site-header.on-dark:not(.scrolled) .nav a.active { color: var(--light); }
.nav a.active::after { content: ""; position: absolute; left: .9rem; right: .9rem; bottom: .3rem; height: 2px; border-radius: 2px; background: currentColor; }
.nav .nav-cta { margin-left: .6rem; }
.nav-toggle { display: none; width: 46px; height: 46px; border: 0; background: transparent; cursor: pointer; padding: 0; border-radius: 12px; position: relative; z-index: 1102; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px auto; border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.site-header.on-dark:not(.scrolled) .nav-toggle span { background: #fff; }
.nav-toggle[aria-expanded="true"] span { background: var(--navy); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-backdrop { position: fixed; inset: 0; background: rgba(11, 31, 59, .45); opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 1100; }
body.nav-open .nav-backdrop { opacity: 1; pointer-events: auto; }
@media (max-width: 1024px) {
  .nav-toggle { display: block; }
  .nav { position: fixed; top: 0; right: 0; bottom: 0; width: min(86vw, 380px); background: #fff; flex-direction: column; align-items: stretch; padding: 92px 1.4rem 2rem; gap: .25rem; transform: translateX(105%); transition: transform .38s var(--ease); z-index: 1101; box-shadow: -20px 0 50px -30px rgba(11, 31, 59, .5); overflow-y: auto; }
  body.nav-open .nav { transform: translateX(0); }
  .nav a { color: var(--navy) !important; font-size: 1.1rem; padding: .85rem 1rem; border-radius: 12px; }
  .nav a.active::after { display: none; }
  .nav a.active { background: rgba(37, 99, 235, .08); }
  .nav .nav-cta { margin: 1rem 0 0; justify-content: center; color: #fff !important; }
  .nav .nav-cta:hover { background: var(--blue-dark); }
  .nav .nav-meta { margin-top: auto; padding-top: 1.5rem; border-top: 1px solid var(--line); font-size: .85rem; color: var(--muted); }
  .nav .nav-meta a { display: inline; padding: 0; font-size: .9rem; color: var(--blue) !important; }
  body.nav-open { overflow: hidden; }
  body.nav-open .site-header { z-index: 1200; }
}
.nav-meta { display: none; }
@media (max-width: 1024px) { .nav-meta { display: block; } }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; background: var(--navy); color: #fff; overflow: hidden; padding: calc(var(--header-h) + 3rem) 0 4rem; isolation: isolate; }
.hero-bg { position: absolute; inset: -10% 0; z-index: -3; background-size: cover; background-position: center; opacity: .32; will-change: transform; filter: saturate(.7) contrast(1.05); }
.hero-overlay { position: absolute; inset: 0; z-index: -2; background: linear-gradient(100deg, rgba(11, 31, 59, .96) 0%, rgba(11, 31, 59, .78) 45%, rgba(11, 31, 59, .45) 100%); }
.hero-canvas { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; opacity: .9; }
.hero .container { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center; }
@media (max-width: 1024px) { .hero .container { grid-template-columns: 1fr; } .hero-visual { display: none; } }
.hero h1 { color: #fff; margin-bottom: 1.2rem; }
.hero h1 .accent { color: var(--light); }
.hero .lead { color: #CBD5E1; font-size: clamp(1.05rem, 1.6vw, 1.25rem); max-width: 620px; }
.hero .eyebrow { display: inline-flex; align-items: center; gap: .6rem; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--teal); font-weight: 600; margin-bottom: 1.3rem; }
.hero .eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 0 rgba(0, 194, 168, .6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(0, 194, 168, .6); } 70% { box-shadow: 0 0 0 12px rgba(0, 194, 168, 0); } 100% { box-shadow: 0 0 0 0 rgba(0, 194, 168, 0); } }
.hero-chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2.2rem; }
.hero-chips span { font-size: .82rem; padding: .45rem .9rem; border-radius: 999px; border: 1px solid rgba(255, 255, 255, .18); background: rgba(255, 255, 255, .06); color: #E2E8F0; backdrop-filter: blur(6px); }
.hero-visual { position: relative; aspect-ratio: 1; max-width: 520px; margin-left: auto; }
.hero-scroll { position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: #94A3B8; display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.hero-scroll i { width: 1px; height: 38px; background: linear-gradient(to bottom, var(--teal), transparent); animation: scrollHint 1.8s infinite; }
@keyframes scrollHint { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* Sensor ring visual (hero) */
.sensor-ring { width: 100%; height: 100%; }
.sensor-ring .ring { fill: none; stroke: rgba(125, 211, 252, .18); stroke-width: 1; }
.sensor-ring .sweep { fill: url(#sweepGrad); transform-origin: 250px 250px; animation: sweep 5s linear infinite; }
@keyframes sweep { to { transform: rotate(360deg); } }
.sensor-ring .node { fill: var(--navy); stroke: var(--teal); stroke-width: 1.5; }
.sensor-ring .node-lbl { font: 600 11px var(--font-body); fill: #CBD5E1; letter-spacing: .06em; text-anchor: middle; }
.sensor-ring .blip { fill: var(--teal); animation: blip 3s infinite; transform-origin: center; }
.sensor-ring .blip:nth-child(2n) { animation-delay: 1s; }
.sensor-ring .blip:nth-child(3n) { animation-delay: 2s; }
@keyframes blip { 0%, 100% { opacity: .2; r: 3; } 50% { opacity: 1; r: 5; } }
.sensor-ring .core { fill: url(#coreGrad); }
.sensor-ring .wave-path { fill: none; stroke: var(--teal); stroke-width: 2; stroke-linecap: round; stroke-dasharray: 600; animation: dash 4s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -1200; } }

/* Page hero (inner pages) */
.page-hero { position: relative; background: var(--navy); color: #fff; padding: calc(var(--header-h) + 4rem) 0 4.5rem; overflow: hidden; isolation: isolate; }
.page-hero .hero-bg { opacity: .28; }
.page-hero h1 { color: #fff; max-width: 820px; }
.page-hero .lead { color: #CBD5E1; max-width: 700px; font-size: clamp(1rem, 1.5vw, 1.2rem); }
.page-hero .label { color: var(--teal); }
.breadcrumb { font-size: .82rem; color: #94A3B8; margin-bottom: 1.2rem; display: flex; gap: .5rem; flex-wrap: wrap; }
.breadcrumb a { color: #CBD5E1; }
.breadcrumb a:hover { color: #fff; }

/* ==========================================================================
   COMPONENTS
   ========================================================================== */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s; position: relative; overflow: hidden; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(37, 99, 235, .25); }
.card .icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(37, 99, 235, .12), rgba(0, 194, 168, .12)); color: var(--blue); margin-bottom: 1.2rem; }
.card .icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .96rem; }
.card p:last-child { margin-bottom: 0; }
.card.dark { background: var(--navy-2); border-color: rgba(255, 255, 255, .08); color: #CBD5E1; }
.card.dark h3 { color: #fff; }
.card.dark p { color: #94A3B8; }
.card.dark .icon { background: rgba(255, 255, 255, .07); color: var(--teal); }
.card .num { position: absolute; top: 1.2rem; right: 1.4rem; font-family: var(--font-head); font-weight: 700; font-size: 2.4rem; color: rgba(37, 99, 235, .08); line-height: 1; }
.card.dark .num { color: rgba(255, 255, 255, .06); }
.tag { display: inline-block; font-size: .74rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 999px; background: rgba(0, 194, 168, .12); color: #0B7F70; }
.card.dark .tag { background: rgba(0, 194, 168, .15); color: var(--teal); }

/* Trust bar */
.trust-bar { background: #fff; border-bottom: 1px solid var(--line); padding: 1.6rem 0; }
.trust-bar .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem 2rem; }
.trust-bar .t-lbl { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.trust-items { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; }
.trust-items span { font-weight: 600; color: var(--navy); font-size: .92rem; display: inline-flex; align-items: center; gap: .5rem; }
.trust-items span::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }

/* Marquee */
.marquee { overflow: hidden; white-space: nowrap; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee-track { display: inline-flex; gap: 3rem; padding-right: 3rem; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--navy); opacity: .7; display: inline-flex; align-items: center; gap: .9rem; }
.marquee-track span::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); opacity: .5; }
.section.navy .marquee-track span { color: #fff; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: left; padding: 1.6rem; border-radius: var(--radius); background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .08); }
.stat .val { font-family: var(--font-head); font-weight: 700; font-size: clamp(2.2rem, 4vw, 3.2rem); color: #fff; line-height: 1; letter-spacing: -.02em; }
.stat .val em { font-style: normal; color: var(--teal); }
.stat .lbl { color: #94A3B8; margin-top: .5rem; font-size: .92rem; }

/* Steps / process */
.steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; counter-reset: step; }
@media (max-width: 1024px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; z-index: 1; padding: 1.8rem 1.6rem 1.6rem; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step .n { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; color: #fff; background: linear-gradient(135deg, var(--blue), var(--teal)); margin-bottom: 1rem; box-shadow: 0 10px 20px -10px rgba(37, 99, 235, .8); }
.step .dur { font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); margin-bottom: .4rem; }
.step h3 { font-size: 1.15rem; }
.step p { color: var(--muted); font-size: .94rem; margin: 0; }
.steps-line { position: absolute; top: 3rem; left: 8%; right: 8%; height: 2px; background: linear-gradient(90deg, var(--blue), var(--teal)); opacity: .25; z-index: 0; }
@media (max-width: 1024px) { .steps-line { display: none; } }

/* Split sections */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split.rev .split-media { order: -1; } }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; aspect-ratio: 4/3; }
.split-media .float-card { position: absolute; right: -1rem; bottom: -1.5rem; background: #fff; border-radius: var(--radius-sm); padding: 1rem 1.2rem; box-shadow: var(--shadow-lg); border: 1px solid var(--line); max-width: 260px; }
.split-media .float-card strong { display: block; font-family: var(--font-head); color: var(--navy); font-size: 1.3rem; }
.split-media .float-card small { color: var(--muted); }
@media (max-width: 600px) { .split-media .float-card { right: .5rem; bottom: .5rem; padding: .7rem .9rem; } }
.check-list { list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: .7rem; }
.check-list li { display: flex; gap: .75rem; align-items: flex-start; }
.check-list li::before { content: ""; flex: none; width: 22px; height: 22px; border-radius: 50%; background: rgba(0, 194, 168, .15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B7F70' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/12px no-repeat; margin-top: 2px; }
.section.navy .check-list li::before { background-color: rgba(0, 194, 168, .2); }

/* Modalities diagram */
.modalities { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
@media (max-width: 900px) { .modalities { grid-template-columns: 1fr; } }
.mod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
@media (max-width: 600px) { .mod-grid { grid-template-columns: repeat(2, 1fr); } }
.mod { border-radius: var(--radius-sm); padding: 1rem .9rem; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .08); cursor: pointer; transition: background .3s, border-color .3s, transform .3s var(--ease); text-align: center; }
.mod:hover, .mod.active { background: rgba(0, 194, 168, .12); border-color: rgba(0, 194, 168, .5); transform: translateY(-3px); }
.mod svg { width: 28px; height: 28px; margin: 0 auto .5rem; color: var(--light); }
.mod span { display: block; font-size: .82rem; font-weight: 600; color: #fff; }
.mod-detail { min-height: 120px; padding: 1.4rem; border-radius: var(--radius); background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .08); margin-top: 1rem; }
.mod-detail h4 { color: var(--teal); margin-bottom: .3rem; }
.mod-detail p { margin: 0; color: #CBD5E1; font-size: .95rem; }
.spectro { width: 100%; height: 100%; border-radius: var(--radius); }

/* Federated diagram */
.fed-svg { width: 100%; height: auto; }
.fed-svg .link { stroke: var(--light); stroke-width: 1.5; stroke-dasharray: 6 8; fill: none; opacity: .7; animation: flow 2.4s linear infinite; }
.fed-svg .link.rev { animation-direction: reverse; stroke: var(--teal); }
@keyframes flow { to { stroke-dashoffset: -28; } }
.fed-svg .plant { fill: var(--navy-2); stroke: rgba(125, 211, 252, .5); stroke-width: 1.5; }
.fed-svg .hub { fill: url(#hubGrad); }
.fed-svg text { font: 600 11px var(--font-body); fill: #E2E8F0; text-anchor: middle; }
.fed-svg .lock { fill: var(--teal); }
.fed-svg .packet { fill: var(--teal); }
.fed-svg .packet.b { fill: var(--light); }

/* Case studies */
.case { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--radius); overflow: hidden; background: #fff; border: 1px solid var(--line); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.case:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.case img { width: 100%; height: 100%; object-fit: cover; min-height: 220px; }
.case .case-body { padding: 1.8rem; }
.case .case-body h3 { font-size: 1.15rem; }
.case .meta { font-size: .8rem; color: var(--muted); margin-bottom: .6rem; }
.case dl { margin: 1rem 0 0; display: grid; gap: .55rem; font-size: .92rem; }
.case dt { font-weight: 600; color: var(--navy); }
.case dd { margin: 0; color: var(--muted); }
@media (max-width: 640px) { .case { grid-template-columns: 1fr; } }

/* Industries */
.ind-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; display: flex; align-items: flex-end; color: #fff; isolation: isolate; }
.ind-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .8s var(--ease); }
.ind-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(11, 31, 59, .95) 0%, rgba(11, 31, 59, .55) 55%, rgba(11, 31, 59, .15) 100%); transition: opacity .4s; }
.ind-card:hover img { transform: scale(1.07); }
.ind-card .ind-body { padding: 1.5rem; }
.ind-card h3 { color: #fff; margin-bottom: .3rem; font-size: 1.15rem; }
.ind-card p { color: #CBD5E1; font-size: .9rem; margin: 0; max-height: 0; overflow: hidden; opacity: 0; transition: max-height .5s var(--ease), opacity .5s, margin .5s; }
.ind-card:hover p, .ind-card:focus-within p { max-height: 200px; opacity: 1; margin-top: .4rem; }
@media (hover: none) { .ind-card p { max-height: 200px; opacity: 1; margin-top: .4rem; } }
.ind-card .ind-link { position: absolute; inset: 0; z-index: 1; }

/* Industry page sections */
.ind-section { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; padding: 3rem 0; border-top: 1px solid var(--line); }
.ind-section:first-of-type { border-top: 0; }
.ind-section:nth-child(even) .ind-img { order: 2; }
@media (max-width: 900px) { .ind-section { grid-template-columns: 1fr; } .ind-section:nth-child(even) .ind-img { order: 0; } }
.ind-img img { border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; width: 100%; box-shadow: var(--shadow); }
.usecases { display: grid; gap: .6rem; margin: 1rem 0 0; padding: 0; list-style: none; }
.usecases li { padding: .7rem .9rem; border-radius: var(--radius-sm); background: var(--pale); border: 1px solid var(--line); font-size: .93rem; }
.usecases li strong { color: var(--navy); }

/* Why us */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }
.why { padding: 1.6rem; border-radius: var(--radius); background: var(--pale); border: 1px solid var(--line); }
.why strong { display: block; font-family: var(--font-head); color: var(--navy); margin-bottom: .35rem; font-size: 1.05rem; }
.why p { margin: 0; color: var(--muted); font-size: .93rem; }
.why .icon { width: 42px; height: 42px; border-radius: 12px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; color: var(--blue); margin-bottom: 1rem; }
.why .icon svg { width: 22px; height: 22px; }

/* Blog cards */
.post-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 1100px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .post-grid { grid-template-columns: 1fr; } }
.post { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease); height: 100%; }
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.post .thumb { aspect-ratio: 16/9; overflow: hidden; }
.post .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.post:hover .thumb img { transform: scale(1.06); }
.post .post-body { padding: 1.3rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.post .meta { font-size: .78rem; color: var(--muted); display: flex; gap: .6rem; flex-wrap: wrap; margin: .6rem 0 .5rem; }
.post h3 { font-size: 1.05rem; line-height: 1.35; margin-bottom: .5rem; }
.post h3 a { color: var(--navy); }
.post h3 a:hover { color: var(--blue); }
.post p { color: var(--muted); font-size: .9rem; margin: 0 0 1rem; flex: 1; }
.post .link-arrow { font-size: .9rem; }
.post-row-title { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin: 2.5rem 0 1.2rem; flex-wrap: wrap; }
.post-row-title h2 { font-size: 1.4rem; margin: 0; }
.post-row-title span { font-size: .85rem; color: var(--muted); }

/* Article */
.article-hero { position: relative; background: var(--navy); color: #fff; padding: calc(var(--header-h) + 3rem) 0 3rem; overflow: hidden; isolation: isolate; }
.article-hero .hero-bg { opacity: .3; }
.article-hero h1 { color: #fff; max-width: 900px; font-size: clamp(1.8rem, 3.6vw, 2.9rem); }
.article-hero .meta { color: #94A3B8; font-size: .88rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.article-hero .tag { background: rgba(0, 194, 168, .15); color: var(--teal); margin-bottom: 1rem; }
.article-cover { width: min(100% - 2rem, 1000px); margin: -2.5rem auto 0; position: relative; z-index: 2; }
.article-cover img { border-radius: var(--radius); aspect-ratio: 2/1; object-fit: cover; width: 100%; box-shadow: var(--shadow-lg); }
.article-cover small { display: block; text-align: right; color: var(--muted); font-size: .72rem; margin-top: .4rem; }
.article { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 3.5rem; padding: 3rem 0 4rem; }
@media (max-width: 1000px) { .article { grid-template-columns: 1fr; } }
.article-body { font-size: 1.06rem; line-height: 1.8; }
.article-body h2 { font-size: 1.6rem; margin-top: 2.2rem; }
.article-body h3 { font-size: 1.2rem; margin-top: 1.6rem; }
.article-body p.intro { font-size: 1.2rem; color: var(--muted); }
.article-body blockquote { margin: 1.8rem 0; padding: 1.2rem 1.5rem; border-left: 4px solid var(--teal); background: var(--pale); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-style: italic; color: var(--navy); }
.article-body ul, .article-body ol { padding-left: 1.3rem; }
.article-body li { margin-bottom: .45rem; }
.article-body .takeaways { background: var(--navy); color: #CBD5E1; border-radius: var(--radius); padding: 1.6rem 1.8rem; margin: 2rem 0; }
.article-body .takeaways h3 { color: var(--teal); margin-top: 0; }
.article-body .takeaways ul { margin: 0; }
.article-side { position: sticky; top: 100px; align-self: start; display: grid; gap: 1.3rem; }
.side-box { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; background: #fff; }
.side-box.navy { background: var(--navy); color: #CBD5E1; border-color: transparent; }
.side-box.navy h4 { color: #fff; }
.side-box h4 { margin-bottom: .6rem; }
.side-box ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.side-box li a { color: var(--navy); font-size: .92rem; font-weight: 500; display: block; }
.side-box li a:hover { color: var(--blue); }
.share { display: flex; gap: .5rem; flex-wrap: wrap; }
.share a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line); color: var(--navy); }
.share a:hover { background: var(--navy); color: #fff; }
.share svg { width: 16px; height: 16px; }
.author-box { display: flex; gap: 1rem; align-items: center; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.author-box .av { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--teal)); display: grid; place-items: center; color: #fff; font-family: var(--font-head); font-weight: 700; flex: none; }
.author-box strong { display: block; color: var(--navy); }
.author-box small { color: var(--muted); }

/* FAQ */
.faq { display: grid; gap: .8rem; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; padding: 0 1.3rem; transition: box-shadow .3s; }
.faq details[open] { box-shadow: var(--shadow); border-color: rgba(37, 99, 235, .3); }
.faq summary { list-style: none; cursor: pointer; padding: 1.1rem 2.2rem 1.1rem 0; font-family: var(--font-head); font-weight: 600; color: var(--navy); position: relative; font-size: 1.02rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 0; top: 50%; width: 22px; height: 22px; transform: translateY(-50%); border-radius: 50%; background: rgba(37, 99, 235, .1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563EB' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center/12px no-repeat; transition: transform .3s; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq .faq-a { padding: 0 0 1.2rem; color: var(--muted); }

/* CTA band */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(120deg, var(--navy) 0%, #12306A 60%, #0E3E63 100%); color: #fff; padding: clamp(3rem, 7vw, 5.5rem) 0; isolation: isolate; }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(600px 300px at 85% 30%, rgba(0, 194, 168, .25), transparent 70%), radial-gradient(500px 300px at 10% 90%, rgba(37, 99, 235, .35), transparent 70%); }
.cta-band .container { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: center; }
@media (max-width: 900px) { .cta-band .container { grid-template-columns: 1fr; } }
.cta-band h2 { color: #fff; }
.cta-band p { color: #CBD5E1; max-width: 560px; }
.cta-band .btn-row { justify-content: flex-end; }
@media (max-width: 900px) { .cta-band .btn-row { justify-content: flex-start; } }
.cta-waves { position: absolute; right: 0; bottom: 0; width: 60%; z-index: -1; opacity: .35; }

/* Waveform divider */
.wave-divider { display: flex; align-items: flex-end; justify-content: center; gap: 4px; height: 44px; margin: 0 auto; }
.wave-divider i { width: 4px; border-radius: 3px; background: linear-gradient(to top, var(--blue), var(--teal)); animation: bars 1.6s ease-in-out infinite; }
.wave-divider i:nth-child(odd) { animation-duration: 1.9s; }
@keyframes bars { 0%, 100% { height: 30%; opacity: .5; } 50% { height: 100%; opacity: 1; } }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: start; }
@media (max-width: 960px) { .contact-grid { grid-template-columns: 1fr; } }
.form { display: grid; gap: 1rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow); }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form .row { grid-template-columns: 1fr; } }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: .35rem; }
.field label small { color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea { width: 100%; padding: .8rem .95rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm); font: inherit; font-size: .95rem; color: var(--ink); background: #fff; transition: border-color .25s, box-shadow .25s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(37, 99, 235, .12); }
.field textarea { min-height: 130px; resize: vertical; }
.field .err { display: none; color: #DC2626; font-size: .8rem; margin-top: .3rem; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #DC2626; }
.field.invalid .err { display: block; }
.consent { display: flex; gap: .7rem; align-items: flex-start; font-size: .86rem; color: var(--muted); }
.consent input { width: 18px; height: 18px; margin-top: 2px; flex: none; accent-color: var(--blue); }
.honey { position: absolute; left: -9999px; opacity: 0; height: 0; }
.form-note { font-size: .8rem; color: var(--muted); }
.form-success { display: none; padding: 1.5rem; border-radius: var(--radius-sm); background: rgba(0, 194, 168, .1); border: 1px solid rgba(0, 194, 168, .4); color: #0B7F70; }
.contact-cards { display: grid; gap: 1rem; }
.contact-card { display: flex; gap: 1rem; padding: 1.3rem; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; align-items: flex-start; }
.contact-card .icon { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(37, 99, 235, .08); color: var(--blue); }
.contact-card .icon svg { width: 22px; height: 22px; }
.contact-card strong { display: block; color: var(--navy); margin-bottom: .2rem; }
.contact-card p, .contact-card a { margin: 0; font-size: .93rem; color: var(--muted); }
.contact-card a:hover { color: var(--blue); }
.timezone { padding: 1.3rem; border-radius: var(--radius); background: var(--navy); color: #CBD5E1; }
.timezone strong { color: #fff; display: block; margin-bottom: .4rem; }
.timezone .tz { display: flex; justify-content: space-between; gap: 1rem; padding: .5rem 0; border-top: 1px solid rgba(255, 255, 255, .08); font-size: .9rem; }
.timezone .tz b { color: var(--teal); font-weight: 600; }

/* About */
.founder { display: grid; grid-template-columns: 300px 1fr; gap: 2.5rem; align-items: center; }
@media (max-width: 800px) { .founder { grid-template-columns: 1fr; } }
.founder .photo { aspect-ratio: 4/5; border-radius: var(--radius); background: linear-gradient(160deg, var(--navy), var(--blue-dark)); display: grid; place-items: center; color: #fff; text-align: center; padding: 1.5rem; box-shadow: var(--shadow-lg); }
.founder .photo span { font-family: var(--font-head); font-size: 3.6rem; font-weight: 700; }
.founder .photo small { display: block; color: #94A3B8; font-size: .8rem; margin-top: .5rem; }
.founder .links { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 1rem; }
.founder .links a { font-size: .82rem; padding: .4rem .8rem; border-radius: 999px; border: 1px solid var(--line); color: var(--navy); font-weight: 500; }
.founder .links a:hover { border-color: var(--blue); color: var(--blue); }
.timeline { position: relative; display: grid; gap: 1.5rem; padding-left: 2rem; }
.timeline::before { content: ""; position: absolute; left: 8px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(to bottom, var(--blue), var(--teal)); opacity: .4; }
.timeline li { position: relative; list-style: none; }
.timeline li::before { content: ""; position: absolute; left: -2rem; top: 6px; width: 18px; height: 18px; border-radius: 50%; background: #fff; border: 3px solid var(--blue); }
.timeline li strong { color: var(--navy); display: block; font-family: var(--font-head); }
.timeline li span { color: var(--muted); font-size: .95rem; }
.dept { padding: 1.4rem; border-radius: var(--radius); background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .08); }
.dept h3 { color: var(--teal); font-size: 1rem; margin-bottom: .4rem; }
.dept p { margin: 0; font-size: .92rem; color: #CBD5E1; }
.pub { padding: 1.1rem 1.3rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; display: grid; gap: .25rem; }
.pub strong { color: var(--navy); font-size: .98rem; }
.pub span { color: var(--muted); font-size: .86rem; }

/* Services page */
.svc { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); padding: 3.5rem 0; border-top: 1px solid var(--line); align-items: start; scroll-margin-top: 90px; }
.svc:first-child { border-top: 0; }
@media (max-width: 900px) { .svc { grid-template-columns: 1fr; } }
.svc .svc-side { position: sticky; top: 100px; }
.svc .svc-side .icon { width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center; background: linear-gradient(135deg, var(--blue), var(--teal)); color: #fff; margin-bottom: 1.2rem; box-shadow: 0 16px 30px -14px rgba(37, 99, 235, .8); }
.svc .svc-side .icon svg { width: 30px; height: 30px; }
.svc h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.svc .who { padding: 1.1rem 1.3rem; border-radius: var(--radius-sm); background: var(--pale); border: 1px solid var(--line); font-size: .93rem; margin-top: 1.2rem; }
.svc .who strong { color: var(--navy); display: block; margin-bottom: .2rem; }
.svc .outcome { margin-top: 1.2rem; padding: 1.1rem 1.3rem; border-radius: var(--radius-sm); background: rgba(0, 194, 168, .08); border: 1px solid rgba(0, 194, 168, .3); font-size: .93rem; }
.svc .outcome strong { color: #0B7F70; display: block; margin-bottom: .2rem; }
.svc .dur { display: inline-block; font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--teal); margin-bottom: .6rem; }
.subnav { position: sticky; top: 68px; z-index: 50; background: rgba(255, 255, 255, .95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.subnav .container { display: flex; gap: .2rem; overflow-x: auto; padding: .6rem 1rem; scrollbar-width: none; }
.subnav .container::-webkit-scrollbar { display: none; }
.subnav a { white-space: nowrap; font-size: .85rem; font-weight: 500; color: var(--muted); padding: .5rem .9rem; border-radius: 999px; }
.subnav a:hover { color: var(--blue); background: rgba(37, 99, 235, .06); }

/* Legal */
.legal { padding: 3rem 0 4rem; }
.legal h2 { font-size: 1.35rem; margin-top: 2rem; }
.legal p, .legal li { color: var(--ink); }
.legal .placeholder { background: #FEF3C7; border: 1px dashed #F59E0B; padding: .1rem .4rem; border-radius: 4px; color: #92400E; font-size: .9em; }

/* ==========================================================================
   FOOTER (global)
   ========================================================================== */
.site-footer { background: var(--navy); color: #94A3B8; padding: 4rem 0 0; position: relative; overflow: hidden; }
.site-footer .footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255, 255, 255, .08); }
@media (max-width: 1000px) { .site-footer .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer .footer-top { grid-template-columns: 1fr; } }
.site-footer .f-brand img { width: 190px; margin-bottom: 1.2rem; }
.site-footer .f-brand p { font-size: .92rem; max-width: 340px; }
.site-footer h4 { color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.1rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.site-footer ul a { color: #CBD5E1; font-size: .93rem; }
.site-footer ul a:hover { color: var(--teal); }
.site-footer .f-contact li { display: flex; gap: .6rem; align-items: flex-start; font-size: .92rem; color: #CBD5E1; }
.site-footer .f-contact svg { width: 18px; height: 18px; flex: none; color: var(--teal); margin-top: 3px; }
.site-footer .social { display: flex; gap: .6rem; margin-top: 1.4rem; }
.site-footer .social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .15); display: grid; place-items: center; color: #CBD5E1; transition: background .3s, color .3s, border-color .3s; }
.site-footer .social a:hover { background: var(--teal); color: var(--navy); border-color: var(--teal); }
.site-footer .social svg { width: 16px; height: 16px; }
.site-footer .partner { margin-top: 1.4rem; font-size: .8rem; color: #94A3B8; }
.site-footer .partner strong { display: block; color: #E2E8F0; font-size: .9rem; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: .8rem 1.5rem; justify-content: space-between; align-items: center; padding: 1.4rem 0 1.6rem; font-size: .82rem; }
.footer-bottom .legal-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-bottom a { color: #94A3B8; }
.footer-bottom a:hover { color: #fff; }
.footer-wave { display: block; width: 100%; height: 60px; }

/* Floating widgets */
.whatsapp-float { position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 900; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: grid; place-items: center; color: #fff; box-shadow: 0 12px 30px -10px rgba(37, 211, 102, .8); transition: transform .3s var(--ease); }
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }
.whatsapp-float svg { width: 28px; height: 28px; }
.to-top { position: fixed; right: 1.4rem; bottom: 5.4rem; z-index: 900; width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 1px solid var(--line); color: var(--navy); display: grid; place-items: center; cursor: pointer; opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s; box-shadow: var(--shadow); }
.to-top.show { opacity: 1; pointer-events: auto; }
.to-top svg { width: 18px; height: 18px; }
.cookie { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 950; max-width: 560px; margin-inline: auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.3rem; box-shadow: var(--shadow-lg); display: none; gap: .8rem; align-items: center; flex-wrap: wrap; font-size: .86rem; color: var(--muted); }
.cookie.show { display: flex; }
.cookie p { margin: 0; flex: 1 1 260px; }
.cookie .btn { padding: .55rem 1rem; font-size: .84rem; }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; } .reveal.d2 { transition-delay: .2s; } .reveal.d3 { transition-delay: .3s; } .reveal.d4 { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--blue); color: #fff; padding: .6rem 1rem; border-radius: 8px; z-index: 2000; }
.skip-link:focus { left: 8px; }
.parallax-bg { position: absolute; inset: -15% 0; background-size: cover; background-position: center; z-index: -2; will-change: transform; opacity: .18; filter: saturate(.6); }
.section.navy.has-parallax { isolation: isolate; overflow: hidden; }
.section.navy.has-parallax::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(11, 31, 59, .85), rgba(11, 31, 59, .95)); }
.thanks { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: calc(var(--header-h) + 3rem) 1rem 4rem; }
.thanks .icon { width: 84px; height: 84px; border-radius: 50%; background: rgba(0, 194, 168, .12); display: grid; place-items: center; color: #0B7F70; margin: 0 auto 1.5rem; }
.thanks .icon svg { width: 40px; height: 40px; }

/* Mobile hero adjustments */
@media (max-width: 1024px) {
  .hero-scroll { display: none; }
  .hero { padding-bottom: 6.5rem; }
  .hero-chips { margin-bottom: 1rem; }
}
