/* =============================================================
   ANGUX — styles.css
   Palette (exclusive): #D6D6D6 · #FFEE32 · #FFD100 · #202020 · #333333
   Everything else is a transparency of those five colors.
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  color-scheme: dark;
  /* brand palette */
  --c-gray:   #D6D6D6;
  --c-yellow: #FFEE32;
  --c-gold:   #FFD100;
  --c-black:  #202020;
  --c-carbon: #333333;

  /* semantic (dark base) */
  --bg:        var(--c-black);
  --surface:   var(--c-carbon);
  --text:      var(--c-gray);
  --text-2:    rgba(214, 214, 214, .72);
  --text-3:    rgba(214, 214, 214, .56);
  --line:      rgba(214, 214, 214, .10);
  --line-2:    rgba(214, 214, 214, .18);
  --glass:     rgba(51, 51, 51, .55);
  --accent:    var(--c-yellow);
  --accent-2:  var(--c-gold);
  --accent-soft: rgba(255, 238, 50, .10);
  --accent-glow: rgba(255, 209, 0, .18);

  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: "Sora", "Inter", system-ui, sans-serif;

  --radius: 18px;
  --radius-sm: 12px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(5rem, 11vw, 9rem);
  --nav-h: 72px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
  overflow-x: clip;
  background: var(--bg);
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg, video, canvas { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; list-style: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { font-family: var(--display); text-wrap: balance; letter-spacing: -0.025em; line-height: 1.08; font-weight: 700; }
fieldset { border: 0; padding: 0; min-width: 0; }
[hidden] { display: none !important; }
::selection { background: var(--c-yellow); color: var(--c-black); }
:focus-visible { outline: 2px solid var(--c-yellow); outline-offset: 3px; border-radius: 6px; }

.i { width: 1.15em; height: 1.15em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: 100%; max-width: 1240px; margin-inline: auto; padding-inline: var(--gutter); }
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .6rem 1rem; background: var(--c-yellow); color: var(--c-black);
  border-radius: 10px; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

.glass {
  background: rgba(51, 51, 51, .92);
  border: 1px solid var(--line-2);
}
@supports (backdrop-filter: blur(12px)) {
  .glass {
    background: var(--glass);
    -webkit-backdrop-filter: blur(18px) saturate(120%);
    backdrop-filter: blur(18px) saturate(120%);
  }
}

.hl {
  color: var(--c-yellow);
  background: linear-gradient(100deg, var(--c-yellow), var(--c-gold));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-size: .78rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--c-yellow);
  margin-bottom: 1.1rem;
}
.kicker::before { content: ""; width: 22px; height: 1.5px; background: currentColor; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .45rem .9rem .45rem .75rem; border-radius: 999px;
  border: 1px solid var(--line-2); background: rgba(51, 51, 51, .5);
  font-size: .8rem; font-weight: 500; color: var(--text-2);
  margin-bottom: 1.6rem;
}
.pulse-dot {
  position: relative; width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-yellow); flex: none;
}
.pulse-dot::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 1.5px solid var(--c-yellow); opacity: 0;
  animation: ping 2.4s var(--ease-out) infinite;
}
@keyframes ping { 0% { transform: scale(.4); opacity: .9; } 100% { transform: scale(1.8); opacity: 0; } }

/* =============================================================
   4. Typography helpers
   ============================================================= */
