/* ========================================================================
   EMPACT PARCEL — Design System v2
   Stripe-grade typography, generous whitespace, monochrome + cyan accent
   ======================================================================== */

:root {
  /* ------- Color ------- */
  --ink-900: #0A0E1A;        /* Near-black (headlines, primary text) */
  --ink-700: #1F2937;        /* Body text */
  --ink-500: #4B5563;        /* Secondary text */
  --ink-400: #6B7280;        /* Tertiary text */
  --ink-300: #9CA3AF;        /* Faint text */
  --ink-200: #D1D5DB;        /* Borders */
  --ink-100: #E5E7EB;        /* Subtle borders / dividers */
  --ink-50:  #F4F5F7;        /* Surface light */
  --ink-25:  #FAFAFB;        /* Surface lighter */
  --white:   #FFFFFF;

  /* Brand slate (from logo) */
  --slate-700: #4E6E87;
  --slate-600: #5C7E97;
  --slate-500: #789BB3;

  /* Electric accent */
  --accent:        #2563EB;   /* Electric blue */
  --accent-hover:  #1D4ED8;
  --accent-soft:   #DBEAFE;
  --accent-glow:   rgba(37, 99, 235, 0.25);
  --cyan:          #06B6D4;

  /* Gradient stops (used for hero mesh) */
  --g1: #4E6E87;
  --g2: #2563EB;
  --g3: #06B6D4;
  --g4: #C5D5E6;

  /* ------- Typography ------- */
  --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Inter Tight', 'Inter', ui-sans-serif, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Type scale (fluid) */
  --t-display: clamp(2.75rem, 6.5vw, 5.5rem);    /* Hero */
  --t-h1: clamp(2.25rem, 4.5vw, 3.75rem);
  --t-h2: clamp(1.875rem, 3.4vw, 2.75rem);
  --t-h3: clamp(1.375rem, 2.2vw, 1.75rem);
  --t-h4: 1.125rem;
  --t-lead: clamp(1.125rem, 1.4vw, 1.375rem);
  --t-body: 1.0625rem;
  --t-small: 0.9375rem;
  --t-eyebrow: 0.8125rem;

  /* ------- Spacing ------- */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-8: 3rem;
  --s-10: 4rem;
  --s-12: 6rem;
  --s-16: 8rem;
  --s-20: 10rem;
  --s-24: 12rem;

  /* ------- Layout ------- */
  --max: 1200px;
  --nav-h: 72px;

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

  /* ------- Shadows ------- */
  --shadow-card: 0 1px 2px rgba(10, 14, 26, 0.04), 0 8px 24px rgba(10, 14, 26, 0.05);
  --shadow-lift: 0 4px 8px rgba(10, 14, 26, 0.04), 0 20px 50px rgba(10, 14, 26, 0.10);
  --shadow-btn: 0 1px 2px rgba(37, 99, 235, 0.30);
}

/* ========================================================================
   RESET
   ======================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--t-body);
  line-height: 1.55;
  color: var(--ink-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
}
img, svg { display: block; max-width: 100%; }
a { color: var(--ink-900); text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-900);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0 0 var(--s-5);
}
h1 { font-size: var(--t-h1); }
h2 { font-size: var(--t-h2); letter-spacing: -0.028em; }
h3 { font-size: var(--t-h3); letter-spacing: -0.02em; line-height: 1.2; }
h4 { font-size: var(--t-h4); letter-spacing: -0.01em; line-height: 1.3; }

p {
  margin: 0 0 var(--s-4);
  color: var(--ink-500);
  font-size: var(--t-body);
}

.lead { font-size: var(--t-lead); color: var(--ink-500); line-height: 1.5; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--t-eyebrow);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s-5);
}
.eyebrow--ink { color: var(--ink-400); }
.eyebrow--dot::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 8px;
  vertical-align: middle;
  transform: translateY(-1px);
}

/* ========================================================================
   LAYOUT
   ======================================================================== */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--s-6);
}
.section { padding: var(--s-20) 0; }
.section--sm { padding: var(--s-12) 0; }
.section--lg { padding: var(--s-24) 0; }
.section--dark { background: var(--ink-900); color: var(--ink-200); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.65); }
.section--soft { background: var(--ink-25); }
.section--bordered { border-top: 1px solid var(--ink-100); border-bottom: 1px solid var(--ink-100); }

