:root {
  --white: #ffffff;
  --off: #f7f5f2;
  --off2: #f0ede8;
  --card: #faf8f5;
  --ink: #111010;
  --ink2: #4a4540;
  --ink3: #9a9390;
  --warm: #b8874a;
  --warm-lt: #d4a96e;
  --border: #e4e0da;
  --border2: #d4cfc8;
  --radius: 10px;
  --radius-lg: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: 'Figtree', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 60px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 28px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--ink2);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  transition: color 0.15s;
}

.nav-links a:hover {
  color: var(--ink);
}

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

.nav-login {
  color: var(--ink2);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  transition: color 0.15s;
}

.nav-login:hover {
  color: var(--ink);
}

.btn-nav {
  background: var(--ink);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
}

.btn-nav:hover {
  background: #2a2520;
}

/* ── HERO ── */
#hero {
  padding: 96px 48px 80px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 28px;
}

h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.01em;
  max-width: 760px;
  margin: 0 auto 24px;
  color: var(--ink);
}

h1 em {
  font-style: italic;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  color: var(--ink2);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.8;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 7px;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.15s, transform 0.12s;
  display: inline-block;
}

.btn-primary:hover {
  background: #2a2520;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  padding: 13px 28px;
  border-radius: 7px;
  font-weight: 400;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid var(--border2);
  transition: border-color 0.15s, transform 0.12s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--ink2);
  transform: translateY(-1px);
}

.hero-proof {
  margin-top: 32px;
  font-size: 0.8rem;
  color: var(--ink3);
}

.hero-proof a {
  color: var(--warm);
  text-decoration: none;
}

.hero-proof a:hover {
  text-decoration: underline;
}

/* ── SECTIONS ── */
.section {
  padding: 88px 48px;
}

.section-alt {
  background: var(--off);
}

.section-alt2 {
  background: var(--off2);
}

.container {
  max-width: 1040px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 14px;
}

h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.22;
  margin-bottom: 16px;
  color: var(--ink);
}

h2 em {
  font-style: italic;
}

.section-intro {
  font-size: 1.02rem;
  color: var(--ink2);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 52px;
  font-weight: 300;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── VIDEO ── */
.video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 1px solid var(--border);
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.09);
  cursor: pointer;
  background: #f0ece6;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: linear-gradient(160deg, #f5f1eb 0%, #ede8e0 100%);
  transition: opacity 0.3s;
}

.video-placeholder-logo {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.video-placeholder-sub {
  font-size: 0.78rem;
  color: var(--ink3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.play-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--ink);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

.play-circle:hover {
  background: #2a2520;
  transform: scale(1.06);
}

.play-circle svg {
  width: 26px;
  fill: #fff;
  margin-left: 3px;
}

#videoFrame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: none;
}

/* ── HOW IT WORKS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.step {
  background: var(--white);
  padding: 40px 32px;
  transition: background 0.2s;
}

.section-alt .step {
  background: var(--off);
}

.step:hover {
  background: var(--card);
}

.step-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--border2);
  line-height: 1;
  margin-bottom: 18px;
}

.step h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--ink);
}

.step p {
  font-size: 0.88rem;
  color: var(--ink2);
  line-height: 1.75;
}

/* ── CAROUSEL ── */
.carousel {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.slides-track {
  display: flex;
  transition: transform 0.48s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  min-width: 100%;
  padding: 60px 64px;
  display: flex;
  gap: 56px;
  align-items: center;
  background: var(--white);
}

.slide-left {
  flex: 1;
}

.slide-num {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 18px;
  display: block;
}

.slide h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 400;
  line-height: 1.28;
  margin-bottom: 18px;
  color: var(--ink);
}

.slide h3 em {
  font-style: italic;
}

.slide p {
  color: var(--ink2);
  font-size: 0.92rem;
  line-height: 1.82;
}

.slide-right {
  flex: 0 0 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-deco {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 6rem;
  font-weight: 400;
  line-height: 1;
  color: var(--border2);
  user-select: none;
  letter-spacing: -0.02em;
}

.carousel-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: var(--off);
  border-top: 1px solid var(--border);
}

.c-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: none;
  border: 1px solid var(--border2);
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--ink2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.c-btn:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.dots {
  display: flex;
  gap: 7px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border2);
  cursor: pointer;
  border: none;
  transition: all 0.25s;
}