.section-title { font-size: clamp(2rem, 4.4vw, 3.4rem); max-width: 20ch; }
.section-lead { font-size: clamp(1rem, 1.3vw, 1.125rem); color: var(--text-2); max-width: 56ch; margin-top: 1.2rem; }
.section-head { display: grid; gap: 1.5rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { justify-items: center; text-align: center; }
.section-head.center .section-title { max-width: 22ch; }
.section-head.center .kicker::before { display: none; }

/* =============================================================
   5. Components
   ============================================================= */
/* Buttons */
.btn {
  --b-bg: transparent; --b-fg: var(--text); --b-bd: var(--line-2);
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 48px; padding: .8rem 1.4rem; border-radius: 999px;
  font-family: var(--display); font-weight: 600; font-size: .95rem; letter-spacing: -0.005em;
  color: var(--b-fg); background: var(--b-bg); border: 1px solid var(--b-bd);
  transition: transform .35s var(--ease-out), background-color .3s var(--ease-out), border-color .3s, box-shadow .35s var(--ease-out), color .3s;
  white-space: nowrap;
}
.btn .i { transition: transform .35s var(--ease-out); }
.btn:hover .i { transform: translateX(3px); }
.btn:active { transform: scale(.98); }
.btn-primary { --b-bg: var(--c-yellow); --b-fg: var(--c-black); --b-bd: var(--c-yellow); box-shadow: 0 0 0 0 var(--accent-glow); }
.btn-primary:hover { --b-bg: var(--c-gold); --b-bd: var(--c-gold); box-shadow: 0 10px 36px -8px rgba(255, 209, 0, .45); transform: translateY(-2px); }
.btn-ghost:hover { --b-bd: var(--c-gray); background: rgba(214, 214, 214, .06); }
.btn-dark { --b-bg: var(--c-black); --b-fg: var(--c-gray); --b-bd: var(--c-black); }
.btn-dark:hover { --b-bg: var(--c-carbon); --b-bd: var(--c-carbon); transform: translateY(-2px); }
.btn-sm { min-height: 40px; padding: .5rem 1.1rem; font-size: .88rem; }
.btn-lg { min-height: 56px; padding: 1rem 1.7rem; font-size: 1rem; }
.btn-block { width: 100%; white-space: normal; text-align: center; }

/* Chips / filters */
.filters { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  padding: .55rem 1rem; border-radius: 999px; border: 1px solid var(--line-2);
  font-size: .86rem; font-weight: 500; color: var(--text-2);
  transition: all .3s var(--ease-out);
}
.chip:hover { color: var(--text); border-color: rgba(214, 214, 214, .4); }
.chip.is-active { background: var(--c-gray); color: var(--c-black); border-color: var(--c-gray); }

/* Form fields */
.field { display: grid; gap: .5rem; }
.field label, .field legend { font-size: .85rem; font-weight: 500; color: var(--text-2); }
.field legend { margin-bottom: .6rem; }
.field .opt { color: var(--text-3); font-weight: 400; }
.field input[type="text"], .field input[type="tel"], .field input[type="email"], .field select, .field textarea {
  width: 100%; min-height: 50px; padding: .8rem 1rem; border-radius: var(--radius-sm);
  background: rgba(32, 32, 32, .7); border: 1px solid var(--line-2); color: var(--text);
  font-size: 1rem; transition: border-color .25s, box-shadow .25s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field select {
  appearance: none; -webkit-appearance: none; padding-right: 2.5rem; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D6D6D6' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .9rem center; background-size: 18px;
}
.field select option { background: var(--c-carbon); color: var(--c-gray); }
.field ::placeholder { color: rgba(214, 214, 214, .38); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--c-yellow); box-shadow: 0 0 0 4px rgba(255, 238, 50, .12); }
.field input[aria-invalid="true"] { border-color: var(--c-gold); box-shadow: 0 0 0 4px rgba(255, 209, 0, .14); }

.checks { display: flex; flex-wrap: wrap; gap: .5rem; }
.check { position: relative; cursor: pointer; }
.check input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.check span {
  display: inline-flex; align-items: center; gap: .45rem; padding: .55rem .95rem; border-radius: 999px;
  border: 1px solid var(--line-2); font-size: .88rem; color: var(--text-2); transition: all .25s var(--ease-out);
}
.check span::before {
  content: ""; width: 14px; height: 14px; border-radius: 4px; border: 1.5px solid rgba(214, 214, 214, .45);
  transition: all .25s var(--ease-out);
}
.check input:checked + span { color: var(--text); border-color: rgba(255, 238, 50, .6); background: var(--accent-soft); }
.check input:checked + span::before {
  background: var(--c-yellow) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23202020' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center / 11px no-repeat;
  border-color: var(--c-yellow);
}
.check input:focus-visible + span { outline: 2px solid var(--c-yellow); outline-offset: 2px; }

/* =============================================================
   6. Sections
   ============================================================= */
.section { position: relative; padding-block: var(--section-y); }

/* ---------- NAV ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: calc(var(--nav-h) + env(safe-area-inset-top, 0px)); padding-top: env(safe-area-inset-top, 0px);
  transition: background-color .4s var(--ease-out), border-color .4s, transform .45s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled { background: rgba(32, 32, 32, .94); border-color: var(--line); }
@supports (backdrop-filter: blur(12px)) {
  .nav.is-scrolled { background: rgba(32, 32, 32, .72); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); }
}
.nav.is-hidden { transform: translateY(-100%); }
.nav-inner { height: 100%; display: flex; align-items: center; gap: 2rem; }
.nav-logo img { height: 26px; width: auto; }
.nav-links { display: none; gap: 2rem; margin-left: auto; }
.nav-links a { position: relative; font-size: .92rem; color: var(--text-2); transition: color .25s; padding-block: .4rem; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px; background: var(--c-yellow);
  transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease-out);
}
.nav-links a:hover, .nav-links a.is-current { color: var(--text); }
.nav-links a:hover::after, .nav-links a.is-current::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: none; }
.nav-toggle { margin-left: auto; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-content: center; gap: 6px; }
.nav-toggle span { display: block; width: 18px; height: 1.5px; background: var(--text); transition: transform .4s var(--ease-out); }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 99; background: var(--c-black);
  padding: 2rem var(--gutter) calc(2rem + env(safe-area-inset-bottom));
  display: flex; flex-direction: column; gap: 2rem;
  opacity: 0; transform: translateY(-8px); transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
}
.mobile-menu.is-open { opacity: 1; transform: none; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a {
  display: flex; align-items: baseline; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line);
  font-family: var(--display); font-size: 1.75rem; font-weight: 600; letter-spacing: -.02em;
}
.mobile-menu nav a span { font-family: var(--sans); font-size: .75rem; color: var(--c-yellow); font-weight: 600; }
.mobile-menu-foot { margin-top: auto; font-size: .85rem; color: var(--text-3); }

/* ---------- HERO ---------- */
.hero {
  position: relative; isolation: isolate;
  min-height: 100vh; min-height: 100svh;
  padding-top: calc(var(--nav-h) + clamp(2.5rem, 6vw, 5rem));
  display: flex; flex-direction: column;
}
.hero-photo {
  position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%;
  object-fit: cover; object-position: 72% 50%; opacity: .5; pointer-events: none;
  /* on phones the sphere only shows behind the console, never behind the copy */
  -webkit-mask-image: linear-gradient(180deg, transparent 42%, #000 72%, #000 90%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 42%, #000 72%, #000 90%, transparent 100%);
}
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -2; opacity: .6; }
.hero-glow {
  position: absolute; inset: 0; z-index: -3; pointer-events: none;
  background:
    radial-gradient(520px circle at var(--mx, 72%) var(--my, 38%), rgba(255, 209, 0, .13), transparent 62%),
    radial-gradient(900px circle at 85% 0%, rgba(51, 51, 51, .9), transparent 60%),
    var(--c-black);
  transition: background-position .2s;
}
.hero-grid {
  position: absolute; inset: 0; z-index: -2; pointer-events: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
  opacity: .5;
}
.hero-inner { display: grid; gap: clamp(3rem, 6vw, 4rem); align-items: center; flex: 1; padding-bottom: clamp(3rem, 6vw, 5rem); }
.hero-title { font-size: clamp(2.6rem, 7.2vw, 5.4rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1.02; max-width: 13ch; }
.hero-lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--text-2); max-width: 50ch; margin-top: 1.6rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2.2rem; }
.hero-proof { display: grid; grid-template-columns: repeat(3, auto); gap: 1.5rem 2rem; margin-top: 2.8rem; padding-top: 1.8rem; border-top: 1px solid var(--line); max-width: 560px; }
.hero-proof li { display: grid; gap: .15rem; }
.hero-proof strong { font-family: var(--display); font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; color: var(--text); letter-spacing: -.02em; }
.hero-proof span { font-size: .8rem; color: var(--text-3); line-height: 1.35; }