@media (max-width: 720px) {
  .section { padding: var(--s-12) 0; }
  .section--lg { padding: var(--s-16) 0; }
  .wrap { padding: 0 var(--s-5); }
}
@media (max-width: 480px) {
  .section { padding: var(--s-10) 0; }
  .wrap { padding: 0 var(--s-4); }
}

/* ========================================================================
   NAVIGATION
   ======================================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  z-index: 200;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.nav.scrolled { border-bottom-color: var(--ink-100); }

.nav__inner {
  height: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--s-6);
  display: flex;
  align-items: center;
  gap: var(--s-8);
}
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo img { height: 36px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--s-6);
  margin: 0 auto 0 0;
  padding: 0;
  list-style: none;
}
.nav__links a {
  font-size: var(--t-small);
  color: var(--ink-500);
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: color 0.15s ease;
}
.nav__links a:hover, .nav__links a.active { color: var(--ink-900); }

.nav__cta { display: flex; align-items: center; gap: var(--s-3); flex-shrink: 0; }
.nav__sign-in {
  font-size: var(--t-small);
  color: var(--ink-500);
  font-weight: 500;
}
.nav__sign-in:hover { color: var(--ink-900); }

.nav__toggle {
  display: none;
  width: 36px; height: 36px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
}
.nav__toggle span {
  width: 20px; height: 2px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
  display: block;
}

/* Mobile-only CTA — hidden on desktop by default */
.nav__mobile-cta { display: none; }

@media (max-width: 900px) {
  .nav__inner { gap: var(--s-3); padding: 0 var(--s-5); }

  /* Collapse nav links into slide-down drawer */
  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border-bottom: 1px solid var(--ink-100);
    padding: var(--s-4) var(--s-5);
    gap: 0;
    margin: 0;
    z-index: 190;
    box-shadow: 0 8px 32px rgba(10,14,26,0.10);
    /* Hidden off-screen above */
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.2s ease;
  }
  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  /* Each link item gets padding for tap targets */
  .nav__links li { border-bottom: 1px solid var(--ink-50); }
  .nav__links li:last-child { border-bottom: none; }
  .nav__links a {
    display: block;
    padding: 0.875rem 0;
    font-size: 1rem;
    color: var(--ink-700);
  }
  .nav__links a:hover,
  .nav__links a.active { color: var(--ink-900); }

  /* Show mobile CTA as last item in drawer */
  .nav__mobile-cta { display: block; }
  .nav__mobile-cta a {
    display: block;
    padding: 0.875rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent) !important;
  }

  /* Hide desktop-only elements */
  .nav__sign-in { display: none; }
  .nav__cta .btn--primary { display: none; }

  /* Show hamburger */
  .nav__toggle { display: flex; }
}

@media (max-width: 480px) {
  .nav__inner { padding: 0 var(--s-4); }
  .nav__links { padding: var(--s-3) var(--s-4); }
}

.nav-spacer { height: var(--nav-h); }

/* ========================================================================
   BUTTONS
   ======================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  font-size: var(--t-small);
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: var(--r-full);
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--ink-900);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--ink-700);
  color: var(--white);
}
.btn--accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-btn);
}
.btn--accent:hover {
  background: var(--accent-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--accent-glow);
}
.btn--ghost {
  color: var(--ink-900);
  border-color: var(--ink-200);
  background: var(--white);
}
.btn--ghost:hover { border-color: var(--ink-900); }
.btn--link {
  color: var(--ink-900);
  padding: 0.25rem 0;
  font-weight: 500;
}
.btn--link:hover { color: var(--accent); }
.btn--lg {
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
}
.btn .arr {
  width: 14px; height: 14px;
  transition: transform 0.2s ease;
}
.btn:hover .arr { transform: translateX(2px); }

/* ========================================================================
   HERO (Stripe-style: pure typography + animated gradient orb)
   ======================================================================== */
.hero {
  position: relative;
  padding: var(--s-16) 0 var(--s-12);
  overflow: hidden;
  isolation: isolate;
}
.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--s-6);
  position: relative;
}
.hero h1 {
  font-size: var(--t-display);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.98;
  max-width: 14ch;
  margin-bottom: var(--s-6);
  color: var(--ink-900);
}
.hero h1 .grad {
  background: linear-gradient(110deg, var(--accent) 0%, var(--cyan) 40%, var(--slate-600) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  font-size: var(--t-lead);
  color: var(--ink-500);
  max-width: 56ch;
  line-height: 1.45;
  margin-bottom: var(--s-8);
}
.hero__ctas {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  margin-bottom: var(--s-12);
}
@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
}

