/* Wodshot — shared stylesheet */

/* ---------- Tokens & base ---------- */
:root {
  --bg: #0A0A0A;
  --bg-alt: #111111;
  --card: #1A1A1A;
  --card-hover: #252525;
  --border: #2A2A2A;
  --accent: #C8FF00;
  --accent-hover: #DBFF4D;
  --text: #FFFFFF;
  --muted: #9A9A9E;
  --dim: #5E5E63;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --pad-x: clamp(20px, 4vw, 32px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; background: var(--bg); }
body { font-family: var(--font-body); color: var(--text); overflow-x: clip; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
::selection { background: var(--accent); color: var(--bg); }

img { display: block; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; margin: 0; }
p { margin: 0; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--pad-x); }
.accent { color: var(--accent); }

/* ---------- Nav ---------- */
.nav {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 12px; max-width: 1200px; margin: 0 auto;
  padding: 16px clamp(16px, 4vw, 32px);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 36px; height: 36px; border-radius: 9px; }
.brand span {
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
  letter-spacing: 0.04em; color: var(--text);
}
.nav-right { display: flex; align-items: center; gap: clamp(14px, 3vw, 32px); }
.nav-links { display: flex; align-items: center; gap: clamp(14px, 3vw, 32px); }
.nav-links a { color: var(--muted); font-size: 15px; font-weight: 500; }
.nav-links a:hover { color: var(--text); }

.btn-pill {
  background: var(--accent); color: var(--bg);
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  letter-spacing: 0.03em; padding: 10px 20px; border-radius: 999px;
}
.btn-pill:hover { background: var(--accent-hover); color: var(--bg); }

.menu-btn {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; width: 42px; height: 42px; padding: 0;
  background: var(--card); border: 1px solid var(--border); border-radius: 10px;
  cursor: pointer;
}
.menu-btn span { width: 18px; height: 2px; background: var(--text); display: block; }

.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  background: var(--card);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 12px clamp(16px, 4vw, 32px);
}
.mobile-menu a {
  color: var(--text); font-family: var(--font-display); font-weight: 500;
  font-size: 17px; padding: 12px 4px; border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }

@media (max-width: 720px) {
  .nav-links { display: none; }
  .menu-btn { display: flex; }
  .mobile-menu.open { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; max-width: 1200px; margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) var(--pad-x) clamp(56px, 8vw, 96px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: 48px; align-items: center;
}
.hero-glow {
  position: absolute; top: -120px; right: -80px; width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(200,255,0,0.13) 0%, rgba(200,255,0,0) 65%);
  pointer-events: none;
}
.hero-copy { position: relative; display: flex; flex-direction: column; gap: 28px; }
.badge {
  display: inline-flex; align-self: flex-start; align-items: center; gap: 8px;
  border: 1px solid var(--border); border-radius: 999px; padding: 6px 14px;
  background: var(--card);
  font-family: var(--font-mono); font-size: 12px; color: var(--muted);
  letter-spacing: 0.06em;
}
.badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
}
.hero h1 {
  font-size: clamp(38px, 8vw, 68px); line-height: 1.0;
  letter-spacing: -0.01em; text-wrap: pretty;
}
.hero-sub { color: var(--muted); font-size: 18px; line-height: 1.6; max-width: 440px; }
.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.hero-note { font-family: var(--font-mono); font-size: 13px; color: var(--dim); }

.appstore-btn {
  display: flex; align-items: center; gap: 10px;
  background: var(--card); border: 1px solid var(--border); border-radius: 12px;
  padding: 10px 20px; color: var(--text);
}
.appstore-btn:hover { border-color: var(--accent); color: var(--text); }
.appstore-btn .apple { font-size: 26px; line-height: 1; }
.appstore-btn .label { display: flex; flex-direction: column; text-align: left; }
.appstore-btn .label small { font-size: 11px; color: var(--muted); }
.appstore-btn .label strong { font-family: var(--font-display); font-weight: 700; font-size: 17px; }

.appstore-btn--solid { background: var(--accent); border: none; color: var(--bg); padding: 12px 24px; }
.appstore-btn--solid:hover { background: var(--accent-hover); color: var(--bg); }
.appstore-btn--solid .label small { color: inherit; font-weight: 500; }

.link-arrow {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 500; font-size: 15px;
}
.link-arrow .arrow { font-size: 18px; }

.hero-visual {
  position: relative; display: flex; justify-content: center; align-items: center;
  min-height: min(620px, 160vw);
}
.phone-main, .phone-alt { background: var(--card); border: 1px solid var(--border); }
.phone-main {
  position: relative; z-index: 2; width: min(280px, 68vw); aspect-ratio: 280 / 580;
  border-radius: 44px; padding: 10px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 60px rgba(200,255,0,0.08);
}
.phone-main img { width: 100%; height: 100%; object-fit: cover; border-radius: 34px; }
.phone-alt {
  position: absolute; z-index: 1; right: 0; top: 60px; width: min(230px, 55vw);
  aspect-ratio: 230 / 476; border-radius: 38px; padding: 8px;
  transform: rotate(6deg); box-shadow: 0 30px 60px rgba(0,0,0,0.5); opacity: 0.9;
}
.phone-alt img { width: 100%; height: 100%; object-fit: cover; border-radius: 30px; }

/* ---------- Stats band ---------- */
.band { border-top: 1px solid var(--border); background: var(--bg-alt); }
.stats { border-bottom: 1px solid var(--border); }
.stats .container {
  padding-top: clamp(36px, 6vw, 48px); padding-bottom: clamp(36px, 6vw, 48px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 40px; align-items: start;
}
.stats h2 { font-size: 28px; line-height: 1.15; text-wrap: pretty; }
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat-value { font-family: var(--font-mono); font-size: 34px; font-weight: 500; color: var(--accent); }
.stat-label { font-family: var(--font-display); font-weight: 500; font-size: 15px; }
.stat-desc { color: var(--muted); font-size: 13px; line-height: 1.5; }

/* ---------- Sections ---------- */
.section { max-width: 1200px; margin: 0 auto; padding: clamp(56px, 9vw, 96px) var(--pad-x); }
.band .section { margin: 0 auto; }
.section-head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 48px;
}
.section h2 { font-size: clamp(32px, 6vw, 44px); line-height: 1.05; }
.section-head p {
  color: var(--muted); font-size: 16px; line-height: 1.6;
  max-width: 380px; text-wrap: pretty;
}

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 20px; }
.card {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: 28px; display: flex; flex-direction: column; gap: 16px;
}
.card h3 { font-size: 22px; }
.card p { color: var(--muted); font-size: 15px; line-height: 1.6; }
.step-num { font-family: var(--font-mono); font-size: 13px; color: var(--accent); }
.step-shot { height: 220px; }
.step-shot img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }

/* ---------- Features ---------- */
.features h2 { margin-bottom: 48px; }
.features .card-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); }
.features .card { padding: 26px; gap: 10px; }
.features .card h3 { font-weight: 500; font-size: 19px; margin-top: 8px; }
.features .card p { font-size: 14px; }
.feature-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--accent); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-weight: 500; font-size: 15px;
}

/* ---------- Pricing ---------- */
.pricing-head {
  text-align: center; margin-bottom: 48px;
  display: flex; flex-direction: column; gap: 14px; align-items: center;
}
.pricing-head p { color: var(--muted); font-size: 16px; max-width: 460px; text-wrap: pretty; }
.plans {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 20px; max-width: 820px; margin: 0 auto;
}
.plan {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: 36px; display: flex; flex-direction: column; gap: 20px;
}
.plan-tier { font-family: var(--font-mono); font-size: 13px; color: var(--muted); letter-spacing: 0.08em; }
.plan-price { display: flex; align-items: baseline; gap: 8px; }
.plan-price strong { font-family: var(--font-display); font-weight: 700; font-size: 44px; }
.plan-price span { color: var(--muted); font-size: 15px; }
.plan-features {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 12px; font-size: 15px;
}
.plan-features li { display: flex; gap: 10px; align-items: center; }
.plan-features li::before { content: '✓'; color: var(--accent); }
.plan-features li.off { color: var(--dim); }
.plan-features li.off::before { content: '✗'; color: var(--dim); }
.plan-btn {
  margin-top: auto; text-align: center;
  border: 1px solid var(--border); border-radius: 12px; padding: 13px;
  color: var(--text); font-family: var(--font-display); font-weight: 700; font-size: 15px;
}
.plan-btn:hover { border-color: var(--accent); color: var(--text); }
.plan--featured { position: relative; border-color: var(--accent); box-shadow: 0 0 60px rgba(200,255,0,0.10); }
.plan--featured .plan-tier { color: var(--accent); }
.plan-flag {
  position: absolute; top: -12px; right: 24px;
  background: var(--accent); color: var(--bg);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  padding: 4px 10px; border-radius: 999px;
}
.plan-btn--solid { background: var(--accent); border-color: var(--accent); color: var(--bg); }
.plan-btn--solid:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: var(--bg); }