/* Console */
.hero-visual { position: relative; width: 100%; max-width: 520px; justify-self: center; }
.console { border-radius: 22px; padding: 1.1rem; box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .7), inset 0 1px 0 rgba(214, 214, 214, .08); }
.console-head { display: flex; align-items: center; gap: .75rem; padding: .2rem .3rem 1rem; border-bottom: 1px solid var(--line); }
.console-dots { display: flex; gap: 6px; }
.console-dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(214, 214, 214, .22); }
.console-title { font-size: .78rem; color: var(--text-3); font-family: var(--sans); letter-spacing: .02em; }
.console-live { margin-left: auto; display: inline-flex; align-items: center; gap: .45rem; font-size: .72rem; font-weight: 600; color: var(--c-yellow); text-transform: uppercase; letter-spacing: .08em; }
.console-live .pulse-dot { width: 6px; height: 6px; }
.console-feed { display: grid; gap: .5rem; padding: 1rem 0; }
.console-feed li {
  display: grid; grid-template-columns: auto 1fr auto; gap: .8rem; align-items: start;
  padding: .75rem .85rem; border-radius: 14px; background: rgba(32, 32, 32, .55); border: 1px solid var(--line);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out), border-color .6s;
}
.console-feed li.is-new { border-color: rgba(255, 238, 50, .35); }
.console-feed li.is-pending { opacity: 0; transform: translateY(10px); }
.console-feed .tag {
  font-size: .66rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em;
  padding: .28rem .5rem; border-radius: 6px; background: var(--accent-soft); color: var(--c-yellow); margin-top: .1rem;
}
.console-feed p { font-size: .88rem; font-weight: 500; line-height: 1.35; color: var(--text); }
.console-feed small { display: block; font-size: .76rem; color: var(--text-3); font-weight: 400; margin-top: .15rem; }
.console-feed time { font-size: .72rem; color: var(--text-3); font-variant-numeric: tabular-nums; }
.console-chart { padding: .9rem .9rem .4rem; border-radius: 14px; background: rgba(32, 32, 32, .55); border: 1px solid var(--line); }
.console-chart-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; font-size: .76rem; color: var(--text-3); margin-bottom: .4rem; }
.console-chart-head strong { font-family: var(--display); font-size: 1.15rem; color: var(--text); }
.console-chart-head em { font-style: normal; font-family: var(--sans); font-size: .72rem; font-weight: 400; color: var(--text-3); }
.console-chart svg { width: 100%; height: 64px; }
.spark-line { stroke-dasharray: 520; stroke-dashoffset: 520; animation: draw 2.4s .6s var(--ease-out) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

.float-chip {
  position: absolute; display: none; padding: .7rem .95rem .7rem .8rem; border-radius: 14px;
  font-size: .72rem; color: var(--text-3); line-height: 1.35;
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, .7);
  animation: float 7s ease-in-out infinite;
}
.float-chip b { font-family: var(--display); font-size: .86rem; color: var(--text); font-weight: 600; }
.chip-ico { float: left; display: grid; place-items: center; width: 30px; height: 30px; margin-right: .65rem; border-radius: 9px; background: var(--c-yellow); color: var(--c-black); font-size: .9rem; font-weight: 700; }
.chip-a { top: -44px; left: -28px; }
.chip-b { bottom: -34px; right: -18px; animation-delay: -3.5s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Marquee */
.marquee { border-block: 1px solid var(--line); overflow: hidden; padding-block: 1.1rem; background: rgba(32, 32, 32, .6); }
.marquee-track { display: flex; width: max-content; animation: marquee 48s linear infinite; }
.marquee-track span {
  display: inline-flex; align-items: center; gap: 2.2rem; padding-right: 2.2rem;
  font-family: var(--display); font-size: clamp(.95rem, 1.4vw, 1.1rem); font-weight: 600; color: var(--text-3); white-space: nowrap;
}
.marquee-track span::after { content: "✦"; color: var(--c-yellow); font-size: .8em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- LIGHT REST ZONES ---------- */
.light {
  --text: var(--c-black);
  --text-2: rgba(32, 32, 32, .78);
  --text-3: rgba(32, 32, 32, .62);
  --line: rgba(32, 32, 32, .12);
  --line-2: rgba(32, 32, 32, .2);
  background: var(--c-gray); color: var(--text);
}
.light .kicker { color: var(--c-black); }
.light ::selection { background: var(--c-black); color: var(--c-yellow); }
.light :focus-visible { outline-color: var(--c-black); }

/* ---------- VALUE ---------- */
.value-title { font-size: clamp(1.9rem, 4.6vw, 3.8rem); font-weight: 700; letter-spacing: -0.035em; max-width: 24ch; line-height: 1.1; }
.marker {
  background: linear-gradient(transparent 58%, var(--c-yellow) 58%, var(--c-yellow) 92%, transparent 92%);
  background-size: 0% 100%; background-repeat: no-repeat;
  transition: background-size 1.2s .3s var(--ease-out);
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}
.is-visible .marker, .value-title.is-visible .marker { background-size: 100% 100%; }
.value-grid { display: grid; gap: 1rem; margin-top: clamp(3rem, 6vw, 4.5rem); }
.value-card {
  padding: 2rem; border-radius: var(--radius); background: rgba(32, 32, 32, .045); border: 1px solid var(--line);
  transition: background-color .4s var(--ease-out), transform .4s var(--ease-out);
}
.value-card:hover { background: rgba(32, 32, 32, .08); transform: translateY(-4px); }
.value-num { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: var(--c-black); color: var(--c-yellow); font-family: var(--display); font-weight: 700; font-size: .85rem; }
.value-card h3 { font-size: 1.4rem; margin: 1.4rem 0 .6rem; }
.value-card p { color: var(--text-2); font-size: .98rem; }

/* ---------- SERVICES ---------- */
.services { background: var(--c-black); isolation: isolate; }
.services-bg {
  position: absolute; top: 0; left: 0; z-index: -1; width: 100%; height: min(560px, 90vw);
  object-fit: cover; opacity: .45; pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, #000 20%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 20%, transparent 100%);
}
.services-grid { display: grid; gap: 1rem; }
.service {
  --sx: 50%; --sy: 0%;
  position: relative; padding: 1.8rem; border-radius: var(--radius);
  background: var(--c-carbon); border: 1px solid var(--line);
  overflow: hidden; isolation: isolate;
  transition: transform .45s var(--ease-out), border-color .45s var(--ease-out), opacity .4s, box-shadow .45s var(--ease-out);
}
.service::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0; transition: opacity .45s var(--ease-out);
  background: radial-gradient(360px circle at var(--sx) var(--sy), rgba(255, 238, 50, .09), transparent 60%);
}
.service:hover { transform: translateY(-4px); border-color: rgba(255, 238, 50, .28); box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .6); }
.service:hover::before { opacity: 1; }
.service.is-filtered { display: none; }
.service-ico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(32, 32, 32, .8); border: 1px solid var(--line-2); color: var(--c-yellow);
  transition: background-color .4s var(--ease-out), color .4s;
}
.service-ico svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.service:hover .service-ico { background: var(--c-yellow); color: var(--c-black); border-color: var(--c-yellow); }
.service-cat { position: absolute; top: 1.9rem; right: 1.8rem; font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); }
.service h3 { font-size: 1.22rem; margin: 1.4rem 0 .65rem; letter-spacing: -.02em; line-height: 1.2; }
.service p { color: var(--text-2); font-size: .94rem; }
.service ul { display: grid; gap: .4rem; margin-top: 1.2rem; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.service li { position: relative; padding-left: 1.2rem; font-size: .86rem; color: var(--text-2); }
.service li::before { content: ""; position: absolute; left: 0; top: .6em; width: 6px; height: 6px; border-radius: 2px; background: var(--c-gold); }

.inline-cta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem 2rem;
  margin-top: 2.5rem; padding: 1.4rem 1.6rem; border-radius: var(--radius); border: 1px dashed var(--line-2);
}
.inline-cta p { font-family: var(--display); font-weight: 600; font-size: 1.05rem; }

