/* =====================================================================
   ASHCROFT TECHNOLOGIES — "Precision Studio" design system
   Deep-ink blueprint aesthetic · electric-lime signal
   Fonts: Bricolage Grotesque (display) · Hanken Grotesk (body) · JetBrains Mono (labels)
   ===================================================================== */

/* ----------------------------- Tokens ----------------------------- */
:root {
  /* Ink scale */
  --ink-900: #06080C;
  --ink-850: #090C12;
  --ink-800: #0B0E15;
  --ink-750: #0F131C;
  --ink-700: #141926;
  --ink-650: #1A2030;
  --ink-600: #222A3D;

  /* Lines */
  --line: rgba(233, 240, 255, 0.08);
  --line-2: rgba(233, 240, 255, 0.14);
  --line-3: rgba(233, 240, 255, 0.22);

  /* Text */
  --ivory: #ECEFF6;
  --ivory-dim: #AFB7C7;
  --ivory-mute: #7C859A;
  --ivory-faint: #5A6275;

  /* Signal */
  --lime: #CBF24E;
  --lime-bright: #E2FF74;
  --lime-deep: #A6D62E;
  --lime-glow: rgba(203, 242, 78, 0.55);

  /* Atmospheric secondaries (used only as low-opacity glows) */
  --teal: #54E3C6;
  --azure: #6E8DFF;
  --plum: #B98CFF;

  /* Surfaces */
  --glass: rgba(20, 25, 38, 0.55);
  --glass-2: rgba(22, 28, 43, 0.75);

  /* Type */
  --f-display: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
  --f-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;

  /* Radius */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Shadow */
  --sh-1: 0 2px 8px rgba(0, 0, 0, 0.4);
  --sh-2: 0 20px 50px -20px rgba(0, 0, 0, 0.7);
  --sh-glow: 0 0 0 1px rgba(203, 242, 78, 0.25), 0 18px 60px -22px rgba(203, 242, 78, 0.35);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Layout */
  --container: 1240px;
  --gutter: clamp(20px, 5vw, 56px);
  --nav-h: 76px;
}

/* ----------------------------- Reset ------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  font-family: var(--f-body);
  background: var(--ink-800);
  color: var(--ivory);
  line-height: 1.6;
  font-size: 17px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }
::selection { background: var(--lime); color: #0a0d10; }

/* --------------------- Atmospheric background ---------------------- */
/* Blueprint grid + radial glows live in a fixed layer behind everything */
.bg-atmos {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(900px 600px at 12% -5%, rgba(110, 141, 255, 0.10), transparent 60%),
    radial-gradient(800px 700px at 95% 8%, rgba(203, 242, 78, 0.08), transparent 58%),
    radial-gradient(1000px 800px at 50% 115%, rgba(84, 227, 198, 0.07), transparent 60%),
    var(--ink-800);
}
.bg-grid {
  position: fixed;
  inset: -2px;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(233, 240, 255, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(233, 240, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 130% 90% at 50% 0%, #000 30%, transparent 78%);
          mask-image: radial-gradient(ellipse 130% 90% at 50% 0%, #000 30%, transparent 78%);
  animation: gridDrift 30s linear infinite;
}
@keyframes gridDrift { to { background-position: 64px 64px; } }

/* Film grain overlay */
.bg-grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Drifting ambient orbs (decorative, used per-page) */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
  animation: orbFloat 18s var(--ease-in-out) infinite;
}
.orb.lime { background: radial-gradient(circle, rgba(203,242,78,0.5), transparent 70%); }
.orb.azure { background: radial-gradient(circle, rgba(110,141,255,0.45), transparent 70%); }
.orb.teal { background: radial-gradient(circle, rgba(84,227,198,0.4), transparent 70%); }
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.12); }
  66% { transform: translate(-30px, 24px) scale(0.94); }
}

