/* ═══════════════════════════════════════════════
   BRUTAL KICK – styles.css
   Dark brutalist · Bebas Neue + DM Sans · Orange accent
═══════════════════════════════════════════════ */

/* ─── CSS VARIABLES ──────────────────────────── */
:root {
  --bg:           #050509;
  --bg-2:         #0a0a12;
  --bg-3:         #0f0f1a;
  --bg-card:      #111118;
  --bg-card-2:    #16161f;
  --border:       rgba(255,255,255,0.07);
  --border-hover: rgba(249,115,22,0.3);

  --text:         #F9FAFB;
  --text-muted:   #9CA3AF;
  --text-dim:     #6B7280;

  --accent:       #F97316;
  --accent-dark:  #ea6010;
  --accent-glow:  rgba(249,115,22,0.15);
  --accent-glow2: rgba(249,115,22,0.06);

  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;

  --radius:       10px;
  --radius-sm:    6px;
  --radius-lg:    16px;

  --shadow-card:  0 1px 3px rgba(0,0,0,0.5), 0 8px 32px rgba(0,0,0,0.3);
  --shadow-accent: 0 0 32px rgba(249,115,22,0.2);

  --max-width:    1200px;
  --section-pad:  100px;
}

/* ─── RESET ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ─── SKIP LINK (accessibility) ──────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  background: var(--accent);
  color: white;
  padding: 8px 16px;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 700;
  font-size: 0.875rem;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ─── UTILITIES ──────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.dim { color: var(--text-muted); }
.desktop-br { display: block; }

/* ─── SCROLLBAR ──────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a2a38; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ─── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(249,115,22,0.3);
}
.btn-primary:active { transform: translateY(0); }
.btn-xl { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── SECTION LABELS ─────────────────────────── */
.section-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
.section-intro {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 56px;
  max-width: 520px;
}
.section { padding: var(--section-pad) 0; }

/* ═══════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(5,5,9,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark {
  width: 36px; height: 36px;
  background: var(--accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: white;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  color: var(--text);
}
.nav-links { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav-links a { font-size: 0.88rem; font-weight: 500; color: var(--text-muted); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta { margin-left: 12px; padding: 9px 20px; font-size: 0.88rem; }

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.mobile-menu-btn span {
  display: block; width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  background: rgba(5,5,9,0.98);
}
.mobile-nav a {
  padding: 14px 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--text); }
.mobile-nav a:last-child { border-bottom: none; margin-top: 8px; }
.mobile-nav.open { display: flex; }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  padding-top: 120px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}
.hero-bg-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4; pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(249,115,22,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;
  padding-bottom: 80px;
}
.eyebrow {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.eyebrow-dot { color: var(--text-dim); }
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.0; letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.hero-h1 em { font-style: normal; color: var(--accent); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted); line-height: 1.7;
  max-width: 520px; margin-bottom: 28px;
}
.hero-sub strong { color: var(--text); font-weight: 600; }

/* Hero story nudge */
.hero-story-nudge {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(249,115,22,0.06);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 28px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}
.hero-story-nudge:hover {
  border-color: rgba(249,115,22,0.4);
  background: rgba(249,115,22,0.1);
}
.story-nudge-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.story-nudge-text {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--text-muted);
}
.story-nudge-text strong { color: var(--text); }
.story-nudge-link {
  display: inline-block;
  margin-top: 4px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.82rem;
}