/* ---------- PROCESS ---------- */
.process { background: linear-gradient(180deg, var(--c-black), var(--c-carbon) 140%); border-top: 1px solid var(--line); }
.process-inner { display: grid; gap: 3rem; }
.process-photo { position: relative; margin-top: 2.2rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16 / 9; max-width: 480px; }
.process-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 75%; }
.process-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(32, 32, 32, .75), transparent 55%); }
.process-meter {
  position: absolute; z-index: 1; left: 1rem; bottom: 1rem; width: 92px; height: 92px; display: none;
  border-radius: 50%; background: rgba(32, 32, 32, .7);
}
.process-meter svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.meter-bg { fill: none; stroke: var(--line-2); stroke-width: 3; }
.meter-fg { fill: none; stroke: var(--c-yellow); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 327; stroke-dashoffset: 327; transition: stroke-dashoffset .3s linear; }
.process-meter span { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 1.35rem; }

.steps { position: relative; display: grid; gap: .9rem; counter-reset: step; }
.steps::before { content: ""; position: absolute; left: 27px; top: 28px; bottom: 28px; width: 1.5px; background: var(--line-2); }
.steps::after {
  content: ""; position: absolute; left: 27px; top: 28px; width: 1.5px; height: calc((100% - 56px) * var(--progress, 0));
  background: linear-gradient(var(--c-yellow), var(--c-gold)); box-shadow: 0 0 12px rgba(255, 238, 50, .5);
}
.step { position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 1.2rem; padding: 1.2rem 0; }
.step-num {
  position: relative; z-index: 1; width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  background: var(--c-black); border: 1.5px solid var(--line-2); font-family: var(--display); font-weight: 700; font-size: .95rem; color: var(--text-3);
  transition: all .5s var(--ease-out);
}
.step.is-active .step-num { background: var(--c-yellow); border-color: var(--c-yellow); color: var(--c-black); box-shadow: 0 0 0 6px rgba(255, 238, 50, .12); }
.step h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); margin: .8rem 0 .5rem; }
.step p { color: var(--text-2); font-size: .96rem; max-width: 52ch; }
.step .step-out { display: inline-flex; flex-wrap: wrap; align-items: center; gap: .6rem; margin-top: 1rem; font-size: .86rem; color: var(--text); }
.step-out span { font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; padding: .25rem .55rem; border-radius: 6px; border: 1px solid var(--line-2); color: var(--text-3); }