/* ----------------------------- Cursor ----------------------------- */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor-dot { width: 7px; height: 7px; background: var(--lime); }
.cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(203, 242, 78, 0.7);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s, border-color 0.25s;
}
.cursor-ring.is-hover {
  width: 62px; height: 62px;
  background: rgba(203, 242, 78, 0.12);
  border-color: rgba(203, 242, 78, 0);
}
body.cursor-ready { cursor: none; }
body.cursor-ready a, body.cursor-ready button { cursor: none; }
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
  body.cursor-ready { cursor: auto; }
}

/* ------------------------- Scroll progress ------------------------ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--lime-deep), var(--lime-bright));
  box-shadow: 0 0 12px var(--lime-glow);
  z-index: 200;
}

/* ----------------------------- Layout ----------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
section { position: relative; }
.section {
  padding-block: clamp(72px, 11vw, 140px);
  position: relative;
}
.section--tight { padding-block: clamp(48px, 7vw, 84px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-mono);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--lime);
  opacity: 0.7;
}
.eyebrow--center::before { display: none; }

/* ------------------------- Typography ----------------------------- */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--ivory);
}
.h-display {
  font-size: clamp(2.6rem, 7.2vw, 5.6rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.h1 { font-size: clamp(2.3rem, 5.6vw, 4rem); }
.h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
.h3 { font-size: clamp(1.35rem, 2.4vw, 1.85rem); }
.lead {
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  color: var(--ivory-dim);
  line-height: 1.6;
  max-width: 60ch;
  font-weight: 400;
}
.muted { color: var(--ivory-mute); }
.text-grad {
  background: linear-gradient(100deg, var(--ivory) 0%, var(--ivory) 38%, var(--lime) 64%, var(--lime-bright) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.shimmer {
  background: linear-gradient(100deg, var(--lime-deep), var(--lime-bright), var(--teal), var(--lime-bright), var(--lime-deep));
  background-size: 300% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerMove 6s linear infinite;
}
@keyframes shimmerMove { to { background-position: 300% 0; } }

/* Section heading block */
.sec-head { max-width: 760px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head .h2 { margin-top: 18px; }
.sec-head p { margin-top: 18px; }

/* ----------------------------- Buttons ---------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: var(--r-pill);
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease), background 0.3s, color 0.3s, box-shadow 0.35s, border-color 0.3s;
  white-space: nowrap;
  will-change: transform;
}
.btn svg { width: 17px; height: 17px; transition: transform 0.35s var(--ease); }
.btn--primary {
  background: var(--lime);
  color: #0a0d10;
  box-shadow: 0 10px 30px -10px var(--lime-glow);
}
.btn--primary:hover {
  background: var(--lime-bright);
  box-shadow: 0 16px 44px -12px var(--lime-glow);
}
.btn--primary:hover svg { transform: translateX(4px); }
.btn--ghost {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line-2);
  color: var(--ivory);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  border-color: var(--line-3);
  background: rgba(255, 255, 255, 0.05);
}
.btn--lg { padding: 18px 34px; font-size: 16px; }
.btn--block { width: 100%; justify-content: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--lime);
  font-size: 15px;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ----------------------------- Navbar ----------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: height 0.4s var(--ease), background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  height: 64px;
  background: rgba(9, 12, 18, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.brand__mark {
  width: 34px; height: 34px;
  flex: 0 0 auto;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--ink-700);
  border: 1px solid var(--line-2);
  box-shadow: inset 0 0 0 1px rgba(203,242,78,0.06);
}
.brand__mark svg { width: 20px; height: 20px; }
.brand small {
  display: block;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.24em;
  color: var(--ivory-mute);
  font-weight: 400;
  margin-top: 1px;
}
.brand b { display: block; line-height: 1; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__links a {
  position: relative;
  padding: 9px 15px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ivory-dim);
  border-radius: var(--r-pill);
  transition: color 0.25s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 15px; right: 15px; bottom: 4px;
  height: 1.5px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s var(--ease);
}
.nav__links a:hover, .nav__links a.active { color: var(--ivory); }
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }

.nav__cta { display: flex; align-items: center; gap: 12px; }

/* Dropdown */
.has-drop { position: relative; }
.drop {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 320px;
  background: var(--glass-2);
  backdrop-filter: blur(18px);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 10px;
  box-shadow: var(--sh-2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
}
.has-drop:hover .drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.drop a {
  display: flex;
  gap: 12px;
  padding: 12px 13px;
  border-radius: var(--r-md);
  align-items: flex-start;
}
.drop a::after { display: none; }
.drop a:hover { background: rgba(255,255,255,0.04); }
.drop__ico {
  width: 34px; height: 34px;
  flex: 0 0 auto;
  border-radius: 9px;
  display: grid; place-items: center;
  background: rgba(203,242,78,0.1);
  color: var(--lime);
  margin-top: 2px;
}
.drop__ico svg { width: 17px; height: 17px; }
.drop b { display: block; font-size: 14px; color: var(--ivory); font-weight: 600; font-family: var(--f-body); }
.drop span { display: block; font-size: 12.5px; color: var(--ivory-mute); line-height: 1.4; }

/* Mobile */
.nav__toggle { display: none; width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--line-2); }
.nav__toggle span { display: block; width: 18px; height: 1.6px; background: var(--ivory); margin: 4px auto; transition: 0.3s var(--ease); }
.nav__toggle.open span:nth-child(1) { transform: translateY(5.6px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-5.6px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(7, 9, 13, 0.96);
  backdrop-filter: blur(20px);
  padding: calc(var(--nav-h) + 30px) var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.5s var(--ease), opacity 0.4s, visibility 0.5s;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 8vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ivory);
  opacity: 0;
  transform: translateY(20px);
}
.mobile-menu.open a { animation: mmIn 0.5s var(--ease) forwards; }
.mobile-menu.open a:nth-child(1) { animation-delay: 0.08s; }
.mobile-menu.open a:nth-child(2) { animation-delay: 0.14s; }
.mobile-menu.open a:nth-child(3) { animation-delay: 0.20s; }
.mobile-menu.open a:nth-child(4) { animation-delay: 0.26s; }
.mobile-menu.open a:nth-child(5) { animation-delay: 0.32s; }
.mobile-menu.open a:nth-child(6) { animation-delay: 0.38s; }
.mobile-menu a span { color: var(--lime); font-family: var(--f-mono); font-size: 13px; }
.mobile-menu__cta { margin-top: 24px; }
@keyframes mmIn { to { opacity: 1; transform: translateY(0); } }

/* ----------------------------- Cards ------------------------------ */
.card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.008));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px;
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.5s;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(203,242,78,0.35), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
}
.card:hover { border-color: var(--line-2); box-shadow: var(--sh-2); }
.card:hover::before { opacity: 1; }

/* Service card */
.svc-grid { display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); }
.svc-card {
  display: flex;
  flex-direction: column;
  min-height: 380px;
  padding: 32px;
  cursor: pointer;
}
.svc-card__num {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--ivory-mute);
}
.svc-card__ico {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(203,242,78,0.08);
  border: 1px solid rgba(203,242,78,0.18);
  color: var(--lime);
  margin: 22px 0 24px;
  transition: transform 0.5s var(--ease), background 0.4s;
}
.svc-card__ico svg { width: 26px; height: 26px; }
.svc-card:hover .svc-card__ico { transform: translateY(-4px) rotate(-6deg); background: rgba(203,242,78,0.14); }
.svc-card h3 { margin-bottom: 12px; }
.svc-card p { color: var(--ivory-mute); font-size: 15px; flex: 1; }
.svc-card__foot {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.svc-card__price { font-family: var(--f-mono); font-size: 14px; color: var(--ivory); font-weight: 500; }
.svc-card__price b { color: var(--lime); font-weight: 600; }

/* Feature / value cards grid */
.feature-grid { display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); }
.feature {
  padding: 26px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.015);
  border: 1px solid var(--line);
  transition: border-color 0.4s, transform 0.4s var(--ease), background 0.4s;
}
.feature:hover { border-color: var(--line-2); transform: translateY(-4px); background: rgba(255,255,255,0.03); }
.feature__ico {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(203,242,78,0.08);
  color: var(--lime);
  margin-bottom: 18px;
}
.feature__ico svg { width: 22px; height: 22px; }
.feature h3, .feature h4 { font-family: var(--f-body); font-weight: 700; font-size: 17px; margin-bottom: 8px; letter-spacing: 0; overflow-wrap: anywhere; }
.feature p { font-size: 14.5px; color: var(--ivory-mute); }

