:root {
  --bg: #FDFBF7;
  --bg-alt: #F7F3EB;
  --fg: #111010;
  --fg-muted: #6B6B6B;
  --accent: #F5A623;
  --accent-dark: #D4880A;
  --navy: #1A1A2E;
  --border: #E8E4DC;
  --card-bg: #FFFFFF;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', 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;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1160px;
  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: 22px;
  letter-spacing: -0.5px;
  color: var(--fg);
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  background: var(--bg);
}
.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(245, 166, 35, 0.12);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(245, 166, 35, 0.3);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  background: var(--fg);
  color: var(--bg);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 999px;
}

/* Phone mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.phone-mockup {
  position: relative;
  width: 280px;
}
.phone-frame {
  background: var(--navy);
  border-radius: 40px;
  padding: 16px;
  box-shadow: 0 32px 80px rgba(17, 16, 16, 0.18), 0 8px 24px rgba(17, 16, 16, 0.1);
}
.phone-screen {
  background: #222235;
  border-radius: 28px;
  padding: 20px 16px;
}
.tiktok-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  margin-bottom: 16px;
}
.tiktok-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F5A623 0%, #FF6B35 100%);
  flex-shrink: 0;
}
.tiktok-info { flex: 1; }
.tiktok-handle {
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}
.tiktok-name {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  margin-bottom: 8px;
}
.tiktok-stat {
  display: inline-block;
  margin-right: 16px;
}
.stat-num {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
}
.stat-label {
  color: rgba(255,255,255,0.45);
  font-size: 11px;
}
.reels-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.reel-card {
  border-radius: 12px;
  padding: 14px 8px;
  text-align: center;
}
.reel-1 { background: rgba(245, 166, 35, 0.2); border: 1px solid rgba(245, 166, 35, 0.4); }
.reel-2 { background: rgba(255, 107, 53, 0.2); border: 1px solid rgba(255, 107, 53, 0.4); }
.reel-3 { background: rgba(155, 93, 229, 0.2); border: 1px solid rgba(155, 93, 229, 0.4); }
.reel-icon {
  width: 24px;
  height: 24px;
  margin: 0 auto 6px;
  border-radius: 6px;
}
.reel-1 .reel-icon { background: #F5A623; }
.reel-2 .reel-icon { background: #FF6B35; }
.reel-3 .reel-icon { background: #9B5DE5; }
.reel-label { font-size: 11px; color: rgba(255,255,255,0.6); font-weight: 500; }

.growth-ring {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 90px;
  height: 90px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.4);
}
.ring-inner { text-align: center; }
.ring-pct {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}
.ring-label {
  font-size: 9px;
  color: rgba(255,255,255,0.85);
  display: block;
  line-height: 1.3;
}

.hero-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  pointer-events: none;
}
.deco-bar {
  position: absolute;
  right: 0;
  border-radius: 4px;
}
.deco-1 {
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(245,166,35,0.15), transparent);
  right: 60px;
}
.deco-2 {
  width: 2px;
  height: 60%;
  background: linear-gradient(to bottom, transparent, rgba(245,166,35,0.1), transparent);
  right: 40px;
  top: 20%;
}
.deco-3 {
  width: 2px;
  height: 40%;
  background: linear-gradient(to bottom, transparent, rgba(245,166,35,0.08), transparent);
  right: 80px;
  top: 30%;
}

/* ── SHARED SECTION STYLES ── */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ── VALUE PROP ── */
.valueprop {
  background: var(--bg-alt);
  padding: 100px 0;
}
.valueprop-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
.valueprop-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.8px;
  max-width: 620px;
  margin-bottom: 56px;
  color: var(--fg);
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: box-shadow 0.2s;
}
.value-card:hover {
  box-shadow: 0 8px 32px rgba(17,16,16,0.08);
}
.value-icon {
  width: 48px;
  height: 48px;
  background: rgba(245, 166, 35, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg);
}
.value-card p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ── HOW IT WORKS ── */
.howitworks {
  background: var(--bg);
  padding: 100px 0;
}
.howitworks-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
.how-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.8px;
  max-width: 520px;
  margin-bottom: 64px;
  color: var(--fg);
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: rgba(245, 166, 35, 0.2);
  line-height: 1;
  margin-bottom: 16px;
}
.step-body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--fg);
}
.step-body p {
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.6;
}
.step-connector {
  width: 40px;
  flex-shrink: 0;
  height: 2px;
  background: var(--border);
  margin-top: 40px;
}

/* ── OUTCOMES ── */
.outcomes {
  background: var(--navy);
  padding: 100px 0;
}
.outcomes-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
.outcomes .section-label { color: rgba(245, 166, 35, 0.8); }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.outcome-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px 28px;
}
.outcome-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.outcome-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}
.outcome-calc {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}
.outcomes-note {
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  max-width: 520px;
  line-height: 1.6;
}

/* ── MANIFESTO ── */
.manifesto {
  background: var(--bg);
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
.manifesto-content {
  max-width: 680px;
}
blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--fg);
  margin-bottom: 28px;
  border-left: 4px solid var(--accent);
  padding-left: 24px;
}
.manifesto-content p {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ── CLOSING ── */
.closing {
  background: var(--bg-alt);
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 12px;
  line-height: 1.65;
}

/* ── FOOTER ── */
.footer {
  background: var(--fg);
  padding: 64px 0;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.footer-desc {
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  max-width: 440px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.footer-links span {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}
.link-sep { color: rgba(255,255,255,0.2); }
.footer-tagline {
  color: rgba(255,255,255,0.3);
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
}

/* ── VIDEO PORTFOLIO ── */
.videoportfolio {
  background: var(--navy);
  padding: 100px 0;
}
.vp-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
.vp-header {
  margin-bottom: 56px;
}
.vp-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.8px;
  color: #fff;
  margin-bottom: 12px;
}
.vp-sub {
  color: rgba(255,255,255,0.5);
  font-size: 16px;
  max-width: 520px;
  line-height: 1.6;
}
.vp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.vp-card {
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}
.vp-thumb-wrap {
  position: relative;
  padding-top: 56.25%;
  background: rgba(255,255,255,0.05);
}
.vp-thumb {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vp-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: rgba(245, 166, 35, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s, transform 0.2s;
}
.vp-card:hover .vp-play {
  background: var(--accent);
  transform: translate(-50%, -50%) scale(1.1);
}
.vp-meta {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: none;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vp-tag {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.25);
  padding: 4px 10px;
  border-radius: 999px;
}
.vp-label {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.vp-cta {
  text-align: center;
}
.vp-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s;
}
.vp-btn:hover { background: var(--accent-dark); }

@media (max-width: 900px) {
  .vp-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 600px) {
  .videoportfolio { padding: 64px 0; }
  .vp-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .vp-inner { padding: 0 20px; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .value-grid { grid-template-columns: 1fr; gap: 16px; }
  .steps { flex-direction: column; gap: 12px; }
  .step-connector { display: none; }
  .outcomes-grid { grid-template-columns: 1fr; gap: 12px; }
}
@media (max-width: 600px) {
  .hero { padding: 64px 0 48px; }
  .valueprop, .howitworks, .outcomes, .manifesto, .closing { padding: 64px 0; }
  .nav-inner { padding: 14px 20px; }
  .hero-inner, .valueprop-inner, .howitworks-inner, .outcomes-inner, .manifesto-inner, .closing-inner, .footer-inner { padding: 0 20px; }
  .outcome-num { font-size: 42px; }
}