/* ---------- SIMULATOR ---------- */
.simulator { background: var(--c-black); border-top: 1px solid var(--line); }
.simulator::before {
  content: ""; position: absolute; inset: 20% 10% auto; height: 60%; z-index: 0; pointer-events: none;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 209, 0, .07), transparent 70%);
}
.sim { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr);border-radius: 24px; overflow: hidden; max-width: 1080px; margin-inline: auto; }
.sim-inputs { display: grid; gap: 1.8rem; padding: clamp(1.5rem, 4vw, 2.5rem); }
.sim-result { display: grid; gap: .9rem; align-content: start; padding: clamp(1.5rem, 4vw, 2.5rem); background: rgba(32, 32, 32, .6); border-top: 1px solid var(--line); }
.range label { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.range output { font-family: var(--display); font-size: 1.15rem; font-weight: 700; color: var(--c-yellow); font-variant-numeric: tabular-nums; }
input[type="range"] {
  --fill: 30%;
  -webkit-appearance: none; appearance: none; width: 100%; height: 28px; background: transparent; cursor: pointer;
}
input[type="range"]::-webkit-slider-runnable-track { height: 6px; border-radius: 99px; background: linear-gradient(90deg, var(--c-yellow) var(--fill), rgba(214, 214, 214, .16) var(--fill)); }
input[type="range"]::-moz-range-track { height: 6px; border-radius: 99px; background: rgba(214, 214, 214, .16); }
input[type="range"]::-moz-range-progress { height: 6px; border-radius: 99px; background: var(--c-yellow); }
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px; margin-top: -8px; border-radius: 50%;
  background: var(--c-gray); border: 4px solid var(--c-yellow); box-shadow: 0 0 0 6px rgba(255, 238, 50, .12);
  transition: transform .2s var(--ease-out);
}
input[type="range"]::-moz-range-thumb { width: 14px; height: 14px; border-radius: 50%; background: var(--c-gray); border: 4px solid var(--c-yellow); }
input[type="range"]:active::-webkit-slider-thumb { transform: scale(1.15); }
.sim-label { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--text-3); }
.sim-big { display: flex; align-items: baseline; gap: .7rem; font-family: var(--display); font-weight: 800; font-size: clamp(3.4rem, 7vw, 5rem); line-height: 1; letter-spacing: -.04em; color: var(--c-yellow); font-variant-numeric: tabular-nums; }
.sim-big small { font-size: 1rem; font-weight: 600; letter-spacing: 0; color: var(--text-2); }
.sim-bar { height: 6px; border-radius: 99px; background: rgba(214, 214, 214, .1); overflow: hidden; }
.sim-bar span { display: block; height: 100%; width: 40%; background: linear-gradient(90deg, var(--c-gold), var(--c-yellow)); border-radius: inherit; transition: width .6s var(--ease-out); }
.sim-eq { color: var(--text-2); font-size: .95rem; margin-bottom: .8rem; }
.sim-eq strong { color: var(--text); }
.sim-recs { display: grid; gap: .45rem; margin-bottom: .8rem; }
.sim-recs li { display: flex; gap: .6rem; align-items: flex-start; font-size: .92rem; padding: .65rem .8rem; border-radius: 10px; background: rgba(51, 51, 51, .6); border: 1px solid var(--line); }
.sim-recs li::before { content: "✦"; color: var(--c-yellow); font-size: .8rem; line-height: 1.6; }
.sim-note { font-size: .78rem; color: var(--text-3); }