/* ----------------------------- Marquee ---------------------------- */
.marquee {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding-block: 22px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ivory-mute);
  white-space: nowrap;
}
.marquee__item svg { width: 16px; height: 16px; color: var(--lime); flex: 0 0 auto; }
.marquee__item.hl { color: var(--ivory); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ----------------------------- Stats ------------------------------ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.stat { padding: 30px 26px; background: var(--ink-800); }
.stat__num { font-family: var(--f-display); font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.stat__num .u { color: var(--lime); }
.stat__label { margin-top: 10px; font-size: 13.5px; color: var(--ivory-mute); }

/* ----------------------------- Process ---------------------------- */
.process { display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 28px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step__n {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--lime);
  letter-spacing: 0.15em;
  padding-top: 6px;
}
.step__n b { display: block; font-family: var(--f-display); font-size: 30px; color: var(--ivory); letter-spacing: -0.02em; }
.step h3 { font-family: var(--f-body); font-weight: 700; font-size: 20px; letter-spacing: 0; margin-bottom: 8px; }
.step p { color: var(--ivory-mute); font-size: 15px; max-width: 64ch; }
.step__bar { position: absolute; left: 0; bottom: -1px; height: 2px; width: 0; background: var(--lime); transition: width 1.1s var(--ease); }
.step.in-view .step__bar { width: 100%; }

/* ----------------------------- Accordion -------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 4px;
  text-align: left;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  letter-spacing: -0.01em;
  color: var(--ivory);
  transition: color 0.3s;
}
.faq__q:hover { color: var(--lime); }
.faq__icon { position: relative; width: 20px; height: 20px; flex: 0 0 auto; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--lime); transition: transform 0.4s var(--ease); }
.faq__icon::before { top: 9px; left: 0; width: 20px; height: 2px; }
.faq__icon::after { left: 9px; top: 0; width: 2px; height: 20px; }
.faq__item.open .faq__icon::after { transform: scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq__a-inner { padding: 0 4px 26px; color: var(--ivory-mute); font-size: 15.5px; max-width: 72ch; }

/* ----------------------------- Forms ------------------------------ */
.field { position: relative; margin-bottom: 22px; }
.field label, .field .field-cap {
  display: block;
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory-mute);
  margin-bottom: 10px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 15px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  color: var(--ivory);
  font-family: var(--f-body);
  font-size: 15.5px;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: var(--ivory-faint); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--lime);
  background: rgba(203,242,78,0.03);
  box-shadow: 0 0 0 3px rgba(203,242,78,0.12);
}
.field select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%237C859A' stroke-width='2'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  padding: 9px 16px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-2);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ivory-dim);
  transition: 0.25s var(--ease);
  font-family: var(--f-mono);
  letter-spacing: 0.02em;
}
.chip:hover { border-color: var(--line-3); color: var(--ivory); }
.chip.active { background: var(--lime); border-color: var(--lime); color: #0a0d10; }
.form-note { font-size: 13px; color: var(--ivory-faint); margin-top: 6px; }
.form-status { margin-top: 16px; font-size: 14.5px; }
.form-status.ok { color: var(--lime); }
.form-status.err { color: #ff8b6b; }

/* ----------------------- Contact info cards ----------------------- */
.info-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.015);
  transition: border-color 0.4s, transform 0.4s var(--ease);
}
.info-card:hover { border-color: var(--line-2); transform: translateX(4px); }
.info-card__ico { width: 46px; height: 46px; flex: 0 0 auto; border-radius: 12px; display: grid; place-items: center; background: rgba(203,242,78,0.08); color: var(--lime); }
.info-card__ico svg { width: 22px; height: 22px; }
.info-card label { font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ivory-mute); }
.info-card b { display: block; font-size: 16px; font-weight: 600; margin-top: 4px; color: var(--ivory); font-family: var(--f-body); }
.info-card span { font-size: 14px; color: var(--ivory-dim); }

