:root {
  --bg: #09090b;
  --surface: #18181b;
  --surface-2: #27272a;
  --fg: #fafafa;
  --fg-muted: #a1a1aa;
  --fg-dim: #52525b;
  --accent: #2ecc71;
  --accent-dim: rgba(46, 204, 113, 0.1);
  --accent-border: rgba(46, 204, 113, 0.2);
  --red: #f43f5e;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 { font-family: 'Syne', sans-serif; line-height: 1.15; }

/* Layout */
.section-inner { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 24px;
  background: rgba(9,9,11,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--surface-2);
}
.nav-inner { max-width: 1080px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 18px; color: var(--fg); text-decoration: none; }

/* HERO */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 100px 24px 80px;
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(46,204,113,0.06) 0%, transparent 70%);
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 80%);
}
.hero-inner { max-width: 1080px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-text { display: flex; flex-direction: column; gap: 24px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-dim);
  border: 1px solid var(--accent-border); border-radius: 100px;
  padding: 6px 14px; width: fit-content;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-headline {
  font-size: clamp(40px, 6vw, 72px); font-weight: 800; color: var(--fg);
  letter-spacing: -0.03em; line-height: 1.05;
}
.hero-sub { font-size: 17px; color: var(--fg-muted); max-width: 480px; line-height: 1.7; }

/* Phone mockup */
.hero-visual { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.phone-frame {
  width: 220px; height: 440px;
  background: #18181b; border-radius: 36px; border: 2px solid var(--surface-2);
  padding: 12px; position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05) inset, 0 0 60px rgba(46,204,113,0.08);
}
.phone-notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 64px; height: 20px; background: #18181b; border-radius: 100px;
  z-index: 2;
}
.phone-screen { background: #0f0f11; border-radius: 26px; height: 100%; overflow: hidden; }
.screen-content { padding: 32px 16px 16px; height: 100%; display: flex; flex-direction: column; gap: 12px; }
.video-thumb {
  aspect-ratio: 9/12; background: linear-gradient(135deg, #1a2e1a 0%, #0f1f0f 50%, #162116 100%);
  border-radius: 10px; position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
}
.thumb-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 40px; height: 40px; background: rgba(46,204,113,0.9); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.thumb-bar { position: absolute; bottom: 8px; left: 8px; right: 8px; height: 3px; background: rgba(255,255,255,0.2); border-radius: 2px; overflow: hidden; }
.thumb-bar-fill { height: 100%; width: 35%; background: var(--accent); border-radius: 2px; }
.video-meta { display: flex; align-items: center; gap: 8px; }
.meta-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--surface-2); flex-shrink: 0; }
.meta-lines { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.meta-line { height: 8px; border-radius: 4px; background: var(--surface-2); }
.meta-line-1 { width: 75%; }
.meta-line-2 { width: 50%; }
.video-stats { display: flex; gap: 12px; }
.stat { display: flex; align-items: center; gap: 4px; font-size: 10px; color: var(--fg-muted); }
.stat-icon { width: 14px; height: 14px; border-radius: 4px; }
.heart { background: #f43f5e; }
.comment { background: var(--fg-dim); }
.share { background: var(--fg-dim); }
.screen-label { text-align: center; font-size: 10px; color: var(--accent); font-weight: 500; letter-spacing: 0.05em; }

/* Stack pills */
.stack-pills { display: flex; flex-direction: column; gap: 8px; }
.stack-pill {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--fg-muted);
  background: var(--surface); border: 1px solid var(--surface-2);
  border-radius: 100px; padding: 8px 16px;
  width: fit-content;
}

/* PROBLEM */
.problem { padding: 100px 0; }
.problem-label, .how-label, .pricing-label, .who-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px; display: block;
}
.problem-headline, .how-headline, .pricing-headline, .who-headline {
  font-size: clamp(28px, 4vw, 48px); font-weight: 700; margin-bottom: 56px;
  line-height: 1.1; max-width: 600px;
}
.problem-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 56px; }
.problem-card {
  background: var(--surface); border: 1px solid var(--surface-2);
  border-radius: 16px; padding: 28px; display: flex; flex-direction: column; gap: 12px;
  transition: border-color 0.2s;
}
.problem-card:hover { border-color: var(--accent-border); }
.problem-icon { width: 40px; height: 40px; background: var(--accent-dim); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.problem-card h3 { font-size: 17px; font-weight: 700; }
.problem-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }
.problem-divider { display: flex; align-items: center; gap: 20px; }
.divider-line { flex: 1; height: 1px; background: var(--surface-2); }
.divider-text { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 600; color: var(--accent); white-space: nowrap; }