/* ---------- CASES ---------- */
.cases { background: linear-gradient(180deg, var(--c-black), rgba(51, 51, 51, .35)); border-top: 1px solid var(--line); }
.cases .section-head { align-items: end; }
.tabs {
  display: flex; gap: .35rem; padding: .35rem; border-radius: 999px; background: var(--c-carbon); border: 1px solid var(--line);
  width: max-content; max-width: 100%; overflow-x: auto; scrollbar-width: none; margin-bottom: 2rem;
}
.tabs::-webkit-scrollbar { display: none; }
.tabs [role="tab"] { flex: none; padding: .7rem 1.2rem; border-radius: 999px; font-size: .9rem; font-weight: 500; color: var(--text-2); transition: all .3s var(--ease-out); }
.tabs [role="tab"]:hover { color: var(--text); }
.tabs [role="tab"][aria-selected="true"] { background: var(--c-yellow); color: var(--c-black); font-weight: 600; }
.case { display: grid; gap: 2rem; align-items: center; }
.case:not([hidden]) { animation: caseIn .6s var(--ease-out); }
@keyframes caseIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.case-tag { display: inline-block; font-size: .74rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--c-yellow); padding: .35rem .7rem; border-radius: 6px; background: var(--accent-soft); }
.case h3 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin: 1.2rem 0 1rem; max-width: 20ch; }
.case-copy > p { color: var(--text-2); max-width: 50ch; }
.case-metrics { display: flex; flex-wrap: wrap; gap: 2.5rem; margin-top: 2rem; }
.case-metrics li { display: grid; }
.case-metrics strong { font-family: var(--display); font-weight: 700; font-size: clamp(1.8rem, 3vw, 2.4rem); letter-spacing: -.03em; color: var(--text); }
.case-metrics span { font-size: .85rem; color: var(--text-3); }
.case-visual { position: relative; }
.case-img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 22px; border: 1px solid var(--line); }
.case-chart {
  position: relative; display: grid; gap: 1.1rem; margin: -4rem .75rem 0; padding: clamp(1.1rem, 3vw, 1.6rem);
  border-radius: 18px; box-shadow: 0 30px 60px -24px rgba(0, 0, 0, .75);
}
.case-chart-title { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); }

.bars { display: grid; gap: 1.1rem; }
.bar-row { display: grid; gap: .45rem; }
.bar-row > span { font-size: .85rem; color: var(--text-2); }
.bar { display: grid; gap: 4px; }
.bar i { display: block; height: 10px; border-radius: 99px; width: 0; transition: width 1.3s var(--ease-out); }
.bar .before { background: rgba(214, 214, 214, .22); }
.bar .after { background: linear-gradient(90deg, var(--c-gold), var(--c-yellow)); box-shadow: 0 0 12px rgba(255, 238, 50, .35); transition-delay: .25s; }
.is-drawn .bar i { width: var(--w); }
.legend { display: flex; gap: 1.2rem; font-size: .8rem; color: var(--text-3); }
.legend span { display: inline-flex; align-items: center; gap: .45rem; }
.legend i { width: 14px; height: 6px; border-radius: 9px; }
.lg-before { background: rgba(214, 214, 214, .3); }
.lg-after { background: var(--c-yellow); }

.flow { width: 100%; height: auto; }
.flow-lines path { fill: none; stroke: rgba(214, 214, 214, .25); stroke-width: 1.5; stroke-dasharray: 4 5; }
.flow-node rect { fill: var(--c-black); stroke: rgba(214, 214, 214, .25); }
.flow-node text { fill: var(--c-gray); font-family: var(--sans); font-size: 12px; text-anchor: middle; font-weight: 500; }
.flow-node.is-core rect { fill: var(--c-yellow); stroke: var(--c-yellow); }
.flow-node.is-core text { fill: var(--c-black); font-weight: 700; font-family: var(--display); font-size: 13px; }
.flow-pulse { fill: var(--c-yellow); filter: drop-shadow(0 0 6px rgba(255, 238, 50, .8)); }

.line-chart { width: 100%; height: auto; overflow: visible; }
.grid-lines path { stroke: rgba(214, 214, 214, .09); fill: none; }
.axis-labels text { fill: rgba(214, 214, 214, .5); font-size: 10px; font-family: var(--sans); text-anchor: end; }
.axis-labels.x text { text-anchor: middle; }
.lc-area { fill: rgba(255, 238, 50, .1); }
.lc-line { fill: none; stroke: var(--c-yellow); stroke-width: 2.5; stroke-linejoin: round; stroke-dasharray: 400; stroke-dashoffset: 400; transition: stroke-dashoffset 1.8s var(--ease-out); }
.lc-dots circle { fill: var(--c-black); stroke: var(--c-yellow); stroke-width: 2; }
.lc-dots circle:last-child { fill: var(--c-yellow); }
.is-drawn .lc-line { stroke-dashoffset: 0; }

.funnel { display: grid; gap: .6rem; justify-items: center; }
.fn-row {
  width: 0; min-width: 0; display: flex; justify-content: space-between; align-items: center; gap: .6rem;
  padding: .85rem 1rem; border-radius: 12px; background: rgba(214, 214, 214, .07); border: 1px solid var(--line);
  font-size: .85rem; color: var(--text-2); white-space: nowrap; overflow: hidden;
  transition: width 1.2s var(--ease-out);
}
.fn-row b { font-family: var(--display); color: var(--text); }
.fn-row.is-win { background: var(--c-yellow); border-color: var(--c-yellow); color: var(--c-black); }
.fn-row.is-win b { color: var(--c-black); }
.is-drawn .fn-row { width: max(var(--w), 210px); }
.fn-row:nth-child(2) { transition-delay: .1s; } .fn-row:nth-child(3) { transition-delay: .2s; } .fn-row:nth-child(4) { transition-delay: .3s; }

