/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #F5F0E8;
  --fg: #1C1C1C;
  --fg-muted: #6B6560;
  --accent: #E87A1B;
  --accent-dim: rgba(232,122,27,0.12);
  --surface: #EDE8DF;
  --border: rgba(28,28,28,0.12);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

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

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(245,240,232,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: var(--fg);
}

.nav-tag {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-cta {
  padding: 9px 20px;
  background: var(--fg);
  color: #fff;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.15s ease;
}

.nav-cta:hover { background: #333; }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 32px 80px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 440px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--fg);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  margin-top: 4px;
}

.stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* === VIDEO CARD STACK === */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-card-stack {
  position: relative;
  width: 320px;
  height: 320px;
}

.vcard {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.vcard-video {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.vcard-video svg {
  width: 100%;
  height: 100%;
}

.vcard-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--fg);
  margin-bottom: 4px;
}

.vcard-tags {
  display: flex;
  gap: 4px;
}

.vcard-tags span {
  font-size: 10px;
  background: var(--accent-dim);
  color: var(--accent);
  padding: 2px 7px;
  border-radius: 20px;
  font-weight: 600;
}

.vc-1 { top: 0; left: 0; transform: rotate(-4deg); }
.vc-2 { top: 70px; right: 0; transform: rotate(3deg); }
.vc-3 { bottom: 70px; left: 0; transform: rotate(2deg); }
.vc-4 { bottom: 0; right: 0; transform: rotate(-3deg); }

/* === SCROLL HINT === */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* === PROOF === */
.proof {
  padding: 100px 32px;
  background: var(--fg);
}

.proof-inner { max-width: 1200px; margin: 0 auto; }

.proof-label, .how-label, .pricing-label, .manifesto-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.proof-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.proof-item h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  margin-bottom: 8px;
}

.proof-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
}

.proof-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === HOW === */
.how { padding: 100px 32px; background: var(--bg); }

.how-inner { max-width: 1200px; margin: 0 auto; }

.how-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 64px;
}

.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 64px;
}

.step {
  flex: 1;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  position: relative;
}

.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 48px;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 16px;
  -webkit-text-stroke: 1px var(--accent);
}

.step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--fg);
  margin-bottom: 12px;
}

.step p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.step-connector {
  padding: 32px 16px 0;
  display: flex;
  align-items: flex-start;
}

.how-quote {
  border-left: 3px solid var(--accent);
  padding-left: 32px;
}

.how-quote blockquote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(16px, 2vw, 20px);
  color: var(--fg-muted);
  line-height: 1.5;
  font-style: italic;
}

/* === PRICING === */
.pricing {
  padding: 100px 32px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-inner { max-width: 1200px; margin: 0 auto; }

.pricing-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  max-width: 560px;
  margin-bottom: 48px;
}

.pricing-tier { margin-bottom: 36px; }

.pt-name {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}

.pt-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 12px;
}

.pt-currency {
  font-size: 28px;
  vertical-align: super;
}

.pt-period {
  font-size: 18px;
  font-weight: 400;
  color: var(--fg-muted);
}

.pt-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.5;
}

.pt-features { margin-bottom: 28px; }

.ptf-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--fg);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.ptf-check { color: var(--accent); font-weight: 700; }

.pt-note {
  font-size: 12px;
  color: var(--fg-muted);
  font-style: italic;
}

.pricing-compare { max-width: 560px; }

.compare-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.compare-highlight { background: var(--accent-dim); border-radius: 8px; padding: 14px 12px; border: none; margin-bottom: 8px; }

.cr-item { font-weight: 600; color: var(--fg); }
.cr-ok { color: #6B9E6B; }
.cr-no { color: var(--fg-muted); font-size: 13px; }
.cr-best { color: var(--accent); font-weight: 600; }

/* === MANIFESTO === */
.manifesto { padding: 100px 32px; background: var(--bg); }

.manifesto-inner { max-width: 800px; margin: 0 auto; }

.manifesto-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -1.5px;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 40px;
}

.manifesto-body p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--fg-muted);
  margin-bottom: 24px;
}

.manifesto-cta {
  margin-top: 48px;
  padding: 28px 32px;
  background: var(--fg);
  border-radius: 16px;
}

.manifesto-cta p {
  font-family: var(--font-display);
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
}

/* === CLOSING === */
.closing {
  padding: 120px 32px;
  background: var(--fg);
  text-align: center;
}

.closing-inner { max-width: 700px; margin: 0 auto; }

.closing-visual {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 48px;
}

.cv-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232,122,27,0.4);
  animation: spin 8s linear infinite;
}

.cv-ring-1 { width: 120px; height: 120px; top: 0; left: 0; }
.cv-ring-2 { width: 80px; height: 80px; top: 20px; left: 20px; animation-direction: reverse; animation-duration: 6s; }
.cv-ring-3 { width: 44px; height: 44px; top: 38px; left: 38px; animation-duration: 4s; }

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.cv-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  top: 54px;
  left: 54px;
  box-shadow: 0 0 20px var(--accent);
}

.closing-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -1.5px;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 32px;
}

.closing-cta {
  display: inline-block;
  padding: 13px 28px;
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.1s ease;
}

.closing-cta:hover { background: #d06a15; }
.closing-cta:active { transform: scale(0.98); }

/* === FOOTER === */
.footer {
  padding: 64px 32px;
  background: #141410;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; }

.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  display: block;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-meta p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  max-width: 360px;
  text-align: right;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .proof-grid { grid-template-columns: 1fr; }
  .how-steps { flex-direction: column; }
  .step-connector { padding: 0; transform: rotate(90deg); }
  .footer-inner { flex-direction: column; }
  .footer-meta p { text-align: left; }
}

@media (max-width: 480px) {
  .hero { padding: 100px 20px 60px; }
  .hero-headline { font-size: 36px; }
  .pricing-card { padding: 28px; }
  .pt-price { font-size: 44px; }
  .manifesto, .how, .pricing, .proof { padding: 64px 20px; }
  .closing { padding: 80px 20px; }
}