/* Gradient orb in hero background */
.hero__orb {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 900px; height: 900px;
  background: radial-gradient(circle at 30% 30%, var(--accent), transparent 50%),
              radial-gradient(circle at 70% 60%, var(--cyan), transparent 50%),
              radial-gradient(circle at 40% 80%, var(--slate-500), transparent 55%);
  filter: blur(80px);
  opacity: 0.30;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  animation: orbDrift 20s ease-in-out infinite;
}
@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33%      { transform: translate(-30px, 30px) rotate(120deg); }
  66%      { transform: translate(40px, -20px) rotate(240deg); }
}
.hero__orb--secondary {
  top: auto; right: auto;
  bottom: -300px; left: -200px;
  width: 700px; height: 700px;
  opacity: 0.18;
  animation-delay: -10s;
  animation-duration: 25s;
}

/* Inner hero (smaller, for sub-pages) */
.hero--inner { padding: var(--s-12) 0 var(--s-8); }
.hero--inner h1 {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  max-width: 22ch;
}

/* Hero stats row */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-8);
  padding-top: var(--s-8);
  border-top: 1px solid var(--ink-100);
  max-width: 720px;
}
.hero__stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--ink-900);
  line-height: 1;
}
.hero__stat__num sup {
  font-size: 0.55em;
  font-weight: 500;
  color: var(--accent);
  margin-left: 0.1em;
}
.hero__stat__label {
  margin-top: var(--s-2);
  font-size: var(--t-small);
  color: var(--ink-400);
  line-height: 1.35;
}
@media (max-width: 720px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: var(--s-5); max-width: 100%; }
}
@media (max-width: 480px) {
  .hero__stats { grid-template-columns: 1fr; }
  .hero { padding: var(--s-12) 0 var(--s-8); }
  .hero--inner { padding: var(--s-8) 0 var(--s-6); }
}

/* ========================================================================
   LOGO BAR (trusted by)
   ======================================================================== */
.logo-bar {
  padding: var(--s-8) 0;
  border-top: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
}
.logo-bar__label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: var(--t-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-400);
  margin-bottom: var(--s-5);
}
.logo-bar__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-6);
  flex-wrap: wrap;
}
.logo-bar__item {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--ink-300);
  letter-spacing: -0.015em;
  flex: 1;
  text-align: center;
  min-width: 120px;
}

/* ========================================================================
   SECTION HEAD (eyebrow + h2 + lead)
   ======================================================================== */
.head { max-width: 720px; margin-bottom: var(--s-10); }
.head--center { margin-left: auto; margin-right: auto; text-align: center; }
.head h2 { margin-bottom: var(--s-4); }

/* ========================================================================
   GRIDS
   ======================================================================== */
.grid { display: grid; gap: var(--s-6); }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .g-3, .g-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .g-2 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .g-3, .g-4 { grid-template-columns: 1fr; }
}

/* ========================================================================
   FEATURE CARDS (services overview)
   ======================================================================== */
.feature {
  position: relative;
  padding: var(--s-6);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  background: var(--white);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.feature:hover {
  border-color: var(--ink-200);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.feature__num {
  font-family: var(--font-mono);
  font-size: var(--t-eyebrow);
  color: var(--ink-300);
  letter-spacing: 0.06em;
  margin-bottom: var(--s-4);
}
.feature h3 {
  font-size: 1.375rem;
  margin-bottom: var(--s-3);
  letter-spacing: -0.02em;
}
.feature p { margin-bottom: var(--s-5); }
.feature__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--t-small);
  font-weight: 500;
  color: var(--ink-900);
}
.feature__link:hover { color: var(--accent); }
.feature__link svg { transition: transform 0.2s ease; }
.feature__link:hover svg { transform: translateX(2px); }
.feature--primary {
  border-color: var(--ink-900);
  background: var(--ink-900);
  color: var(--white);
}
.feature--primary h3 { color: var(--white); }
.feature--primary p { color: rgba(255,255,255,0.65); }
.feature--primary .feature__num { color: var(--cyan); }
.feature--primary .feature__link { color: var(--white); }
.feature--primary .feature__link:hover { color: var(--cyan); }

