/* ===========================================================
   GF Automations - shared styles
   Pitch-black + brushed-steel + logo green (#41A34E)
   =========================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0a0b0d;
  --bg-2:      #101216;
  --bg-3:      #15181c;
  --ink:       #f4f6f7;
  --steel:     #c9d1d7;
  --body:      #a7b0b6;
  --muted:     #7b848b;
  --faint:     #565d63;
  --line:      rgba(255,255,255,0.10);
  --line-soft: rgba(255,255,255,0.06);
  --line-strong: rgba(255,255,255,0.18);

  /* Brand accent, sampled from the GFA logo */
  --accent: #41a34e;
  --accent-bright: #57c069;
  --accent-ink: #06130a;
  --accent-soft: rgba(65,163,78,0.14);

  --font-display: 'Barlow Semi Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --err: #e08a80;
  --err-line: #b3574b;

  --maxw: 1240px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scrollbar-color: #262c33 var(--bg); scrollbar-width: thin; }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #262c33; border: 3px solid var(--bg); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #333b44; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--body);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: var(--accent-ink); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

/* ── Skip link ── */
.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 10000;
  transform: translateY(-64px); opacity: 0;
  background: var(--accent); color: var(--accent-ink);
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; font-size: 0.82rem; padding: 12px 18px; border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.skip-link:focus-visible { transform: none; opacity: 1; outline: 2px solid var(--ink); outline-offset: 2px; }

/* ── Registration corners (spec-sheet marks) ── */
.regmark { position: relative; }
.regmark::before {
  content: ''; position: absolute; inset: -1px; pointer-events: none; z-index: 1;
  --rm: rgba(65,163,78,0.6);
  background:
    linear-gradient(var(--rm), var(--rm)) top left / 16px 1px,
    linear-gradient(var(--rm), var(--rm)) top left / 1px 16px,
    linear-gradient(var(--rm), var(--rm)) top right / 16px 1px,
    linear-gradient(var(--rm), var(--rm)) top right / 1px 16px,
    linear-gradient(var(--rm), var(--rm)) bottom left / 16px 1px,
    linear-gradient(var(--rm), var(--rm)) bottom left / 1px 16px,
    linear-gradient(var(--rm), var(--rm)) bottom right / 16px 1px,
    linear-gradient(var(--rm), var(--rm)) bottom right / 1px 16px;
  background-repeat: no-repeat;
}

/* ── Topographic background (WebGL canvas) ── */
#topo { position: fixed; inset: 0; width: 100%; height: 100%; z-index: -2; display: block; }
.topo-fallback { position: fixed; inset: 0; z-index: -3; background:
  radial-gradient(120% 90% at 50% 0%, rgba(65,163,78,0.05), transparent 60%), var(--bg); }
.veil { position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(125% 85% at 50% 45%, transparent 58%, rgba(10,11,13,0.42) 100%); }

/* ── Grain ── */
.grain {
  position: fixed; inset: 0; z-index: 9000; pointer-events: none;
  opacity: 0.04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}

/* ── Type primitives ── */
.display {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.005em; line-height: 0.98; color: var(--ink); text-wrap: balance;
}
.overline {
  font-family: var(--font-display); font-weight: 600; font-size: 0.74rem;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--accent);
}
.lede { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--body); line-height: 1.62; max-width: 60ch; text-wrap: pretty; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.94rem;
  padding: 15px 26px; border-radius: 2px; cursor: pointer;
  border: 1px solid transparent; letter-spacing: 0.01em;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
  will-change: transform;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.4s var(--ease); }