/* HOW */
.how { padding: 100px 0; background: var(--surface); }
.steps-grid { display: grid; grid-template-columns: auto 40px auto 40px auto; align-items: start; gap: 0; }
.step { display: flex; flex-direction: column; gap: 14px; }
.step-number { font-family: 'Syne', sans-serif; font-size: 40px; font-weight: 800; color: var(--surface-2); line-height: 1; }
.step h3 { font-size: 17px; font-weight: 700; }
.step p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }
.step-visual { margin-top: 8px; }
.step-connector { display: flex; align-items: center; padding-top: 32px; }

/* Brief card */
.brief-card { background: var(--bg); border: 1px solid var(--surface-2); border-radius: 12px; padding: 16px; }
.brief-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.brief-tag { font-size: 10px; font-weight: 600; background: var(--accent-dim); color: var(--accent); padding: 4px 10px; border-radius: 100px; }
.brief-goal { font-size: 11px; color: var(--fg-muted); }
.brief-items { display: flex; flex-direction: column; gap: 8px; }
.brief-item { font-size: 12px; color: var(--fg-muted); padding-left: 20px; position: relative; }
.brief-item::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 14px; height: 14px; background: var(--accent); border-radius: 50%; opacity: 0.8; }
.brief-item.done { color: var(--fg); }
.brief-item.done::before { content: '✓'; background: none; color: var(--accent); font-size: 9px; display: flex; align-items: center; justify-content: center; font-weight: 700; }

