/* ==========================================================================
   latency.css — Latency Design System v3.2
   Shared across all product pages. index.html (homepage) continues to embed
   this CSS inline. Do not rename tokens without updating both files.
   ========================================================================== */

/* ─────────────────────────────────────────
   TOKENS
───────────────────────────────────────── */
:root {
  --grape:      #4E00EB;
  --indigo:     #330099;
  --violet:     #9661FF;
  --lavender:   #D6C2FF;
  --mauve:      #EEE5FF;
  --deep-royal: #250066;
  --amethyst:   #824DFF;

  --parchment:  #F7F5F0;
  --bone:       #EFEDE7;
  --flax:       #E8D9B5;
  --sand:       #E2DFD5;
  --obsidian:   #1A181E;
  --umber:      #3C3530;
  --copper:     #915F3D;
  --amber:      #C88A3E;
  --candy:      #b32114;
  --flamingo:   #f7bfba;

  --midnight:   #111318;
  --dusk:       #2D3548;
  --lead:       #465063;
  --steel:      #687692;
  --silver:     #CFD4DD;
  --air:        #FFFFFF;

  --sp-xs:  4px;
  --sp-sm:  8px;
  --sp-md:  16px;
  --sp-lg:  24px;
  --sp-xl:  40px;
  --sp-2xl: 64px;
  --sp-3xl: 96px;
  --sp-4xl: 128px;

  --serif: 'Instrument Serif', Georgia, serif;
  --sans:  'Schibsted Grotesk', system-ui, sans-serif;
  --mono:  'Iosevka Charon', 'Courier New', monospace;

  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-precise: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─────────────────────────────────────────
   RESET
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--parchment);
  color: var(--obsidian);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─────────────────────────────────────────
   NAVIGATION
───────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 200; height: 64px;
  display: flex; align-items: center;
  padding: 0 var(--sp-2xl);
  transition: background 280ms var(--ease-out),
              box-shadow 280ms var(--ease-out),
              backdrop-filter 280ms;
}
.nav--transparent { background: transparent; }
.nav--solid {
  background: rgba(247, 245, 240, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(226,223,213,.45);
}

.nav__inner {
  width: 100%; max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: var(--sp-xl);
}

.nav__logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.nav__logo-wordmark { height: 24px; width: auto; transition: opacity 250ms; }
.nav--transparent .nav__logo-wordmark path { fill: white; }
.nav--solid .nav__logo-wordmark path { fill: var(--grape); }

.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav__item { position: relative; }
.nav__link-btn {
  display: flex; align-items: center; gap: 4px;
  font-size: 14px; letter-spacing: -0.01em;
  padding: 8px 12px; border-radius: 6px;
  cursor: pointer; background: none; border: none;
  font-family: var(--sans);
  transition: color 150ms, background 150ms;
}
.nav--transparent .nav__link-btn { color: rgba(255,255,255,.78); }
.nav--transparent .nav__link-btn:hover { color: var(--air); background: rgba(255,255,255,.08); }
.nav--solid .nav__link-btn { color: var(--lead); }
.nav--solid .nav__link-btn:hover { color: var(--obsidian); background: var(--mauve); }

.nav__chevron {
  width: 11px; height: 11px; flex-shrink: 0;
  transition: transform 200ms var(--ease-out);
}
.nav__item--open .nav__chevron { transform: rotate(180deg); }

.nav__dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 216px;
  background: var(--air); border: 1px solid var(--sand);
  border-radius: 10px; padding: 6px;
  box-shadow: 0 8px 28px rgba(0,0,0,.11), 0 2px 6px rgba(0,0,0,.05);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 170ms var(--ease-out), transform 170ms var(--ease-out), visibility 170ms;
}
.nav__item--open .nav__dropdown {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
}
.nav__dropdown-group { padding: 4px 8px 6px; }
.nav__dropdown-label {
  display: block; padding: 4px 4px 6px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--steel);
}
.nav__dropdown a {
  display: block; padding: 8px 10px; border-radius: 6px;
  font-size: 13.5px; color: var(--lead); letter-spacing: -0.01em;
  transition: background 120ms, color 120ms;
}
.nav__dropdown a:hover { background: var(--mauve); color: var(--grape); }
.nav__drop-item--active { background: var(--mauve) !important; color: var(--grape) !important; font-weight: 600; }