/* ----------------------------- CTA band --------------------------- */
.cta-band {
  position: relative;
  border-radius: var(--r-xl);
  padding: clamp(44px, 7vw, 80px);
  overflow: hidden;
  background:
    radial-gradient(600px 300px at 80% 10%, rgba(203,242,78,0.16), transparent 60%),
    radial-gradient(500px 300px at 10% 90%, rgba(110,141,255,0.14), transparent 60%),
    var(--ink-750);
  border: 1px solid var(--line-2);
  text-align: center;
}
.cta-band h2 { max-width: 18ch; margin-inline: auto; }
.cta-band p { margin: 18px auto 30px; max-width: 52ch; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ----------------------------- Footer ----------------------------- */
.footer { border-top: 1px solid var(--line); padding-block: 64px 32px; position: relative; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; }
.footer__brand p { color: var(--ivory-mute); font-size: 14.5px; margin-top: 18px; max-width: 32ch; }
.footer h5 { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ivory-mute); margin-bottom: 18px; font-weight: 500; }
.footer__col a { display: block; padding: 7px 0; font-size: 14.5px; color: var(--ivory-dim); transition: color 0.25s, transform 0.25s var(--ease); width: fit-content; }
.footer__col a:hover { color: var(--lime); transform: translateX(4px); }
.footer__meta { display: flex; flex-direction: column; gap: 6px; font-size: 13.5px; color: var(--ivory-mute); }
.footer__meta b { color: var(--ivory-dim); font-weight: 600; }
.footer__bottom {
  margin-top: 48px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ivory-faint);
}
.footer__bottom a { color: var(--ivory-mute); }
.footer__bottom a:hover { color: var(--lime); }
.footer__legal { display: flex; gap: 22px; flex-wrap: wrap; }