/* Production stack */
.production-stack { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.prod-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.prod-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--surface-2); }
.prod-icon.script { background: linear-gradient(135deg, #1a4a1a, #0f3f0f); }
.prod-icon.voice { background: linear-gradient(135deg, #1a1a4a, #0f0f3f); }
.prod-icon.clip { background: linear-gradient(135deg, #2ecc71, #1a8a4a); opacity: 0.8; }
.prod-icon.capt { background: linear-gradient(135deg, #1a1a1a, #111); border: 1px solid var(--fg-dim); }
.prod-icon.done-green { background: var(--accent); }
.prod-item span { font-size: 10px; color: var(--fg-muted); }
.prod-arrow { font-size: 12px; color: var(--fg-dim); }

/* Delivery calendar */
.delivery-cal { background: var(--bg); border: 1px solid var(--surface-2); border-radius: 12px; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.cal-header { font-size: 11px; font-weight: 600; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.cal-row { display: flex; align-items: center; gap: 12px; }
.cal-wk { font-size: 11px; color: var(--fg-dim); width: 44px; }
.cal-bar { flex: 1; height: 8px; background: var(--surface-2); border-radius: 4px; overflow: hidden; display: flex; align-items: center; }
.cal-bar-fill { height: 100%; background: var(--accent); border-radius: 4px; }
.cal-label { font-size: 9px; color: var(--fg); font-weight: 600; padding: 0 6px; white-space: nowrap; }

/* PRICING */
.pricing { padding: 100px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.price-card {
  background: var(--surface); border: 1px solid var(--surface-2);
  border-radius: 20px; padding: 28px; display: flex; flex-direction: column; gap: 16px;
  position: relative;
}
.price-card.featured { border-color: var(--accent); background: linear-gradient(180deg, rgba(46,204,113,0.05) 0%, var(--surface) 100%); }
.price-card-badge { position: absolute; top: -12px; left: 24px; background: var(--accent); color: var(--bg); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 100px; }
.price-tier { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); }
.price-amount { font-family: 'Syne', sans-serif; font-size: 40px; font-weight: 800; line-height: 1; }
.price-per { font-size: 20px; font-weight: 400; color: var(--fg-muted); }
.price-desc { font-size: 14px; color: var(--fg-muted); }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.price-features li { font-size: 14px; display: flex; align-items: center; gap: 10px; color: var(--fg-muted); }
.check { color: var(--accent); font-weight: 700; }

/* WHO */
.who { padding: 100px 0; background: var(--surface); }
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.who-card {
  padding: 24px; border: 1px solid var(--surface-2);
  border-radius: 16px; display: flex; flex-direction: column; gap: 12px;
  transition: border-color 0.2s;
}
.who-card:hover { border-color: var(--accent-border); }
.who-icon-wrap { width: 40px; height: 40px; background: var(--accent-dim); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.who-card h3 { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; }
.who-card p { font-size: 13px; color: var(--fg-muted); line-height: 1.6; }

/* MANIFESTO */
.manifesto { padding: 100px 0; background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%); }
.manifesto-inner { max-width: 900px; margin: 0 auto; padding: 0 24px; text-align: center; }
.manifesto-quote {
  font-family: 'Syne', sans-serif; font-size: clamp(20px, 3vw, 30px); font-weight: 600;
  line-height: 1.4; color: var(--fg); margin-bottom: 64px;
  position: relative;
}
.quote-mark { color: var(--accent); font-size: 48px; line-height: 0; vertical-align: -20px; margin: 0 8px; display: inline-block; }
.manifesto-cta h2 { font-size: clamp(24px, 3vw, 40px); font-weight: 800; margin-bottom: 12px; }
.manifesto-cta p { font-size: 16px; color: var(--fg-muted); margin-bottom: 48px; }
.manifesto-stat { display: inline-block; }
.stat-number { font-family: 'Syne', sans-serif; font-size: 80px; font-weight: 800; color: var(--accent); line-height: 1; }
.stat-label { font-size: 14px; color: var(--fg-muted); max-width: 280px; margin: 8px auto 0; }

/* START FORM */
.start-form { padding: 100px 0; }
.start-form-header { text-align: center; margin-bottom: 48px; }
.start-form-sub { font-size: 16px; color: var(--fg-muted); margin-top: 16px; }
.start-form-wrap { max-width: 560px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 13px; font-weight: 500; color: var(--fg-muted); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--surface); border: 1px solid var(--surface-2);
  border-radius: 12px; color: var(--fg); font-family: 'Figtree', sans-serif;
  font-size: 15px; padding: 12px 16px; width: 100%;
  transition: border-color 0.2s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--fg-dim); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--accent);
}
.form-group select { cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%23a1a1aa' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 40px;
}
.form-submit {
  width: 100%; margin-top: 20px;
  background: var(--accent); color: var(--bg);
  font-family: 'Figtree', sans-serif; font-size: 15px; font-weight: 700;
  border: none; border-radius: 12px; padding: 14px; cursor: pointer;
  transition: opacity 0.2s;
}
.form-submit:hover { opacity: 0.9; }

/* PORTAL */
.portal { padding: 100px 0; }
.portal-header { margin-bottom: 48px; }
.portal-account { background: var(--surface); border: 1px solid var(--surface-2); border-radius: 20px; padding: 28px; }
.portal-account-badge { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.portal-account-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, #1a4a1a, #0f3f0f); flex-shrink: 0; }
.portal-account-info { display: flex; flex-direction: column; gap: 4px; }
.portal-account-name { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; }
.portal-account-meta { font-size: 13px; color: var(--fg-muted); }
.portal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.portal-video-card { background: var(--bg); border: 1px solid var(--surface-2); border-radius: 16px; overflow: hidden; }
.portal-thumb {
  aspect-ratio: 9/12; background: linear-gradient(135deg, #1a2e1a 0%, #0f1f0f 50%, #162116 100%);
  border-radius: 10px; position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
}
.portal-thumb .thumb-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 40px; height: 40px; background: rgba(46,204,113,0.9); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.portal-thumb .thumb-bar { position: absolute; bottom: 8px; left: 8px; right: 8px; height: 3px; background: rgba(255,255,255,0.2); border-radius: 2px; overflow: hidden; }
.portal-thumb .thumb-bar-fill { height: 100%; background: var(--accent); border-radius: 2px; }
.portal-meta { padding: 16px; display: flex; flex-direction: column; gap: 6px; }
.portal-badge { display: inline-block; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--accent); background: var(--accent-dim); padding: 4px 10px; border-radius: 100px; width: fit-content; }
.portal-title { font-size: 14px; font-weight: 600; line-height: 1.3; }
.portal-stats { font-size: 12px; color: var(--fg-muted); display: flex; gap: 6px; }

/* CONTACT */
.contact { padding: 100px 0; }
.contact-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.contact-header { margin-bottom: 32px; }
.contact-sub { font-size: 16px; color: var(--fg-muted); margin-top: 16px; }
.contact-note { font-size: 12px; color: var(--fg-dim); margin-top: 16px; }

/* FOOTER */
.footer { border-top: 1px solid var(--surface-2); padding: 40px 0; }
.footer-inner { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.footer-top { margin-bottom: 32px; }
.footer-brand {}
.footer-tagline { font-size: 14px; color: var(--fg-dim); margin-top: 12px; }
.footer-bottom { font-size: 12px; color: var(--fg-dim); padding-top: 24px; border-top: 1px solid var(--surface-2); }

/* Responsive */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-headline { font-size: 40px; }
  .problem-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }
  .problem-headline, .how-headline, .pricing-headline, .who-headline { font-size: 28px; }
  .manifesto-quote { font-size: 18px; }
  .stat-number { font-size: 56px; }
  .form-grid { grid-template-columns: 1fr; }
  .portal-grid { grid-template-columns: 1fr; }
}