.nav__mega {
  position: absolute; top: calc(100% + 8px); left: 0;
  width: 400px;
  background: var(--air); border: 1px solid var(--sand);
  border-radius: 10px; padding: 16px;
  box-shadow: 0 8px 28px rgba(0,0,0,.11), 0 2px 6px rgba(0,0,0,.05);
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-md);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 170ms var(--ease-out), transform 170ms var(--ease-out), visibility 170ms;
}
.nav__item--open .nav__mega {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
}
.nav__mega-label {
  display: block; padding: 0 4px 8px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--steel);
}
.nav__mega a {
  display: block; padding: 7px 10px; border-radius: 6px;
  font-size: 13px; color: var(--lead); letter-spacing: -0.01em;
  transition: background 120ms, color 120ms;
}
.nav__mega a:hover { background: var(--mauve); color: var(--grape); }

.nav__ctas { display: flex; align-items: center; gap: var(--sp-md); margin-left: auto; }
.nav__login {
  font-size: 14px; letter-spacing: -0.01em; cursor: pointer;
  transition: color 150ms; padding: 8px 4px;
}
.nav--transparent .nav__login { color: rgba(255,255,255,.65); }
.nav--transparent .nav__login:hover { color: var(--air); }
.nav--solid .nav__login { color: var(--lead); }
.nav--solid .nav__login:hover { color: var(--obsidian); }

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: var(--sp-sm);
  padding: 12px 24px; border-radius: 6px;
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  letter-spacing: -0.01em; line-height: 1; white-space: nowrap;
  border: 1.5px solid transparent;
  transition: background 150ms, border-color 150ms, color 150ms;
  cursor: pointer;
}
.btn--sm { padding: 10px 20px; font-size: 13px; }

.btn--primary { background: var(--grape); color: var(--air); border-color: var(--grape); }
.btn--primary:hover { background: var(--indigo); border-color: var(--indigo); }

.btn--ghost { background: transparent; color: var(--grape); border-color: var(--grape); }
.btn--ghost:hover { background: rgba(78,0,235,.06); }

.btn--ghost-light {
  background: transparent; color: var(--air);
  border-color: rgba(255,255,255,.32);
}
.btn--ghost-light:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); }

.btn--ghost-dark {
  background: transparent; color: var(--flax);
  border-width: 1.5px; border-color: rgba(232,217,181,.40);
}
.btn--ghost-dark:hover {
  background: rgba(232,217,181,.08);
  box-shadow: 0 4px 12px rgba(0,0,0,.20);
  border-color: rgba(232,217,181,.70);
  transform: translateY(-1px);
}

.btn--ghost-deep-royal {
  background: var(--deep-royal); color: var(--flax);
  border-width: 1.5px; border-color: rgba(232,217,181,.35);
}
.btn--ghost-deep-royal:hover {
  background: #330088;
  border-color: rgba(232,217,181,.65);
  box-shadow: 0 4px 20px rgba(37,0,102,.45);
  transform: translateY(-1px);
}

.nav--transparent .btn--primary {
  background: rgba(255,255,255,.11); border-color: rgba(255,255,255,.26); color: var(--air);
}
.nav--transparent .btn--primary:hover { background: rgba(255,255,255,.2); }
.nav--solid .btn--primary { background: var(--grape); border-color: var(--grape); color: var(--air); }
.nav--solid .btn--primary:hover { background: var(--indigo); border-color: var(--indigo); }