.dot.on {
  background: var(--ink);
  width: 18px;
  border-radius: 3px;
}

.c-count {
  font-size: 0.78rem;
  color: var(--ink3);
  letter-spacing: 0.05em;
}

/* ── INFOGRAPHIC ── */
.flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 52px;
  position: relative;
}

.flow::after {
  content: '';
  position: absolute;
  top: 46px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--border) 0, var(--border) 8px, transparent 8px, transparent 16px);
}

.fnode {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
  position: relative;
}

.fnode-icon {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--ink2);
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: border-color 0.2s, box-shadow 0.2s, color 0.2s;
}

.fnode-icon svg {
  width: 28px;
  height: 28px;
}

.fnode:hover .fnode-icon {
  border-color: var(--warm-lt);
  box-shadow: 0 4px 20px rgba(184, 135, 74, 0.12);
}

.fnode h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--ink);
}

.fnode p {
  font-size: 0.75rem;
  color: var(--ink3);
  line-height: 1.6;
}

/* ── VENUES ── */
.venues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.vcard {
  background: var(--white);
  padding: 32px 28px;
  transition: background 0.2s;
}

.vcard:hover {
  background: var(--card);
}

.vcard-icon {
  display: block;
  margin-bottom: 16px;
  color: var(--ink2);
  width: 26px;
  height: 26px;
}

.vcard-icon svg {
  width: 26px;
  height: 26px;
}

.vcard h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--ink);
}

.vcard p {
  font-size: 0.84rem;
  color: var(--ink2);
  line-height: 1.7;
}

/* ── STATS ── */
#stats {
  background: var(--ink);
  color: var(--white);
  padding: 64px 48px;
}

#stats .stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  text-align: center;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat:last-child {
  border-right: none;
}

.stat-n {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--warm-lt);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-l {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.05em;
}

/* ── PROOF STRIP ── */
#proof-strip {
  background: var(--off);
  padding: 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.proof-text {
  flex: 1;
}

.proof-text h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.proof-text p {
  font-size: 0.88rem;
  color: var(--ink2);
  line-height: 1.7;
}

.proof-text a {
  color: var(--warm);
  text-decoration: none;
  font-size: 0.85rem;
}

.proof-text a:hover {
  text-decoration: underline;
}

.proof-visual {
  flex: 0 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 28px;
  text-align: center;
  min-width: 180px;
}

.proof-score {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}

.proof-score-label {
  font-size: 0.72rem;
  color: var(--ink3);
  margin-top: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.proof-tag {
  display: inline-block;
  margin-top: 10px;
  background: #e8f5ee;
  color: #2d7a4f;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}

/* ── CTA / SIGNUP ── */
#signup {
  background: var(--ink);
  color: var(--white);
  padding: 104px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#signup::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(184, 135, 74, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

#signup h2 {
  color: var(--white);
  max-width: 640px;
  margin: 0 auto 16px;
}

#signup h2 em {
  color: var(--warm-lt);
}

#signup .section-label {
  margin-bottom: 20px;
}

.signup-lead {
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 44px;
  line-height: 1.8;
}

.signup-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto 18px;
}

.s-input {
  flex: 1;
  padding: 13px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  color: var(--white);
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.s-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.s-input:focus {
  border-color: rgba(184, 135, 74, 0.6);
}

.s-btn {
  padding: 13px 24px;
  background: var(--warm);
  color: var(--white);
  border: none;
  border-radius: 7px;
  cursor: pointer;
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.15s, transform 0.12s;
}

.s-btn:hover {
  background: var(--warm-lt);
  transform: translateY(-1px);
}

.s-note {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.3);
}

.pricing-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 9px 22px;
  margin-top: 28px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.pricing-pill strong {
  color: var(--warm-lt);
}

.pricing-pill a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.15s;
}

.pricing-pill a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.trial-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.15s;
}

.trial-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ── RESPONSIVE ── */
@media (max-width: 880px) {
  nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  #hero,
  .section,
  #stats,
  #signup,
  footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .slide {
    flex-direction: column;
    padding: 36px 24px;
    gap: 28px;
  }

  .slide-right {
    display: none;
  }

  .flow {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .flow::after {
    display: none;
  }

  .venues-grid {
    grid-template-columns: 1fr;
  }

  #stats .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .proof-inner {
    flex-direction: column;
  }

  .signup-form {
    flex-direction: column;
  }
}
