:root {
  --bg: #0D0D0F;
  --surface: #131316;
  --surface2: #1A1A1E;
  --accent: #FF5C00;
  --accent-dim: rgba(255, 92, 0, 0.12);
  --fg: #F5F2EE;
  --fg-muted: #8A8A8E;
  --border: rgba(245, 242, 238, 0.08);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HEADER */
.site-header {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 32px; height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: #0D0D0F;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.3px;
}
.header-nav { display: flex; align-items: center; }
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* HERO */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 32px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 24px;
}
.label-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 32px;
}
.proof-stat { display: flex; flex-direction: column; gap: 4px; }
.proof-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--fg);
}
.proof-label {
  font-size: 12px;
  color: var(--fg-muted);
  max-width: 140px;
  line-height: 1.4;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* DEVICE FRAME */
.hero-device { display: flex; justify-content: center; }
.device-frame {
  width: 280px;
  background: var(--surface2);
  border-radius: 36px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
}
.device-notch {
  width: 100px; height: 28px;
  background: #0D0D0F;
  border-radius: 0 0 16px 16px;
  margin: 0 auto 12px;
}
.device-screen {
  background: var(--surface);
  border-radius: 24px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.app-header {
  display: flex;
  gap: 12px;
  align-items: center;
}
.app-icon-placeholder {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent) 0%, #FF8C00 100%);
  flex-shrink: 0;
}
.app-meta { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.app-title-bar {
  height: 14px; width: 75%;
  background: rgba(245,242,238,0.15);
  border-radius: 4px;
}
.app-sub-bar {
  height: 10px; width: 55%;
  background: rgba(245,242,238,0.08);
  border-radius: 4px;
}
.app-screenshots {
  display: flex;
  gap: 8px;
}
.shot {
  flex: 1;
  height: 64px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
}
.app-desc-block {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.desc-line {
  height: 8px; width: 90%;
  background: rgba(245,242,238,0.07);
  border-radius: 4px;
}
.desc-line.short { width: 60%; }
.problem-overlay {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  background: rgba(255,92,0,0.08);
  border-radius: 10px;
  border: 1px solid rgba(255,92,0,0.2);
  margin-top: 4px;
}
.problem-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  padding: 4px 8px;
  background: rgba(255,92,0,0.15);
  border-radius: 4px;
  text-align: center;
}

/* SECTION EYEBROW */
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* THE PROBLEM */
.theproblem { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.tp-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 32px;
}
.tp-head { margin-bottom: 56px; }
.tp-head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.tp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}
.tp-card {
  padding: 32px;
  background: var(--bg);
  border-radius: 16px;
  border: 1px solid var(--border);
}
.tp-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}
.tp-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}
.tp-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}
.tp-witness {
  padding: 28px 32px;
  background: var(--accent-dim);
  border-radius: 12px;
  border: 1px solid rgba(255,92,0,0.15);
}
.tp-witness blockquote {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  color: var(--fg);
  margin-bottom: 12px;
}
.tp-witness cite {
  font-size: 13px;
  color: var(--fg-muted);
}

/* HOW IT WORKS */
.hiw-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 32px;
}
.hiw-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 56px;
}
.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-bottom: 48px;
}
.step {
  padding: 32px;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
}
.step-icon {
  width: 52px; height: 52px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.step-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.step h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}
.step p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.step-connector {
  display: flex;
  align-items: center;
  padding-top: 60px;
  color: var(--fg-muted);
}
.hiw-note {
  text-align: center;
  padding: 24px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.hiw-note p {
  font-size: 15px;
  color: var(--fg-muted);
}

/* OUTCOMES */
.outcomes { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 32px;
}
.outcomes-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 48px;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.outcome {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.outcome:nth-child(odd) { padding-right: 48px; border-right: 1px solid var(--border); }
.outcome:nth-child(even) { padding-left: 48px; }
.outcome:nth-last-child(-n+2) { border-bottom: none; }
.outcome-check {
  width: 32px; height: 32px;
  background: var(--accent-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.outcome h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}
.outcome p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* CLOSING */
.closing { padding: 100px 0; }
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 20px;
}
.closing > .closing-inner > p {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.7;
}
.closing-pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 56px;
}
.price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.price-tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  color: var(--fg);
}
.price-sub {
  font-size: 16px;
  color: var(--fg-muted);
}
.price-reason {
  max-width: 420px;
}
.price-reason p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.closing-statement {
  padding: 32px;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
  max-width: 680px;
  margin: 0 auto;
}
.closing-statement p {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}
.footer-note { font-size: 14px; color: var(--fg-muted); }
.footer-legal { font-size: 12px; color: var(--fg-muted); }

/* CTA BUTTONS */
.hero-cta {
  display: inline-block;
  padding: 14px 36px;
  background: var(--accent);
  color: #0D0D0F;
  text-decoration: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.15s, box-shadow 0.15s;
  margin-bottom: 40px;
}
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 92, 0, 0.3);
}
.header-cta {
  display: inline-block;
  padding: 8px 20px;
  background: var(--accent);
  color: #0D0D0F;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.15s;
}
.header-cta:hover { opacity: 0.85; }
.closing-cta {
  display: inline-block;
  padding: 16px 48px;
  background: var(--accent);
  color: #0D0D0F;
  text-decoration: none;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.15s, box-shadow 0.15s;
  margin-bottom: 56px;
}
.closing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 92, 0, 0.3);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding-top: 56px; }
  .hero-device { order: -1; }
  .device-frame { width: 240px; }
  .tp-grid { grid-template-columns: 1fr; gap: 20px; }
  .steps-row { grid-template-columns: 1fr; gap: 20px; }
  .step-connector { display: none; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .outcome:nth-child(odd) { border-right: none; padding-right: 0; }
  .outcome:nth-child(even) { padding-left: 0; }
}
@media (max-width: 600px) {
  .hero { padding: 40px 24px 64px; }
  .tp-inner, .hiw-inner, .outcomes-inner { padding: 56px 24px; }
  .closing-inner { padding: 0 24px; }
  .price-amount { font-size: 56px; }
}