:root {
  --bg: #0d0a08;
  --bg-elevated: #16110d;
  --bg-card: #1a1410;
  --gold: #c9a45c;
  --gold-light: #e8d5a3;
  --gold-dark: #9a7a3a;
  --ink: #f5f0e8;
  --muted: #a89f93;
  --line: rgba(201, 164, 92, 0.18);
  --primary: #e02020;
  --radius: 18px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --font-sans: "Inter", system-ui, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --container: 1120px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.bg-glow {
  position: fixed;
  inset: -20% -10% auto auto;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(201, 164, 92, 0.16) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

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

h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
}

h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
}

h1 em,
h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 38rem;
  margin-top: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.8rem 1.35rem;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 45%, var(--gold-dark));
  color: #1a1208;
  box-shadow: 0 10px 30px rgba(201, 164, 92, 0.28);
}

.btn-gold:hover {
  box-shadow: 0 14px 36px rgba(201, 164, 92, 0.42);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-lg {
  padding: 1rem 1.7rem;
  font-size: 0.95rem;
}

.btn-full {
  width: 100%;
}

.btn-pulse {
  animation: pulse-glow 2.8s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 10px 30px rgba(201, 164, 92, 0.28);
  }
  50% {
    box-shadow: 0 10px 38px rgba(201, 164, 92, 0.55);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(13, 10, 8, 0.88);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2rem, var(--container));
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav-links {
  display: none;
  gap: 1.5rem;
  font-size: 0.88rem;
  color: var(--muted);
}

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

.hero {
  position: relative;
  z-index: 1;
  padding: 2.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.pillars {
  margin-top: 2.5rem;
  display: grid;
  gap: 1rem;
}

.pillars li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.pillar-ico {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: grid;
  place-items: center;
  background: rgba(201, 164, 92, 0.08);
}

.pillar-ico svg {
  width: 20px;
  height: 20px;
}

.pillars strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.pillars span {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 420px;
}

.phone-float {
  position: relative;
  z-index: 2;
  will-change: transform;
}

.phone {
  width: min(280px, 78vw);
  background: #111;
  border-radius: 36px;
  padding: 10px;
  border: 2px solid #2a2a2a;
  box-shadow: var(--shadow), inset 0 0 0 1px #3a3a3a;
}

.phone-notch {
  width: 90px;
  height: 18px;
  background: #000;
  border-radius: 0 0 12px 12px;
  margin: 0 auto 6px;
}

.phone-screen {
  background: #f7f7f7;
  border-radius: 28px;
  overflow: hidden;
  min-height: 520px;
  display: flex;
}

.phone-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.food-accent {
  position: absolute;
  right: -6%;
  bottom: -4%;
  width: min(340px, 70%);
  border-radius: 20px;
  box-shadow: var(--shadow);
  z-index: 1;
  opacity: 0.95;
  mask-image: linear-gradient(to top, transparent 0%, black 25%);
}

.strip {
  position: relative;
  z-index: 1;
  border-block: 1px solid var(--line);
  background: rgba(201, 164, 92, 0.04);
  padding: 1.5rem 0;
}

.strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.strip-item {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.strip-ico {
  color: var(--gold);
  font-size: 1.2rem;
}

.strip-item strong {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.strip-item span {
  color: var(--muted);
  font-size: 0.78rem;
}

.section {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, transparent, rgba(201, 164, 92, 0.04), transparent);
}

.section-head {
  margin-bottom: 2.5rem;
  max-width: 40rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.stat-card b {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.55rem;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.features-grid {
  display: grid;
  gap: 1rem;
}

.feature-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(201, 164, 92, 0.45);
  transform: translateY(-3px);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.45rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.screens-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  max-width: 420px;
  margin-inline: auto;
}

.screen-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 0.9rem 0.9rem 1rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.screen-card:hover {
  border-color: rgba(201, 164, 92, 0.45);
  transform: translateY(-4px);
}

.screen-card img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.screen-card figcaption,
.screen-desktop figcaption {
  margin-top: 0.8rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

.screen-desktop {
  margin-top: 2rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 0.9rem 0.9rem 1rem;
}

.screen-desktop img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.price-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.compare {
  margin-top: 1.75rem;
  display: grid;
  gap: 0.65rem;
}

.compare li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.compare .highlight {
  border-color: var(--gold);
  background: rgba(201, 164, 92, 0.1);
  color: var(--gold-light);
  font-weight: 700;
}

.price-card {
  background: linear-gradient(160deg, #2a2114 0%, #15100c 60%);
  border: 1px solid var(--gold);
  border-radius: 24px;
  padding: 2rem 1.6rem;
  box-shadow: 0 20px 50px rgba(201, 164, 92, 0.15);
}

.price-tag {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
}

.price-value {
  font-family: var(--font-serif);
  font-size: 4.2rem;
  line-height: 1;
  margin: 0.4rem 0;
  color: var(--gold-light);
}

.price-value small {
  font-size: 1.4rem;
  font-weight: 600;
}

.price-cycle {
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.price-breakdown {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}

.price-breakdown div {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 0.75rem 0.4rem;
  text-align: center;
}

.price-breakdown b {
  display: block;
  font-size: 1rem;
  color: var(--gold-light);
}

.price-breakdown span {
  font-size: 0.7rem;
  color: var(--muted);
}

.price-note {
  margin-top: 0.9rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
}

.cta-band {
  position: relative;
  z-index: 1;
  padding: 4rem 0 5rem;
  overflow: hidden;
}

.cta-band-inner {
  position: relative;
  display: grid;
  gap: 2rem;
  background: radial-gradient(circle at 80% 20%, rgba(201, 164, 92, 0.2), transparent 45%),
    var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 2.5rem 1.75rem;
  overflow: hidden;
}

.cta-food {
  display: none;
  position: absolute;
  right: -20px;
  bottom: -40px;
  width: 280px;
  opacity: 0.55;
  mask-image: linear-gradient(to left, black 40%, transparent 100%);
  pointer-events: none;
}

.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  padding: 2rem 0 1.5rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-brand strong {
  display: block;
}

.footer-brand span {
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-copy {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-delay="1"] {
  transition-delay: 0.1s;
}
.reveal[data-delay="2"] {
  transition-delay: 0.2s;
}
.reveal[data-delay="3"] {
  transition-delay: 0.3s;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .strip-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .price-layout {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .screens-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
  }

  .cta-food {
    display: block;
  }
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
  }

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

  .food-accent {
    right: -2%;
    bottom: 0;
  }
}

@media (max-width: 640px) {
  .site-header .btn {
    padding: 0.65rem 0.9rem;
    font-size: 0.75rem;
  }

  .brand span {
    display: none;
  }

  .food-accent {
    display: none;
  }

  .price-breakdown {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn-pulse {
    animation: none;
  }

  .btn:hover {
    transform: none;
  }
}