/* ----------------------- Page hero (inner) ------------------------ */
.page-hero { padding-top: calc(var(--nav-h) + 60px); padding-bottom: 40px; position: relative; }
/* Clip decorative bleeding orbs inside inner-page heroes so they never cause horizontal overflow */
.page-hero, .svc-hero, .contact-hero { overflow: hidden; }
.breadcrumb { display: flex; align-items: center; gap: 10px; font-family: var(--f-mono); font-size: 12.5px; color: var(--ivory-mute); margin-bottom: 26px; }
.breadcrumb a:hover { color: var(--lime); }
.breadcrumb span { opacity: 0.5; }

/* ----------------------- Legal / prose ---------------------------- */
.legal-layout { display: grid; grid-template-columns: 240px 1fr; gap: 56px; align-items: start; }
.toc { position: sticky; top: calc(var(--nav-h) + 24px); }
.toc h5, .toc .toc-title { font-family: var(--f-mono); font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ivory-mute); margin-bottom: 16px; }
.toc a { display: block; padding: 7px 0 7px 14px; font-size: 13.5px; color: var(--ivory-mute); border-left: 2px solid var(--line); transition: 0.25s; }
.toc a:hover { color: var(--ivory-dim); border-color: var(--line-3); }
.toc a.active { color: var(--lime); border-color: var(--lime); }
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin: 52px 0 16px; scroll-margin-top: calc(var(--nav-h) + 20px); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-family: var(--f-body); font-weight: 700; font-size: 18px; letter-spacing: 0; margin: 28px 0 10px; }
.prose p { color: var(--ivory-dim); margin-bottom: 16px; font-size: 16px; line-height: 1.72; }
.prose ul { margin: 0 0 18px; padding-left: 4px; }
.prose ul li { position: relative; padding-left: 26px; margin-bottom: 11px; color: var(--ivory-dim); font-size: 15.5px; line-height: 1.65; }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: 10px; width: 7px; height: 7px; border-radius: 2px; background: var(--lime); transform: rotate(45deg); }
.prose a { color: var(--lime); border-bottom: 1px solid rgba(203,242,78,0.3); transition: border-color 0.25s; }
.prose a:hover { border-color: var(--lime); }
.prose strong { color: var(--ivory); font-weight: 700; }
.prose table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: 14.5px; }
.prose th, .prose td { text-align: left; padding: 13px 16px; border: 1px solid var(--line); }
.prose th { background: rgba(255,255,255,0.02); font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ivory-dim); font-weight: 500; }
.prose td { color: var(--ivory-mute); }
.callout {
  display: flex; gap: 14px;
  padding: 20px 22px;
  border-radius: var(--r-md);
  background: rgba(203,242,78,0.05);
  border: 1px solid rgba(203,242,78,0.18);
  margin: 24px 0;
}
.callout svg { width: 22px; height: 22px; color: var(--lime); flex: 0 0 auto; margin-top: 2px; }
.callout p { color: var(--ivory-dim); font-size: 14.5px; margin: 0; }
.updated { font-family: var(--f-mono); font-size: 12.5px; color: var(--ivory-mute); letter-spacing: 0.04em; }