/* ── Shimmer button */
.btn--shimmer {
  position: relative; overflow: hidden;
  background: var(--grape); color: var(--air); border-color: var(--grape);
}
.btn--shimmer:hover { background: var(--indigo); border-color: var(--indigo); }
.btn--shimmer::before {
  content: '';
  position: absolute; top: 0; left: -80%; width: 48%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.22) 50%, transparent 100%);
  animation: shimmer-sweep 2.8s ease-in-out infinite 0.6s;
  pointer-events: none;
}
@keyframes shimmer-sweep {
  0%,18% { left: -80%; }
  68%,100% { left: 160%; }
}

/* ── Pulse CTA */
.btn--pulse {
  background: var(--grape); color: var(--air); border-color: var(--grape);
  animation: pulse-glow 2.5s ease-in-out infinite;
}
.btn--pulse:hover { background: var(--indigo); border-color: var(--indigo); }
@keyframes pulse-glow {
  0%,  100% { box-shadow: rgba(78,0,235,.45) 0 0 0 0; }
  50%        { box-shadow: rgba(78,0,235,0)   0 0 0 14px; }
}

/* ── Coverage chips */
.chip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px; border-radius: 100px; white-space: nowrap;
  font-size: 11px; font-weight: 600; letter-spacing: 0.03em; line-height: 1.6;
  border: 1px solid;
}
.chip__dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.chip--grape { color: var(--grape); border-color: rgba(78,0,235,.2); background: rgba(78,0,235,.05); }
.chip--grape .chip__dot { background: var(--grape); }
.chip--amber { color: var(--amber); border-color: rgba(200,138,62,.25); background: rgba(200,138,62,.06); }
.chip--amber .chip__dot { background: var(--amber); }
.chip--violet { color: var(--amethyst); border-color: rgba(130,77,255,.25); background: rgba(130,77,255,.06); }
.chip--violet .chip__dot { background: var(--amethyst); }

/* ─────────────────────────────────────────
   SHARED SECTION UTILITIES
───────────────────────────────────────── */
.overline {
  display: block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--steel); margin-bottom: var(--sp-lg);
}
.overline--grape { color: var(--grape); }
.overline--amber { color: var(--amber); }

/* Scan mark — underline reveal */
.scan-mark {
  background: none; color: var(--obsidian); font-weight: 600;
  position: relative;
}
.scan-mark::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0; height: 2px;
  background: var(--grape);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.75s var(--ease-out);
}
.scan-on .scan-mark::after,
.visible .scan-mark::after { transform: scaleX(1); }

/* text-mark — background sweep highlight */
.text-mark { position: relative; display: inline-block; }
.text-mark__bg {
  position: absolute; inset: -2px -3px; border-radius: 3px;
  background: rgba(247,191,186,.55);
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0.75s cubic-bezier(0.16,1,0.3,1);
  z-index: 0;
}
.text-mark.is-highlighted .text-mark__bg { transform: scaleX(1); }
.text-mark__txt { position: relative; z-index: 1; font-weight: 600; color: var(--obsidian); }