/* ---------- TESTIMONIALS ---------- */
.testimonials { background: rgba(51, 51, 51, .35); border-top: 1px solid var(--line); }
.demo-notice {
  display: inline-flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: .4rem .7rem;
  font-size: .85rem; color: var(--text-2); padding: .6rem 1rem; border-radius: 12px; border: 1px dashed rgba(255, 209, 0, .5);
}
.demo-notice span { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--c-black); background: var(--c-gold); padding: .2rem .5rem; border-radius: 5px; }
.quotes { display: grid; gap: 1rem; }
.quote {
  position: relative; display: flex; flex-direction: column; gap: 1.6rem; padding: 2rem;
  border-radius: var(--radius); background: var(--c-carbon); border: 1px solid var(--line);
  transition: transform .45s var(--ease-out), border-color .45s;
}
.quote:hover { transform: translateY(-4px); border-color: var(--line-2); }
.quote::before { content: "“"; position: absolute; top: .6rem; right: 1.4rem; font-family: var(--display); font-size: 5rem; line-height: 1; color: rgba(255, 238, 50, .18); }
.demo-badge { align-self: flex-start; font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--c-gold); border: 1px solid rgba(255, 209, 0, .45); border-radius: 5px; padding: .2rem .5rem; }
.quote blockquote { font-family: var(--display); font-size: 1.1rem; font-weight: 400; line-height: 1.5; letter-spacing: -.01em; flex: 1; }
.quote figcaption { display: flex; align-items: center; gap: .8rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.avatar { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--c-black); border: 1px solid var(--line-2); font-family: var(--display); font-weight: 700; font-size: .85rem; color: var(--c-yellow); flex: none; }
.quote figcaption b { display: block; font-size: .95rem; }
.quote figcaption span:last-child { font-size: .82rem; color: var(--text-3); }

/* ---------- FAQ ---------- */
.faq-inner { display: grid; gap: 3rem; }
.faq-inner .btn { margin-top: 2rem; }
.faq-list { display: grid; gap: .6rem; }
.faq details { border-radius: 16px; background: rgba(32, 32, 32, .05); border: 1px solid var(--line); transition: background-color .3s; }
.faq details[open] { background: rgba(32, 32, 32, .08); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer; list-style: none;
  padding: 1.2rem 1.4rem; font-family: var(--display); font-weight: 600; font-size: 1.02rem; letter-spacing: -.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--c-black) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFEE32' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M12 6v12M6 12h12'/%3E%3C/svg%3E") center / 14px no-repeat;
  transition: transform .4s var(--ease-out);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 1.4rem 1.3rem; color: var(--text-2); font-size: .97rem; max-width: 64ch; }

/* ---------- CONTACT ---------- */
.contact { background: var(--c-black); overflow: hidden; }
.contact-glow {
  position: absolute; inset: auto -20% -40% -20%; height: 90%; pointer-events: none;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 209, 0, .12), transparent 70%);
}
.contact-photo {
  position: absolute; z-index: 0; right: -30%; bottom: -8%; width: 120vw; max-width: none; opacity: .3; pointer-events: none;
  -webkit-mask-image: radial-gradient(closest-side, #000 35%, transparent 100%);
  mask-image: radial-gradient(closest-side, #000 35%, transparent 100%);
}
.contact-inner { position: relative; z-index: 1; display: grid; gap: 3rem; }
.contact-gets { display: grid; gap: .7rem; margin-top: 2rem; }
.contact-gets li { display: flex; align-items: center; gap: .75rem; font-size: .98rem; }
.contact-gets .i { width: 26px; height: 26px; padding: 5px; border-radius: 8px; background: var(--c-yellow); color: var(--c-black); stroke-width: 2.6; }
.founder { display: flex; align-items: center; gap: 1rem; margin-top: 2.2rem; padding: 1rem; border-radius: var(--radius); max-width: 440px; }
.founder img { width: 68px; height: 68px; border-radius: 50%; object-fit: cover; border: 2px solid var(--c-yellow); flex: none; filter: grayscale(.25); }
.founder-name { font-family: var(--display); font-weight: 700; }
.founder-role { font-size: .82rem; color: var(--text-3); }
.founder-note { font-size: .88rem; color: var(--text-2); margin-top: .25rem; }
.direct { display: flex; flex-wrap: wrap; gap: .5rem 1.6rem; margin-top: 1.6rem; }
.direct a { display: inline-flex; align-items: center; gap: .5rem; font-size: .92rem; color: var(--text-2); transition: color .25s; }
.direct a:hover { color: var(--c-yellow); }

.lead-form { display: grid; gap: 1.2rem; padding: clamp(1.5rem, 4vw, 2.4rem); border-radius: 24px; box-shadow: 0 40px 90px -40px rgba(0, 0, 0, .8); }
.form-title { font-family: var(--display); font-size: 1.35rem; font-weight: 700; letter-spacing: -.02em; }
.form-row { display: grid; gap: 1.2rem; }
.form-status { min-height: 1.2em; font-size: .9rem; color: var(--c-yellow); }
.form-status:empty { display: none; }
.form-legal { font-size: .78rem; color: var(--text-3); }

/* ---------- FOOTER ---------- */
.footer { background: var(--c-black); border-top: 1px solid var(--line); padding-top: 4.5rem; }
.footer-inner { display: grid; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand img { height: 28px; width: auto; }
.footer-brand p { margin-top: 1.2rem; font-size: .92rem; color: var(--text-3); max-width: 38ch; }
.footer-col { display: grid; gap: .6rem; align-content: start; font-size: .92rem; color: var(--text-2); }
.footer-col p { font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); margin-bottom: .3rem; }
.footer-col a { transition: color .25s; width: fit-content; }
.footer-col a:hover { color: var(--c-yellow); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-block: 1.6rem calc(1.6rem + 72px); border-top: 1px solid var(--line); font-size: .82rem; color: var(--text-3); }
.footer-bottom a:hover { color: var(--c-yellow); }

/* ---------- STICKY CTA (mobile) ---------- */
.sticky-cta {
  position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); z-index: 90;
  display: flex; gap: .5rem; padding: .5rem; border-radius: 999px;
  background: rgba(51, 51, 51, .95); border: 1px solid var(--line-2);
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, .7);
  transform: translateY(140%); transition: transform .5s var(--ease-out);
}
@supports (backdrop-filter: blur(12px)) { .sticky-cta { background: rgba(51, 51, 51, .75); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); } }
.sticky-cta.is-shown { transform: none; }
.sticky-cta .btn { flex: 1; }
.sticky-wa { width: 48px; height: 48px; flex: none; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line-2); color: var(--c-yellow); }
.sticky-wa .i { width: 22px; height: 22px; }

