/* ═══════════════════════════════════════════════════════════
   RN MEDIA DESIGN SYSTEM
   Two typefaces: Archivo (headings) / Inter (body)
   Three weights: 400 regular, 500 medium, 700 bold
   One accent, used only for CTAs and small highlights
   Type scale: 1.25 ratio, base 16px
   ═══════════════════════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* ── neutrals ── */
  --bg:        #0B0B0C;
  --bg-soft:   #101012;
  --bg-card:   #141417;
  --fg:        #F5F5F6;
  --fg-muted:  #A6A6AC;
  --fg-faint:  #77777E;
  --line:      #26262B;
  --line-soft: #1A1A1E;

  /* ── the one accent ── */
  --accent:    #FF5A1F;
  --accent-ink:#0B0B0C;

  /* ── type scale (1.25) ── */
  --fs-xs:   0.8rem;      /* 12.8px  labels, meta */
  --fs-base: 1rem;        /* 16px    body */
  --fs-lg:   1.25rem;     /* 20px    lede, h4 */
  --fs-h3:   clamp(1.5625rem, 1.40rem + 0.8vw, 1.953rem);
  --fs-h2:   clamp(1.953rem,  1.62rem + 1.7vw, 2.441rem);
  --fs-h1:   clamp(2.441rem,  1.85rem + 2.9vw, 3.815rem);

  /* ── rhythm ── */
  --radius:    4px;
  --radius-lg: 8px;
  --ease:      cubic-bezier(.22,1,.36,1);
  --container: 1200px;
  --gutter:    clamp(20px, 5vw, 44px);
  --block:     clamp(72px, 10vw, 132px);
}

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.65;
  background: var(--bg);
  color: var(--fg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: 'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  overflow-wrap: break-word;  /* katkaisee vain jos yksittäinen sana ei mahdu riville */
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); line-height: 1.04; }
h2 { font-size: var(--fs-h2); line-height: 1.12; }
h3 { font-size: var(--fs-h3); line-height: 1.2;  }
h4 { font-size: var(--fs-lg); line-height: 1.3; letter-spacing: -0.01em; }

p, li { color: var(--fg-muted); overflow-wrap: break-word; }
a { color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--accent); color: var(--accent-ink); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--accent); color: var(--accent-ink);
  padding: 12px 18px; font-size: var(--fs-xs); font-weight: 500;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ── SHARED TYPE ATOMS ─────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: var(--fs-xs); font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-faint);
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}
.section-label {
  display: block; font-size: var(--fs-xs); font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-faint); margin-bottom: 18px;
}
.lede { font-size: var(--fs-lg); line-height: 1.55; color: var(--fg-muted); }
.meta { font-size: var(--fs-xs); letter-spacing: 0.04em; color: var(--fg-faint); }

/* ── LAYOUT ────────────────────────────────────────────── */
.band { width: 100%; }
.band-soft { background: var(--bg-soft); border-block: 1px solid var(--line-soft); }
.section {
  max-width: var(--container); margin: 0 auto;
  padding: var(--block) var(--gutter);
  scroll-margin-top: 88px;
}
.section-head { margin-bottom: clamp(36px, 5vw, 56px); max-width: 60ch; }
.section-head .lede { margin-top: 18px; }

/* ── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 16px 28px; border-radius: var(--radius);
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.22s var(--ease);
}
.btn-accent { background: var(--accent); color: var(--accent-ink); }
.btn-accent:hover { transform: translateY(-2px); background: #FF6D38; }
.btn-solid { background: var(--fg); color: var(--bg); }
.btn-solid:hover { transform: translateY(-2px); background: #fff; }
.btn-ghost { background: transparent; color: var(--fg); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--fg-faint); background: var(--bg-card); }
.btn-block { width: 100%; }
.btn .arrow { display: inline-block; transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.textlink {
  font-size: var(--fs-xs); font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--fg-muted); text-decoration: none;
  border-bottom: 1px solid var(--line); padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.textlink:hover { color: var(--fg); border-color: var(--fg); }

/* ── NAV ───────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 72px; padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, height 0.3s var(--ease);
}
#navbar.scrolled {
  background: rgba(11,11,12,0.88); border-color: var(--line);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  height: 64px;
}
body.has-solid-nav #navbar { background: rgba(11,11,12,0.88); border-color: var(--line); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 28px; width: auto; filter: brightness(0) invert(0.96); transition: opacity 0.2s; }
.nav-logo:hover img { opacity: 0.65; }
.nav-right { display: flex; align-items: center; gap: clamp(24px, 3vw, 44px); }
.nav-links { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 34px); }
.nav-link {
  position: relative; font-size: var(--fs-xs); font-weight: 500;
  letter-spacing: 0.08em; color: var(--fg-muted);
  text-decoration: none; padding: 6px 0; transition: color 0.2s;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--accent); transition: width 0.28s var(--ease);
}
.nav-link:hover { color: var(--fg); }
.nav-link:hover::after,
.nav-link.is-active::after { width: 100%; }
.nav-link.is-active { color: var(--fg); }
.nav-cta {
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--accent); color: var(--accent-ink);
  padding: 11px 20px; border-radius: var(--radius); text-decoration: none;
  transition: background 0.22s, transform 0.22s var(--ease);
}
.nav-cta:hover { background: #FF6D38; transform: translateY(-1px); }

.hamburger {
  display: none; width: 44px; height: 44px; cursor: pointer;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: none; padding: 0; position: relative; z-index: 210;
  transition: border-color 0.2s;
}
.hamburger:hover { border-color: var(--fg-faint); }
.hamburger.open { opacity: 0; pointer-events: none; }
.hamburger span {
  display: block; position: absolute; left: 50%; transform: translateX(-50%);
  width: 18px; height: 2px; background: var(--fg); border-radius: 2px;
}
.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 27px; }

/* ── MOBILE DRAWER ─────────────────────────────────────── */
#drawer-overlay {
  position: fixed; inset: 0; z-index: 400; background: rgba(0,0,0,0.5);
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
#drawer-overlay.open { opacity: 1; visibility: visible; }
#side-drawer {
  position: fixed; inset: 0; z-index: 410; width: 100%;
  background: var(--bg); display: flex; flex-direction: column;
  transform: translateX(100%); visibility: hidden;
  transition: transform 0.4s var(--ease), visibility 0.4s; overflow-y: auto;
}
#side-drawer.open { transform: translateX(0); visibility: visible; }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--gutter); border-bottom: 1px solid var(--line);
  min-height: 72px; flex-shrink: 0;
}
.drawer-logo { height: 26px; width: auto; filter: brightness(0) invert(0.96); }
.drawer-close {
  width: 44px; height: 44px; border: 1px solid var(--line); border-radius: var(--radius);
  background: none; cursor: pointer; color: var(--fg-muted); font-size: var(--fs-lg);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s; flex-shrink: 0;
}
.drawer-close:hover { border-color: var(--fg-faint); color: var(--fg); }
.drawer-nav { display: flex; flex-direction: column; padding: 8px 0 24px; }
.drawer-link {
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: var(--fs-h3); font-weight: 700; letter-spacing: -0.02em;
  color: var(--fg); text-decoration: none;
  padding: 20px var(--gutter); border-bottom: 1px solid var(--line-soft);
  transition: background 0.2s, color 0.2s;
}
.drawer-link:hover, .drawer-link.is-active { color: var(--accent); }
.drawer-actions { padding: 24px var(--gutter) 0; }
.drawer-foot {
  margin-top: auto; padding: 28px var(--gutter);
  border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 8px;
  font-size: var(--fs-xs); color: var(--fg-muted);
}
.drawer-foot a { color: var(--fg-muted); text-decoration: none; }
.drawer-foot a:hover { color: var(--accent); }

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  max-width: var(--container); margin: 0 auto;
  padding: clamp(132px, 19vh, 200px) var(--gutter) clamp(48px, 7vw, 84px);
  min-height: 92svh; display: flex; flex-direction: column; justify-content: center;
  position: relative; isolation: isolate; scroll-margin-top: 88px;
}
.hero-media {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 100vw;
  transform: translateX(-50%); overflow: hidden; z-index: 0; pointer-events: none;
  background: var(--bg);
}
.hero-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(11,11,12,0.95) 0%, rgba(11,11,12,0.82) 48%, rgba(11,11,12,0.48) 100%),
    linear-gradient(to bottom, rgba(11,11,12,0.90) 0%, rgba(11,11,12,0.35) 36%, rgba(11,11,12,0.86) 100%);
}
.hero > *:not(.hero-media) { position: relative; z-index: 1; }
.hero-eyebrow { margin-bottom: clamp(22px, 3.5vw, 34px); }
.hero h1 { max-width: 22ch; margin-bottom: clamp(22px, 3vw, 30px); text-wrap: pretty; }
.hero-sub { font-size: var(--fs-lg); line-height: 1.55; color: var(--fg-muted); max-width: 48ch; margin-bottom: clamp(30px, 4vw, 42px); }
.hero-cta-row { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-bottom: clamp(48px, 7vw, 84px); }
.hero-meta { display: flex; flex-wrap: wrap; gap: 0; border-top: 1px solid var(--line); }
.hero-meta span {
  font-size: var(--fs-xs); letter-spacing: 0.04em; color: var(--fg-faint);
  padding: 18px 26px 0 0; margin-right: 26px; position: relative;
}
.hero-meta span:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 20px; bottom: 2px; width: 1px; background: var(--line);
}

