/* ==========================================================================
   SUDORA — Design System
   Claude Dark Mode palette · Inter typeface · Warm orange accent
   ========================================================================== */

/* --------------------------------------------------------------------------
   Custom Properties
   -------------------------------------------------------------------------- */
:root {
  --bg-primary:    #1a1a1a;
  --bg-secondary:  #242424;
  --bg-tertiary:   #2e2e2e;
  --border:        #3a3a3a;
  --text-primary:  #ececec;
  --text-secondary:#9a9a9a;
  --accent:        #d4783a;
  --accent-hover:  #c06830;
  --accent-muted:  rgba(212,120,58,.12);
  --accent-glow:   rgba(212,120,58,.06);

  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-full: 9999px;

  --ease:       cubic-bezier(.22,.68,0,1.2);
  --ease-out:   cubic-bezier(.0,.0,.2,1);
  --duration:   220ms;
  --duration-lg:360ms;

  --nav-h: 66px;
  --max-w: 1200px;
  --section-py: 100px;
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }
svg { display: block; }

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: var(--text-primary);
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: var(--section-py) 0; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

/* Cartoon Button — ported from cartoon-button.tsx (21st.dev)
   Used on: hero primary CTA + nav CTA
   Traits: dark border, dark text on accent bg, lift+shadow on hover, sheen sweep */
.btn--cartoon {
  background: var(--accent);
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
  font-weight: 700;
  overflow: hidden;
  position: relative;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}
.btn--cartoon:hover {
  background: var(--accent);
  border-color: #1a1a1a;
  transform: translateY(-4px);
  box-shadow: 0 4px 0 0 #1a1a1a;
}
.btn--cartoon:active {
  transform: translateY(0);
  box-shadow: none;
}
/* Diagonal sheen sweep on hover */
.btn--cartoon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -110%;
  width: 60px;
  height: 150%;
  background: rgba(255, 255, 255, 0.45);
  transform: translateY(-50%) rotate(12deg);
  transition: left 480ms ease-in-out;
  pointer-events: none;
}
.btn--cartoon:hover::before { left: 210%; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease-out),
              background var(--duration) var(--ease-out),
              border-color var(--duration) var(--ease-out),
              color var(--duration) var(--ease-out);
  white-space: nowrap;
}

.btn--lg { padding: 14px 28px; font-size: 15px; }

.btn--accent {
  background: var(--accent);
  color: #fff;
  border: 1.5px solid var(--accent);
  box-shadow: 0 0 0 0 rgba(212,120,58,0);
}
.btn--accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(212,120,58,.28);
}
.btn--accent:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover {
  border-color: #555;
  background: var(--bg-secondary);
  transform: translateY(-1px);
}
.btn--ghost:active { transform: translateY(0); }

/* --------------------------------------------------------------------------
   Section Label
   -------------------------------------------------------------------------- */
.section-label {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}


/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition: background var(--duration) var(--ease-out),
              border-color var(--duration) var(--ease-out);
}

.nav.scrolled {
  background: rgba(26,26,26,.88);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom-color: var(--border);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__logo {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--text-primary);
  flex-shrink: 0;
}
.nav__logo:hover { color: var(--accent); }
.nav__logo { transition: color var(--duration) var(--ease-out); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.nav__link {
  padding: 7px 13px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: color var(--duration) var(--ease-out),
              background var(--duration) var(--ease-out);
}
.nav__link:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,.05);
}

.nav__cta { flex-shrink: 0; }

.nav__mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 7px;
  border-radius: var(--radius-sm);
  margin-left: auto;
}
.nav__mobile-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav__mobile-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__mobile-toggle.open span:nth-child(2) { opacity: 0; }
.nav__mobile-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Mobile Menu
   -------------------------------------------------------------------------- */
.nav__mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  z-index: 199;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 20px;
  flex-direction: column;
  gap: 2px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform .25s var(--ease-out), opacity .2s var(--ease-out);
}
.nav__mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.nav__mobile-menu a {
  padding: 11px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: color var(--duration) var(--ease-out),
              background var(--duration) var(--ease-out);
}
.nav__mobile-menu a:hover { color: var(--text-primary); background: rgba(255,255,255,.05); }
.nav__mobile-menu .btn--accent { color: #fff !important; justify-content: center; margin-top: 10px; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: var(--nav-h);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
  justify-content: space-between;
  background:
    radial-gradient(ellipse 90% 55% at 78% 75%, rgba(212,120,58,.11) 0%, transparent 55%),
    radial-gradient(ellipse 55% 35% at 12% 25%, rgba(212,120,58,.045) 0%, transparent 58%),
    var(--bg-primary);
}