/* Signal Gradient text */
.signal-gradient-text {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400; line-height: 1.1; letter-spacing: -0.01em;
  background: linear-gradient(92deg, var(--grape) 0%, var(--amethyst) 55%, var(--violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─────────────────────────────────────────
   LOGO STRIP — Albufera marquee component
───────────────────────────────────────── */
.proof-bar {
  background: #fff;
  position: relative;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  padding: var(--sp-md) 0 var(--sp-lg);
}
.proof-bar::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(60,53,48,.10);
  pointer-events: none; z-index: 2;
}
.proof-bar__label {
  display: block; text-align: center;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--steel);
  margin-bottom: var(--sp-lg);
}
.proof-bar__inner {
  max-width: 1280px; margin: 0 auto;
  overflow: hidden; position: relative;
}
.proof-bar__inner::before,
.proof-bar__inner::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 3;
  pointer-events: none;
}
.proof-bar__inner::before { left: 0; background: linear-gradient(to right, color-mix(in srgb, var(--umber) 10%, #fff), transparent); }
.proof-bar__inner::after  { right: 0; background: linear-gradient(to left,  color-mix(in srgb, var(--umber) 10%, #fff), transparent); }

.logo-strip { width: 100%; overflow: visible; }
.logo-strip__track {
  display: flex; align-items: center;
  width: max-content;
  animation: marquee-run 32s linear infinite;
}
@keyframes marquee-run {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-strip__logo {
  height: 32px; width: auto; max-width: 140px;
  object-fit: contain; flex-shrink: 0;
  margin-right: 56px;
  opacity: 0.55; transition: opacity 200ms;
}
.logo-strip__logo:hover { opacity: 0.9; }

/* ─────────────────────────────────────────
   BENTO GRID — Albufera Featured grid
───────────────────────────────────────── */
.bento-grid {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto;
  gap: 12px; width: 100%;
}
.bento-cell {
  border-radius: 10px; padding: 12px 20px;
  border: 1px solid var(--sand); background: var(--air);
  display: flex; flex-direction: column; gap: var(--sp-sm);
  position: relative; overflow: hidden;
}
.bento-bg {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none; border-radius: inherit;
}
.bento-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 2px; flex: 1;
}
.bento-cell--dark {
  background: var(--deep-royal); border-color: transparent;
  grid-area: 1 / 1 / span 2;
}
.bento-cell--bone { background: var(--bone); }
.bento-cell--grape { background: var(--grape); border-color: transparent; }

.dot-grid {
  background-image: radial-gradient(circle, rgba(255,255,255,.22) 1px, transparent 1px);
  background-size: 22px 22px;
}
.signal-grid {
  background-image: linear-gradient(var(--lead) 1px, transparent 1px),
    linear-gradient(90deg, var(--lead) 1px, transparent 1px);
  background-size: 32px 32px; opacity: 0.06;
}
.dot-pattern {
  background-image: radial-gradient(circle, var(--steel) 1px, transparent 1px);
  background-size: 24px 24px; background-color: var(--parchment); opacity: 0.35;
}
.dot-pattern--dark {
  background-image: radial-gradient(circle, rgba(130,77,255,.5) 1px, transparent 1px);
  opacity: 0.3; background-color: transparent;
}
.warm-surface-bg {
  background-color: var(--parchment);
  background-image:
    radial-gradient(ellipse at 15% 25%, rgba(200,138,62,.10) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 75%, rgba(232,217,181,.30) 0%, transparent 52%),
    radial-gradient(ellipse at 50% 50%, rgba(78,0,235,.04) 0%, transparent 60%);
  background-size: 130% 130%, 150% 150%, 170% 170%;
  animation: mesh-shift 8s ease infinite;
}

.bento-stat {
  font-family: var(--serif); font-size: 3.75rem; font-weight: 400;
  letter-spacing: -0.03em; line-height: 1; color: var(--air);
  margin: 2px 0; display: block;
}
.bento-cell .overline { color: var(--amber); }
.bento-cell--dark p { color: rgba(255,255,255,.65); font-size: 0.8125rem; line-height: 1.35; }
.bento-cell p { font-size: 0.8125rem; line-height: 1.35; }

@property --bento-beam-angle { syntax: '<angle>'; inherits: false; initial-value: 0deg; }
.bento-cell--beam::before {
  content: ''; position: absolute; inset: 0;
  border-radius: inherit; padding: 1.5px;
  background: conic-gradient(
    from var(--bento-beam-angle) at 50% 50%,
    transparent 0deg,
    rgba(78,0,235,.9) 35deg,
    rgba(130,77,255,1) 55deg,
    transparent 90deg
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: bento-beam-spin 4s linear infinite; z-index: 3; pointer-events: none;
}
@keyframes bento-beam-spin { 100% { --bento-beam-angle: 360deg; } }

.bento-fade {
  opacity: 0; filter: blur(10px); transform: translateY(14px);
  transition: opacity .75s cubic-bezier(.16,1,.3,1), filter .75s cubic-bezier(.16,1,.3,1), transform .75s cubic-bezier(.16,1,.3,1);
}
.bento-fade.in-view { opacity: 1; filter: none; transform: none; }

/* ─────────────────────────────────────────
   BEAM BORDER CARDS — Albufera conic-gradient card
───────────────────────────────────────── */
.beam-card {
  position: relative; border-radius: 10px;
  padding: 1.5px; overflow: hidden;
  text-decoration: none; display: block;
}
.beam-card::before {
  content: '';
  position: absolute;
  width: 200%; height: 200%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent     0deg,
    rgba(78,0,235,.75)  45deg,
    rgba(130,77,255,.5) 75deg,
    transparent    110deg,
    transparent    180deg,
    rgba(78,0,235,.5)  225deg,
    rgba(130,77,255,.3) 255deg,
    transparent    290deg
  );
  opacity: 0; transition: opacity 320ms;
  animation: beam-rotate 4s linear infinite;
  animation-play-state: paused;
}
.beam-card:hover::before { opacity: 1; animation-play-state: running; }
@keyframes beam-rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
.beam-card__inner {
  position: relative; z-index: 1;
  background: var(--bone); border-radius: 9px;
  padding: var(--sp-2xl);
  display: flex; flex-direction: column; gap: var(--sp-md);
  border: 1px solid rgba(78,0,235,.08);
  transition: border-color 320ms;
  height: 100%;
}
.beam-card:hover .beam-card__inner { border-color: transparent; }

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
.testimonials {
  padding: var(--sp-4xl) var(--sp-2xl);
  background: var(--deep-royal); position: relative; overflow: hidden;
}
.testimonials::before {
  content: ''; position: absolute; top: -30%; right: -5%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(130,77,255,.07) 0%, transparent 65%);
  pointer-events: none;
}
.testimonials__inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-xl); }
.testimonial { display: flex; flex-direction: column; gap: var(--sp-xl); }
.testimonial__quote {
  font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.5rem); font-style: italic;
  line-height: 1.5; letter-spacing: -0.01em; color: var(--flax); flex: 1;
}
.testimonial__quote::before { content: '\2018'; color: var(--amethyst); margin-right: 2px; }
.testimonial__quote::after  { content: '\2019'; color: var(--amethyst); margin-left:  2px; }
.testimonial__source {
  display: flex; align-items: center; gap: var(--sp-md);
  border-top: 1px solid rgba(255,255,255,.08); padding-top: var(--sp-lg);
}
.testimonial__avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: rgba(130,77,255,.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; letter-spacing: 0.05em; color: var(--lavender);
}
.testimonial__name  { font-size: 14px; font-weight: 600; color: var(--air); display: block; margin-bottom: 2px; }
.testimonial__role  { font-size: 13px; color: rgba(255,255,255,.42); display: block; }
.testimonial__stat  { font-family: var(--mono); font-size: 12px; color: var(--amber); letter-spacing: 0.04em; display: block; margin-top: 4px; }

/* ─────────────────────────────────────────
   CTA FINAL
───────────────────────────────────────── */
.cta-final {
  padding: var(--sp-4xl) var(--sp-2xl);
  background: var(--deep-royal);
  border-top: 1px solid rgba(255,255,255,.06);
  position: relative; overflow: hidden;
}

/* Orbit background — Albufera circular motion component */
.orbit-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; z-index: 0;
}
.orbit-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(130,77,255,.09);
  animation: orbit-spin var(--speed, 12s) linear infinite;
}
.orbit-ring::after {
  content: '';
  position: absolute; top: -4px; left: calc(50% - 4px);
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--amethyst); opacity: 0.6;
  box-shadow: 0 0 10px 3px rgba(130,77,255,.35);
}
.orbit-ring--1 { width: 240px; height: 240px; --speed: 8s; }
.orbit-ring--2 { width: 420px; height: 420px; --speed: 15s; animation-direction: reverse; }
.orbit-ring--3 { width: 620px; height: 620px; --speed: 24s; }
.orbit-ring--4 { width: 860px; height: 860px; --speed: 37s; animation-direction: reverse; }
@keyframes orbit-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.cta-final__inner {
  max-width: 1280px; margin: 0 auto; position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: var(--sp-xl);
}
.cta-final__headline {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 400; line-height: 1.08; letter-spacing: -0.01em;
  color: var(--air); max-width: 680px;
}
.cta-final__sub {
  font-size: 18px; line-height: 1.68;
  color: rgba(255,255,255,.65); max-width: 480px;
}
.cta-final__scan-wrap .scan-mark { color: var(--flax); }
.cta-final__scan-wrap .scan-mark::after { background: var(--amethyst); }
.cta-final__actions {
  display: flex; align-items: center; gap: var(--sp-md); flex-wrap: wrap; justify-content: center;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer { background: var(--obsidian); padding: var(--sp-3xl) var(--sp-2xl) var(--sp-xl); }
.footer__inner { max-width: 1280px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--sp-2xl); }
.footer__top { display: grid; grid-template-columns: 220px 1fr; gap: var(--sp-4xl); }
.footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: var(--sp-md); }
.footer__tagline { font-family: var(--serif); font-size: 14px; font-style: italic; color: rgba(255,255,255,.35); }
.footer__nav { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-xl); }
.footer__col-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,.28); margin-bottom: var(--sp-md); display: block;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: var(--sp-sm); }
.footer__link { font-size: 14px; color: rgba(255,255,255,.52); letter-spacing: -0.01em; transition: color 150ms; }
.footer__link:hover { color: var(--air); }
.footer__link--disabled { color: rgba(255,255,255,.22); cursor: default; pointer-events: none; }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.07); padding-top: var(--sp-xl);
}
.footer__copy { font-size: 12px; color: rgba(255,255,255,.28); }
.footer__legal { display: flex; gap: var(--sp-xl); }
.footer__legal-link { font-size: 12px; color: rgba(255,255,255,.28); cursor: pointer; transition: color 150ms; }
.footer__legal-link:hover { color: rgba(255,255,255,.55); }