/* ── PAGE HEADER (inner pages) ─────────────────────────── */
.page-head {
  max-width: var(--container); margin: 0 auto;
  padding: clamp(128px, 17vh, 172px) var(--gutter) clamp(44px, 6vw, 68px);
}
.page-head h1 { max-width: 17ch; margin: 16px 0 0; }
.page-head .lede { margin-top: 22px; max-width: 56ch; }

/* ── SUMMARY / TWO-COL ─────────────────────────────────── */
.split { display: grid; grid-template-columns: 0.85fr 1.4fr; gap: clamp(32px, 6vw, 88px); align-items: start; }
.prose p { font-size: var(--fs-base); line-height: 1.8; max-width: 56ch; }
.prose p + p { margin-top: 18px; }

/* ── STAT / PROOF ROW ──────────────────────────────────── */
.proof-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
}
.proof-item { background: var(--bg); padding: clamp(26px, 3vw, 38px) clamp(20px, 2.2vw, 30px); }
.proof-value { font-family: 'Archivo', system-ui, sans-serif; font-weight: 700; font-size: var(--fs-h3); line-height: 1.1; color: var(--fg); letter-spacing: -0.02em; }
.proof-label { font-size: var(--fs-xs); color: var(--fg-muted); margin-top: 10px; line-height: 1.6; }

/* ── CARD LINK GRID (home wayfinding) ──────────────────── */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.card-link {
  background: var(--bg); padding: clamp(28px, 3vw, 40px) clamp(22px, 2.2vw, 32px);
  text-decoration: none; display: flex; flex-direction: column; gap: 12px;
  transition: background 0.25s;
}
.card-link:hover { background: var(--bg-card); }
.card-link h3 { font-size: var(--fs-lg); }
.card-link p { font-size: var(--fs-xs); line-height: 1.7; }
.card-link .card-more { font-size: var(--fs-xs); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-faint); margin-top: auto; padding-top: 18px; transition: color 0.2s; }
.card-link:hover .card-more { color: var(--fg); }

/* ── SERVICES ──────────────────────────────────────────── */
.service-list { border-top: 1px solid var(--line); }
.service-row {
  display: grid; grid-template-columns: 56px 1fr 1.15fr; align-items: start;
  gap: clamp(16px, 3vw, 44px); padding: clamp(28px, 3.2vw, 42px) 8px;
  border-bottom: 1px solid var(--line);
}
.service-num { font-size: var(--fs-xs); font-weight: 500; letter-spacing: 0.08em; color: var(--fg-faint); padding-top: 8px; }
.service-title { font-family: 'Archivo', system-ui, sans-serif; font-weight: 700; font-size: var(--fs-h3); line-height: 1.15; letter-spacing: -0.02em; color: var(--fg); }
.service-desc { font-size: var(--fs-base); line-height: 1.75; color: var(--fg-muted); max-width: 48ch; }
.service-desc + .service-tags { margin-top: 14px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tags span { font-size: var(--fs-xs); color: var(--fg-faint); border: 1px solid var(--line); border-radius: 999px; padding: 5px 12px; }

/* ── AUDIENCE LIST ─────────────────────────────────────── */
.audience-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.audience-list span { background: var(--bg); padding: 22px 24px; font-size: var(--fs-base); color: var(--fg-muted); }

/* ── PROCESS ───────────────────────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.process-step { background: var(--bg); padding: clamp(26px, 2.8vw, 38px) clamp(20px, 2vw, 28px); }
.process-num { font-family: 'Archivo', system-ui, sans-serif; font-weight: 700; font-size: var(--fs-xs); letter-spacing: 0.1em; color: var(--accent); margin-bottom: 20px; }
.process-title { font-family: 'Archivo', system-ui, sans-serif; font-weight: 700; font-size: var(--fs-lg); letter-spacing: -0.01em; color: var(--fg); margin-bottom: 10px; }
.process-desc { font-size: var(--fs-xs); line-height: 1.75; color: var(--fg-muted); }
.process-note { margin-top: clamp(32px, 4vw, 48px); font-family: 'Archivo', system-ui, sans-serif; font-weight: 700; font-size: var(--fs-h3); letter-spacing: -0.02em; color: var(--fg); }

/* ── FOUNDER ───────────────────────────────────────────── */
.founder-grid { display: grid; grid-template-columns: 360px 1fr; gap: clamp(32px, 5vw, 68px); align-items: start; }
.founder-photo { width: 100%; aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius-lg); background: var(--bg-card); border: 1px solid var(--line); }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.founder-name { font-family: 'Archivo', system-ui, sans-serif; font-weight: 700; font-size: var(--fs-h3); letter-spacing: -0.02em; color: var(--fg); display: block; margin-bottom: 6px; }
.founder-role { font-size: var(--fs-xs); font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-faint); display: block; margin-bottom: 26px; }
.founder-sign { margin-top: 28px; display: inline-flex; align-items: center; gap: 12px; font-size: var(--fs-xs); letter-spacing: 0.04em; color: var(--fg-faint); }
.founder-sign::before { content: ''; width: 26px; height: 1px; background: var(--accent); }

