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

:root {
  --cream: #f3feb8;
  --warm-white: #f9fedc;
  --ink: #2a1a00;
  --charcoal: #3d2800;
  --stone: #7a5c2e;
  --accent: #ffde4d;
  --accent-deep: #e6c400;
  --orange: #ffb22c;
  --orange-pale: #fff0d6;
  --red: #ff4c4c;
  --red-pale: #ffeaea;
  --border: rgba(42, 26, 0, 0.12);
  --border-soft: rgba(42, 26, 0, 0.06);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--warm-white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(249, 254, 220, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo-mark {
  width: 32px;
  height: 32px;
  background: #ffde4d;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-mark svg {
  width: 18px;
  height: 18px;
}

.nav-logo-text {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--stone);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-social-link {
  color: #ff4c4c !important;
  font-weight: 600 !important;
}

.nav-cta {
  background: var(--ink) !important;
  color: #ffde4d !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--charcoal) !important;
}

/* HAMBURGER */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: background 0.2s;
}

.nav-hamburger:hover {
  background: rgba(42, 26, 0, 0.06);
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE NAV DRAWER */
.nav-drawer {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(249, 254, 220, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px 24px;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  pointer-events: none;
}

.nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-drawer a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--stone);
  text-decoration: none;
  padding: 12px 8px;
  border-bottom: 1px solid var(--border-soft);
  transition: color 0.2s;
}

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

.nav-drawer .nav-social-link {
  color: #ff4c4c !important;
  font-weight: 600 !important;
}

.nav-drawer .nav-cta {
  margin-top: 12px;
  background: var(--ink) !important;
  color: #ffde4d !important;
  text-align: center;
  padding: 13px 20px !important;
  border-radius: 8px;
  font-weight: 600 !important;
  border-bottom: none !important;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding: 0 40px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 222, 77, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(255, 222, 77, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-soft) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.15) 0%,
    transparent 70%
  );
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: 68px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffb22c;
  color: var(--ink);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: #ff4c4c;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
}

h1 em {
  font-style: italic;
  color: #ffb22c;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--ink);
  color: #ffde4d;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    background 0.2s,
    transform 0.2s;
}

.btn-primary:hover {
  background: var(--charcoal);
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition:
    color 0.2s,
    border-color 0.2s;
}

.btn-secondary:hover {
  color: #ffde4d;
  border-color: #ffde4d;
}

.hero-trust {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--stone);
}

.hero-trust-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  padding-bottom: 40px;
}

.dashboard-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow:
    0 24px 80px rgba(42, 26, 0, 0.1),
    0 4px 16px rgba(42, 26, 0, 0.05);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.dashboard-title {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}

.dashboard-date {
  font-size: 0.75rem;
  color: var(--stone);
}

.dish-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
}

.dish-row:last-child {
  border-bottom: none;
}

.dish-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dish-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dish-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
}

.dish-tag {
  font-size: 0.72rem;
  color: var(--stone);
  margin-top: 1px;
}

.dish-score {
  display: flex;
  align-items: center;
  gap: 8px;
}

.score-bar-track {
  width: 80px;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.score-bar-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 1s ease;
}

.score-num {
  font-size: 0.8rem;
  font-weight: 600;
  width: 36px;
  text-align: right;
}

.alert-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffeaea;
  border: 1px solid rgba(255, 76, 76, 0.25);
  color: #ff4c4c;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  margin-top: 16px;
  width: 100%;
}

.floating-card {
  position: absolute;
  left: -24px;
  bottom: -50px;
  background: #ff4c4c;
  color: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 12px 40px rgba(255, 76, 76, 0.35);
  min-width: 200px;
}

.floating-card-label {
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.floating-card-value {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.floating-card-sub {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-top: 4px;
}

/* SECTION COMMON */
section {
  padding: 96px 40px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ff4c4c;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: #ff4c4c;
}

h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h2 em {
  font-style: italic;
  color: #ff4c4c;
}

.section-sub {
  font-size: 1rem;
  color: var(--stone);
  line-height: 1.7;
  max-width: 540px;
  margin-top: 16px;
}

/* INSIGHT BAR */
.insight-section {
  background: #ffde4d;
  padding: 80px 40px;
}

.insight-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 60px;
  align-items: start;
}

.insight-divider {
  background: rgba(42, 26, 0, 0.15);
  height: 100%;
}

.insight-label {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.01em;
  text-transform: none;
  margin-bottom: 32px;
  line-height: 1.2;
}

.competitor-label {
  color: #2a1a00;
}

.palate-label {
  color: #2a1a00;
}

.insight-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(42, 26, 0, 0.12);
}