/* ========================================================================
   SPLIT (text + visual element)
   ======================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-12);
  align-items: center;
}
.split--right .split__media { order: 2; }
.split__text h2 { margin-bottom: var(--s-5); }
.split__text p { margin-bottom: var(--s-4); }

.split__media {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--ink-25);
  display: grid;
  place-items: center;
  isolation: isolate;
}
.split__media__orb {
  position: absolute;
  inset: -20%;
  background: conic-gradient(from 0deg at 50% 50%,
    var(--g1), var(--g2), var(--g3), var(--g4), var(--g1));
  filter: blur(60px);
  opacity: 0.7;
  z-index: -1;
  animation: rotate 25s linear infinite;
}
@keyframes rotate { to { transform: rotate(360deg); } }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: var(--s-8); }
  .split--right .split__media { order: 0; }
  .split__media { max-height: 280px; }
}
@media (max-width: 600px) {
  .split__media { display: none; }
}

/* ========================================================================
   CHECK LIST
   ======================================================================== */
.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--s-3);
}
.checklist li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: var(--s-3);
  align-items: start;
  font-size: var(--t-body);
  color: var(--ink-700);
  line-height: 1.5;
}
.checklist li::before {
  content: '';
  width: 18px; height: 18px;
  margin-top: 4px;
  background: var(--accent);
  border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 11px no-repeat var(--accent);
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 11px no-repeat;
  background-color: var(--accent);
}
.section--dark .checklist li { color: rgba(255,255,255,0.85); }

/* ========================================================================
   METRIC TILE
   ======================================================================== */
.metric {
  display: flex;
  flex-direction: column;
}
.metric__value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--ink-900);
  margin-bottom: var(--s-3);
}
.metric__value .accent { color: var(--accent); }
.metric__label {
  font-size: var(--t-small);
  color: var(--ink-500);
  line-height: 1.4;
  max-width: 28ch;
}

/* ========================================================================
   CASE STUDY TILE
   ======================================================================== */
.case {
  display: block;
  padding: var(--s-6);
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  height: 100%;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.case:hover {
  border-color: var(--ink-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  color: inherit;
}
.case__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: var(--s-5);
}
.case__metric {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 0.95;
  margin-bottom: var(--s-4);
}
.case h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: var(--s-3);
  letter-spacing: -0.015em;
  line-height: 1.35;
  color: var(--ink-900);
}
.case p { font-size: var(--t-small); color: var(--ink-500); margin: 0; }

/* ========================================================================
   STEP LIST (process)
   ======================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: var(--s-6);
  border-top: 1px solid var(--ink-100);
}
.step::before {
  counter-increment: step;
  content: '0' counter(step);
  position: absolute;
  top: -1px;
  left: 0;
  padding-top: var(--s-3);
  font-family: var(--font-mono);
  font-size: var(--t-eyebrow);
  color: var(--accent);
  letter-spacing: 0.06em;
  font-weight: 500;
}
.step h4 {
  margin-top: var(--s-4);
  margin-bottom: var(--s-2);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink-900);
}
.step p { font-size: var(--t-small); color: var(--ink-500); margin: 0; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }

/* ========================================================================
   QUOTE / TESTIMONIAL
   ======================================================================== */
.quote {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.quote__text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.6vw, 2.125rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.3;
  color: var(--ink-900);
  margin-bottom: var(--s-5);
}
.quote__attr {
  font-size: var(--t-small);
  color: var(--ink-400);
}

/* ========================================================================
   FAQ
   ======================================================================== */
.faq { max-width: 760px; margin: 0 auto; }
.faq__item {
  border-top: 1px solid var(--ink-100);
}
.faq__item:last-child { border-bottom: 1px solid var(--ink-100); }
.faq__q {
  width: 100%;
  text-align: left;
  padding: var(--s-5) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--ink-900);
  letter-spacing: -0.015em;
}
.faq__icon {
  width: 14px; height: 14px;
  flex-shrink: 0;
  color: var(--ink-400);
  transition: transform 0.2s ease;
}
.faq__item.open .faq__icon { transform: rotate(45deg); color: var(--accent); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq__a-inner {
  padding: 0 0 var(--s-5);
  font-size: var(--t-body);
  color: var(--ink-500);
  max-width: 640px;
  line-height: 1.55;
}
.faq__item.open .faq__a { max-height: 500px; }

/* ========================================================================
   FORM
   ======================================================================== */
.form-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--s-10);
  align-items: start;
}
@media (max-width: 900px) { .form-grid { grid-template-columns: 1fr; } }