.btn-primary {
  background: var(--accent); color: var(--accent-ink);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 0 0 -6px rgba(65,163,78,0);
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.4s var(--ease);
}
.btn-primary:hover {
  transform: translateY(-2px); background: var(--accent-bright);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.28), 0 14px 34px -10px rgba(65,163,78,0.5);
}
.btn-primary:hover svg { transform: translateX(4px); }
.btn-primary:active { transform: translateY(0) scale(0.985); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--accent); background: var(--accent-soft); }
.btn-ghost:hover svg { transform: translateX(4px); }
.btn-ghost:active { transform: translateY(0) scale(0.985); }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 72px; display: flex; align-items: center;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
nav.scrolled { background: rgba(10,11,13,0.78); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom-color: var(--line-soft); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand-logo { height: 32px; width: auto; display: block; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); }
.brand-name span { color: var(--muted); font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { position: relative; font-size: 0.9rem; font-weight: 500; color: var(--muted); transition: color 0.25s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px;
  background: var(--accent); transition: right 0.35s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-links a:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-cta .btn { padding: 10px 20px; font-size: 0.86rem; }
.nav-toggle { display: none; width: 40px; height: 40px; background: transparent; border: 1px solid var(--line); border-radius: 2px; cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 18px; height: 1.5px; background: var(--ink); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-menu { display: none; }

/* ── HERO (home) ── */
.hero { position: relative; min-height: 100dvh; display: flex; align-items: center; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    linear-gradient(95deg, rgba(10,11,13,0.88) 0%, rgba(10,11,13,0.55) 38%, rgba(10,11,13,0.12) 72%, rgba(10,11,13,0.28) 100%),
    linear-gradient(0deg, rgba(10,11,13,0.82) 0%, transparent 46%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.hero-content { max-width: 760px; padding-top: 90px; }
.hero h1 { font-size: clamp(2.7rem, 5.9vw, 5.1rem); margin-bottom: 18px; }
.hero h1 .hl { display: block; }
.hero h1 .em { color: var(--accent); }

/* Hero load choreography (gated behind JS; reduced-motion collapses to instant) */
html.js .hero h1 .hl,
html.js .hero-tagline,
html.js .hero-sub,
html.js .hero-actions,
html.js .hero-foot { animation: hero-rise 0.9s var(--ease) both; }
html.js .hero h1 .hl:nth-child(2) { animation-delay: 0.09s; }
html.js .hero h1 .hl:nth-child(3) { animation-delay: 0.18s; }
html.js .hero-tagline { animation-delay: 0.3s; }
html.js .hero-sub { animation-delay: 0.38s; }
html.js .hero-actions { animation-delay: 0.46s; }
html.js .hero-foot { animation-delay: 0.68s; }
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(24px); filter: blur(6px); }
  to { opacity: 1; transform: none; filter: none; }
}
.hero-tagline { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em; font-size: clamp(0.85rem, 1.3vw, 1.02rem); color: var(--steel); margin-bottom: 30px; }
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--body); line-height: 1.6; max-width: 54ch; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-foot { position: absolute; bottom: 30px; left: 0; right: 0; z-index: 2; display: flex; align-items: center; gap: 14px;
  font-family: var(--font-display); font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; font-size: 0.66rem; color: var(--faint); }
.hero-foot .ln { flex: 1; height: 1px; background: var(--line-soft); }
.hero-foot .coords { letter-spacing: 0.18em; font-variant-numeric: tabular-nums; }

/* ── PAGE HEADER (interior pages) ── */
.page-header { position: relative; padding: 168px 0 72px; overflow: hidden; }
.page-header::before { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(0deg, rgba(10,11,13,0.95), rgba(10,11,13,0.35) 70%, rgba(10,11,13,0.5)); }
.page-header .wrap { position: relative; z-index: 1; }
.page-header .overline { display: block; margin-bottom: 18px; }
.page-header h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); margin-bottom: 22px; max-width: 16ch; }
.page-header p { color: var(--body); max-width: 56ch; font-size: 1.05rem; }

/* ── SECTION SCAFFOLD ── */
section { position: relative; }
#roadmap, #pricing, #impact, #start, .svc-row[id] { scroll-margin-top: 88px; }
.section { padding: clamp(72px, 9vw, 132px) 0; position: relative; z-index: 1; }
.section.solid { background: rgba(10,11,13,0.90); }
.section.solid-2 { background: rgba(16,18,22,0.92); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.section-head { max-width: 760px; margin-bottom: 60px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .overline { display: block; margin-bottom: 20px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.05rem); margin-bottom: 22px; }
.section-head p { color: var(--body); }
.divider { height: 1px; background: var(--line-soft); }

/* ── WHAT-WE-BUILD TEASER (home) ── */
.teaser-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.teaser { position: relative; display: block; background: var(--bg); padding: 32px 30px 34px; transition: background 0.35s var(--ease); }
.teaser:hover { background: var(--bg-2); }
.teaser:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
.teaser-n { font-family: var(--font-display); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.14em; color: var(--accent); margin-bottom: 14px; }
.teaser h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.01em; font-size: 1.28rem; color: var(--ink); margin-bottom: 10px; line-height: 1.05; transition: color 0.3s var(--ease); }
.teaser:hover h3 { color: var(--accent-bright); }
.teaser p { font-size: 0.92rem; color: var(--muted); }
.teaser-go {
  position: absolute; top: 28px; right: 26px; color: var(--accent);
  opacity: 0; transform: translate(-8px, 8px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.teaser-go svg { width: 18px; height: 18px; display: block; }
.teaser:hover .teaser-go, .teaser:focus-visible .teaser-go { opacity: 1; transform: none; }
.teaser-cta { margin-top: 44px; display: flex; justify-content: center; }

/* ── SERVICES ROWS ── */
.svc-list { border-top: 1px solid var(--line); }
.svc-row { display: grid; grid-template-columns: 90px 1.1fr 1.4fr; gap: 36px; align-items: start; padding: 40px 0; border-bottom: 1px solid var(--line); transition: background 0.4s var(--ease); }
.svc-row:hover { background: linear-gradient(90deg, rgba(255,255,255,0.025), transparent 70%); }
.svc-idx { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--faint); padding-top: 6px; letter-spacing: 0.05em; }
.svc-name { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.01em; font-size: clamp(1.3rem, 2.1vw, 1.75rem); color: var(--ink); line-height: 1.05; }
.svc-body p { color: var(--body); margin-bottom: 16px; }
.svc-meta { display: flex; flex-wrap: wrap; gap: 8px 10px; }
.tag { font-family: var(--font-display); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--steel); border: 1px solid var(--line); padding: 6px 11px; }
.tag.out { color: var(--ink); border-color: var(--line-strong); }