/* ----------------------- Reveal animations ------------------------ */
[data-reveal] { transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.js [data-reveal] { opacity: 0; transform: translateY(28px); }
.js [data-reveal="left"] { transform: translateX(-32px); }
.js [data-reveal="right"] { transform: translateX(32px); }
.js [data-reveal="scale"] { transform: scale(0.94); }
[data-reveal].in-view { opacity: 1; transform: none; }
[data-stagger] > * { transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.js [data-stagger] > * { opacity: 0; transform: translateY(24px); }
[data-stagger].in-view > * { opacity: 1; transform: none; }
[data-stagger].in-view > *:nth-child(1) { transition-delay: 0.05s; }
[data-stagger].in-view > *:nth-child(2) { transition-delay: 0.12s; }
[data-stagger].in-view > *:nth-child(3) { transition-delay: 0.19s; }
[data-stagger].in-view > *:nth-child(4) { transition-delay: 0.26s; }
[data-stagger].in-view > *:nth-child(5) { transition-delay: 0.33s; }
[data-stagger].in-view > *:nth-child(6) { transition-delay: 0.40s; }

/* ----------------------- Utility ---------------------------------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 4vw, 56px); align-items: center; }
.grid-2.wide-left { grid-template-columns: 1.15fr 0.85fr; }
.mono-tag { font-family: var(--f-mono); font-size: 12.5px; letter-spacing: 0.1em; color: var(--ivory-mute); }
.divider { height: 1px; background: var(--line); border: 0; }
.center { text-align: center; }
.mt-s { margin-top: 16px; } .mt-m { margin-top: 28px; } .mt-l { margin-top: 44px; }
.badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: var(--r-pill); border: 1px solid var(--line-2); font-size: 13px; color: var(--ivory-dim); font-family: var(--f-mono); letter-spacing: 0.02em; }
.badge svg { width: 14px; height: 14px; color: var(--lime); }
.float-anim { animation: floaty 6s var(--ease-in-out) infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.spin-slow { animation: spin 22s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.pulse-ring { animation: pulseRing 2.6s var(--ease-out) infinite; }
@keyframes pulseRing { 0% { transform: scale(0.7); opacity: 0.7; } 100% { transform: scale(2.2); opacity: 0; } }

/* ----------------------- Responsive ------------------------------- */
@media (max-width: 1080px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .legal-layout { grid-template-columns: 1fr; gap: 32px; }
  .toc { position: static; display: none; }
}
@media (max-width: 920px) {
  .svc-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .grid-2, .grid-2.wide-left { grid-template-columns: 1fr; }
  .nav__links, .nav__cta .btn--ghost, .nav__cta .btn--primary { display: none; }
  .nav__toggle { display: block; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .feature-grid, .stats { grid-template-columns: 1fr; }
  .prose table { display: block; overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch; }
  .footer__top { grid-template-columns: 1fr; gap: 30px; }
  .card, .svc-card { padding: 24px; }
  .btn { padding: 14px 22px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