.hero-cta-group { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.hero-microcopy { font-size: 0.82rem; color: var(--text-dim); }

/* Stats bar */
.stats-bar {
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  padding: 20px 0;
}
.stats-inner {
  display: flex; align-items: center; justify-content: center;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 48px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem; color: var(--accent);
  letter-spacing: 0.05em; line-height: 1;
}
.stat-label { font-size: 0.75rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* ─── PHONE MOCKUP ───────────────────────────── */
.phone-wrapper { position: relative; display: flex; flex-direction: column; align-items: center; }
.phone-shell {
  width: 320px; min-height: 580px;
  background: #0e0e1a;
  border-radius: 44px;
  border: 2px solid #1f1f2e;
  box-shadow: 0 0 0 4px #0a0a14, 0 30px 80px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.phone-notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 110px; height: 26px;
  background: #0e0e1a;
  border-radius: 0 0 16px 16px;
  z-index: 10;
}
.phone-status-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 20px 8px;
  color: var(--text-muted); font-size: 0.7rem; font-weight: 600;
  position: relative; z-index: 5;
}
.phone-status-icons { display: flex; align-items: center; gap: 6px; color: var(--text); }
.phone-app-header {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 16px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.back-btn { display: flex; align-items: center; opacity: 0.8; }
.contact-avatar {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--accent) 0%, #f97316aa 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 700; color: white; letter-spacing: 0.05em;
  flex-shrink: 0;
}
.contact-info { display: flex; flex-direction: column; gap: 1px; flex: 1; }
.contact-name { font-size: 0.78rem; font-weight: 600; color: var(--text); }
.contact-status { font-size: 0.62rem; color: var(--text-dim); }
.call-btn { width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; }
.phone-messages {
  flex: 1; padding: 16px 14px;
  display: flex; flex-direction: column; gap: 10px;
  min-height: 280px; overflow: hidden; position: relative;
}
.sms-bubble {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 0.72rem; line-height: 1.5;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.sms-bubble.visible { opacity: 1; transform: translateY(0); }
.sms-bubble-incoming {
  background: #1e1e2e; color: var(--text);
  align-self: flex-start; border-bottom-left-radius: 4px;
}
.sms-bubble-hard {
  background: linear-gradient(135deg, #7f1d1d 0%, #450a0a 100%);
  border: 1px solid rgba(239,68,68,0.25); color: #fca5a5;
}
.typing-indicator {
  display: flex; gap: 4px; align-items: center; align-self: flex-start;
  background: #1e1e2e; padding: 10px 14px;
  border-radius: 18px; border-bottom-left-radius: 4px;
  opacity: 0; transition: opacity 0.3s;
}
.typing-indicator.visible { opacity: 1; }
.typing-indicator span {
  width: 6px; height: 6px; background: var(--text-dim); border-radius: 50%;
  animation: typingBounce 1.4s infinite;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%,60%,100% { transform: translateY(0); }
  30% { transform: translateY(-5px); }
}
.phone-input-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.phone-input-field {
  flex: 1; background: rgba(255,255,255,0.06);
  border-radius: 20px; padding: 8px 14px;
  font-size: 0.68rem; color: var(--text-dim);
}
.phone-home-bar { height: 28px; display: flex; align-items: center; justify-content: center; }
.phone-home-bar::after {
  content: ''; width: 100px; height: 4px;
  background: rgba(255,255,255,0.15); border-radius: 2px;
}
.notification-banner {
  position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 290px;
  background: rgba(20,20,35,0.95); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 14px;
  padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  z-index: 20;
  transition: top 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.notification-banner.show { top: -70px; }
.notif-icon { font-size: 1.3rem; flex-shrink: 0; }
.notif-text { display: flex; flex-direction: column; gap: 2px; }
.notif-from { font-size: 0.65rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.05em; }
.notif-msg { font-size: 0.7rem; color: var(--text-muted); line-height: 1.3; }

/* ═══════════════════════════════════════════════
   STORY SECTION
═══════════════════════════════════════════════ */
.story-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.story-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}
.story-card {
  background: var(--bg-card);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-accent);
}
.story-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.story-quote-mark {
  font-family: Georgia, serif;
  font-size: 8rem; line-height: 0.6;
  color: rgba(249,115,22,0.08);
  position: absolute; top: 24px; right: 24px;
  pointer-events: none;
  user-select: none;
}
.story-headline {
  font-size: 1.25rem; font-weight: 600; line-height: 1.4;
  margin-bottom: 20px; color: var(--text);
}
.story-headline strong { color: var(--accent); }
.story-detail {
  font-size: 0.92rem; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 14px;
}
.story-detail:last-of-type { margin-bottom: 24px; }
.story-takeaway {
  padding: 16px 20px;
  background: rgba(249,115,22,0.06);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text) !important;
  font-size: 0.9rem !important;
  line-height: 1.6 !important;
}
.story-takeaway strong { color: var(--accent); }
.story-source {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--border);
}
.story-source-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; color: var(--text-muted);
  text-decoration: underline; text-underline-offset: 3px;
  transition: color 0.2s;
}
.story-source-link:hover { color: var(--accent); }
.story-date { font-size: 0.75rem; color: var(--text-dim); }