/* Full-hero dithering canvas */
.hero__dither-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.32;
  mix-blend-mode: screen;
}

/* Badge pill */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(212,120,58,.22);
  background: rgba(212,120,58,.08);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero__badge-dot-wrap {
  position: relative;
  width: 8px;
  height: 8px;
  flex-shrink: 0;
}

.hero__badge-dot-ping,
.hero__badge-dot-core {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent);
}

.hero__badge-dot-ping {
  opacity: 0.75;
  animation: badge-ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes badge-ping {
  75%, 100% { transform: scale(2.2); opacity: 0; }
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 148px 0 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__title {
  font-size: clamp(38px, 6.5vw, 72px);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.03;
  max-width: 800px;
  margin-bottom: 20px;
  animation: heroFadeUp .75s var(--ease-out) .18s both;
}

.hero__subtext {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 500px;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 36px;
  animation: heroFadeUp .75s var(--ease-out) .32s both;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  animation: heroFadeUp .75s var(--ease-out) .46s both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------------------------------------
   Value Props grid (used in .gains section)
   -------------------------------------------------------------------------- */
.value-props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--border);
}

.value-card {
  background: var(--bg-secondary);
  padding: 32px 28px;
  transition: background var(--duration) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-lg) var(--ease);
}
.value-card:hover::after { transform: scaleX(1); }
.value-card:hover { background: var(--bg-tertiary); }

.value-card__icon {
  width: 34px;
  height: 34px;
  color: var(--accent);
  margin-bottom: 14px;
}

.value-card h3 {
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -.015em;
  margin-bottom: 8px;
  line-height: 1.3;
}

.value-card p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   Agency Ticker Strip
   -------------------------------------------------------------------------- */
.ticker-wrap {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
  overflow: hidden;
  height: 44px;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  position: relative;
  z-index: 1;
}

.ticker__label {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0 20px 0 28px;
  border-right: 1px solid var(--border);
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  background: var(--bg-secondary);
  position: relative;
  z-index: 1;
}

.ticker__track-wrap {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
  animation: ticker-scroll 28s linear infinite;
  width: max-content;
}

.ticker__track span {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: .01em;
  transition: color var(--duration) ease;
}

.ticker__dot {
  color: var(--accent) !important;
  font-size: 16px;
  line-height: 1;
  opacity: .6;
}

.ticker-wrap:hover .ticker__track {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* --------------------------------------------------------------------------
   Gains Section ("What your agency gains from automation")
   -------------------------------------------------------------------------- */
.gains {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.gains__heading {
  font-size: clamp(22px, 3vw, 36px);
  margin-bottom: 36px;
}

/* --------------------------------------------------------------------------
   Process Section — two-column: static intro left, accordion right
   -------------------------------------------------------------------------- */
.process { background: var(--bg-primary); }

.process__layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 88px;
  align-items: flex-start;
}

.process__intro {
  position: sticky;
  top: calc(var(--nav-h) + 40px);
}

.process__intro h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  margin-bottom: 16px;
}

.process__intro > p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* Static steps */
.process__item {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.process__item:first-child { border-top: 1px solid var(--border); }
.process__item:last-child  { border-bottom: none; }

.process__item-heading {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}

.process__item-num {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--accent);
  flex-shrink: 0;
  padding-top: 3px;
  min-width: 22px;
}

.process__item-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.25;
  margin-bottom: 3px;
}

.process__item-subtitle {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 400;
}

.process__item-body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  padding-left: 38px;
  margin-bottom: 20px;
}

.process__item-actions {
  display: flex;
  gap: 10px;
  padding-left: 38px;
}

/* --------------------------------------------------------------------------
   Stats Section
   -------------------------------------------------------------------------- */
.stats {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats__header {
  text-align: center;
  margin-bottom: 64px;
}
.stats__header h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  margin-bottom: 12px;
}
.stats__header p {
  font-size: 16px;
  color: var(--text-secondary);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-card {
  background: var(--bg-secondary);
  padding: 44px 32px 40px;
  text-align: center;
  transition: background var(--duration) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, var(--accent-glow), transparent);
  opacity: 0;
  transition: opacity var(--duration-lg) var(--ease-out);
}
.stat-card:hover { background: var(--bg-tertiary); }
.stat-card:hover::before { opacity: 1; }

.stat-card__value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
}

.stat-count {
  font-size: clamp(42px, 4.5vw, 58px);
  font-weight: 900;
  letter-spacing: -.045em;
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat-symbol {
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--accent);
  line-height: 1;
}

.stat-card__unit {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -.01em;
  margin-bottom: 6px;
}