.insight-item:last-child {
  border-bottom: none;
}

.insight-item-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #2a1a00;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.insight-item-value {
  font-size: 1.05rem;
  line-height: 1.55;
}

.competitor-value {
  color: #2a1a00;
}

.palate-value {
  color: #2a1a00;
  font-weight: 600;
  font-size: 1.05rem;
}

.palate-value strong {
  color: #ff4c4c;
  font-style: italic;
  font-family: "Playfair Display", serif;
}

/* FEATURES */
.features-section {
  background: var(--warm-white);
}

.features-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 72px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.feature-card {
  background: #fff;
  padding: 36px 32px;
  position: relative;
  transition: background 0.2s;
}

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

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-layer {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.feature-title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--stone);
  line-height: 1.7;
}

/* ============================================================
   PALATE SOCIAL SECTION
   ============================================================ */
.social-section {
  background: var(--ink);
  padding: 96px 40px;
}

.social-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.social-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 72px;
}

.social-section .section-label {
  color: #ffde4d;
}

.social-section .section-label::before {
  background: #ffde4d;
}

.social-section h2 {
  color: #fff;
}

.social-section h2 em {
  color: #ffb22c;
}

.social-section .section-sub {
  color: rgba(255, 255, 255, 0.55);
  max-width: 100%;
}

.social-tagline {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 20px;
  border-left: 2px solid #ffde4d;
  padding-left: 16px;
  line-height: 1.6;
}

.social-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}

.social-difference-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px 28px;
}

.social-difference-card-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffde4d;
  margin-bottom: 10px;
}

.social-difference-card-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}

.social-difference-card-text strong {
  color: #fff;
  font-weight: 500;
}

.social-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.social-tier-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.social-tier-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 222, 77, 0.3);
}

.social-tier-card.featured {
  border-color: #ffb22c;
  background: rgba(255, 178, 44, 0.08);
}

.social-tier-featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffb22c;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

.social-tier-name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
}

.social-tier-price {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.social-tier-price sup {
  font-size: 1rem;
  vertical-align: super;
}

.social-tier-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
}

.social-tier-platforms {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}

.social-tier-features {
  list-style: none;
  margin-bottom: 28px;
}

.social-tier-features li {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.55);
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.social-tier-features li .check {
  color: #ffde4d;
  flex-shrink: 0;
  margin-top: 1px;
}