.story-bridge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex; flex-direction: column; gap: 16px;
  align-self: start;
  position: sticky; top: 84px;
}
.story-bridge-icon { font-size: 2.5rem; }
.story-bridge h3 {
  font-family: var(--font-display);
  font-size: 1.8rem; letter-spacing: 0.02em;
  line-height: 1.1;
}
.story-bridge p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ═══════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════ */
.how-it-works { background: var(--bg); border-top: 1px solid var(--border); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.step-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  position: relative; transition: border-color 0.3s, transform 0.3s;
}
.step-card::before {
  content: attr(data-step);
  position: absolute; top: 28px; right: 28px;
  font-family: var(--font-display); font-size: 3.5rem;
  color: rgba(249,115,22,0.06); line-height: 1; pointer-events: none;
}
.step-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.step-icon { font-size: 2rem; margin-bottom: 16px; }
.step-card h3 { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.02em; margin-bottom: 12px; }
.step-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }
.step-card strong { color: var(--text); font-weight: 600; }
.steps-footer-note {
  display: flex; align-items: center; gap: 8px;
  color: var(--text-dim); font-size: 0.85rem;
  border-top: 1px solid var(--border); padding-top: 28px;
}
.steps-footer-note strong { color: var(--text-muted); }

/* ═══════════════════════════════════════════════
   WHO IT'S FOR
═══════════════════════════════════════════════ */
.who-its-for { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.for-not-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.for-card, .not-card {
  border-radius: var(--radius-lg); padding: 36px 32px; border: 1px solid var(--border);
}
.for-card { background: rgba(34,197,94,0.04); border-color: rgba(34,197,94,0.15); }
.not-card { background: rgba(239,68,68,0.04); border-color: rgba(239,68,68,0.15); }
.for-card-header { margin-bottom: 24px; }
.for-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px;
}
.for-badge.for { background: rgba(34,197,94,0.1); color: #4ade80; border: 1px solid rgba(34,197,94,0.2); }
.for-badge.not { background: rgba(239,68,68,0.1); color: #f87171; border: 1px solid rgba(239,68,68,0.2); }
.for-list li {
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted); font-size: 0.9rem; line-height: 1.5;
  padding-left: 20px; position: relative;
}
.for-list li::before { content: '—'; position: absolute; left: 0; color: var(--text-dim); font-size: 0.8rem; }
.for-list li:last-child { border-bottom: none; }
.not-card-disclaimer { margin-top: 20px; font-size: 0.8rem; color: var(--text-dim); line-height: 1.6; font-style: italic; }

/* ═══════════════════════════════════════════════
   SAMPLE TEXTS
═══════════════════════════════════════════════ */
.sample-texts { background: var(--bg); }
.samples-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sample-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: border-color 0.3s;
}
.tone-hard { border-color: rgba(249,115,22,0.25); }
.tone-hard:hover { border-color: rgba(249,115,22,0.5); }
.tone-soft:hover, .tone-medium:hover { border-color: var(--border-hover); }
.sample-tone-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 20px;
}
.tone-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.soft-dot { background: #60a5fa; }
.medium-dot { background: #facc15; }
.hard-dot { background: var(--accent); }
.explicit-badge {
  margin-left: auto;
  background: rgba(249,115,22,0.12); color: var(--accent);
  border: 1px solid rgba(249,115,22,0.25);
  padding: 2px 8px; border-radius: 4px; font-size: 0.65rem;
}
.sample-msgs { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; transition: filter 0.3s; }
.sample-msgs.blurred { filter: blur(6px); user-select: none; pointer-events: none; }
.sample-bubble {
  background: var(--bg-3); border-radius: 12px; border-bottom-left-radius: 3px;
  padding: 12px 16px; font-size: 0.85rem; line-height: 1.55;
  color: var(--text-muted); font-style: italic;
}
.hard-bubble {
  background: rgba(127,29,29,0.3);
  border: 1px solid rgba(239,68,68,0.15); color: #fca5a5;
}
.reveal-btn {
  width: 100%; padding: 10px;
  background: rgba(249,115,22,0.08);
  border: 1px dashed rgba(249,115,22,0.3); border-radius: var(--radius);
  color: var(--accent); font-size: 0.82rem; font-weight: 600;
  transition: all 0.2s; margin-bottom: 14px;
  min-height: 44px;
}
.reveal-btn:hover { background: rgba(249,115,22,0.15); border-style: solid; }
.reveal-btn.hidden { display: none; }
.sample-desc { font-size: 0.75rem; color: var(--text-dim); }

/* ═══════════════════════════════════════════════
   VALUE SECTION
═══════════════════════════════════════════════ */
.value-section { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.value-inner { display: grid; grid-template-columns: 1fr 320px; gap: 80px; align-items: start; }
.value-list { display: flex; flex-direction: column; }
.value-list li { display: flex; gap: 16px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.value-list li:first-child { padding-top: 8px; }
.value-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.value-list strong { display: block; font-weight: 600; margin-bottom: 4px; font-size: 0.95rem; }
.value-list p { color: var(--text-muted); font-size: 0.87rem; line-height: 1.55; }
.price-card {
  background: var(--bg-card); border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg); padding: 36px 28px;
  position: sticky; top: 84px;
  box-shadow: var(--shadow-accent);
}
.price-amount { font-family: var(--font-display); font-size: 4rem; color: var(--accent); line-height: 1; letter-spacing: 0.02em; }
.price-period { font-size: 0.85rem; color: var(--text-dim); margin-bottom: 24px; }
.price-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.price-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.price-features li { font-size: 0.88rem; color: var(--text-muted); }
.price-note { text-align: center; font-size: 0.75rem; color: var(--text-dim); margin-top: 14px; }

/* ═══════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════ */
.faq-section { background: var(--bg); }
.faq-container { max-width: 760px; }
.faq-list { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 22px 28px;
  font-size: 0.95rem; font-weight: 600; color: var(--text);
  background: var(--bg-card); text-align: left;
  transition: background 0.2s; gap: 16px;
  min-height: 44px;
}
.faq-q:hover { background: var(--bg-card-2); }
.faq-q[aria-expanded="true"] { background: var(--bg-card-2); color: var(--accent); }
.faq-arrow { flex-shrink: 0; color: var(--text-dim); transition: transform 0.3s; }
.faq-q[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); color: var(--accent); }
.faq-a { display: none; padding: 0 28px 22px; background: var(--bg-card-2); }
.faq-a.open { display: block; }
.faq-a p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.faq-a strong { color: var(--text); }

/* ═══════════════════════════════════════════════
   SIGNUP
═══════════════════════════════════════════════ */
.signup-section { background: var(--bg-2); border-top: 1px solid var(--border); }
.signup-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.signup-desc { color: var(--text-muted); font-size: 1rem; margin-bottom: 36px; }
.signup-safety {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 24px;
}
.signup-safety h3 {
  font-size: 0.88rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--accent); margin-bottom: 10px;
}
.signup-safety p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 12px; line-height: 1.6; }
.signup-safety ul { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.signup-safety li { font-size: 0.82rem; color: var(--text-dim); padding-left: 16px; position: relative; }
.signup-safety li::before { content: '·'; position: absolute; left: 4px; color: var(--accent); }
.mental-health-note {
  display: flex; gap: 10px; align-items: flex-start;
  background: rgba(239,68,68,0.05); border: 1px solid rgba(239,68,68,0.12);
  border-radius: var(--radius-sm); padding: 12px;
  font-size: 0.78rem; color: #fca5a5; line-height: 1.6;
}
.mental-health-note svg { flex-shrink: 0; margin-top: 2px; }
.mental-health-note strong { color: #f87171; }

/* FORM */
.signup-form {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 32px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.label-badge {
  background: rgba(249,115,22,0.12); color: var(--accent);
  border: 1px solid rgba(249,115,22,0.25);
  padding: 1px 7px; border-radius: 4px;
  font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 700;
}
.form-group input,
.form-group select {
  width: 100%; background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text); padding: 12px 16px;
  font-size: 0.92rem; transition: border-color 0.2s, box-shadow 0.2s;
  outline: none; appearance: none; -webkit-appearance: none;
  min-height: 44px;
}
.form-group input::placeholder { color: var(--text-dim); }
.form-group input:focus, .form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow2);
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-group select option { background: #1a1a2e; color: var(--text); }

/* phone input */
.phone-input-group { display: flex; gap: 8px; }
.country-select { width: 130px !important; flex-shrink: 0; }

/* form row */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* form hint */
.form-hint { display: block; font-size: 0.75rem; color: var(--text-dim); margin-top: 6px; }

/* tone */
.tone-label-text {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.tone-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.tone-option { position: relative; cursor: pointer; }
.tone-option input { position: absolute; opacity: 0; width: 0; height: 0; }
.tone-option-inner {
  display: flex; flex-direction: column; gap: 4px; align-items: center;
  padding: 14px 10px;
  background: var(--bg-2); border: 2px solid var(--border);
  border-radius: var(--radius); transition: all 0.2s; text-align: center;
  min-height: 64px; justify-content: center;
}
.tone-option:hover .tone-option-inner { border-color: rgba(255,255,255,0.15); }
.tone-option input:checked ~ .tone-option-inner {
  border-color: var(--accent);
  background: var(--accent-glow2);
  box-shadow: 0 0 0 1px var(--accent);
}
.tone-name { font-size: 0.85rem; font-weight: 700; color: var(--text); }
.tone-hint { font-size: 0.68rem; color: var(--text-dim); line-height: 1.3; }

/* consent */
.consent-group label { text-transform: none !important; letter-spacing: 0 !important; display: flex !important; }
.consent-item { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; }
.consent-item input[type="checkbox"] {
  width: 18px !important; height: 18px !important; min-width: 18px;
  accent-color: var(--accent); margin-top: 2px; cursor: pointer; padding: 0 !important;
  flex-shrink: 0;
}
.consent-item span { font-size: 0.8rem; color: var(--text-muted); line-height: 1.55; }
.consent-item span a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.consent-hard {
  padding: 16px; background: rgba(249,115,22,0.05);
  border: 1px solid rgba(249,115,22,0.2); border-radius: var(--radius);
}

/* errors */
.form-error {
  display: block; font-size: 0.75rem; color: #f87171;
  margin-top: 6px; min-height: 16px;
}

/* legal */
.form-legal {
  font-size: 0.72rem; color: var(--text-dim); text-align: center;
  line-height: 1.6; margin-top: 14px;
}
.form-legal a { color: var(--text-dim); text-decoration: underline; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.site-footer-bottom {
  background: var(--bg); border-top: 1px solid var(--border); padding: 48px 0;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.footer-tagline { font-size: 0.82rem; color: var(--text-dim); }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 0.82rem; color: var(--text-dim); transition: color 0.2s; }
.footer-links a:hover { color: var(--text-muted); }
.footer-copy { font-size: 0.75rem; color: #374151; margin-top: 8px; }

/* ═══════════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════════ */
.fade-up { opacity: 0; transform: translateY(32px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.in-view { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════
   RESPONSIVE – TABLET (≤1024px)
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .phone-wrapper { order: -1; }
  .story-inner { grid-template-columns: 1fr; gap: 32px; }
  .story-bridge { position: static; }
  .value-inner { grid-template-columns: 1fr; gap: 48px; }
  .price-card { position: static; }
  .signup-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE – MOBILE (≤768px)
═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --section-pad: 64px; }

  .nav-links, .nav-cta { display: none; }
  .mobile-menu-btn { display: flex; }

  .hero { padding-top: 80px; }
  .desktop-br { display: none; }

  .hero-h1 { font-size: clamp(2.5rem, 10vw, 3.5rem); }

  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .for-not-grid { grid-template-columns: 1fr; }
  .samples-grid { grid-template-columns: 1fr; }

  .stats-inner { flex-wrap: wrap; gap: 0; }
  .stat-item { padding: 16px 24px; width: 50%; }
  .stat-divider { display: none; }

  .form-row { grid-template-columns: 1fr; }
  .tone-options { grid-template-columns: repeat(3, 1fr); }

  .phone-shell { width: 280px; min-height: 500px; }
  .section-h2 { font-size: clamp(1.9rem, 7vw, 2.8rem); }

  .hero-story-nudge { flex-direction: column; gap: 8px; }

  .story-card { padding: 28px 24px; }
  .signup-form { padding: 24px 20px; }
  .for-card, .not-card { padding: 28px 24px; }

  .footer-links { flex-direction: column; gap: 12px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE – SMALL MOBILE (≤480px)
═══════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-cta-group { width: 100%; }
  .btn-xl { padding: 15px 24px; font-size: 1rem; width: 100%; justify-content: center; }
  .tone-options { grid-template-columns: 1fr; }
  .phone-shell { width: 100%; max-width: 300px; }
  .stat-item { width: 100%; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .phone-input-group { flex-direction: column; }
  .country-select { width: 100% !important; }
}

/* ─── SELECTION ───────────────────────────────── */
::selection { background: rgba(249,115,22,0.25); color: var(--text); }

/* ─── FOCUS VISIBLE (accessibility) ──────────── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
button:focus-visible, a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }