/* Cue — landing + legal pages. Brand palette mirrors the app. */
:root {
  --bg: #f7f5f2;
  --surface: #ffffff;
  --surface-2: #efeae3;
  --text: #1a1f36;
  --text-2: #4a5074;
  --muted: #8a8fa8;
  --gold: #b8893c;
  --rust: #c45b3e;
  --teal: #4a90a4;
  --sage: #6b8f71;
  --ovul: #d4a853;
  --border: #e3ded5;
  --radius: 18px;
  --radius-lg: 26px;
  --maxw: 1080px;
  --shadow: 0 10px 40px rgba(15, 21, 48, 0.07);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ── Nav ── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 245, 242, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 20px; color: var(--text); }
.brand:hover { text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--text-2); font-size: 15px; font-weight: 500; }
.nav-links a:hover { color: var(--text); text-decoration: none; }
@media (max-width: 720px) { .nav-links { display: none; } }

/* ── Buttons ── */
.btn {
  display: inline-block; padding: 14px 26px; border-radius: 999px;
  font-weight: 600; font-size: 15px; cursor: pointer; border: none;
  transition: transform 0.12s ease, opacity 0.12s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--text); color: var(--surface); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }

/* ── Hero ── */
.hero { padding: 80px 0 60px; }
.hero .wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .hero .wrap { grid-template-columns: 1fr; text-align: center; } }
.eyebrow { color: var(--gold); font-weight: 600; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.hero h1 { font-size: 52px; margin-bottom: 20px; }
@media (max-width: 860px) { .hero h1 { font-size: 38px; } }
.hero p.lead { font-size: 19px; color: var(--text-2); margin-bottom: 28px; max-width: 36ch; }
@media (max-width: 860px) { .hero p.lead { margin-left: auto; margin-right: auto; } }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 860px) { .cta-row { justify-content: center; } }
.hero-art { display: flex; justify-content: center; }
.ring-card {
  background: var(--surface); border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow); width: 100%; max-width: 360px; text-align: center;
}
.ring-meta { margin-top: 18px; }
.ring-meta .day { font-family: "Space Grotesk", sans-serif; font-size: 44px; font-weight: 700; }
.ring-meta .sub { color: var(--text-2); font-size: 14px; }
.ring-meta .phase { display: inline-block; margin-top: 10px; padding: 5px 16px; border-radius: 999px; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }

/* ── Sections ── */
section { padding: 72px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 { font-size: 34px; margin-bottom: 14px; }
.section-head p { color: var(--text-2); font-size: 18px; }

.band { background: var(--surface); }
.band-dark { background: var(--text); color: var(--bg); }
.band-dark .section-head p { color: rgba(247,245,242,0.7); }

/* ── Feature grid ── */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 860px) { .grid { grid-template-columns: 1fr; } }
.card {
  background: var(--surface); border-radius: var(--radius); padding: 28px;
  border: 1px solid var(--border);
}
.band .card { background: var(--bg); }
.card .ic { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.card h3 { font-size: 19px; margin-bottom: 8px; }
.card p { color: var(--text-2); font-size: 15px; }

/* ── Steps ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step .n { font-family: "Space Grotesk", sans-serif; font-size: 40px; font-weight: 700; color: var(--gold); opacity: 0.5; }
.step h3 { font-size: 19px; margin: 8px 0; }
.step p { color: var(--text-2); font-size: 15px; }

/* ── Pricing ── */
.prices { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 760px; margin: 0 auto; }
@media (max-width: 720px) { .prices { grid-template-columns: 1fr; } }
.price { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.price.featured { border-color: var(--gold); border-width: 2px; position: relative; }
.price .tag { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.price .amount { font-family: "Space Grotesk", sans-serif; font-size: 40px; font-weight: 700; margin: 8px 0 4px; }
.price .amount small { font-size: 16px; color: var(--text-2); font-weight: 500; }
.price ul { list-style: none; margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.price li { padding-left: 26px; position: relative; color: var(--text-2); font-size: 15px; }
.price li::before { content: "✓"; position: absolute; left: 0; color: var(--sage); font-weight: 700; }
.badge { position: absolute; top: -12px; right: 24px; background: var(--gold); color: #fff; font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 999px; }

/* ── FAQ ── */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 4px 22px; margin-bottom: 12px; }
.faq summary { font-weight: 600; font-size: 17px; padding: 18px 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-size: 24px; font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--text-2); font-size: 15px; padding-bottom: 20px; }

/* ── Disclaimer strip ── */
.disclaimer { background: var(--surface-2); }
.disclaimer .wrap { padding: 28px 24px; }
.disclaimer p { color: var(--text-2); font-size: 14px; text-align: center; max-width: 760px; margin: 0 auto; }

/* ── CTA band ── */
.cta-band { text-align: center; }
.cta-band h2 { font-size: 34px; margin-bottom: 12px; }
.cta-band p { color: rgba(247,245,242,0.75); font-size: 18px; margin-bottom: 28px; }

/* ── Footer ── */
.footer { background: var(--text); color: rgba(247,245,242,0.7); padding: 48px 0 36px; }
.footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.footer .brand { color: var(--bg); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: rgba(247,245,242,0.75); font-size: 15px; }
.footer-links a:hover { color: #fff; }
.footer .copy { width: 100%; border-top: 1px solid rgba(247,245,242,0.12); padding-top: 24px; font-size: 13px; color: rgba(247,245,242,0.5); }

/* ── Legal pages ── */
.legal { padding: 56px 0 80px; }
.legal .wrap { max-width: 760px; }
.legal h1 { font-size: 36px; margin-bottom: 8px; }
.legal .meta { color: var(--muted); font-size: 14px; margin-bottom: 32px; }
.legal h2 { font-size: 22px; margin: 36px 0 12px; }
.legal h3 { font-size: 17px; margin: 24px 0 8px; }
.legal p, .legal li { color: var(--text-2); font-size: 16px; margin-bottom: 12px; }
.legal ul, .legal ol { padding-left: 24px; margin-bottom: 16px; }
.legal li { margin-bottom: 6px; }
.legal strong { color: var(--text); }
.legal table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14px; }
.legal th, .legal td { border: 1px solid var(--border); padding: 10px 12px; text-align: left; }
.legal th { background: var(--surface-2); }
.legal hr { border: none; border-top: 1px solid var(--border); margin: 28px 0; }
.back { display: inline-block; margin-bottom: 28px; color: var(--text-2); font-weight: 600; }