/* =============================================================
   7. Effects — reveal
   ============================================================= */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); transition-delay: var(--d, 0s); }
.js .reveal.is-visible { opacity: 1; transform: none; }
/* Hero content never waits on an observer: it animates in on load. */
.js .hero .reveal { opacity: 1; transform: none; animation: heroIn 1s var(--ease-out) both; animation-delay: var(--d, 0s); }
@keyframes heroIn { from { opacity: 0; transform: translateY(20px); } }
.hero-copy .reveal:nth-child(2) { --d: .08s; } .hero-copy .reveal:nth-child(3) { --d: .16s; }
.hero-copy .reveal:nth-child(4) { --d: .24s; } .hero-copy .reveal:nth-child(5) { --d: .32s; }
.hero-visual.reveal { --d: .3s; }

/* =============================================================
   8. Responsive (mobile-first)
   ============================================================= */
@media (max-width: 539px) {
  .hero-proof { grid-template-columns: 1fr 1fr; }
  .hero-proof li:last-child { grid-column: 1 / -1; }
  .hero-ctas .btn { width: 100%; }
  .btn-lg { white-space: normal; text-align: center; }
  .console-feed li:nth-child(n+4) { display: none; }
  .hero-title { font-size: clamp(2.35rem, 11vw, 3rem); }
  .case-metrics { gap: 1.5rem; }
}

@media (min-width: 540px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 720px) {
  .value-grid { grid-template-columns: repeat(3, 1fr); }
  .quotes { grid-template-columns: repeat(3, 1fr); }
  .quotes .quote:nth-child(2) { transform: translateY(2rem); }
  .quotes .quote:nth-child(2):hover { transform: translateY(calc(2rem - 4px)); }
  .testimonials .quotes { padding-bottom: 2rem; }
  .footer-inner { grid-template-columns: 1.6fr 1fr 1fr; }
  .footer-inner .footer-col:last-child { grid-column: 2 / -1; }
  .sticky-cta { display: none; }
  .footer-bottom { padding-bottom: 1.6rem; }
}

@media (min-width: 960px) {
  :root { --nav-h: 80px; }
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle, .mobile-menu { display: none !important; }
  .hero-inner { grid-template-columns: 1.1fr .9fr; }
  .hero-title { font-size: clamp(3.2rem, 5.6vw, 5.6rem); }
  .hero-visual { justify-self: end; }
  .float-chip { display: block; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .section-head:not(.center) { grid-template-columns: 1.2fr 1fr; align-items: end; }
  .services .section-head .filters { justify-content: flex-end; }
  .process-inner { grid-template-columns: .85fr 1.15fr; gap: 5rem; align-items: start; }
  .process-aside { position: sticky; top: calc(var(--nav-h) + 3rem); }
  .process-meter { display: block; }
  .step { padding: 1.6rem 0; }
  .sim { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); }
  .sim-result { border-top: 0; border-left: 1px solid var(--line); }
  .case { grid-template-columns: .95fr 1.05fr; gap: 4rem; }
  .case-visual { margin-bottom: 3rem; }
  .case-chart { position: absolute; left: -5%; bottom: -3rem; width: 64%; margin: 0; }
  .hero-photo {
    opacity: .8; object-position: 70% 50%;
    -webkit-mask-image: linear-gradient(90deg, transparent 18%, #000 60%);
    mask-image: linear-gradient(90deg, transparent 18%, #000 60%);
  }
  .process-photo { aspect-ratio: 5 / 4; }
  .contact-photo { right: auto; left: 38%; top: 50%; bottom: auto; width: 820px; transform: translateY(-50%); opacity: .42; }
  .faq-inner { grid-template-columns: .8fr 1.2fr; gap: 5rem; align-items: start; }
  .faq-inner > div:first-child { position: sticky; top: calc(var(--nav-h) + 3rem); }
  .contact-inner { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .footer-inner { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }
  .footer-inner .footer-col:last-child { grid-column: auto; }
}


@media (hover: none) {
  .service:hover, .quote:hover, .value-card:hover { transform: none; }
}

/* =============================================================
   9. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation-duration: 120s; }
  .float-chip { animation: none; }
  .pulse-dot::after { animation: none; }
  .flow-pulse { display: none; }
}
