/* ─── whynot.run — landing page styles ──────────────────────────────────────
   Mobile-first. Dark theme. Brand orange #FC4C02 as the only chromatic accent.
   Single import, single file. No frameworks.
─────────────────────────────────────────────────────────────────────────── */

:root {
  --orange: #FC4C02;
  --orange-soft: rgba(252, 76, 2, 0.12);
  --orange-line: rgba(252, 76, 2, 0.35);
  --bg: #0a0a0a;
  --bg-2: #131313;
  --bg-3: #1a1a1a;
  --line: #1f1f1f;
  --line-2: #2a2a2a;
  --text: #ffffff;
  --text-2: #cccccc;
  --text-3: #888888;
  --text-4: #555555;
  --max-w: 1200px;
  --section-pad: clamp(44px, 9vw, 120px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--orange); color: #fff; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pad) 0; position: relative; }
.section-eyebrow { font-size: 11px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
.section-title { font-size: clamp(32px, 5vw, 56px); font-weight: 900; line-height: 1.05; letter-spacing: -1.5px; margin-bottom: 20px; }
.section-title .accent { color: var(--orange); }
.section-sub { font-size: clamp(15px, 1.6vw, 18px); color: var(--text-2); max-width: 640px; line-height: 1.6; }

.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 14px 0; background: rgba(10, 10, 10, 0.7); backdrop-filter: saturate(180%) blur(18px); -webkit-backdrop-filter: saturate(180%) blur(18px); border-bottom: 1px solid transparent; transition: border-color 0.2s, background 0.2s; }
.nav.scrolled { border-bottom-color: var(--line); background: rgba(10, 10, 10, 0.85); }
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 14px; font-weight: 900; letter-spacing: -0.4px; }
.nav-brand img { width: 48px; height: 48px; transform: rotate(-8deg); filter: drop-shadow(0 3px 10px rgba(252, 76, 2, 0.55)); }
.nav-wordmark { display: flex; align-items: baseline; gap: 4px; font-size: 26px; font-weight: 900; letter-spacing: 0.5px; }
.nav-wordmark .why { color: #fff; }
.nav-wordmark .not { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 13px; font-weight: 600; color: var(--text-2); transition: color 0.15s; }
.nav-links a:hover { color: var(--orange); }
.nav-cta { background: var(--orange); color: #fff !important; padding: 9px 18px; border-radius: 999px; font-weight: 800 !important; font-size: 12px !important; letter-spacing: 0.5px; text-transform: uppercase; box-shadow: 0 4px 16px rgba(252, 76, 2, 0.35); transition: transform 0.15s, box-shadow 0.15s; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(252, 76, 2, 0.5); color: #fff !important; }
@media (max-width: 700px) { .nav-links a:not(.nav-cta) { display: none; } }

.hero { min-height: auto; display: flex; align-items: center; position: relative; padding-top: clamp(90px, 14vw, 130px); padding-bottom: clamp(28px, 5vw, 60px); overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -10%; right: -10%; width: 60%; height: 80%; background: radial-gradient(circle, rgba(252, 76, 2, 0.18), transparent 65%); pointer-events: none; z-index: 0; }
.hero .container { display: block; max-width: 900px; text-align: center; position: relative; z-index: 1; }
.hero-eyebrow, .hero h1, .hero-sub { margin-left: auto; margin-right: auto; }
.hero-cta-row, .hero-stamp-row { justify-content: center; }
.hero-phones { display: none; }
.hero-phone-card { display: none; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange); background: var(--orange-soft); border: 1px solid var(--orange-line); padding: 6px 14px; border-radius: 999px; margin-bottom: 24px; }
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 8px var(--orange); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 { font-size: clamp(44px, 7.5vw, 88px); font-weight: 900; line-height: 0.95; letter-spacing: -2.5px; margin-bottom: 24px; }
.hero h1 .strike { position: relative; color: var(--text-4); display: inline-block; }
.hero h1 .strike::after { content: ''; position: absolute; left: -2%; right: -2%; top: 50%; height: 6px; background: var(--orange); transform: rotate(-3deg); border-radius: 2px; }
.hero h1 .accent { color: var(--orange); }
.hero-sub { font-size: clamp(16px, 1.7vw, 19px); color: var(--text-2); line-height: 1.6; max-width: 540px; margin-bottom: 36px; }
@media (max-width: 900px) { .hero-sub { margin-left: auto; margin-right: auto; } }
.hero-cta-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 28px; }
@media (max-width: 900px) { .hero-cta-row { justify-content: center; } }
.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--orange); color: #fff; padding: 16px 28px; border-radius: 999px; font-size: 15px; font-weight: 800; letter-spacing: 0.3px; border: none; cursor: pointer; font-family: inherit; box-shadow: 0 8px 28px rgba(252, 76, 2, 0.4); transition: transform 0.15s, box-shadow 0.15s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(252, 76, 2, 0.55); }
.btn-secondary { display: inline-flex; align-items: center; gap: 10px; background: rgba(255, 255, 255, 0.04); color: #fff; padding: 16px 24px; border-radius: 999px; font-size: 15px; font-weight: 700; border: 1px solid var(--line-2); cursor: pointer; font-family: inherit; transition: border-color 0.15s, background 0.15s; }
.btn-secondary:hover { border-color: var(--orange); background: rgba(252, 76, 2, 0.06); }
.hero-stamp-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 13px; color: var(--text-2); }
.hero-stamp-row .stamp { display: inline-flex; align-items: center; white-space: nowrap; }
.hero-stamp-row .stamp b { color: var(--orange); font-weight: 900; }
.hero-stamp-row .stamp-div { width: 1px; height: 14px; background: var(--line-2); }
@media (max-width: 980px) { .hero-stamp-row { justify-content: center; } }