/* ─────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(52px);
  transition:
    opacity  750ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 750ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--rd, 0ms);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal--left  { transform: translateX(-68px); }
.reveal--right { transform: translateX(68px); }
.reveal--scale { transform: scale(0.88) translateY(24px); }
.reveal--fade  { transform: none; }
.reveal-d1 { --rd: 110ms; }
.reveal-d2 { --rd: 220ms; }
.reveal-d3 { --rd: 330ms; }
.reveal-d4 { --rd: 440ms; }

/* ─────────────────────────────────────────
   SIGNAL FLOW — Albufera beam/node SVG component
───────────────────────────────────────── */
.signal-flow { width: 100%; padding: var(--sp-lg) 0; margin-bottom: var(--sp-2xl); }
.signal-flow-svg { display: block; width: 100%; height: auto; }
.beam-node { filter: drop-shadow(0 4px 12px rgba(78,0,235,.25)); }
.beam-path {
  stroke-dasharray: 6 4; stroke-dashoffset: 0;
  animation: path-dash 1s linear infinite;
}
@keyframes path-dash { to { stroke-dashoffset: -10; } }
@keyframes sf-ripple {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(0.9); }
}
.sf-ripple {
  transform-box: fill-box; transform-origin: center;
  animation: sf-ripple 2s ease infinite;
}