.stat-card__label {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   FAQ Section
   -------------------------------------------------------------------------- */
.faq { background: var(--bg-primary); }

.faq__inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: flex-start;
}

.faq__sidebar h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  margin-bottom: 12px;
}
.faq__sidebar p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
}

.faq__more {
  padding: 28px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.faq__more h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}
.faq__more p {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.5;
}

.faq__list { flex: 1; }

.faq__item { border-bottom: 1px solid var(--border); }
.faq__item:first-child { border-top: 1px solid var(--border); }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -.012em;
  text-align: left;
  color: var(--text-primary);
  transition: color var(--duration) var(--ease-out);
}
.faq__question:hover { color: var(--accent); }

.faq__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--text-secondary);
  transition: transform .28s var(--ease), color var(--duration) var(--ease-out);
}
.faq__item.open .faq__icon {
  transform: rotate(45deg);
  color: var(--accent);
}
.faq__item.open .faq__question { color: var(--text-primary); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease-out);
}
.faq__answer-inner {
  padding-bottom: 20px;
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* --------------------------------------------------------------------------
   CTA Banner
   -------------------------------------------------------------------------- */
.cta-banner {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background: var(--bg-primary);
}

/* Top accent hairline */
.cta-banner::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  pointer-events: none;
}

/* ── Ethereal shadow background ── */
.cta-ethereal {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Expanded inner div absorbs displacement overflow (mirrors React component's `inset: -displacementScale`) */
.cta-ethereal__displaced {
  position: absolute;
  inset: -80px;
  filter: url(#ethereal-filter) blur(5px);
}

/* Color blob masked by the Framer shadow shape */
.cta-ethereal__blob {
  width: 100%;
  height: 100%;
  /* Site accent — warm orange at 55% opacity so dark bg remains legible */
  background-color: rgba(212, 120, 58, 0.55);
  mask-image: url('https://framerusercontent.com/images/ceBGguIpUU8luwByxuQz79t7To.png');
  -webkit-mask-image: url('https://framerusercontent.com/images/ceBGguIpUU8luwByxuQz79t7To.png');
  mask-size: cover;
  -webkit-mask-size: cover;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
}

/* Subtle grain texture (mirrors noise prop: opacity=1, scale=1.2) */
.cta-ethereal__noise {
  position: absolute;
  inset: 0;
  background-image: url('https://framerusercontent.com/images/g0QcWrxr87K0ufOxIUFBakwYA8.png');
  background-size: 240px 240px;
  background-repeat: repeat;
  opacity: 0.022;
}

/* Content sits above the ethereal layer */
.cta-banner__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-banner__inner h2 {
  font-size: clamp(30px, 4.5vw, 54px);
  margin-bottom: 14px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.1;
}
.cta-banner__inner > p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 36px;
}
.cta-banner__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer__brand-name {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -.05em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__brand-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer__brand-tagline {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 230px;
  margin-bottom: 16px;
}

.footer__email {
  display: block;
  font-size: 13.5px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  transition: color var(--duration) var(--ease-out);
}
.footer__email:hover { color: var(--text-primary); }

.footer__social { display: none; }
.footer__social-btn {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: color var(--duration) var(--ease-out),
              border-color var(--duration) var(--ease-out),
              background var(--duration) var(--ease-out);
}
.footer__social-btn svg { width: 15px; height: 15px; }
.footer__social-btn:hover {
  color: var(--text-primary);
  border-color: #555;
  background: rgba(255,255,255,.05);
}

.footer__col-title {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--duration) var(--ease-out);
}
.footer__links a:hover { color: var(--text-primary); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copyright { font-size: 13px; color: var(--text-secondary); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a {
  font-size: 13px;
  color: var(--text-secondary);
  transition: color var(--duration) var(--ease-out);
}
.footer__legal a:hover { color: var(--text-primary); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .process__layout { grid-template-columns: 1fr; gap: 48px; }
  .process__intro { position: static; }

  .faq__inner { grid-template-columns: 1fr; gap: 40px; }
  .faq__sidebar { max-width: 560px; }
}

@media (max-width: 900px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-py: 72px; }
  .nav__links, .nav__cta { display: none; }
  .nav__mobile-toggle { display: flex; }
  .value-props { grid-template-columns: 1fr; }
  .hero__content { padding: 64px 0 52px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (max-width: 560px) {
  .stats__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Global Dot Background — placed last so it wins over background shorthands
   Port of bg-pattern.tsx → variant="dots", size=28, mask=none
   Excluded: .cta-banner (ethereal shadow) and .nav (UI chrome)
   -------------------------------------------------------------------------- */
.hero,
.gains,
.process,
.stats,
.faq,
.footer {
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