.form-card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-xl);
  padding: var(--s-8);
  box-shadow: var(--shadow-card);
}
@media (max-width: 480px) {
  .form-card { padding: var(--s-5); border-radius: var(--r-lg); }
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  margin-bottom: var(--s-4);
}
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: var(--s-4); display: flex; flex-direction: column; }
.field label {
  font-size: var(--t-small);
  font-weight: 500;
  color: var(--ink-900);
  margin-bottom: var(--s-2);
  letter-spacing: -0.005em;
}
.field label .req { color: var(--accent); margin-left: 2px; }
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: var(--t-body);
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--ink-200);
  border-radius: var(--r-sm);
  background: var(--white);
  color: var(--ink-900);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field textarea { resize: vertical; min-height: 100px; }
.field--note { font-size: var(--t-small); color: var(--ink-400); margin-top: var(--s-3); }

.form-success {
  display: none;
  padding: var(--s-5);
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  border-radius: var(--r-md);
  margin-bottom: var(--s-5);
  color: var(--ink-700);
}
.form-success.show { display: block; }
.form-success strong { color: var(--ink-900); }

/* ========================================================================
   CTA SECTION
   ======================================================================== */
.cta-band {
  position: relative;
  padding: var(--s-20) var(--s-6);
  text-align: center;
  background: var(--ink-900);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
@media (max-width: 720px) {
  .cta-band { padding: var(--s-12) var(--s-5); }
}
@media (max-width: 480px) {
  .cta-band { padding: var(--s-10) var(--s-4); }
  .cta-band .btn { width: 100%; justify-content: center; }
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at 30% 50%, var(--accent) 0%, transparent 35%),
              radial-gradient(circle at 70% 60%, var(--cyan) 0%, transparent 35%);
  filter: blur(80px);
  opacity: 0.35;
  z-index: -1;
}
.cta-band h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.035em;
  margin-bottom: var(--s-5);
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}
.cta-band p {
  color: rgba(255,255,255,0.65);
  font-size: var(--t-lead);
  max-width: 52ch;
  margin: 0 auto var(--s-8);
}

/* ========================================================================
   FOOTER
   ======================================================================== */
.footer {
  background: var(--white);
  border-top: 1px solid var(--ink-100);
  padding: var(--s-12) 0 var(--s-6);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s-8);
  margin-bottom: var(--s-10);
}
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--s-6); } }
@media (max-width: 440px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__brand img { height: 30px; margin-bottom: var(--s-4); }
.footer__brand p {
  font-size: var(--t-small);
  color: var(--ink-400);
  max-width: 36ch;
}
.footer__col h5 {
  font-family: var(--font-mono);
  font-size: var(--t-eyebrow);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin: 0 0 var(--s-4);
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-2); }
.footer__col a {
  font-size: var(--t-small);
  color: var(--ink-700);
  font-weight: 500;
}
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  border-top: 1px solid var(--ink-100);
  padding-top: var(--s-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-3);
  font-size: 0.8125rem;
  color: var(--ink-400);
}
.footer__bottom a { color: var(--ink-400); margin-left: var(--s-4); }
.footer__bottom a:hover { color: var(--ink-900); }

/* ========================================================================
   REVEAL ANIMATION
   ======================================================================== */
.r { opacity: 0; transform: translateY(12px); transition: opacity 0.7s ease, transform 0.7s ease; }
.r.in { opacity: 1; transform: translateY(0); }

/* ========================================================================
   UTIL
   ======================================================================== */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.divider {
  height: 1px;
  background: var(--ink-100);
  margin: var(--s-10) 0;
}
.kbd-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 2px 8px;
  border: 1px solid var(--ink-200);
  border-radius: var(--r-sm);
  color: var(--ink-500);
  background: var(--ink-25);
  letter-spacing: 0;
}

/* Print */
@media print {
  .nav, .cta-band, .footer { display: none; }
}
