:root {
  --bg: #fff7ef;
  --bg-soft: #fffefb;
  --surface: #ffffff;
  --surface-alt: #fff1e1;
  --text: #16130f;
  --muted: #5f544a;
  --line: #f1dcc8;
  --primary: #ff4b1f;
  --primary-deep: #d93a15;
  --warm: #ffd8af;
  --radius-lg: 26px;
  --radius-md: 18px;
  --shadow: 0 20px 45px rgba(255, 109, 47, 0.13);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 45%, #ffefd9 100%);
  color: var(--text);
  line-height: 1.5;
}

h1,
h2,
h3 {
  font-family: "Unbounded", sans-serif;
  letter-spacing: -0.02em;
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.06;
}

h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0;
}

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

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 3.6rem 0;
}

/* ── Ambient glow ── */
.page-glow {
  position: fixed;
  inset: -18% auto auto 50%;
  transform: translateX(-50%);
  width: min(980px, 95vw);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 119, 51, 0.28) 0%, rgba(255, 163, 112, 0.11) 35%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: -1;
}

/* ── Fire particles ── */
.fire-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.fire-particles span {
  position: absolute;
  bottom: -40px;
  font-size: clamp(1rem, 2vw, 1.6rem);
  opacity: 0;
  animation: float-fire linear infinite;
}

.fire-particles span:nth-child(1) { left: 8%;  animation-duration: 7s;  animation-delay: 0s;  }
.fire-particles span:nth-child(2) { left: 22%; animation-duration: 9s;  animation-delay: 2s;  }
.fire-particles span:nth-child(3) { left: 42%; animation-duration: 8s;  animation-delay: 4.5s;}
.fire-particles span:nth-child(4) { left: 60%; animation-duration: 11s; animation-delay: 1s;  }
.fire-particles span:nth-child(5) { left: 77%; animation-duration: 8.5s;animation-delay: 3s;  }
.fire-particles span:nth-child(6) { left: 92%; animation-duration: 10s; animation-delay: 5.5s;}

.fire-particles span::before { content: "🔥"; }

@keyframes float-fire {
  0%   { bottom: -40px; opacity: 0;   transform: translateX(0) scale(0.6); }
  10%  { opacity: 0.55; }
  85%  { opacity: 0.35; }
  100% { bottom: 108vh;  opacity: 0;   transform: translateX(30px) scale(0.9); }
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 12;
  backdrop-filter: blur(8px);
  background: rgba(255, 250, 243, 0.84);
  border-bottom: 1px solid rgba(241, 220, 200, 0.65);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: "Unbounded", sans-serif;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.brand-fire {
  font-size: 1.2rem;
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav a:not(.button) {
  color: var(--muted);
  font-weight: 600;
}

/* ── Buttons ── */
.button {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(125deg, var(--primary), #ff7041);
  color: #fff;
  padding: 0.85rem 1.25rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(255, 80, 31, 0.33);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(255, 80, 31, 0.36);
}

.button-small {
  padding: 0.65rem 1rem;
}

.button-ghost {
  color: var(--primary-deep);
  background: #ffe9d3;
  box-shadow: none;
}

/* ── Eyebrow / section-sub ── */
.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  font-weight: 700;
  color: #b7764c;
  margin-bottom: 0.95rem;
}

.section-sub {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.97rem;
  max-width: 70ch;
}

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 1.35rem;
  align-items: stretch;
  padding-top: 4.4rem;
}

.hero-content,
.bento-tile,
.plan-card,
.cta {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-content {
  padding: clamp(1.4rem, 2.4vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.hero-text {
  color: var(--muted);
  font-size: 1.03rem;
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-metrics {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.hero-metrics li {
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.72rem;
  display: grid;
}

.hero-metrics strong {
  font-size: 1.2rem;
}

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

.hero-card {
  padding: 1.35rem;
  display: grid;
  align-content: space-between;
  gap: 0.8rem;
  background: linear-gradient(180deg, #fffaf2 0%, #ffe7c9 100%);
}

.hero-card p {
  color: #57483c;
}

/* ── Chip ── */
.chip {
  display: inline-flex;
  width: fit-content;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 117, 53, 0.17);
  border: 1px solid rgba(255, 117, 53, 0.34);
  font-size: 0.79rem;
  font-weight: 700;
  color: #9f4e2d;
}

.chip-fire {
  background: linear-gradient(125deg, rgba(255,80,0,0.18), rgba(255,200,50,0.22));
  border-color: rgba(255,100,30,0.45);
  color: #8f3a10;
}

.hero-card-meta {
  display: grid;
  gap: 0.45rem;
  font-size: 0.9rem;
}

.section-head {
  margin-bottom: 1.05rem;
}

/* ── Bento grid ── */
.bento-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bento-tile {
  padding: 1.15rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.bento-tile:hover,
.bento-tile:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 26px 50px rgba(255, 109, 47, 0.18);
}

.bento-tile p {
  color: var(--muted);
}

.bento-tile ul {
  margin: 0.8rem 0 0;
  padding-left: 1.15rem;
  color: #493d33;
}

.tile-large {
  grid-column: span 2;
  min-height: 210px;
}

.tile-tall {
  grid-row: span 2;
}

.tag-row {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-row span {
  background: #fff4e8;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.25rem 0.56rem;
  font-size: 0.77rem;
  font-weight: 700;
  color: #8a4a2b;
}

.accent-tile {
  background: linear-gradient(165deg, #ffeacf 0%, #ffd39d 100%);
}

/* ── Locations tile ── */
.bento-locations {
  position: relative;
  overflow: hidden;
}

.locations-list {
  list-style: none;
  padding: 0;
  margin: 0.9rem 0 0;
  display: grid;
  gap: 0.55rem;
}

.locations-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 1rem;
}

.flag {
  font-size: 1.4rem;
  line-height: 1;
}

.locations-note {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.locations-hover-hint {
  position: absolute;
  bottom: 0.75rem;
  right: 0.85rem;
  font-size: 0.72rem;
  color: #c07848;
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.bento-locations:hover .locations-hover-hint {
  opacity: 0;
}

/* ── Plans ── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.plan-card {
  padding: 1.25rem;
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.price {
  font-family: "Unbounded", sans-serif;
  font-size: 1.72rem;
}

.price span {
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
}

.price-note {
  font-size: 0.85rem;
  color: #a06642;
  margin-top: -0.2rem;
}

.plan-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #4f4339;
  display: grid;
  gap: 0.35rem;
}

.plan-card .button {
  margin-top: 0.4rem;
}

.plan-card.popular {
  border-color: #ffbb7e;
  box-shadow: 0 22px 38px rgba(255, 123, 52, 0.2);
  background: linear-gradient(180deg, #fff7ec 0%, #ffe3bf 100%);
}

.plan-year {
  border-color: #ffaa60;
  box-shadow: 0 22px 38px rgba(255, 100, 30, 0.22);
  background: linear-gradient(165deg, #fff4e2 0%, #ffd8a0 100%);
}

.plan-year-bonus {
  background: rgba(255, 120, 40, 0.12);
  border: 1px solid rgba(255, 120, 40, 0.3);
  border-radius: 12px;
  padding: 0.5rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #7a3a10;
}

/* ── FAQ ── */
.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fffdf9;
  padding: 0.9rem 1rem;
  transition: background 0.2s;
}

.faq-list details[open] {
  background: #fffaf2;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list p {
  margin-top: 0.55rem;
  color: var(--muted);
}

/* ── CTA ── */
.cta {
  padding: clamp(1.3rem, 2.3vw, 2rem);
  background: linear-gradient(165deg, #fff2df 0%, #ffddb5 100%);
}

.cta-fire {
  font-size: 2.6rem;
  margin-bottom: 0.4rem;
}

.cta p {
  margin-top: 0.7rem;
  color: #5a4a3d;
}

.cta-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

/* ── Footer ── */
.site-footer {
  border-top: 1px solid rgba(241, 220, 200, 0.8);
  margin-top: 1.8rem;
}

.footer-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: #705f52;
  padding: 0.8rem 0;
}

.footer-nav {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.85rem;
  color: #8a7060;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-nav a:hover {
  color: var(--primary-deep);
}

.footer-top {
  font-size: 0.88rem;
  font-weight: 600;
  color: #a07060;
}

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* ── Mobile menu toggle ── */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #46392f;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Tablet breakpoint ── */
@media (max-width: 1020px) {
  .hero {
    grid-template-columns: 1fr;
  }

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

  .tile-large,
  .tile-tall {
    grid-column: auto;
    grid-row: auto;
  }

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

/* ── Mobile breakpoint ── */
@media (max-width: 760px) {
  .section {
    padding: 2.6rem 0;
  }

  .site-header {
    backdrop-filter: blur(4px);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 4vw;
    left: 4vw;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #fffaf3;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 0.8rem;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .hero-actions .button,
  .cta-actions .button {
    width: 100%;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

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

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 1rem 0;
  }
}