/* ── PRICING ───────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.pricing-card { padding: clamp(28px, 2.6vw, 38px) clamp(22px, 2vw, 30px); background: var(--bg); display: flex; flex-direction: column; transition: background 0.25s; }
.pricing-card:hover { background: var(--bg-card); }
.pricing-card.featured { background: var(--bg-card); box-shadow: inset 0 0 0 1px var(--accent); }
.plan-label { font-size: var(--fs-xs); font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-faint); margin-bottom: 16px; min-height: 16px; display: block; }
.pricing-card.featured .plan-label { color: var(--accent); }
.plan-name { font-family: 'Archivo', system-ui, sans-serif; font-weight: 700; font-size: var(--fs-lg); letter-spacing: -0.01em; color: var(--fg); margin-bottom: 18px; }
.plan-price { margin-bottom: 24px; }
.plan-price-main { font-family: 'Archivo', system-ui, sans-serif; font-weight: 700; font-size: var(--fs-h2); letter-spacing: -0.03em; color: var(--fg); line-height: 1; }
.plan-period { font-family: 'Inter', system-ui, sans-serif; font-weight: 400; font-size: var(--fs-xs); color: var(--fg-faint); margin-left: 6px; letter-spacing: 0; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; flex-grow: 1; }
.plan-features li { font-size: var(--fs-xs); line-height: 1.65; color: var(--fg-muted); display: flex; align-items: flex-start; gap: 11px; overflow-wrap: anywhere; }
.plan-features li::before { content: ''; width: 12px; height: 1px; background: var(--line); flex-shrink: 0; margin-top: 10px; }
.pricing-card.featured .plan-features li::before { background: var(--accent); }
.pricing-notes { display: flex; flex-direction: column; gap: 10px; margin-top: 26px; }
.pricing-notes p { font-size: var(--fs-xs); line-height: 1.7; color: var(--fg-muted); }
.pricing-notes a { color: var(--fg); text-decoration: underline; text-underline-offset: 3px; }
.pricing-notes a:hover { color: var(--accent); }

/* ── ADS BLOCK ─────────────────────────────────────────── */
.ads-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.ads-card { padding: clamp(24px, 2.2vw, 32px) clamp(20px, 1.8vw, 28px); background: var(--bg); display: flex; flex-direction: column; transition: background 0.25s; }
.ads-card:hover { background: var(--bg-card); }
.ads-name { font-family: 'Archivo', system-ui, sans-serif; font-weight: 700; font-size: var(--fs-lg); letter-spacing: -0.01em; color: var(--fg); }
.ads-price { margin: 14px 0 6px; }
.ads-price-main { font-family: 'Archivo', system-ui, sans-serif; font-weight: 700; font-size: var(--fs-h3); letter-spacing: -0.02em; color: var(--fg); line-height: 1; }
.ads-sub { font-size: var(--fs-xs); color: var(--fg-faint); margin-bottom: 20px; }
.ads-features { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; flex-grow: 1; }
.ads-features li { font-size: var(--fs-xs); line-height: 1.65; color: var(--fg-muted); display: flex; align-items: flex-start; gap: 10px; overflow-wrap: anywhere; }
.ads-features li::before { content: ''; width: 10px; height: 1px; background: var(--line); flex-shrink: 0; margin-top: 9px; }

