:root {
  --bg: #f5f0e8;
  --bg-dark: #ede8df;
  --fg: #1a1a1a;
  --fg-muted: #6b6560;
  --accent: #c9a84c;
  --accent-dark: #b8943d;
  --white: #ffffff;
  --border: rgba(26,26,26,0.1);
  --phone-bg: #1a1a1a;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

h1, h2, h3, blockquote {
  font-family: 'Playfair Display', Georgia, serif;
}

::selection { background: var(--accent); color: var(--white); }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  letter-spacing: 0.01em;
}

/* HERO */
.hero {
  padding: 5rem 2rem 4rem;
  overflow: hidden;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-left { max-width: 520px; }
.hero-overline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--fg);
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-body {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 2.5rem;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.proof-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.proof-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.proof-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  line-height: 1.4;
}
.proof-divider {
  width: 1px;
  height: 3.5rem;
  background: var(--border);
}

/* HERO RIGHT - Phone frame */
.hero-right {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.phone-frame {
  width: 260px;
  background: var(--phone-bg);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 32px 64px rgba(0,0,0,0.18), 0 0 0 1px rgba(255,255,255,0.08) inset;
}
.phone-topbar {
  display: flex;
  justify-content: center;
  padding: 10px 0 6px;
}
.phone-notch {
  width: 80px;
  height: 24px;
  background: #111;
  border-radius: 0 0 16px 16px;
}
.phone-screen {
  border-radius: 24px;
  overflow: hidden;
  background: #111;
}
.video-content {
  position: relative;
  aspect-ratio: 9/16;
  height: 420px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #1a1a1a 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.video-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(201,168,76,0.25) 0%, transparent 60%),
    linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 50%);
}
.video-overlay-text {
  position: relative;
  z-index: 2;
  padding: 0 1.25rem 1rem;
}
.video-brand {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.video-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: white;
  margin-top: 0.25rem;
}
.video-ui {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.video-icon svg {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
.video-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.video-views {
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}
.video-likes, .video-comments {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.7);
}
.phone-homebar {
  width: 120px;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  margin: 10px auto 4px;
}
.floating-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 0.4rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--fg);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  margin-top: 1.25rem;
}

/* VIDEO SHOWCASE */
.video-showcase {
  padding: 5rem 2rem;
  background: var(--bg-dark);
}
.showcase-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.showcase-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 2.5rem;
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.showcase-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.card-video {
  position: relative;
  aspect-ratio: 9/16;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-1 .card-video { background: linear-gradient(135deg, #2d1b69, #1a1a2e, #0d0d1a); }
.card-2 .card-video { background: linear-gradient(135deg, #1b3a2f, #0d2b22, #0a1a15); }
.card-3 .card-video { background: linear-gradient(135deg, #3b2910, #2a1c08, #1a1206); }
.card-icon {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.card-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}
.card-industry {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.4);
  border-radius: 99px;
  padding: 0.25rem 0.6rem;
}
.card-info { padding: 1.25rem; }
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.25rem;
}
.card-result {
  font-size: 0.8125rem;
  color: var(--accent-dark);
  font-weight: 500;
}

/* INDUSTRIES */
.industries {
  padding: 6rem 2rem;
}
.industries-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.industries-headline {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
  max-width: 600px;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.industry-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(201,168,76,0.12);
}
.industry-icon {
  margin-bottom: 1.25rem;
}
.industry-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.industry-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* HOW IT WORKS */
.howitworks {
  padding: 6rem 2rem;
  background: var(--bg-dark);
}
.hiw-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.hiw-headline {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
  max-width: 580px;
}
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.hiw-step {
  position: relative;
}
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 1.25rem;
}
.step-ongoing-tag {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 99px;
  padding: 0.2rem 0.6rem;
  margin-bottom: 0.75rem;
}
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.step-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* MANIFESTO */
.manifesto {
  padding: 6rem 2rem;
  background: var(--fg);
  color: var(--white);
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-deco { margin-bottom: 3rem; }
.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 2rem;
}
.manifesto-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* CLOSING */
.closing {
  padding: 6rem 2rem;
  background: var(--bg);
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.closing-headline em {
  font-style: italic;
  color: var(--accent);
}
.closing-body {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 3rem;
}
.closing-pricing {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
}
.pricing-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  text-align: left;
  flex: 1;
  max-width: 300px;
}
.pricing-block:first-child { border-radius: 20px 0 0 20px; }
.pricing-block:last-child { border-radius: 0 20px 20px 0; border-left: none; }
.pricing-divider {
  display: none;
}
.pricing-tier {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.75rem;
}
.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.pricing-period {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg-muted);
}
.pricing-includes {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  line-height: 1.5;
}
.closing-cta {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

/* FOOTER */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--fg);
}
.footer-tagline {
  font-size: 0.8125rem;
  color: var(--fg-muted);
}
.footer-legal {
  font-size: 0.75rem;
  color: rgba(107,101,96,0.5);
  margin-top: 0.5rem;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { display: none; }
  .showcase-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .hiw-steps { grid-template-columns: 1fr 1fr; }
  .closing-pricing { flex-direction: column; align-items: center; gap: 1rem; }
  .pricing-block { border-radius: 16px !important; border: 1px solid var(--border) !important; max-width: 320px; width: 100%; }
}
@media (max-width: 600px) {
  .hero { padding: 3rem 1.25rem 3rem; }
  .industries, .howitworks, .manifesto, .closing { padding: 4rem 1.25rem; }
  .hiw-steps { grid-template-columns: 1fr; }
  .nav-tagline { display: none; }
}