/* ── FLAGSHIP ── */
.flag-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 72px); align-items: start; }
.flag-copy .overline { display: block; margin-bottom: 18px; }
.flag-copy h2 { font-size: clamp(2rem, 3.8vw, 2.9rem); margin-bottom: 22px; }
.flag-copy > p { max-width: 52ch; margin-bottom: 30px; }
.cap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.cap { background: rgba(16,18,22,0.7); padding: 18px 20px; display: flex; align-items: center; gap: 12px; }
.cap svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.cap span { font-size: 0.92rem; color: var(--ink); font-weight: 500; }
.escalate { display: flex; gap: 14px; align-items: flex-start; padding: 22px; border: 1px solid var(--line); background: rgba(16,18,22,0.7); }
.escalate svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.escalate p { font-size: 0.96rem; color: var(--body); margin: 0; }
.escalate strong { color: var(--ink); font-weight: 600; }

/* ── IMPACT (data) ── */
.impact-row { display: grid; grid-template-columns: 0.85fr 2.15fr; gap: clamp(24px, 4vw, 56px); align-items: center; padding: 36px 0; border-bottom: 1px solid var(--line); }
.impact-list .impact-row:first-child { border-top: 1px solid var(--line); }
.impact-name { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.01em; font-size: clamp(1.25rem, 2vw, 1.65rem); color: var(--ink); line-height: 1.05; }
.impact-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.impact-stat { background: rgba(16,18,22,0.72); padding: 22px 20px; }
.impact-stat .n { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 2.3vw, 2.1rem); color: var(--accent); line-height: 1; font-variant-numeric: tabular-nums; }
.impact-stat .l { font-size: 0.8rem; color: var(--body); margin-top: 9px; line-height: 1.42; }
.impact-note { margin-top: 30px; font-size: 0.84rem; color: var(--muted); max-width: 76ch; }
@media (max-width: 960px) { .impact-row { grid-template-columns: 1fr; gap: 20px; padding: 30px 0; } }
@media (max-width: 720px) { .impact-stats { grid-template-columns: 1fr; } }

/* ── PROCESS ── */
.proc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); }
.proc { padding: 40px 28px 44px 28px; border-right: 1px solid var(--line); }
.proc:first-child { padding-left: 0; }
.proc:last-child { border-right: none; }
.proc-n { font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; color: var(--faint); line-height: 1; margin-bottom: 22px; }
.proc h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; font-size: 1.25rem; color: var(--ink); margin-bottom: 12px; }
.proc p { font-size: 0.92rem; color: var(--muted); }

/* ── PRICING ── */
.price-panel { border: 1px solid var(--line); background: rgba(16,18,22,0.75); padding: clamp(36px, 5vw, 60px); display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(36px, 5vw, 70px); align-items: center; }
.price-left .overline { display: block; margin-bottom: 16px; }
.price-left h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: clamp(1.5rem, 2.6vw, 2.1rem); color: var(--ink); margin-bottom: 14px; line-height: 1.04; }
.price-left p { color: var(--body); max-width: 42ch; margin-bottom: 8px; }
.price-note { font-size: 0.84rem; color: var(--muted); }
.price-figure { border-left: 1px solid var(--line); padding-left: clamp(28px, 4vw, 56px); }
.price-figure .from { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.72rem; color: var(--accent); margin-bottom: 10px; }
.price-amt { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: clamp(2rem, 4vw, 3rem); line-height: 1; }
.price-amt .unit { color: var(--muted); font-size: 0.42em; font-weight: 600; }
.price-plus { color: var(--faint); margin: 8px 0; font-family: var(--font-display); font-weight: 600; }
.price-incl { list-style: none; margin: 26px 0 30px; }
.price-incl li { display: flex; gap: 11px; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--line-soft); font-size: 0.9rem; color: var(--body); }
.price-incl li:last-child { border-bottom: none; }
.price-incl svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }
/* Pricing carousel */
.pricing-tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 28px; }
.pricing-tab { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.8rem; color: var(--muted); background: transparent; border: 1px solid var(--line); padding: 11px 16px; border-radius: 2px; cursor: pointer; transition: color 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease); }
.pricing-tab:hover { color: var(--ink); border-color: var(--line-strong); }
.pricing-tab.active { color: var(--accent-ink); background: var(--accent); border-color: var(--accent); }
.pricing-tab:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.pricing-track-wrap { overflow: hidden; }
.pricing-track { display: flex; transition: transform 0.6s var(--ease); will-change: transform; }
.pricing-track > .price-panel { flex: 0 0 100%; }
.pricing-dots { display: flex; gap: 10px; justify-content: center; margin-top: 24px; }
.pricing-dot { width: 9px; height: 9px; border-radius: 50%; border: 1px solid var(--line-strong); background: transparent; padding: 0; cursor: pointer; transition: background 0.25s, border-color 0.25s; }
.pricing-dot.active { background: var(--accent); border-color: var(--accent); }
.pricing-dot:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
@media (max-width: 720px) { .pricing-tab { font-size: 0.72rem; padding: 9px 12px; } }