/* ── FAQ ───────────────────────────────────────────────── */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; padding: 24px 4px; cursor: pointer; user-select: none;
  font-family: 'Archivo', system-ui, sans-serif; font-weight: 700;
  font-size: var(--fs-lg); letter-spacing: -0.01em; color: var(--fg);
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-weight: 400; font-size: var(--fs-h3); color: var(--fg-faint); flex-shrink: 0; transition: transform 0.28s var(--ease), color 0.2s; }
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--accent); }
.faq-item summary:hover { color: var(--accent); }
.faq-answer { padding: 0 4px 26px; font-size: var(--fs-base); line-height: 1.8; color: var(--fg-muted); max-width: 68ch; }

/* ── CONTACT ───────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 88px); align-items: start; }
.contact-meta { display: flex; flex-direction: column; gap: 0; margin-top: 34px; }
.contact-meta-item { display: flex; align-items: center; gap: 14px; padding: 15px 0; font-size: var(--fs-base); color: var(--fg-muted); text-decoration: none; border-top: 1px solid var(--line-soft); transition: color 0.2s; overflow-wrap: anywhere; }
.contact-meta-item:last-child { border-bottom: 1px solid var(--line-soft); }
.contact-meta-item:hover { color: var(--accent); }
.contact-meta-icon { width: 34px; height: 34px; border-radius: var(--radius); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: var(--fs-xs); font-weight: 500; color: var(--fg-faint); flex-shrink: 0; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: var(--fs-xs); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg); }
.form-input {
  padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius);
  font-family: inherit; font-size: var(--fs-base); color: var(--fg); background: var(--bg-soft);
  transition: border-color 0.2s, background 0.2s; outline: none;
}
.form-input:focus { border-color: var(--fg-faint); background: var(--bg-card); }
.form-input::placeholder { color: var(--fg-faint); }
textarea.form-input { resize: vertical; min-height: 120px; }
.form-note { font-size: var(--fs-xs); color: var(--fg-faint); }
.form-success { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 54px 24px; text-align: center; }
.form-success-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--bg-card); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: var(--fs-lg); color: var(--accent); }
.form-success-title { font-family: 'Archivo', system-ui, sans-serif; font-weight: 700; font-size: var(--fs-lg); color: var(--fg); }
.form-success-sub { font-size: var(--fs-xs); color: var(--fg-muted); }

/* ── CTA BAND ──────────────────────────────────────────── */
.cta-band { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band h2 { max-width: 18ch; }
.cta-band p { margin-top: 14px; max-width: 44ch; font-size: var(--fs-base); }

/* ── FOOTER ────────────────────────────────────────────── */
footer { border-top: 1px solid var(--line); }
.footer-inner { max-width: var(--container); margin: 0 auto; padding: clamp(40px, 5vw, 60px) var(--gutter); display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.footer-logo img { height: 42px; width: auto; margin-bottom: 14px; filter: brightness(0) invert(0.96); }
.footer-copy { font-size: var(--fs-xs); color: var(--fg-faint); letter-spacing: 0.02em; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { font-size: var(--fs-xs); color: var(--fg-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }

/* ── REVEAL ────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .founder-grid { grid-template-columns: 300px 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .card-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .service-row { grid-template-columns: 1fr; gap: 10px; padding: 26px 4px; }
  .service-num { padding-top: 0; }
  .founder-grid { grid-template-columns: 1fr; gap: 26px; }
  .founder-photo { max-width: 320px; }
  .pricing-grid, .ads-grid, .proof-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-meta span { padding-right: 18px; margin-right: 18px; }
  .hero-media::after { background: linear-gradient(to bottom, rgba(11,11,12,0.93) 0%, rgba(11,11,12,0.84) 40%, rgba(11,11,12,0.94) 100%); }
}
@media (max-width: 520px) {
  .process-grid { grid-template-columns: 1fr; }
  .hero-meta span:not(:last-child)::after { display: none; }
  .hero-meta span { width: 100%; border-bottom: 1px solid var(--line-soft); padding: 14px 0; margin: 0; }
  .btn { width: 100%; }
  .hero-cta-row { align-items: stretch; flex-direction: column; gap: 16px; }
  .hero-cta-row .textlink { align-self: flex-start; }
}

/* ── LEGAL / LONG-FORM PAGES ───────────────────────────── */
.legal { max-width: 760px; margin: 0 auto; padding: 0 var(--gutter) var(--block); }
.legal-block { margin-bottom: 40px; }
.legal-block h2 { font-size: var(--fs-lg); padding-bottom: 12px; border-bottom: 1px solid var(--line); margin-bottom: 16px; }
.legal-block p { font-size: var(--fs-base); line-height: 1.8; margin-bottom: 12px; }
.legal-block p:last-child { margin-bottom: 0; }
.legal-block ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.legal-block li { font-size: var(--fs-base); line-height: 1.7; color: var(--fg-muted); display: flex; align-items: flex-start; gap: 12px; overflow-wrap: anywhere; }
.legal-block li::before { content: ''; width: 12px; height: 1px; background: var(--line); flex-shrink: 0; margin-top: 13px; }
.legal-block a { color: var(--fg); text-decoration: underline; text-underline-offset: 3px; }
.legal-block a:hover { color: var(--accent); }
.legal-box { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px 28px; }

/* ── SMALL-SCREEN SAFETY: grid children shrink, long compounds break ── */
.service-row > *,
.pricing-card, .ads-card, .card-link, .proof-item, .process-step,
.audience-list span, .cta-band > * { min-width: 0; }
.service-title, .plan-name, .ads-name, .proof-value, .process-title,
.card-link h3, .faq-item summary { overflow-wrap: anywhere; }

/* ── UTILITIES ─────────────────────────────────────────── */
.section-flush { padding-top: 0; }
.stack-sm { margin-top: 18px; }

/* ── AD LANDING PAGE (/landing) ────────────────────────── */
/* Dead-end page: static logo bar instead of the site nav, no links away. */
.lp-header {
  max-width: var(--container); margin: 0 auto;
  padding: clamp(28px, 4vw, 44px) var(--gutter) 0;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.lp-header img { height: 30px; width: auto; filter: brightness(0) invert(0.96); }
.lp-header .meta { text-align: right; }
.lp-hero {
  max-width: var(--container); margin: 0 auto;
  padding: clamp(44px, 7vw, 76px) var(--gutter) clamp(48px, 7vw, 80px);
}
.lp-hero h1 { max-width: 20ch; margin: 20px 0 0; text-wrap: pretty; }
.lp-hero .lede { margin-top: 22px; max-width: 50ch; }
.lp-hero .btn { margin-top: clamp(28px, 4vw, 38px); }
.lp-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.lp-point { background: var(--bg); padding: clamp(24px, 2.8vw, 34px) clamp(20px, 2.2vw, 28px); min-width: 0; }
.lp-point h3 { font-size: var(--fs-lg); margin-bottom: 10px; }
.lp-point p { font-size: var(--fs-xs); line-height: 1.7; }
.lp-quote { max-width: 60ch; }
.lp-quote p { font-size: var(--fs-lg); line-height: 1.55; color: var(--fg); }
.lp-quote .meta { display: inline-flex; align-items: center; gap: 12px; margin-top: 22px; }
.lp-quote .meta::before { content: ''; width: 26px; height: 1px; background: var(--accent); }
.lp-center { text-align: center; margin-inline: auto; }
.lp-plan { max-width: 480px; margin: 0 auto; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.lp-plan-terms { max-width: 480px; margin: 22px auto 0; }
.lp-plan-terms p { font-size: var(--fs-xs); line-height: 1.7; text-align: center; }
.lp-form { max-width: 560px; margin: 0 auto; }
.lp-form .section-head { margin-bottom: clamp(28px, 4vw, 40px); }
.lp-foot { border-top: 1px solid var(--line); }
.lp-foot-inner {
  max-width: var(--container); margin: 0 auto; padding: clamp(32px, 4vw, 48px) var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.lp-foot img { height: 44px; width: auto; filter: brightness(0) invert(0.96); }
.lp-foot a { color: var(--fg-muted); }
@media (max-width: 768px) {
  .lp-points { grid-template-columns: 1fr; }
  .lp-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .lp-header .meta { text-align: left; }
}
