:root {
  --bg: #FFF8F0;
  --fg: #2D3142;
  --accent: #E07A5F;
  --accent-light: #F2CC8F;
  --accent-muted: rgba(224, 122, 95, 0.15);
  --surface: #FFFFFF;
  --surface-warm: #FFF3E8;
  --text-muted: #6B7280;
  --border: rgba(45, 49, 66, 0.12);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 240, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.header-nav {
  display: flex;
  gap: 32px;
}
.header-nav a {
  color: var(--fg);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.header-nav a:hover { opacity: 1; }

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  background: var(--bg);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 32px;
}
.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-pill {
  display: inline-block;
  background: var(--accent-muted);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

/* HERO CTA FORM */
.hero-cta-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.cta-form-row {
  display: flex;
  gap: 10px;
}
.cta-input {
  flex: 1;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--fg);
  transition: border-color 0.2s;
  outline: none;
}
.cta-input::placeholder {
  color: var(--text-muted);
}
.cta-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.12);
}
.cta-button {
  padding: 15px 24px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(224, 122, 95, 0.35);
  letter-spacing: 0.01em;
}
.cta-button:hover {
  background: #c96a50;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(224, 122, 95, 0.45);
}
.cta-button:active {
  transform: translateY(0);
}
.cta-fine-print {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 2px;
  letter-spacing: 0.01em;
}

/* HERO VISUAL - PHOTO FRAME STACK */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.photo-frame-stack {
  position: relative;
  width: 280px;
  height: 320px;
}
.photo-frame {
  position: absolute;
  border-radius: 12px;
  border: 3px solid var(--fg);
}
.frame-back {
  width: 240px;
  height: 280px;
  top: -20px;
  left: -30px;
  background: var(--accent-light);
  opacity: 0.4;
  transform: rotate(-6deg);
}
.frame-mid {
  width: 240px;
  height: 280px;
  top: -10px;
  left: -10px;
  background: var(--surface-warm);
  opacity: 0.6;
  transform: rotate(-2deg);
}
.frame-front {
  width: 240px;
  height: 280px;
  top: 0;
  left: 0;
  background: var(--surface);
  transform: rotate(1deg);
  overflow: hidden;
}
.frame-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.frame-scene {
  flex: 1;
  background: linear-gradient(180deg, #A8D5BA 0%, #7EC8A0 60%, #6B8E6B 100%);
  position: relative;
  overflow: hidden;
}
.scene-sky {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(180deg, #87CEEB 0%, #B8E0F0 100%);
}
.scene-sun {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 28px;
  height: 28px;
  background: #FFD166;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 209, 102, 0.6);
}
.scene-grass {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: #7EC8A0;
}
.scene-figures {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: flex-end;
}
.figure {
  background: #E07A5F;
  border-radius: 50% 50% 40% 40%;
}
.figure-1 { width: 28px; height: 44px; }
.figure-2 { width: 32px; height: 50px; background: #3D405B; }
.figure-3 { width: 26px; height: 40px; background: #F4A261; }

.frame-questions {
  padding: 14px;
  background: var(--surface);
  border-top: 2px solid var(--border);
}
.q-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  margin-bottom: 8px;
}
.q-line {
  height: 7px;
  background: var(--accent-light);
  border-radius: 4px;
  margin-bottom: 6px;
}
.q-line-short { width: 65%; }

/* HERO TAPE */
.hero-tape {
  position: absolute;
  bottom: 20px;
  width: 80px;
  height: 24px;
  background: var(--accent);
  opacity: 0.3;
}
.tape-left { left: 10%; transform: rotate(-8deg); }
.tape-right { right: 10%; transform: rotate(5deg); }

/* SECTION SHARED */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

/* HOW IT WORKS */
.how-it-works {
  background: var(--surface);
  padding: 100px 0;
}
.hiw-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  background: var(--bg);
  border-radius: 20px;
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(224, 122, 95, 0.12);
}
.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
}
.step-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.step-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.step-icon {
  margin-top: auto;
}

/* THE HOOK */
.the-hook {
  background: var(--fg);
  padding: 100px 0;
}
.hook-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.hook-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-style: italic;
  color: var(--accent-light);
  line-height: 1.4;
  margin-bottom: 32px;
}
.quote-attribution {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-style: normal;
  color: rgba(255, 248, 240, 0.4);
  display: block;
  margin-top: 12px;
}
.hook-body {
  font-size: 1.05rem;
  color: rgba(255, 248, 240, 0.7);
  line-height: 1.7;
}

/* GAMES */
.games {
  background: var(--bg);
  padding: 100px 0;
}
.games-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.games-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 56px;
  line-height: 1.7;
}
.game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.game-card {
  padding: 28px;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.game-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(45, 49, 66, 0.08);
}
.game-icon { margin-bottom: 16px; }
.game-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.game-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.game-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-muted);
  padding: 4px 10px;
  border-radius: 100px;
}

/* CLOSING */
.closing {
  background: var(--surface-warm);
  padding: 100px 0;
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.closing-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.closing-text p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.closing-pricing {
  font-size: 0.95rem;
  color: var(--accent) !important;
  font-weight: 600;
  margin-top: 32px;
  line-height: 1.8 !important;
}

/* TABLE SCENE */
.closing-visual {
  display: flex;
  justify-content: center;
}
.table-scene {
  position: relative;
  width: 280px;
  height: 200px;
}
.table-surface {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  height: 16px;
  background: #C9956C;
  border-radius: 8px 8px 4px 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.table-legs { position: absolute; top: 76px; left: 0; right: 0; display: flex; justify-content: space-between; }
.leg { width: 12px; height: 80px; background: #A0754A; border-radius: 0 0 4px 4px; }
.table-items {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  padding: 0 20px;
}
.plate {
  width: 32px;
  height: 8px;
  background: #FFF;
  border-radius: 50%;
  border: 2px solid #E8E0D8;
}
.phone-stand {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.phone-screen {
  width: 48px;
  height: 68px;
  background: var(--fg);
  border-radius: 8px;
  padding: 4px;
}
.phone-content {
  width: 100%;
  height: 100%;
  background: var(--accent);
  border-radius: 4px;
  padding: 6px;
}
.pc-lines { display: flex; flex-direction: column; gap: 4px; }
.pc-line {
  height: 4px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
}
.pc-line-mid { width: 70%; }
.phone-base {
  width: 28px;
  height: 10px;
  background: #888;
  border-radius: 0 0 4px 4px;
}

/* FOOTER */
.site-footer {
  background: var(--fg);
  padding: 60px 0 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.footer-brand { margin-bottom: 40px; }
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255, 248, 240, 0.4);
}
.footer-links {
  display: flex;
  gap: 60px;
  margin-bottom: 40px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-head {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 248, 240, 0.4);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 0.9rem;
  color: rgba(255, 248, 240, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent-light); }
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 248, 240, 0.3);
  border-top: 1px solid rgba(255, 248, 240, 0.1);
  padding-top: 24px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .step-grid { grid-template-columns: 1fr; gap: 24px; }
  .game-grid { grid-template-columns: repeat(2, 1fr); }
  .closing-inner { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 28px; }
}
@media (max-width: 600px) {
  .header-nav { display: none; }
  .game-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 80px; }
  .hero-headline { font-size: 2.2rem; }
  .section-heading { font-size: 1.8rem; }
  .step-grid { gap: 16px; }
  .step-card { padding: 24px; }
  .step-number { font-size: 2.5rem; }
  .cta-form-row { flex-direction: column; }
  .cta-input { font-size: 1rem; }
}