:root {
  --bg-main: #fff8ec;
  --bg-card: #fffdf9;
  --bg-accent: linear-gradient(135deg, #ffd89b 0%, #f4b942 100%);
  --ink: #1f1a14;
  --ink-muted: #54493d;
  --brand: #bf5b04;
  --brand-deep: #8f3f00;
  --line: #e8d9c4;
  --ok: #2f7d4f;
  --shadow: 0 12px 30px rgba(104, 72, 26, 0.15);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 15%, rgba(244, 185, 66, 0.3), transparent 35%),
    radial-gradient(circle at 90% 8%, rgba(191, 91, 4, 0.18), transparent 32%),
    var(--bg-main);
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.15;
  margin-top: 0;
  color: var(--ink);
}

a {
  color: var(--brand-deep);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--brand);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(255, 248, 236, 0.88);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.8rem 0;
}

.logo {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-list a {
  text-decoration: none;
  color: var(--ink);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  transition: background-color 180ms ease, color 180ms ease;
}

.nav-list a[aria-current="page"],
.nav-list a:hover {
  background-color: rgba(191, 91, 4, 0.12);
  color: var(--brand-deep);
}

.status-ribbon {
  position: sticky;
  top: 63px;
  z-index: 40;
  background: #fff3da;
  border-bottom: 1px solid #e9bc66;
}

.status-ribbon-inner {
  padding: 0.55rem 0;
  color: #6b3b00;
  font-weight: 600;
}

.hero {
  padding: 5rem 0 3.25rem;
  animation: fade-up 620ms ease both;
}

.hero-accent {
  position: relative;
}

.hero-accent::before {
  content: "";
  position: absolute;
  inset: 1rem 0 auto;
  height: 210px;
  z-index: -1;
  background: var(--bg-accent);
  border-top: 1px solid #e9bc66;
  border-bottom: 1px solid #e9bc66;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: start;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-deep);
  margin-bottom: 0.4rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  margin-bottom: 0.8rem;
}

.lead {
  font-size: clamp(1rem, 2.2vw, 1.23rem);
  color: var(--ink-muted);
  max-width: 62ch;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.3rem 1.2rem;
  box-shadow: var(--shadow);
  animation: fade-up 760ms ease both;
}

.feature-card h2 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

.feature-card ul,
.feature-card ol {
  margin: 0;
  padding-left: 1.1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.btn {
  text-decoration: none;
  padding: 0.72rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

.btn-primary {
  background: var(--brand-deep);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand);
  color: #fff;
}

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

.btn-secondary:hover {
  border-color: var(--brand);
  color: var(--brand-deep);
}

.section {
  padding: 2.6rem 0;
}

.section h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
}

.section-contrast {
  background: rgba(191, 91, 4, 0.08);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 1rem;
}

.mini-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(104, 72, 26, 0.08);
}

.mini-card h3 {
  margin-bottom: 0.45rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0;
  background: rgba(255, 248, 236, 0.88);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.legal-article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.legal-article h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.legal-article h2 {
  margin-top: 1.3rem;
  font-size: 1.35rem;
}

.legal-note {
  color: var(--ink-muted);
  font-weight: 500;
}

.support-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.support-list li {
  margin-bottom: 0.85rem;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.store-placeholder-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.4rem;
  box-shadow: 0 4px 12px rgba(104, 72, 26, 0.08);
}

.compact-lead {
  margin-bottom: 1rem;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.store-badge {
  display: inline-block;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 700;
}

.store-badge.is-placeholder {
  color: #6f6256;
  background: #faf5ed;
  cursor: not-allowed;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.75rem 0.9rem;
  margin-bottom: 0.75rem;
  background: #fff;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  margin: 0.6rem 0 0;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  .hero-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero-accent::before {
    height: 160px;
  }

  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .status-ribbon {
    top: 106px;
  }
}