.strip { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 30px 0; }
.strip .container { display: flex; align-items: center; justify-content: space-around; gap: 30px; flex-wrap: wrap; }
.strip-item { text-align: center; }
.strip-item .num { font-size: clamp(28px, 4vw, 40px); font-weight: 900; color: var(--orange); line-height: 1; letter-spacing: -1px; }
.strip-item .num.strike { color: var(--text-4); text-decoration: line-through; text-decoration-color: var(--orange); text-decoration-thickness: 3px; }
.strip-item .lab { font-size: 11px; font-weight: 700; color: var(--text-3); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 8px; }
@media (max-width: 700px) {
  .strip { padding: 18px 0; }
  .strip .container { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 8px; justify-content: stretch; }
  .strip-item .num { font-size: 22px; }
  .strip-item .lab { font-size: 9px; letter-spacing: 1px; margin-top: 4px; }
}

.compare-table { background: var(--bg-2); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; margin-top: 40px; }
.compare-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 0; border-bottom: 1px solid var(--line); }
.compare-row:last-child { border-bottom: none; }
.compare-row.head { background: rgba(0, 0, 0, 0.4); }
.compare-cell { padding: 20px 22px; font-size: 14px; display: flex; align-items: center; border-right: 1px solid var(--line); }
.compare-cell:last-child { border-right: none; }
.compare-row.head .compare-cell { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-3); }
.compare-row.head .compare-cell.us { color: var(--orange); }
.compare-cell.label { font-weight: 700; color: var(--text); background: rgba(255, 255, 255, 0.02); }
.compare-cell.us { background: rgba(252, 76, 2, 0.06); color: var(--orange); font-weight: 700; }
.compare-cell .check { color: #4caf50; margin-right: 8px; }
.compare-cell .x { color: var(--text-4); margin-right: 8px; }
.compare-cell .partial { color: #f59e0b; margin-right: 8px; }
@media (max-width: 700px) {
  .compare-table { margin-top: 24px; border-radius: 12px; }
  .compare-row { grid-template-columns: 1.3fr 1fr 1fr; }
  .compare-row.head { display: grid; }
  .compare-row.head .compare-cell { padding: 10px 8px; font-size: 9px; letter-spacing: 1px; line-height: 1.2; }
  .compare-cell { padding: 12px 10px; font-size: 12px; border-right: 1px solid var(--line); line-height: 1.3; }
  .compare-cell:last-child { border-right: none; }
  .compare-cell.label { font-size: 11px; font-weight: 800; letter-spacing: 0.2px; }
  .compare-row > .compare-cell:nth-child(3) { display: none; }
  .compare-row .compare-cell::before { display: none; }
  .compare-cell.us { font-weight: 800; }
  .compare-cell .check, .compare-cell .x, .compare-cell .partial { margin-right: 4px; font-size: 13px; }
}

.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 50px; }
@media (max-width: 700px) {
  .features { grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 24px; }
  .feature { padding: 12px 11px; border-radius: 10px; }
  .feature-icon { width: 28px; height: 28px; font-size: 14px; margin-bottom: 8px; border-radius: 7px; }
  .feature h3 { font-size: 12px; margin-bottom: 4px; letter-spacing: -0.1px; line-height: 1.2; }
  .feature p { font-size: 11px; line-height: 1.35; color: var(--text-3); }
}
.feature { background: var(--bg-2); border: 1px solid var(--line); border-radius: 16px; padding: 28px 26px; transition: border-color 0.2s, transform 0.2s; }
.feature:hover { border-color: var(--orange-line); transform: translateY(-3px); }
.feature-icon { width: 48px; height: 48px; background: var(--orange-soft); border: 1px solid var(--orange-line); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 22px; }
.feature h3 { font-size: 19px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.3px; }
.feature p { font-size: 14px; color: var(--text-2); line-height: 1.55; }

.phone-showcase { padding: 40px 0 60px; position: relative; overflow: hidden; }
.phone-showcase::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 50% at 50% 30%, rgba(252,76,2,0.08), transparent 60%); pointer-events: none; }
.phone-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.12fr) minmax(0, 1fr); gap: clamp(10px, 1.4vw, 20px); align-items: end; position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; padding: 0 16px; }
@media (max-width: 760px) {
  .phone-showcase { padding: 16px 0 24px; }
  .phone-row { display: flex; grid-template-columns: none; justify-content: center; align-items: end; gap: 0; padding: 8px 0; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); max-width: none; width: 100vw; }
  .phone-card { width: 18vw; max-width: 88px; min-width: 0; flex: 0 0 auto; }
  .phone-card:not(:first-child) { margin-left: -3vw; }
  .phone-card:nth-child(1) .phone-frame { transform: rotate(-6deg); z-index: 1; }
  .phone-card:nth-child(2) .phone-frame { transform: rotate(-2deg); z-index: 2; }
  .phone-card:nth-child(3) .phone-frame { transform: rotate(2deg); z-index: 3; }
  .phone-card:nth-child(4) .phone-frame { transform: rotate(6deg); z-index: 2; }
  .phone-card .phone-frame, .phone-featured .phone-frame { max-width: 100%; border-width: 2px; border-radius: 7px; }
  .phone-card .phone-notch { width: 22px; height: 5px; top: 2px; border-radius: 3px; }
  .phone-featured .phone-frame { box-shadow: 0 8px 20px rgba(252, 76, 2, 0.25), 0 0 0 1px rgba(252, 76, 2, 0.25); }
}
.phone-card { display: flex; flex-direction: column; align-items: center; min-width: 0; width: 100%; }
.phone-card .phone-frame { width: 100%; max-width: 240px; aspect-ratio: 9 / 19.5; background: #000; border: 7px solid #1a1a1a; border-radius: 32px; overflow: hidden; position: relative; box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04); transform: rotate(0); transition: transform 0.3s ease; }
.phone-card:nth-child(1) .phone-frame { transform: rotate(-2.5deg); }
.phone-card:nth-child(2) .phone-frame { transform: rotate(-1deg); }
.phone-card:nth-child(3) .phone-frame { transform: rotate(0); }
.phone-card:nth-child(4) .phone-frame { transform: rotate(2.5deg); }
.phone-card:hover .phone-frame { transform: rotate(0) scale(1.03); z-index: 2; }
.phone-card .phone-notch { position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 70px; height: 16px; background: #000; border-radius: 11px; z-index: 5; }
.phone-featured .phone-frame { max-width: 270px; box-shadow: 0 24px 60px rgba(252, 76, 2, 0.28), 0 0 0 1px rgba(252, 76, 2, 0.25), 0 0 0 4px rgba(252, 76, 2, 0.05); }
@media (max-width: 800px) and (min-width: 761px) { .phone-card .phone-frame, .phone-featured .phone-frame { transform: none !important; max-width: 240px; } }
.phone-screenshot { width: 100%; height: 100%; display: block; object-fit: contain; object-position: center; background: #0d0d0d; }
.screenshot-fallback { display: none; position: absolute; inset: 0; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 30px 20px; background: linear-gradient(180deg, #0d0d0d, #1a1a1a); color: var(--text-3); gap: 8px; }
.sf-icon { font-size: 48px; margin-bottom: 12px; opacity: 0.5; }
.sf-file { font-size: 11px; font-family: ui-monospace, 'SF Mono', Menlo, monospace; color: var(--text-2); line-height: 1.6; }
.sf-file b { color: #fff; font-weight: 700; }
.sf-hint { font-size: 10px; color: var(--text-4); margin-top: 8px; letter-spacing: 0.5px; }

.brand-break { padding: clamp(60px, 10vw, 110px) 0; text-align: center; position: relative; overflow: hidden; }
.brand-break::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(252, 76, 2, 0.14), transparent 65%); pointer-events: none; }
.brand-break .container { position: relative; z-index: 1; }
.brand-stack { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; }
.brand-logo { width: clamp(180px, 24vw, 260px); height: auto; filter: drop-shadow(0 18px 50px rgba(252, 76, 2, 0.6)); }
.brand-wordmark { display: flex; align-items: baseline; justify-content: center; gap: 8px; font-size: clamp(46px, 7.5vw, 80px); font-weight: 900; line-height: 1; letter-spacing: 4px; }
.brand-wordmark .why { color: #fff; }
.brand-wordmark .not { color: var(--orange); text-shadow: 0 0 30px rgba(252, 76, 2, 0.4); }
.brand-rule { width: 60px; height: 2px; background: var(--orange); border-radius: 1px; margin: 6px 0; box-shadow: 0 0 12px rgba(252, 76, 2, 0.6); }
.brand-tagline { font-size: clamp(11px, 1.3vw, 13px); color: var(--text-3); letter-spacing: 5px; text-transform: uppercase; font-weight: 800; }

.plans-block { margin-top: 80px; background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%); border: 1px solid var(--line); border-radius: 20px; padding: clamp(36px, 5vw, 60px); position: relative; overflow: hidden; }
.plans-block::before { content: ''; position: absolute; top: -50%; left: -10%; width: 60%; height: 200%; background: radial-gradient(ellipse, rgba(252,76,2,0.08), transparent 60%); pointer-events: none; }
.plans-head { position: relative; z-index: 1; margin-bottom: 36px; }
.plans-title { font-size: clamp(26px, 3.5vw, 38px); font-weight: 900; letter-spacing: -1px; margin-bottom: 8px; }
.plans-title .accent { color: var(--orange); }
.plans-sub { font-size: clamp(13px, 1.4vw, 15px); color: var(--text-2); max-width: 560px; }
.plans-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; position: relative; z-index: 1; }
@media (max-width: 700px) {
  .plans-block { margin-top: 44px; padding: 24px 18px; border-radius: 16px; }
  .plans-head { margin-bottom: 20px; }
  .plans-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .plan-pill { padding: 12px 12px; border-radius: 10px; }
  .pp-icon { font-size: 18px; margin-bottom: 2px; }
  .pp-name { font-size: 12px; }
  .pp-meta { font-size: 10px; line-height: 1.35; }
}
.plan-pill { background: rgba(0, 0, 0, 0.4); border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; display: flex; flex-direction: column; gap: 4px; transition: border-color 0.2s, transform 0.2s, background 0.2s; }
.plan-pill:hover { border-color: var(--orange-line); transform: translateY(-2px); background: rgba(252, 76, 2, 0.04); }
.plan-pill.featured { border-color: var(--orange); background: rgba(252, 76, 2, 0.08); box-shadow: 0 0 24px rgba(252, 76, 2, 0.15); }
.pp-icon { font-size: 22px; margin-bottom: 4px; }
.pp-name { font-size: 14px; font-weight: 800; color: #fff; letter-spacing: -0.2px; }
.pp-meta { font-size: 12px; color: var(--text-3); font-weight: 600; line-height: 1.4; }

.btn-xl { padding: 20px 36px; font-size: 17px; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; margin-top: 50px; position: relative; }
.step { position: relative; }
.step-num { font-size: 64px; font-weight: 900; color: var(--orange); line-height: 0.9; letter-spacing: -3px; opacity: 0.3; margin-bottom: 4px; }
.step h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.4px; }
.step p { font-size: 15px; color: var(--text-2); line-height: 1.6; }

.founder { background: var(--bg-2); border: 1px solid var(--line); border-radius: 20px; padding: clamp(40px, 6vw, 70px); display: grid; grid-template-columns: 1fr 280px; gap: 50px; align-items: center; }
@media (max-width: 800px) { .founder { grid-template-columns: 1fr; text-align: center; } }
.founder-quote { font-size: clamp(18px, 2vw, 22px); line-height: 1.55; color: var(--text); font-weight: 500; }
.founder-quote::before { content: '"'; font-size: 80px; color: var(--orange); line-height: 0; position: relative; top: 24px; margin-right: 6px; font-family: Georgia, serif; }
.founder-attr { margin-top: 20px; font-size: 13px; color: var(--text-3); font-weight: 700; letter-spacing: 0.3px; }
.founder-attr .name { color: var(--orange); font-weight: 900; }
.founder-photo { width: 100%; aspect-ratio: 4/5; background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; display: flex; align-items: center; justify-content: center; color: var(--text-3); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 800; text-align: center; padding: 0; position: relative; }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }

.faq { max-width: 800px; margin: 50px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: none; padding: 24px 0; font-family: inherit; font-size: clamp(16px, 1.8vw, 19px); font-weight: 700; color: #fff; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color 0.15s; }
.faq-q:hover { color: var(--orange); }
.faq-q .arr { font-size: 18px; color: var(--orange); font-weight: 900; transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-q .arr { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease, padding 0.25s ease; font-size: 15px; line-height: 1.65; color: var(--text-2); }
.faq-item.open .faq-a { max-height: 600px; padding: 0 0 24px; }

.cta-final { background: var(--bg); text-align: center; position: relative; overflow: hidden; padding-top: clamp(80px, 12vw, 140px); padding-bottom: clamp(80px, 12vw, 140px); }
.cta-final::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(252, 76, 2, 0.22), transparent 65%); pointer-events: none; }
.cta-final .container { position: relative; z-index: 1; }
.cta-final img.logo { width: clamp(280px, 32vw, 400px); margin: 0 auto 30px; transform: rotate(-8deg); filter: drop-shadow(0 26px 80px rgba(252, 76, 2, 0.7)); animation: logo-float 6s ease-in-out infinite; }
@keyframes logo-float { 0%, 100% { transform: rotate(-8deg) translateY(0); } 50% { transform: rotate(-8deg) translateY(-12px); } }
.cta-final h2 { font-size: clamp(54px, 10vw, 120px); font-weight: 900; letter-spacing: -3.5px; line-height: 0.92; margin-bottom: 12px; }
.cta-final h2 .accent { color: var(--orange); text-shadow: 0 0 40px rgba(252, 76, 2, 0.5); }
.cta-final .tag { font-size: 13px; color: var(--text-3); letter-spacing: 3px; text-transform: uppercase; font-weight: 800; margin-bottom: 38px; }
.cta-final .price-row { display: inline-flex; align-items: center; gap: 16px; margin-bottom: 28px; font-size: 14px; color: var(--text-2); }
.cta-final .price-row b { color: var(--orange); font-weight: 900; font-size: 17px; }
.cta-final .price-row .div { width: 1px; height: 18px; background: var(--line-2); }

.email-capture { margin-top: 32px; display: flex; gap: 8px; max-width: 460px; margin-left: auto; margin-right: auto; }
.email-capture input { flex: 1; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line-2); color: #fff; padding: 14px 18px; border-radius: 999px; font-size: 14px; font-family: inherit; outline: none; transition: border-color 0.15s; }
.email-capture input::placeholder { color: var(--text-3); }
.email-capture input:focus { border-color: var(--orange); }
.email-capture button { background: var(--orange); color: #fff; border: none; padding: 14px 22px; border-radius: 999px; font-size: 13px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; cursor: pointer; font-family: inherit; transition: transform 0.15s; }
.email-capture button:hover { transform: translateY(-1px); }
.email-capture-msg { margin-top: 12px; font-size: 13px; color: var(--orange); font-weight: 700; min-height: 18px; }

.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; font-weight: 900; font-size: 26px; letter-spacing: -0.6px; }
.footer-brand img { width: 44px; height: 44px; transform: rotate(-8deg); filter: drop-shadow(0 4px 12px rgba(252, 76, 2, 0.4)); }
.footer-brand .why { color: #fff; }
.footer-brand .not { color: var(--orange); }
.footer-tagline { font-size: 13px; color: var(--text-3); line-height: 1.6; max-width: 280px; }
.footer-col h4 { font-size: 11px; font-weight: 800; color: var(--orange); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { font-size: 13px; color: var(--text-2); transition: color 0.15s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; font-size: 12px; color: var(--text-3); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 700px) {
  .hero h1 { margin-bottom: 18px; }
  .hero-sub { margin-bottom: 24px; }
  .hero-cta-row { margin-bottom: 20px; }
  .brand-break { padding: 40px 0 36px; }
  .brand-stack { gap: 12px; }
  .steps { margin-top: 28px; gap: 20px; }
  .step-num { font-size: 44px; }
  .step h3 { font-size: 17px; margin-bottom: 6px; }
  .step p { font-size: 13px; }
  .founder { padding: 28px 22px; gap: 24px; border-radius: 14px; }
  .founder-photo { max-width: 220px; margin: 0 auto; }
  .founder-quote { font-size: 15px; }
  .faq { margin-top: 28px; }
  .faq-q { padding: 18px 0; font-size: 14px; }
  .faq-a { font-size: 13px; line-height: 1.55; }
  .faq-item.open .faq-a { padding: 0 0 18px; }
  .cta-final { padding-top: 60px; padding-bottom: 60px; }
  .cta-final img.logo { width: 200px; margin-bottom: 20px; }
  .cta-final h2 { font-size: 64px; letter-spacing: -2px; margin-bottom: 8px; }
  .cta-final .tag { margin-bottom: 24px; font-size: 11px; letter-spacing: 2px; }
  .cta-final .price-row { margin-bottom: 22px; font-size: 12px; gap: 10px; }
  .cta-final .price-row b { font-size: 14px; }
  .btn-xl { padding: 16px 24px; font-size: 14px; }
  .email-capture { margin-top: 24px; }
  .footer { padding: 36px 0 24px; }
  .footer-grid { margin-bottom: 28px; gap: 22px; }
  .footer-bottom { padding-top: 18px; font-size: 11px; }
}
