:root {
  --bg: #0d1210;
  --bg-deep: #070a08;
  --cream: #f4ede1;
  --cream-dim: #cfc6b6;
  --gold: #c9a24d;
  --gold-bright: #e8c874;
  --rust: #a15c33;
  --line: rgba(244, 237, 225, 0.12);
  --radius-lg: 28px;
  --radius-md: 16px;
  font-size: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  background: radial-gradient(120% 80% at 50% -10%, #16201a 0%, var(--bg) 45%, var(--bg-deep) 100%);
  color: var(--cream);
  font-family: 'Manrope', system-ui, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- topbar ---------- */

.topbar {
  display: flex;
  justify-content: center;
  padding: 28px 20px 8px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
}

.brand__mark { width: 26px; height: 26px; color: var(--gold); }

.brand__name {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  letter-spacing: 0.16em;
  color: var(--cream);
  text-transform: uppercase;
}

.brand__name em {
  font-style: normal;
  color: var(--gold);
}

/* ---------- hero ---------- */

.hero {
  max-width: 620px;
  margin: 0 auto;
  padding: 28px 24px 8px;
  text-align: center;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
}

.headline {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(2.1rem, 7vw, 3.1rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.headline span {
  font-style: italic;
  color: var(--gold-bright);
}

.subheadline {
  margin-top: 20px;
  color: var(--cream-dim);
  font-size: clamp(1.1rem, 3vw, 1.2rem);
  line-height: 1.65;
}

.objection-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.objection-chip {
  border: 1px solid rgba(201, 162, 77, 0.4);
  color: var(--gold-bright);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 10px 18px;
  border-radius: 100px;
  background: rgba(201, 162, 77, 0.06);
}

/* ---------- player ---------- */

.player-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px 8px;
}

.video-frame {
  position: relative;
  width: min(100%, 720px);
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, #1a2420, #0a0e0c);
  border: 1px solid var(--line);
  box-shadow:
    0 30px 70px -20px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(201, 162, 77, 0.08),
    inset 0 0 60px rgba(0, 0, 0, 0.4);
}

.story-progress {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  height: 3px;
  border-radius: 3px;
  background: rgba(244, 237, 225, 0.2);
  z-index: 5;
  overflow: hidden;
}

.story-progress__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transition: width 0.15s linear;
}

.sound-toggle {
  position: absolute;
  top: 26px;
  right: 14px;
  z-index: 6;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(7, 10, 8, 0.55);
  backdrop-filter: blur(6px);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.sound-toggle svg { width: 19px; height: 19px; }
.sound-toggle .icon-sound { display: none; }
.video-frame.is-unmuted .icon-mute { display: none; }
.video-frame.is-unmuted .icon-sound { display: block; }

.poster-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.75) saturate(1.05);
}

.yt-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.yt-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.demo-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(201, 162, 77, 0.14), transparent 60%),
    linear-gradient(180deg, #10231a 0%, #0a1410 60%, #070b09 100%);
}

.demo-bg::before {
  content: "🐂";
  font-size: 3.4rem;
  opacity: 0.28;
  filter: grayscale(1) brightness(1.6);
}

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(5, 8, 6, 0.25);
  border: none;
  cursor: pointer;
  transition: opacity 0.35s ease;
}

.play-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.play-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px rgba(201, 162, 77, 0.14), 0 10px 30px rgba(0,0,0,0.4);
  transition: transform 0.2s ease;
}

.play-overlay:hover .play-btn { transform: scale(1.06); }

.play-btn svg { width: 26px; height: 26px; color: #10140f; margin-left: 3px; }

.play-hint {
  color: var(--cream);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.9;
}

/* ---------- cta ---------- */

.cta-wrap {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(.22,1,.36,1), transform 0.5s cubic-bezier(.22,1,.36,1);
}

.cta-wrap.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  animation: stamp 0.55s cubic-bezier(.2,1.4,.4,1);
}

@keyframes stamp {
  0%   { transform: scale(1.22) rotate(-2deg); }
  55%  { transform: scale(0.97) rotate(0.5deg); }
  100% { transform: scale(1) rotate(0deg); }
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 22px 38px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #17140b;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: 100px;
  box-shadow: 0 14px 34px -10px rgba(201, 162, 77, 0.55);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 14px 34px -10px rgba(201, 162, 77, 0.55); }
  50% { box-shadow: 0 14px 44px -6px rgba(201, 162, 77, 0.8); }
}

.cta-hint {
  font-size: 0.9rem;
  color: var(--cream-dim);
  letter-spacing: 0.03em;
  text-align: center;
  max-width: 300px;
  line-height: 1.5;
}

/* ---------- benefits ---------- */

.benefits {
  max-width: 900px;
  margin: 84px auto 0;
  padding: 0 24px;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}

.benefit {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.benefit__mark {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1rem;
}

.benefit h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.35rem;
  margin: 10px 0 10px;
  line-height: 1.25;
}

.benefit p {
  color: var(--cream-dim);
  font-size: 1.05rem;
  line-height: 1.65;
}

@media (min-width: 720px) {
  .benefits { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- footer ---------- */

.footer {
  margin-top: 90px;
  padding: 32px 24px 40px;
  text-align: center;
  color: rgba(244, 237, 225, 0.4);
  font-size: 0.78rem;
}