.social-tier-cta {
  display: block;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.social-tier-cta:hover {
  border-color: #ffde4d;
  color: #ffde4d;
}

.social-tier-card.featured .social-tier-cta {
  background: #ffb22c;
  border-color: #ffb22c;
  color: var(--ink);
}

.social-tier-card.featured .social-tier-cta:hover {
  background: #ff9900;
  border-color: #ff9900;
}

.social-requirement {
  background: rgba(255, 222, 77, 0.08);
  border: 1px solid rgba(255, 222, 77, 0.2);
  border-radius: 10px;
  padding: 16px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.social-requirement strong {
  color: #ffde4d;
}

.social-requirement-icon {
  color: #ffde4d;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   BUNDLE PRICING BANNER (inside pricing section)
   ============================================================ */
.bundle-banner {
  margin-top: 40px;
  background: var(--ink);
  border-radius: 16px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.bundle-banner-left {
}

.bundle-banner-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffde4d;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bundle-banner-title {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.bundle-banner-title em {
  font-style: italic;
  color: #ffb22c;
}

.bundle-banner-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  max-width: 560px;
}

.bundle-examples {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 280px;
}

.bundle-example {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.bundle-example-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.bundle-example-price {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffde4d;
}

.bundle-example-saving {
  font-size: 0.7rem;
  color: #ffb22c;
  display: block;
  text-align: right;
}

/* PRICING */
.pricing-section {
  background: #ffde4d;
}

.pricing-intro {
  text-align: center;
  margin-bottom: 64px;
}

.pricing-intro h2 {
  margin: 0 auto;
  max-width: 600px;
}

.pricing-intro .section-label {
  justify-content: center;
}

.pricing-intro .section-sub {
  margin: 16px auto 0;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
}

.pricing-card.featured {
  border-color: #ffb22c;
  box-shadow:
    0 0 0 1px #ffb22c,
    0 24px 60px rgba(255, 178, 44, 0.22);
}

.featured-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff4c4c;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 12px;
}

.pricing-price {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-price sup {
  font-size: 1.2rem;
  vertical-align: super;
}

.pricing-price-sub {
  font-size: 0.85rem;
  color: var(--stone);
  margin-bottom: 24px;
}

.pricing-locations {
  font-size: 0.78rem;
  color: var(--stone);
  padding: 8px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  font-size: 0.875rem;
  color: var(--charcoal);
  padding: 7px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.pricing-features li .check {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-features li .dash {
  color: var(--border);
  flex-shrink: 0;
}

.pricing-cta {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s;
}

.pricing-cta-outline {
  border: 1.5px solid var(--border);
  color: var(--ink);
}

.pricing-cta-outline:hover {
  border-color: var(--ink);
}

.pricing-cta-filled {
  background: #ffb22c;
  color: var(--ink);
}

.pricing-cta-filled:hover {
  background: #ff9900;
}

.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.82rem;
  color: var(--stone);
}

/* SOCIAL PROOF */
.proof-section {
  background: var(--cream);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.proof-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.stat-block {
  background: #ffde4d;
  padding: 32px 28px;
}

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-number span {
  color: #ff4c4c;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--stone);
  line-height: 1.4;
}

.quote-card {
  position: relative;
  padding: 40px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
}

.quote-mark {
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  line-height: 1;
  color: #ffb22c;
  opacity: 0.35;
  position: absolute;
  top: 16px;
  left: 28px;
}

.quote-text {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 24px;
  position: relative;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.quote-avatar {
  width: 42px;
  height: 42px;
  background: #ffb22c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.quote-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--ink);
}

.quote-role {
  font-size: 0.78rem;
  color: var(--stone);
}

/* REWARD MECHANIC */
.mechanic-section {
  background: #f9fedc;
}

.mechanic-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mechanic-section .section-label {
  color: #2a1a00;
}

.mechanic-section .section-label::before {
  background: rgba(42, 26, 0, 0.3);
}

.mechanic-section h2 {
  color: var(--ink);
}

.mechanic-section h2 em {
  color: #2a1a00;
}

.mechanic-section .section-sub {
  color: rgba(42, 26, 0, 0.7);
}

.steps-list {
  margin-top: 40px;
}

.step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(42, 26, 0, 0.12);
}

.step:last-child {
  border-bottom: none;
}

.step-num {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ff4c4c;
  flex-shrink: 0;
  width: 28px;
  padding-top: 2px;
}

.step-title {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.step-desc {
  font-size: 0.85rem;
  color: rgba(42, 26, 0, 0.6);
  line-height: 1.6;
}

.reward-tiers {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reward-tier {
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(42, 26, 0, 0.12);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.reward-tier-score {
  font-family: "Playfair Display", serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #ff4c4c;
  min-width: 80px;
}

.reward-tier-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  flex: 1;
}

.reward-tier-example {
  font-size: 0.78rem;
  color: #2a1a00;
  text-align: right;
}

.reward-tier.highlight {
  background: #ffde4d;
  border-color: rgba(255, 178, 44, 0.5);
}

/* TECH */
.tech-section {
  background: var(--cream);
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.tech-stack-list {
  margin-top: 32px;
}

.tech-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
}

.tech-item:last-child {
  border-bottom: none;
}

.tech-layer-name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
  padding-top: 2px;
}

.tech-detail {
  font-size: 0.875rem;
  color: var(--charcoal);
  line-height: 1.6;
}

.tech-detail strong {
  color: var(--ink);
  font-weight: 600;
}

.moat-block {
  background: var(--ink);
  color: #fff;
  border-radius: 16px;
  padding: 40px;
}

.moat-title {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.moat-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.moat-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.moat-stat-val {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: #ffde4d;
  line-height: 1;
}

.moat-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}

/* CTA FOOTER */
.cta-section {
  background: #ffde4d;
  padding: 100px 40px;
  text-align: center;
}

.cta-section h2 {
  color: var(--ink);
  font-style: italic;
  margin: 16px auto;
  max-width: 600px;
}

.cta-section .section-label {
  color: #2a1a00;
  justify-content: center;
}

.cta-section .section-label::before {
  background: rgba(42, 26, 0, 0.3);
}

.cta-section .section-sub {
  color: rgba(42, 26, 0, 0.65);
  margin: 16px auto 40px;
  text-align: center;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-white {
  background: var(--ink);
  color: #ffde4d;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(42, 26, 0, 0.2);
}

.btn-ghost-white {
  color: rgba(42, 26, 0, 0.75);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(42, 26, 0, 0.3);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.btn-ghost-white:hover {
  color: var(--ink);
}

/* FOOTER */
footer {
  background: var(--ink);
  padding: 48px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 600;
  color: #fff;
  font-size: 1.8rem;
}

.footer-sub-brand {
  display: block;
  font-size: 0.78rem;
  font-style: normal;
  color: rgba(255, 255, 255, 0.35);
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.footer-legal {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeUp 0.7s ease forwards;
}

.delay-1 {
  animation-delay: 0.1s;
  opacity: 0;
}

.delay-2 {
  animation-delay: 0.25s;
  opacity: 0;
}

.delay-3 {
  animation-delay: 0.4s;
  opacity: 0;
}

.delay-4 {
  animation-delay: 0.55s;
  opacity: 0;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner {
    gap: 48px;
  }

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

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

  .pricing-grid .pricing-card:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .social-tiers {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-tiers .social-tier-card:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .tech-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* NAV */
  nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-drawer {
    display: flex;
  }

  /* SECTIONS */
  section {
    padding: 56px 20px;
  }

  .insight-section {
    padding: 56px 20px;
  }

  .social-section {
    padding: 56px 20px;
  }

  .cta-section {
    padding: 72px 20px;
  }

  /* HERO */
  .hero {
    padding: 0 20px;
    min-height: auto;
    padding-top: 0;
    padding-bottom: 56px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 96px;
  }

  h1 {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }

  .hero-sub {
    font-size: 0.975rem;
    max-width: 100%;
  }

  .hero-trust {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
  }

  .hero-trust-divider {
    display: none;
  }

  .hero-trust span {
    background: rgba(42, 26, 0, 0.06);
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.78rem;
  }

  .floating-card {
    display: none;
  }

  /* INSIGHT SECTION */
  .insight-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .insight-divider {
    display: none;
  }

  .insight-label {
    font-size: 1.15rem;
  }

  /* FEATURES */
  .features-intro {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }

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

  .feature-card {
    padding: 28px 24px;
  }

  /* SOCIAL SECTION */
  .social-header {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }

  .social-tiers {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 24px;
  }

  .social-tier-card {
    padding: 28px 24px;
  }

  /* PROOF */
  .proof-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .proof-stats {
    grid-template-columns: 1fr 1fr;
  }

  /* MECHANIC */
  .mechanic-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .mechanic-section {
    padding: 56px 20px !important;
  }

  .reward-tier {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .reward-tier-example {
    text-align: left;
  }

  /* PRICING */
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid .pricing-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }

  .pricing-card {
    padding: 28px 24px;
  }

  .bundle-banner {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    gap: 28px;
  }

  /* TECH */
  .tech-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tech-item {
    grid-template-columns: 90px 1fr;
  }

  .moat-stats {
    grid-template-columns: 1fr 1fr;
  }

  /* CTA */
  .cta-section h2 {
    font-size: clamp(1.7rem, 6vw, 2.4rem);
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  /* FOOTER */
  footer {
    padding: 40px 20px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-legal {
    text-align: left !important;
  }

  /* H2 scaling */
  h2 {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }
}

#waitlist {
  scroll-margin-top: 80px;
}