/* ── CREDENTIAL STRIP / ABOUT ── */
.creds-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line-soft); background: rgba(16,18,22,0.7); }
.about-grid + .creds-grid { margin-top: clamp(44px, 6vw, 76px); }
.cred { padding: 30px 28px; border-left: 1px solid var(--line-soft); }
.cred:first-child { border-left: none; }
.cred-k { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink); font-size: 1.04rem; }
.cred-v { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.about-copy p { margin-bottom: 20px; max-width: 58ch; }
.about-copy p.lead-em { color: var(--steel); }
.about-side { border: 1px solid var(--line); background: rgba(16,18,22,0.7); padding: 32px; }
.about-side h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; color: var(--ink); font-size: 1.2rem; margin-bottom: 20px; }
.about-side ul { list-style: none; }
.about-side li { display: flex; gap: 12px; align-items: baseline; padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
.about-side li:last-child { border-bottom: none; }
.about-side li b { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; color: var(--accent); font-size: 0.82rem; letter-spacing: 0.06em; min-width: 92px; }
.about-side li span { font-size: 0.9rem; color: var(--body); }
.vet-badge { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 8px 0; }
.vet-emblem { width: min(100%, 340px); height: auto; filter: drop-shadow(0 18px 40px rgba(0,0,0,0.55)); }
.vet-text { margin-top: 6px; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink); font-size: clamp(1.15rem, 2vw, 1.55rem); line-height: 1.12; }
.vet-text span { display: block; color: var(--steel); font-weight: 600; letter-spacing: 0.2em; font-size: 0.72em; margin-top: 6px; }
.note-panel { border: 1px dashed var(--line-strong); background: rgba(16,18,22,0.5); padding: 24px 26px; }
.note-panel .overline { display: block; margin-bottom: 10px; }
.note-panel p { color: var(--muted); font-size: 0.95rem; }

/* ── CONTACT / ROADMAP FORM ── */
.form-shell { max-width: 680px; margin: 0 auto; border: 1px solid var(--line); background: rgba(16,18,22,0.85); backdrop-filter: blur(8px); }
.form-pad { padding: clamp(28px, 4vw, 48px); }
.steps { display: flex; align-items: center; margin-bottom: 44px; }
.step-node { display: flex; align-items: center; gap: 12px; }
.step-dot { width: 34px; height: 34px; border: 1px solid var(--line-strong); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 0.86rem; color: var(--muted); transition: all 0.3s var(--ease); flex-shrink: 0; }
.step-node.active .step-dot { border-color: var(--accent); background: var(--accent); color: var(--accent-ink); }
.step-node.done .step-dot { border-color: var(--accent); color: var(--accent); }
.step-name { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.74rem; color: var(--muted); transition: color 0.3s; }
.step-node.active .step-name { color: var(--ink); }
.step-link { flex: 1; height: 1px; background: var(--line); margin: 0 16px; }
.step-link.done { background: var(--accent); }
.form-step { display: none; }
.form-step.active { display: block; animation: fade 0.4s var(--ease) both; }
@keyframes fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.step-heading { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.01em; font-size: 1.4rem; color: var(--ink); margin-bottom: 6px; }
.step-sub { font-size: 0.9rem; color: var(--muted); margin-bottom: 28px; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field label { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.72rem; color: var(--muted); }
.field input, .field select, .field textarea { font-family: var(--font-body); font-size: 0.95rem; color: var(--ink); background: var(--bg-3); border: 1px solid var(--line); border-radius: 2px; padding: 13px 14px; width: 100%; transition: border-color 0.25s, background 0.25s; appearance: none; }
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: #181b20; box-shadow: 0 0 0 3px rgba(65,163,78,0.16); }
.field.error input, .field.error select, .field.error textarea { border-color: var(--err-line); }
.field.error input:focus, .field.error select:focus, .field.error textarea:focus { box-shadow: 0 0 0 3px rgba(179,87,75,0.18); }
.field .err { display: none; font-size: 0.8rem; color: var(--err); line-height: 1.4; }
.field.error .err { display: block; }
#form-fault, #wd-fault { color: var(--err); font-size: 0.9rem; }
.field select option { background: #15181c; color: var(--ink); }
.field input:-webkit-autofill, .field select:-webkit-autofill, .field textarea:-webkit-autofill { -webkit-text-fill-color: var(--ink) !important; -webkit-box-shadow: 0 0 0 1000px #15181c inset !important; caret-color: var(--ink); transition: background-color 99999s ease 0s; }
.form-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; gap: 12px; }
.btn-back { background: transparent; border: 1px solid var(--line); color: var(--muted); padding: 13px 22px; border-radius: 2px; font-family: var(--font-body); font-weight: 500; font-size: 0.9rem; cursor: pointer; transition: border-color 0.25s, color 0.25s; }
.btn-back:hover { border-color: var(--line-strong); color: var(--ink); }
.btn-back:focus-visible, .field input:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.loading { text-align: center; padding: 56px 0; }
.spinner { width: 38px; height: 38px; border: 2px solid var(--line); border-top-color: var(--accent); border-radius: 50%; animation: spin 0.8s linear infinite; margin: 0 auto 22px; }
@keyframes spin { to { transform: rotate(360deg); } }
.loading strong { display: block; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.1rem; color: var(--ink); margin-bottom: 8px; }
.loading p { color: var(--muted); font-size: 0.9rem; }
#result, .wd-result { display: none; text-align: center; padding: 36px 0; }
#result .chk, .wd-result .chk { width: 52px; height: 52px; border: 1px solid var(--accent); border-radius: 50%; display: grid; place-items: center; margin: 0 auto 22px; background: var(--accent-soft); }
#result .chk svg, .wd-result .chk svg { width: 24px; height: 24px; color: var(--accent); }
#result h3, .wd-result h3 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.5rem; color: var(--ink); margin-bottom: 10px; }
#result p, .wd-result p { color: var(--body); max-width: 46ch; margin: 0 auto; }

/* ── FAQ ── */
.faq-list { max-width: 820px; border-top: 1px solid var(--line); }
.faq { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 22px;
  padding: 22px 0; cursor: pointer; list-style: none;
  font-weight: 600; font-size: 1.02rem; color: var(--ink);
  transition: color 0.25s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent-bright); }
.faq summary:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.faq summary svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--accent); transition: transform 0.35s var(--ease); }
.faq[open] summary svg { transform: rotate(45deg); }
.faq p { color: var(--body); padding: 0 0 24px; max-width: 68ch; }
html.js .faq[open] p { animation: fade 0.45s var(--ease) both; }

