:root {
  --gold: #d8c05e;
  --gold-dark: #b8a249;
  --gold-light: #e8d27a;
  --black: #000000;
  --black-soft: #0f0f0f;
  --red: #d64545;

  --wrap-max: 680px;
}

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

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Lora', Georgia, serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: var(--black);
  background: var(--gold);
}

body { min-height: 100vh; }

a { color: inherit; }

h1, h2, h3, p { margin: 0; }

/* -------- layout -------- */

section { width: 100%; }

.wrap {
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: 72px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.hero { background: var(--gold); }
.feature.light, .cta { background: var(--gold); color: var(--black); }
.feature.dark, .plans.dark, .cta.dark, .foot {
  background: var(--black);
  color: var(--gold);
}

/* -------- hero -------- */

.hero .wrap {
  padding-top: 80px;
  padding-bottom: 56px;
  gap: 28px;
}

.logo {
  width: 260px;
  max-width: 78vw;
  height: auto;
  display: block;
}

.tagline {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 4px;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}

.coming {
  font-weight: 700;
  letter-spacing: 4px;
  font-size: 13px;
  opacity: 0.7;
}

/* -------- brand ovals -------- */

.oval {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--gold);
  border-radius: 999px;
  padding: 16px 32px;
  min-height: 56px;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 2px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}

.oval.inverted {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.35);
}

.oval.link { text-decoration: underline; text-decoration-thickness: 1px; }
.oval.link:hover { opacity: 0.92; }

.oval.primary {
  font-size: 24px;
  letter-spacing: 4px;
  padding: 18px 40px;
  gap: 10px;
  text-decoration: none;
  transition: transform 120ms ease, box-shadow 120ms ease;
}
.oval.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.oval.primary:active { transform: translateY(0); }

.inline-arrow {
  width: 20px;
  height: 20px;
  display: inline-block;
}

.wordmark { text-decoration: underline; }
.wordmark .big { font-size: 28px; }

/* -------- feature sections -------- */

.feature .wrap {
  gap: 18px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  display: block;
}
.feature.dark .feature-icon { color: var(--gold); }
.feature.light .feature-icon { color: var(--black); }

.feature-text {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 1.5px;
  max-width: 36ch;
  margin: 0;
}

.feature.dark .feature-text { color: var(--gold-light); }
.feature.light .feature-text { color: var(--black); }

/* -------- section heading -------- */

.section-heading {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 6px;
  color: var(--black);
  margin: 0 0 12px;
}
.section-heading.light-on-dark { color: var(--gold); }

/* -------- cta / contact -------- */

.cta { background: var(--gold); color: var(--black); }
.cta.dark { background: var(--black); color: var(--gold); }

.cta h2 {
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 4px;
}

.cta .wrap { gap: 20px; padding-top: 72px; padding-bottom: 72px; }

/* -------- WHAT'S INSIDE (categories) -------- */

.inside .wrap {
  gap: 28px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
  max-width: 560px;
}

.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.cat-text {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--black);
  margin: 0;
  max-width: 28ch;
}

@media (min-width: 640px) {
  .cat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 28px;
  }
}

/* -------- PLANS -------- */

.plans .wrap {
  gap: 28px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.plan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
  max-width: 560px;
}

.plan {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 22px;
  border-radius: 24px;
  text-align: center;
}

.plan.free {
  background: var(--black-soft);
  color: var(--gold);
  border: 2px solid var(--gold);
}

.plan.upgrade {
  background: var(--gold);
  color: var(--black);
}

.plan-price {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0;
}

.plan-unit {
  font-size: 14px;
  letter-spacing: 3px;
  opacity: 0.8;
}

.plan-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.plan-list li::before {
  content: "\2713\00a0\00a0";
  font-weight: 700;
}

@media (min-width: 720px) {
  .plan-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

/* -------- store badges -------- */

.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  overflow: hidden;
}

.badge svg { display: block; height: 46px; width: auto; }

.disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  filter: saturate(0.75);
}

/* -------- footer -------- */

.foot .wrap {
  gap: 20px;
  padding-top: 64px;
  padding-bottom: 48px;
}

.foot .badges { margin-bottom: 4px; }
.foot .coming { margin-bottom: 18px; }

.social {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
}

.social-btn svg { width: 18px; height: 18px; display: block; }

.legal {
  font-size: 13px;
  letter-spacing: 2.5px;
  font-weight: 700;
}

.legal a { margin: 0 6px; text-decoration: none; }
.legal a:hover { text-decoration: underline; }

.copy {
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 700;
  opacity: 0.6;
}

/* -------- breakpoints -------- */

@media (min-width: 760px) {
  .logo { width: 300px; }
  .tagline { font-size: 28px; letter-spacing: 6px; }
  .feature-text { font-size: 19px; }
  .cta h2 { font-size: 32px; }
}
