/* Relished marketing site. Dark + warm orange, matches the app brand. */
:root {
  --bg: #0a0a0c;
  --bg2: #100e12;
  --surface: #151319;
  --surface-hi: #1c1922;
  --accent: #cf5127;
  --accent-bright: #e86a3c;
  --accent-soft: #2a1712;
  --gold: #d9b06a;
  --ink: #f4f2ed;
  --ink2: rgba(244, 242, 237, 0.7);
  --ink3: rgba(244, 242, 237, 0.45);
  --line: rgba(255, 255, 255, 0.08);
  --line2: rgba(255, 255, 255, 0.14);
  --maxw: 1080px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, .display {
  font-family: "Sofia Sans", -apple-system, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Atmosphere */
.glow {
  position: absolute; border-radius: 50%; filter: blur(90px);
  background: var(--accent); opacity: 0.22; pointer-events: none; z-index: 0;
}

/* Nav */
nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10, 10, 12, 0.72);
  border-bottom: 1px solid var(--line);
}
nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: "Sofia Sans"; font-weight: 800; font-size: 20px; }
.brand .mark {
  width: 30px; height: 30px; border-radius: 9px; background: var(--accent);
  display: grid; place-items: center; color: #fff; font-size: 18px;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--ink2); font-size: 14.5px; }
.nav-links a:hover { color: var(--ink); }
.btn {
  display: inline-block; background: var(--accent); color: #fff;
  padding: 11px 20px; border-radius: 100px; font-weight: 600; font-size: 14.5px;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { background: var(--accent-bright); transform: translateY(-1px); }
.btn-ghost { background: transparent; border: 1px solid var(--line2); color: var(--ink); }
.btn-ghost:hover { background: var(--surface); }
@media (max-width: 680px) { .nav-links a:not(.btn) { display: none; } }

/* Hero */
.hero { position: relative; padding: 96px 0 80px; overflow: hidden; }
.hero .glow { width: 620px; height: 620px; top: -280px; left: 50%; transform: translateX(-50%); }
.hero .wrap { position: relative; z-index: 1; text-align: center; }
.eyebrow {
  color: var(--accent-bright); font-weight: 700; font-size: 13px;
  letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 20px;
}
.hero h1 { font-size: clamp(40px, 7vw, 68px); margin: 0 auto; max-width: 14ch; }
.hero p.lead {
  color: var(--ink2); font-size: clamp(17px, 2.4vw, 20px);
  max-width: 46ch; margin: 22px auto 0;
}
.hero-cta { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.store-note { color: var(--ink3); font-size: 13px; margin-top: 16px; }

/* Card stack visual */
.cards { position: relative; height: 380px; margin-top: 64px; }
.card {
  position: absolute; left: 50%; top: 0; width: 240px; height: 320px;
  border-radius: 22px; border: 1px solid var(--line2); overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 20px;
}
.card .k { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.75); font-weight: 700; }
.card .t { font-family: "Sofia Sans"; font-weight: 800; font-size: 22px; margin-top: 6px; line-height: 1.1; }
.card.c1 { transform: translateX(-50%) rotate(-9deg) translateX(-150px); background: linear-gradient(160deg, #3a2130, #141018); }
.card.c2 { transform: translateX(-50%) rotate(6deg) translateX(150px); background: linear-gradient(160deg, #16303a, #101a18); }
.card.c3 { transform: translateX(-50%) rotate(0deg) scale(1.06); background: linear-gradient(160deg, #4a2417, #1a120e); z-index: 2; }
@media (max-width: 560px) {
  .cards { height: 340px; }
  .card { width: 200px; height: 280px; }
  .card.c1 { transform: translateX(-50%) rotate(-8deg) translateX(-96px); }
  .card.c2 { transform: translateX(-50%) rotate(6deg) translateX(96px); }
}

/* Sections */
section { position: relative; padding: 84px 0; }
.section-head { text-align: center; max-width: 40ch; margin: 0 auto 52px; }
.section-head h2 { font-size: clamp(28px, 4.5vw, 42px); }
.section-head p { color: var(--ink2); font-size: 17px; margin-top: 14px; }

.statement {
  text-align: center; font-family: "Sofia Sans"; font-weight: 800;
  font-size: clamp(26px, 4.5vw, 40px); line-height: 1.15; max-width: 20ch; margin: 0 auto;
}
.statement .accent { color: var(--accent-bright); }

/* Feature grid */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 720px) { .features { grid-template-columns: 1fr; } }
.feature {
  background: var(--surface); border: 1px solid var(--line); border-radius: 20px; padding: 28px;
}
.feature .icon {
  width: 46px; height: 46px; border-radius: 13px; background: var(--accent-soft);
  display: grid; place-items: center; font-size: 22px; margin-bottom: 18px;
}
.feature h3 { font-size: 20px; margin-bottom: 8px; }
.feature p { color: var(--ink2); font-size: 15px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 720px) { .steps { grid-template-columns: 1fr; } }
.step { text-align: center; }
.step .num {
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--accent);
  color: var(--accent-bright); font-family: "Sofia Sans"; font-weight: 800; font-size: 18px;
  display: grid; place-items: center; margin: 0 auto 18px;
}
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { color: var(--ink2); font-size: 15px; }

/* Worlds */
.worlds { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.world {
  background: var(--surface); border: 1px solid var(--line); border-radius: 100px;
  padding: 11px 20px; font-size: 15px; font-weight: 500; color: var(--ink2);
}
.world .dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 9px; vertical-align: middle; }

/* Pricing */
.price-wrap { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 720px; margin: 0 auto; }
@media (max-width: 620px) { .price-wrap { grid-template-columns: 1fr; } }
.plan {
  background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: 32px; position: relative;
}
.plan.best { border-color: var(--accent); background: linear-gradient(180deg, var(--accent-soft), var(--surface)); }
.plan .tag {
  position: absolute; top: -12px; left: 32px; background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 100px; letter-spacing: 0.04em;
}
.plan .name { font-weight: 600; color: var(--ink2); font-size: 15px; }
.plan .amt { font-family: "Sofia Sans"; font-weight: 800; font-size: 40px; margin: 8px 0 2px; }
.plan .per { color: var(--ink3); font-size: 14px; }
.plan .free { color: var(--accent-bright); font-weight: 600; font-size: 14px; margin-top: 14px; }
.price-note { text-align: center; color: var(--ink3); font-size: 13px; margin-top: 24px; }

/* Footer */
footer { border-top: 1px solid var(--line); padding: 48px 0; margin-top: 40px; }
footer .wrap { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
footer .links { display: flex; gap: 24px; }
footer .links a { color: var(--ink2); font-size: 14px; }
footer .links a:hover { color: var(--ink); }
footer .copy { color: var(--ink3); font-size: 13px; }

/* Legal pages */
.legal { max-width: 720px; margin: 0 auto; padding: 64px 24px 90px; }
.legal h1 { font-size: 34px; margin-bottom: 6px; }
.legal .muted { color: var(--ink3); font-size: 14px; margin-bottom: 32px; }
.legal h2 { font-size: 20px; margin-top: 34px; margin-bottom: 10px; }
.legal p, .legal li { color: var(--ink2); font-size: 15.5px; margin-bottom: 12px; }
.legal ul { padding-left: 22px; }
.legal a { color: var(--accent-bright); }
.back { display: inline-block; margin-bottom: 32px; color: var(--ink2); font-size: 14px; }