/* ── CTA BAND ── */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.cta-band p { color: var(--body); max-width: 50ch; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--line-soft); background: rgba(10,11,13,0.78); padding: 56px 0 40px; position: relative; z-index: 1; }
.foot-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; margin-bottom: 44px; }
.foot-brand { max-width: 320px; }
.foot-brand .brand { margin-bottom: 16px; }
.foot-brand p { font-size: 0.9rem; color: var(--muted); }
.foot-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.foot-col h4 { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.72rem; color: var(--faint); margin-bottom: 16px; }
.foot-col a, .foot-col span { display: block; font-size: 0.9rem; color: var(--muted); margin-bottom: 10px; transition: color 0.25s; }
.foot-col a:hover { color: var(--ink); }
.foot-mark {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  white-space: nowrap; text-align: center; line-height: 0.9; user-select: none;
  font-size: clamp(2.4rem, 7.6vw, 6.6rem); letter-spacing: 0.03em;
  color: rgba(244,246,247,0.03);
  -webkit-text-stroke: 1px rgba(201,209,215,0.11);
  margin: 20px 0 44px; overflow: hidden;
}
.foot-bottom { border-top: 1px solid var(--line-soft); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.foot-bottom p { font-size: 0.8rem; color: var(--faint); }

/* ── WEB DESIGN PAGE ── */
.wd-hero { isolation: isolate; }
.wd-hero::before { content: none; }
.wd-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
video.wd-media { opacity: 0; transition: opacity 0.9s var(--ease); }
video.wd-media.playing { opacity: 1; }
.wd-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(95deg, rgba(10,11,13,0.88) 0%, rgba(10,11,13,0.55) 38%, rgba(10,11,13,0.12) 72%, rgba(10,11,13,0.3) 100%),
    linear-gradient(0deg, rgba(10,11,13,0.92) 0%, transparent 42%),
    linear-gradient(180deg, rgba(10,11,13,0.55) 0%, transparent 24%);
}
.wd-hero .hero-inner, .wd-hero .hero-foot { z-index: 2; }
.wd-pause {
  position: absolute; right: 32px; bottom: 64px; z-index: 3;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; font-size: 0.68rem; color: var(--steel);
  background: rgba(10,11,13,0.55); border: 1px solid var(--line-strong); border-radius: 2px;
  padding: 9px 14px; cursor: pointer;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.wd-pause:hover { color: var(--ink); border-color: var(--accent); }
.wd-pause:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.wd-pause[hidden] { display: none; }

.wd-caps { max-width: 760px; }

/* Flowing capability caption — spec-sheet line, hairline-separated (no cards, no checkmark grid) */
.wd-cap-line { list-style: none; display: flex; flex-wrap: wrap; align-items: center; row-gap: 8px; max-width: 780px; margin: 0; }
.wd-cap-line li {
  position: relative; padding: 0 clamp(12px, 1.6vw, 20px); line-height: 1.15;
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; font-size: clamp(0.8rem, 1.05vw, 0.96rem); color: var(--steel);
}
.wd-cap-line li::before { content: ''; position: absolute; left: 0; top: 50%; width: 1px; height: 1em; transform: translateY(-50%); background: var(--line-strong); }
.wd-cap-line li:first-child { padding-left: 0; }
.wd-cap-line li:first-child::before { display: none; }

.wd-range { font-size: clamp(1.7rem, 3.2vw, 2.5rem); font-variant-numeric: tabular-nums; white-space: nowrap; }
.wd-range .unit { font-size: 0.52em; letter-spacing: 0.04em; }

.wd-cta {
  position: relative; isolation: isolate; overflow: hidden;
  padding: clamp(110px, 16vw, 210px) 0;
  border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
}
.wd-cta-media { position: absolute; inset: 0; z-index: 0; }
.wd-cta-media .wd-media { object-position: 72% 50%; }
/* darken only the left third so the CTA panel stays legible while the film's centre/right read clearly */
.wd-scrim-cta {
  background:
    linear-gradient(90deg, rgba(10,11,13,0.82) 0%, rgba(10,11,13,0.38) 36%, rgba(10,11,13,0.04) 64%, transparent 82%),
    linear-gradient(0deg, rgba(10,11,13,0.5) 0%, transparent 28%),
    linear-gradient(180deg, rgba(10,11,13,0.42) 0%, transparent 24%);
}
.wd-cta .wrap { position: relative; z-index: 2; display: flex; }
/* left CTA panel — anchored left, sized so it never covers the centre of the frame */
.wd-cta-panel {
  position: relative; max-width: 500px; padding: clamp(26px, 3vw, 38px) clamp(28px, 3vw, 40px);
  border-left: 2px solid var(--accent);
  background: linear-gradient(100deg, rgba(8,9,11,0.62) 0%, rgba(8,9,11,0.28) 70%, transparent 100%);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
}
.wd-cta-panel .wd-eyebrow { margin-bottom: 14px; }
.wd-cta-panel h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); margin-bottom: 30px; max-width: 15ch; }