/* ---------- Final CTA ---------- */
.cta {
  border-top: 1px solid var(--border);
  background:
    radial-gradient(ellipse 70% 90% at 50% 110%, rgba(200,255,0,0.14) 0%, rgba(200,255,0,0) 70%),
    var(--bg-alt);
}
.cta .container {
  padding-top: clamp(64px, 10vw, 110px); padding-bottom: clamp(64px, 10vw, 110px);
  display: flex; flex-direction: column; align-items: center; gap: 26px; text-align: center;
}
.cta img { width: 72px; height: 72px; border-radius: 18px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.cta h2 { font-size: clamp(32px, 7vw, 52px); line-height: 1.05; max-width: 700px; text-wrap: pretty; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); background: var(--bg); }
.footer .container {
  padding-top: 48px; padding-bottom: 32px;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; gap: 40px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand .brand img { width: 28px; height: 28px; border-radius: 7px; }
.footer-brand .brand span { font-size: 16px; }
.copyright { color: var(--dim); font-size: 13px; }
.footer-cols { display: flex; flex-wrap: wrap; gap: clamp(28px, 6vw, 64px); }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col .col-title {
  font-family: var(--font-mono); font-size: 12px; color: var(--dim); letter-spacing: 0.08em;
}
.footer-col a { color: var(--muted); font-size: 14px; }
.footer-col a:hover { color: var(--text); }

/* ---------- Subpages (support / privacy) ---------- */
.subnav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 16px clamp(16px, 4vw, 32px);
}
.back-link { color: var(--muted); font-size: 15px; font-weight: 500; }
.back-link:hover { color: var(--text); }

.page {
  max-width: 720px; margin: 0 auto;
  padding: clamp(36px, 6vw, 56px) var(--pad-x) clamp(64px, 10vw, 96px);
  display: flex; flex-direction: column; gap: 32px;
}
.page--privacy { gap: 28px; }
.page-head { display: flex; flex-direction: column; gap: 12px; }
.page-head h1 { font-size: clamp(32px, 7vw, 44px); }
.kicker { font-family: var(--font-mono); font-size: 13px; color: var(--accent); letter-spacing: 0.08em; }
.page-date { color: var(--dim); font-family: var(--font-mono); font-size: 13px; }
.page > p { color: var(--muted); font-size: 16px; line-height: 1.7; }

.email-card {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: var(--card); border: 1px solid var(--accent); border-radius: 16px;
  padding: 24px 28px; color: var(--text);
}
.email-card:hover { background: var(--card-hover); color: var(--text); }
.email-card .label { display: flex; flex-direction: column; gap: 4px; }
.email-card strong { font-family: var(--font-display); font-weight: 700; font-size: 18px; }
.email-card .label span { color: var(--muted); font-size: 14px; }
.email-card .arrow { color: var(--accent); font-size: 24px; }

.faq { display: flex; flex-direction: column; gap: 16px; }
.faq h2, .page-section h2 { font-weight: 500; font-size: 24px; margin: 12px 0 0; }
.faq-item {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: 24px; display: flex; flex-direction: column; gap: 8px;
}
.faq-item h3 { font-weight: 500; font-size: 17px; }
.faq-item p { color: var(--muted); font-size: 15px; line-height: 1.6; }

.page-section { display: flex; flex-direction: column; gap: 10px; }
.page-section p { color: var(--muted); font-size: 16px; line-height: 1.7; }

.page-footer { border-top: 1px solid var(--border); }
.page-footer .inner {
  max-width: 720px; margin: 0 auto; padding: 24px var(--pad-x);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
}
.page-footer .copyright { font-size: 13px; }
.page-footer .links { display: flex; gap: 24px; }
.page-footer .links a { color: var(--muted); font-size: 14px; }
.page-footer .links a:hover { color: var(--text); }