/* ─────────────────────────────────────────
   WARM SURFACE — Albufera animated gradient mesh
───────────────────────────────────────── */
@keyframes mesh-shift {
  0%   { background-position: 0% 0%, 100% 100%, 50% 0%; }
  50%  { background-position: 100% 50%, 0% 50%, 50% 100%; }
  100% { background-position: 0% 0%, 100% 100%, 50% 0%; }
}

/* ─────────────────────────────────────────
   MOCK SCREENS — product placeholder components
───────────────────────────────────────── */
.mock-screen {
  background: #0d0b1a;
  border-radius: 12px;
  border: 1px solid rgba(78,0,235,.28);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.45), 0 4px 16px rgba(78,0,235,.12);
}
.mock-screen--tall { min-height: 320px; }
.mock-screen--short { min-height: 200px; }
.mock-screen__chrome {
  height: 36px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(78,0,235,.18);
  display: flex; align-items: center;
  padding: 0 14px; gap: 10px;
}
.mock-screen__dots { display: flex; gap: 5px; }
.mock-screen__dots span {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,.1);
}
.mock-screen__url {
  font-size: 10px; color: rgba(255,255,255,.22);
  font-family: 'Courier New', monospace; letter-spacing: 0.02em;
}
.mock-screen__body {
  padding: 20px 24px;
  display: flex; flex-direction: column; gap: 10px;
  min-height: 180px; position: relative;
}
.mock-row {
  height: 8px; border-radius: 4px;
  background: rgba(78,0,235,.1);
}
.mock-row--header { height: 18px; background: rgba(130,77,255,.18); width: 58%; margin-bottom: 6px; }
.mock-row--subheader { height: 12px; background: rgba(78,0,235,.14); width: 40%; }
.mock-row--full { width: 100%; }
.mock-row--lg { width: 88%; }
.mock-row--md { width: 72%; }
.mock-row--sm { width: 50%; }
.mock-row--xs { width: 35%; }
.mock-row--gap { height: 12px; background: transparent; }
.mock-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 4px; }
.mock-card {
  background: rgba(78,0,235,.06);
  border: 1px solid rgba(78,0,235,.14);
  border-radius: 6px; padding: 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.mock-stat { font-size: 22px; font-family: var(--serif); color: rgba(130,77,255,.6); font-weight: 400; }
.mock-label {
  font-size: 10px; color: rgba(255,255,255,.18);
  font-family: 'Courier New', monospace; text-align: center;
  margin-top: 8px;
}
.mock-tag {
  display: inline-block; padding: 2px 8px; border-radius: 100px;
  font-size: 9px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  background: rgba(78,0,235,.15); color: rgba(130,77,255,.7);
  border: 1px solid rgba(78,0,235,.2); align-self: flex-start;
}
.mock-chip-row { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px; }
.mock-chip {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 8px; border-radius: 100px;
  font-size: 9px; color: rgba(130,77,255,.65);
  border: 1px solid rgba(78,0,235,.2); background: rgba(78,0,235,.06);
  font-family: var(--mono);
}

/* ─────────────────────────────────────────
   REDUCED MOTION
───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal--left, .reveal--right,
  .reveal--scale, .reveal--fade { opacity: 1; transform: none; transition: none; }
  .hero__headline, .hero__subs, .hero__ctas { opacity: 1; transform: none; }
  .btn--shimmer::before, .btn--pulse,
  .orbit-ring, .logo-strip__track,
  .bento-cell--beam::before,
  .beam-card::before { animation: none; }
  .bento-fade { opacity: 1; filter: none; transform: none; }
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 0 var(--sp-lg); }
  .nav__links { display: none; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-cell--dark { grid-area: auto; }
  .testimonials { padding: var(--sp-3xl) var(--sp-lg); }
  .testimonials__grid { grid-template-columns: 1fr; gap: var(--sp-2xl); }
  .cta-final { padding: var(--sp-3xl) var(--sp-lg); }
  .footer { padding: var(--sp-3xl) var(--sp-lg) var(--sp-xl); }
  .footer__top { grid-template-columns: 1fr; gap: var(--sp-2xl); }
  .footer__nav { grid-template-columns: 1fr 1fr; }
}