/* ── Web design: pinned scroll hero stage ──────────────────
   Default (no-JS / reduced-motion) = readable static fallback:
   the film is a 16:9 banner and each beat is a normal stacked section.
   .wd-pinned (added by JS when motion is allowed) turns it into the
   sticky, scroll-progress-driven overlay sequence. */
.wd-stage { position: relative; z-index: 1; isolation: isolate; }
.wd-stage-anchor { position: absolute; left: 0; width: 1px; height: 1px; top: 48%; pointer-events: none; }
.wd-stage-frame { position: relative; }
.wd-stage-media { position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; background: #05060a; }
.wd-stage-media .wd-media { object-position: 60% 50%; }
.wd-stage-scrim {
  background:
    linear-gradient(95deg, rgba(10,11,13,0.90) 0%, rgba(10,11,13,0.58) 40%, rgba(10,11,13,0.14) 74%, rgba(10,11,13,0.34) 100%),
    linear-gradient(0deg, rgba(10,11,13,0.92) 0%, transparent 46%),
    linear-gradient(180deg, rgba(10,11,13,0.58) 0%, transparent 26%);
}

/* beats — fallback flow (also what screen readers / no-JS get) */
.wd-beats { position: relative; z-index: 2; }
.wd-beat { position: relative; padding: clamp(60px, 9vw, 120px) 0; }
.wd-beat:nth-child(odd) { background: rgba(10,11,13,0.90); }
.wd-beat:nth-child(even) { background: rgba(16,18,22,0.92); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.wd-beat-inner { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.wd-beat-inner > * + * { margin-top: 22px; }
.wd-eyebrow { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em; font-size: clamp(0.78rem, 1.2vw, 0.96rem); color: var(--steel); }
.wd-beat h1.display { font-size: clamp(2.6rem, 5.7vw, 5rem); max-width: 16ch; }
.wd-beat h2.display { font-size: clamp(2rem, 4vw, 3.05rem); max-width: 20ch; }
/* Lead beat headline: stacked lines + accent, mirroring the site hero */
.wd-beat--lead h1.display { max-width: 20ch; }
.wd-beat--lead h1.display .hl { display: block; }
.wd-beat .display .em { color: var(--accent); }
.wd-beat .hero-sub { margin-bottom: 0; }
.wd-beat .hero-actions { margin-top: 34px; }
.wd-beat .wd-caps { margin-top: 34px; }
.wd-beat .wd-cap-line { margin-top: 32px; }
.wd-price-figure { margin-top: 30px; max-width: 560px; }
.wd-price-figure .from { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.72rem; color: var(--accent); margin-bottom: 10px; }
.wd-price-figure .price-incl { margin-bottom: 0; }

/* stage chrome hidden unless pinned */
.wd-stage-ui, .wd-cue { display: none; }

/* ── pinned / scroll-scrubbed mode ──
   JS adds .wd-pinned when motion is allowed, then drives:
   · the film's currentTime (scrubbed by scroll) + a continuous scale/pan transform
   · each copy layer's opacity / translate / blur, interpolated per scroll frame
   No discrete beats, no dots — the whole stage reads as one cinematic scrub. */
.wd-stage.wd-pinned { height: calc((var(--wd-beats, 4) + 1) * 100dvh); }
.wd-stage.wd-pinned .wd-stage-frame { position: sticky; top: 0; height: 100dvh; overflow: hidden; }
.wd-stage.wd-pinned .wd-stage-media {
  position: absolute; inset: 0; aspect-ratio: auto; height: 100%;
  transform-origin: 60% 50%; transform: scale(1.12);
  will-change: transform; backface-visibility: hidden;
}
/* the scrubbed film is paused on a frame, so 'playing' never fires — reveal on first decoded frame */
.wd-stage video.wd-scrub { opacity: 0; transition: opacity 0.8s var(--ease); }
.wd-stage video.wd-scrub.is-shown { opacity: 1; }

.wd-stage.wd-pinned .wd-beats { position: absolute; inset: 0; z-index: 2; }
.wd-stage.wd-pinned .wd-beat {
  position: absolute; inset: 0; margin: 0; padding: 0;
  display: flex; align-items: center;
  background: none !important; border: 0 !important;
  opacity: 0; transform: translate3d(0, 48px, 0);
  pointer-events: none; will-change: opacity, transform; backface-visibility: hidden;
}
.wd-stage.wd-pinned .wd-beat.is-live { pointer-events: auto; }
.wd-stage.wd-pinned .wd-beat-inner { padding-top: 0; padding-bottom: 0; }

/* ── console frame (pinned only): tactical HUD box, LEFT-anchored in the site's
   content column (same gutter as .wrap) so the film reads on the right ── */
.wd-stage.wd-pinned {
  --wd-gutter: max(32px, calc((100vw - var(--maxw)) / 2 + 32px));
  --wd-box-w: min(540px, calc(100vw - 64px));
  --wd-box-pad: clamp(24px, 2.6vw, 38px);
  --wd-box-h: min(620px, 74vh);
}
.wd-console { display: none; }
.wd-stage.wd-pinned .wd-console {
  display: block; position: absolute;
  left: var(--wd-gutter); top: 50%; transform: translateY(-50%);
  width: var(--wd-box-w); height: var(--wd-box-h);
  border: 1px solid rgba(65,163,78,0.26); border-left: 2px solid var(--accent);
  background: linear-gradient(115deg, rgba(8,9,11,0.60) 0%, rgba(8,9,11,0.30) 72%, rgba(8,9,11,0.14) 100%);
  backdrop-filter: blur(3px) saturate(1.05); -webkit-backdrop-filter: blur(3px) saturate(1.05);
  box-shadow: 0 40px 90px -40px rgba(0,0,0,0.85), inset 0 0 0 1px rgba(255,255,255,0.03);
  z-index: 1; pointer-events: none;
}
.wd-console-br { position: absolute; width: 18px; height: 18px; border: 2px solid var(--accent); }
.wd-console-br.tl { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.wd-console-br.tr { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.wd-console-br.bl { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.wd-console-br.br { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.wd-console-head {
  position: absolute; top: 15px; left: var(--wd-box-pad); right: 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.24em; font-size: 0.6rem; color: var(--accent);
}
.wd-console-idx { color: var(--steel); letter-spacing: 0.16em; }
.wd-console-idx b { color: #fff; font-weight: 700; }

/* copy sits left-aligned inside the console footprint (gutter + inner padding) */
.wd-stage.wd-pinned .wd-beat-inner {
  margin: 0 0 0 calc(var(--wd-gutter) + var(--wd-box-pad));
  max-width: calc(var(--wd-box-w) - var(--wd-box-pad) * 2);
  padding: 0;
}
.wd-stage.wd-pinned .wd-beat-inner > * + * { margin-top: 16px; }
.wd-stage.wd-pinned .wd-beat h1.display { font-size: clamp(2.1rem, 3.9vw, 3.1rem); }
.wd-stage.wd-pinned .wd-beat h2.display { font-size: clamp(1.55rem, 2.9vw, 2.2rem); }
.wd-stage.wd-pinned .lede { font-size: 0.95rem; line-height: 1.55; max-width: none; }
.wd-stage.wd-pinned .hero-sub { font-size: 1rem; line-height: 1.55; }
.wd-stage.wd-pinned .hero-actions { margin-top: 22px; }

/* pricing beat is the tallest — trim it so it never spills past the box */
.wd-stage.wd-pinned .wd-beat--price .lede { font-size: 0.86rem; line-height: 1.5; }
.wd-stage.wd-pinned .wd-beat--price .wd-price-figure { margin-top: 14px; }
.wd-stage.wd-pinned .wd-beat--price .wd-range { font-size: clamp(1.45rem, 2.5vw, 1.9rem); }
.wd-stage.wd-pinned .wd-beat--price .price-incl { margin: 14px 0 0; }
.wd-stage.wd-pinned .wd-beat--price .price-incl li { padding: 6px 0; font-size: 0.82rem; }

.wd-stage.wd-pinned .wd-stage-ui { display: block; position: absolute; inset: 0; z-index: 4; pointer-events: none; }
/* cinematic scrub line — one hairline at the base of the frame (replaces the old dot rail) */
.wd-scrub-progress { position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: rgba(255,255,255,0.05); }
.wd-scrub-progress-fill {
  display: block; height: 100%; width: 100%; transform-origin: left center; transform: scaleX(0);
  background: linear-gradient(90deg, transparent, var(--accent) 34%, var(--accent-bright));
  box-shadow: 0 0 14px rgba(65,163,78,0.55);
}
.wd-cue { display: flex; flex-direction: column; align-items: center; gap: 4px; position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); color: var(--steel); font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.66rem; transition: opacity 0.5s var(--ease); }
.wd-cue svg { width: 18px; height: 18px; animation: wd-cue-bob 1.7s var(--ease) infinite; }
.wd-cue.is-hidden { opacity: 0; }
@keyframes wd-cue-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

@media (max-width: 1020px) and (min-width: 861px) {
  .nav-links { gap: 22px; }
  .nav-links a { font-size: 0.86rem; }
  .nav-cta { gap: 10px; }
  .nav-cta .btn { padding: 10px 14px; font-size: 0.82rem; }
}
@media (max-width: 720px) {
  .wd-hero .wd-media { object-position: 62% 50%; }
  .wd-scrim {
    background:
      linear-gradient(0deg, rgba(10,11,13,0.94) 8%, rgba(10,11,13,0.45) 56%, rgba(10,11,13,0.62) 100%);
  }
  .wd-pause { right: 20px; bottom: 22px; }
  .wd-stage-media .wd-media { object-position: 62% 50%; }
  .wd-stage.wd-pinned .wd-stage-scrim {
    background:
      linear-gradient(0deg, rgba(10,11,13,0.94) 6%, rgba(10,11,13,0.5) 52%, rgba(10,11,13,0.7) 100%);
  }
  .wd-beat h1.display, .wd-beat h2.display { max-width: none; }
  .wd-beat .hero-actions { flex-direction: column; align-items: stretch; }
  .wd-beat .hero-actions .btn { width: 100%; }
  /* phones: near-full-width, taller box so the pricing beat still fits */
  .wd-stage.wd-pinned { --wd-gutter: 18px; --wd-box-w: calc(100vw - 36px); --wd-box-h: 82vh; --wd-box-pad: 22px; }
  .wd-caps { grid-template-columns: 1fr; }
  .wd-cta { display: flex; flex-direction: column; padding: 0; background: rgba(16,18,22,0.92); }
  .wd-cta .wrap { order: -1; display: block; }
  .wd-cta-panel { max-width: none; padding: 52px 0 40px; border-left: 0; background: none; backdrop-filter: none; -webkit-backdrop-filter: none; }
  .wd-cta-panel h2 { max-width: none; }
  .wd-cta-panel .btn { width: 100%; }
  .wd-scrim-cta { display: none; }
  .wd-cta-media { position: relative; inset: auto; width: 100%; aspect-ratio: 16 / 9; }
  .wd-range { font-size: clamp(1.5rem, 7.2vw, 2rem); }
}

/* ── Reveal motion (gated behind JS) ── */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
html.js .reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .flag-grid, .price-panel, .about-grid { grid-template-columns: 1fr; }
  .price-figure { border-left: none; border-top: 1px solid var(--line); padding-left: 0; padding-top: 32px; }
  .proc-grid { grid-template-columns: 1fr 1fr; }
  .proc { border-bottom: 1px solid var(--line); padding-left: 24px; }
  .proc:first-child { padding-left: 24px; }
  .proc:nth-child(2) { border-right: none; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  body.menu-open .nav-menu { display: flex; }
  .nav-menu { position: fixed; top: 72px; left: 0; right: 0; flex-direction: column; gap: 0; background: rgba(10,11,13,0.97); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); z-index: 99; padding: 12px 0 18px; }
  .nav-menu a { padding: 16px 32px; font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--steel); border-bottom: 1px solid var(--line-soft); }
  .nav-menu a.cta { color: var(--accent); }
  .teaser-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .wrap, .nav-inner, .hero-inner { padding-left: 20px; padding-right: 20px; }
  .hero::before { background: linear-gradient(0deg, rgba(10,11,13,0.93) 8%, rgba(10,11,13,0.5) 54%, rgba(10,11,13,0.64) 100%); }
  .hero-content { padding-top: 80px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-foot { display: none; }
  .page-header { padding: 130px 0 56px; }
  .svc-row { grid-template-columns: 1fr; gap: 14px; padding: 30px 0; }
  .svc-idx { padding-top: 0; }
  .cap-grid { grid-template-columns: 1fr; }
  .proc-grid { grid-template-columns: 1fr; }
  .proc, .proc:first-child { border-right: none; padding: 28px 0; padding-left: 0; }
  .creds-grid { grid-template-columns: 1fr; }
  .cred { border-left: none; border-top: 1px solid var(--line-soft); }
  .cred:first-child { border-top: none; }
  .grid2 { grid-template-columns: 1fr; }
  .step-name { display: none; }
  .step-link { margin: 0 10px; }
  .form-actions { flex-direction: column-reverse; }
  .form-actions .btn, .btn-back { width: 100%; }
  .foot-cols { gap: 36px; }
  .cta-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
