/* Brashen — brashen.com
   Brand palette mirrors brashen/Theme/AppTheme.swift:
   indigo #3D348B · amber #F7B32B · coral #FC5130 · emerald #2DC653
   bg-dark #1A1A2E · card-dark #252542
*/

:root {
  --indigo: #3D348B;
  --indigo-deep: #2A2466;
  --indigo-glow: #5A4EC4;
  --amber: #F7B32B;
  --coral: #FC5130;
  --emerald: #2DC653;

  --bg: #0F0F1E;
  --bg-2: #1A1A2E;
  --card: #252542;
  --card-hi: #2E2E4F;
  --line: rgba(255, 255, 255, 0.08);
  --text: #F4F4FA;
  --text-dim: #B6B6CC;
  --text-mute: #8686A3;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-rounded: ui-rounded, -apple-system, "SF Pro Rounded", system-ui,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-rounded);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

::selection {
  background: var(--amber);
  color: #1A1A2E;
}

/* ------ Layout ------ */

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

section {
  position: relative;
  padding: 120px 0;
}

@media (max-width: 720px) {
  section {
    padding: 80px 0;
  }
  .wrap {
    padding: 0 22px;
  }
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  padding: 6px 12px;
  border: 1px solid rgba(247, 179, 43, 0.35);
  border-radius: 999px;
  background: rgba(247, 179, 43, 0.08);
}

h1,
h2,
h3 {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}

h1 {
  font-size: clamp(42px, 7vw, 88px);
}

h2 {
  font-size: clamp(34px, 5vw, 56px);
  margin-bottom: 16px;
}

h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

p {
  margin: 0 0 14px;
  color: var(--text-dim);
  font-size: 17px;
}

.lede {
  font-size: 20px;
  color: var(--text-dim);
  max-width: 620px;
}

/* ------ Nav ------ */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  background: rgba(15, 15, 30, 0.72);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--indigo-glow), var(--indigo-deep));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 10px 24px -10px rgba(90, 78, 196, 0.6);
  display: grid;
  place-items: center;
  color: var(--amber);
  font-weight: 900;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  color: var(--text-dim);
  font-size: 15px;
  font-weight: 600;
  transition: color 160ms var(--ease);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--amber);
  color: #1A1A2E !important;
  font-weight: 800 !important;
  box-shadow: 0 10px 30px -10px rgba(247, 179, 43, 0.6);
  transition: transform 160ms var(--ease), box-shadow 160ms var(--ease);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px -10px rgba(247, 179, 43, 0.8);
}

@media (max-width: 720px) {
  .nav-links a:not(.nav-cta) {
    display: none;
  }
}

/* ------ Hero ------ */

.hero {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 120%;
  background:
    radial-gradient(50% 50% at 30% 20%, rgba(90, 78, 196, 0.45), transparent 70%),
    radial-gradient(55% 55% at 85% 15%, rgba(247, 179, 43, 0.18), transparent 70%),
    radial-gradient(45% 60% at 60% 90%, rgba(252, 81, 48, 0.18), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 70px;
  }
}

.hero h1 span.coral {
  color: var(--coral);
}
.hero h1 span.amber {
  color: var(--amber);
}

.hero .lede {
  margin-top: 24px;
  font-size: 21px;
  max-width: 560px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
  align-items: center;
}

.btn-appstore {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  background: #fff;
  color: #0F0F1E;
  border-radius: 14px;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 16px 40px -14px rgba(255, 255, 255, 0.25);
  transition: transform 160ms var(--ease), box-shadow 160ms var(--ease);
}

.btn-appstore:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px -14px rgba(255, 255, 255, 0.35);
}

.btn-appstore small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  opacity: 0.7;
  letter-spacing: 0.02em;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  font-weight: 700;
  font-size: 15px;
  transition: background 160ms var(--ease), border-color 160ms var(--ease);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-trust {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  color: var(--text-mute);
  font-size: 14px;
  font-weight: 600;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 4px rgba(45, 198, 83, 0.18);
}

/* ------ Phone mockup & quest card ------ */

.phone {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 9 / 19;
  margin: 0 auto;
  background: linear-gradient(160deg, #2B2B4A, #14142A);
  border-radius: 48px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 60px 120px -30px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 120px -20px rgba(90, 78, 196, 0.5);
  transform: rotate(-2deg);
  transition: transform 400ms var(--ease);
}

.phone:hover {
  transform: rotate(-1deg) translateY(-6px);
}

.phone-notch {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 28px;
  background: #0a0a16;
  border-radius: 999px;
  z-index: 2;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 34px;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(90, 78, 196, 0.5), transparent 60%),
    linear-gradient(180deg, #1A1A2E 0%, #0F0F1E 100%);
  overflow: hidden;
  padding: 56px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--text-dim);
  padding: 0 4px;
}

.phone-header .streak {
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.xp-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin: 2px 4px 0;
}
.xp-bar > div {
  height: 100%;
  width: 62%;
  background: linear-gradient(90deg, var(--amber), var(--coral));
  border-radius: 999px;
  animation: xpfill 1600ms var(--ease) 300ms both;
}

@keyframes xpfill {
  from { width: 0; }
}

.quest-card {
  flex: 1;
  background: linear-gradient(180deg, #2E2E52, #1F1F3A);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  animation: breathe 5s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(247, 179, 43, 0); }
  50% { transform: scale(1.012); box-shadow: 0 0 40px -10px rgba(247, 179, 43, 0.3); }
}

.quest-tag-row {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.qtag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 9px;
  border-radius: 999px;
  text-transform: uppercase;
}

.qtag.diff { background: rgba(247, 179, 43, 0.18); color: var(--amber); }
.qtag.stat { background: rgba(90, 78, 196, 0.26); color: #C9C2FF; }

.quest-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.quest-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
  margin: 0;
}

.quest-flavor {
  font-size: 12px;
  font-style: italic;
  color: var(--text-mute);
  border-left: 2px solid var(--amber);
  padding-left: 10px;
  margin: 0;
}

.xp-chip {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

.xp-chip .xp {
  color: var(--amber);
  font-weight: 900;
  font-size: 18px;
}
.xp-chip .bonus {
  color: var(--coral);
  font-size: 11px;
  font-weight: 700;
}

.phone-tab {
  display: flex;
  justify-content: space-around;
  padding: 10px 0 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.phone-tab span {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
}
.phone-tab span.active {
  background: var(--amber);
}

/* ------ Problem section ------ */

.problem {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 860px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.problem-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.problem-list li {
  font-size: 19px;
  color: var(--text);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.problem-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
  margin-top: 9px;
  box-shadow: 0 0 0 4px rgba(252, 81, 48, 0.15);
}

.problem-verb {
  background: linear-gradient(180deg, var(--card), var(--card-hi));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.problem-verb::before {
  content: "";
  position: absolute;
  top: -60%;
  right: -30%;
  width: 80%;
  height: 160%;
  background: radial-gradient(closest-side, rgba(247, 179, 43, 0.18), transparent);
  pointer-events: none;
}

.problem-verb h3 {
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.problem-verb .big {
  font-size: 34px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 12px;
}

.problem-verb .big em {
  font-style: italic;
  color: var(--amber);
}

.problem-verb .usage {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-mute);
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

/* ------ How it works ------ */

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

@media (max-width: 900px) {
  .how-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .how-grid {
    grid-template-columns: 1fr;
  }
}

.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: relative;
  transition: transform 200ms var(--ease), border-color 200ms var(--ease);
}

.step:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 179, 43, 0.35);
}

.step-num {
  position: absolute;
  top: 22px;
  right: 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-mute);
}

.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--indigo-glow), var(--indigo));
  display: grid;
  place-items: center;
  color: var(--amber);
  margin-bottom: 20px;
  font-size: 22px;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.step p {
  font-size: 15px;
  margin: 0;
}

/* ------ Quests section (sample quests) ------ */

.quests {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quests-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.quests-head p {
  max-width: 440px;
}

.quest-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 900px) {
  .quest-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .quest-gallery {
    grid-template-columns: 1fr;
  }
}

.qcard {
  background: linear-gradient(180deg, var(--card), var(--card-hi));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 200ms var(--ease), border-color 200ms var(--ease);
  position: relative;
  overflow: hidden;
}

.qcard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(247, 179, 43, 0.04));
  pointer-events: none;
  opacity: 0;
  transition: opacity 200ms var(--ease);
}

.qcard:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 179, 43, 0.3);
}
.qcard:hover::before { opacity: 1; }

.qcard h3 {
  font-size: 20px;
  margin: 0;
}

.qcard p {
  font-size: 15px;
  margin: 0;
}

.qcard .qtag-row {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
}

.qcard .xp-line {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: var(--text-mute);
  display: flex;
  justify-content: space-between;
}

.qcard .xp-line strong {
  color: var(--amber);
  font-size: 16px;
}

/* ------ Features grid ------ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 60px;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: transform 200ms var(--ease), border-color 200ms var(--ease);
}

.feat:hover {
  transform: translateY(-3px);
  border-color: rgba(90, 78, 196, 0.45);
}

.feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 22px;
}

.feat:nth-child(6n+1) .feat-icon { background: rgba(247, 179, 43, 0.18); color: var(--amber); }
.feat:nth-child(6n+2) .feat-icon { background: rgba(252, 81, 48, 0.18); color: var(--coral); }
.feat:nth-child(6n+3) .feat-icon { background: rgba(45, 198, 83, 0.18); color: var(--emerald); }
.feat:nth-child(6n+4) .feat-icon { background: rgba(90, 78, 196, 0.28); color: #B8B0F8; }
.feat:nth-child(6n+5) .feat-icon { background: rgba(247, 179, 43, 0.18); color: var(--amber); }
.feat:nth-child(6n+6) .feat-icon { background: rgba(252, 81, 48, 0.18); color: var(--coral); }

.feat h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.feat p {
  font-size: 15px;
  margin: 0;
  color: var(--text-dim);
}

/* ------ Stats / the five courage stats ------ */

.stats-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 50px;
}

@media (max-width: 900px) {
  .stats-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .stats-5 {
    grid-template-columns: 1fr;
  }
}

.stat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  text-align: center;
}

.stat-dot {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  margin: 0 auto 14px;
}

.stat:nth-child(1) .stat-dot { background: #5A4EC4; }
.stat:nth-child(2) .stat-dot { background: var(--amber); }
.stat:nth-child(3) .stat-dot { background: var(--coral); }
.stat:nth-child(4) .stat-dot { background: var(--emerald); }
.stat:nth-child(5) .stat-dot { background: #C5A8FF; }

.stat h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.stat p {
  font-size: 13px;
  color: var(--text-mute);
  margin: 0;
}

/* ------ Packs ------ */

.packs {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.packs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 60px;
}

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

.pack {
  position: relative;
  background: linear-gradient(180deg, var(--card), var(--card-hi));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  overflow: hidden;
  transition: transform 250ms var(--ease), border-color 250ms var(--ease);
}

.pack:hover {
  transform: translateY(-6px);
  border-color: var(--amber);
}

.pack::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--amber);
}

.pack:nth-child(2)::before { background: var(--coral); }
.pack:nth-child(3)::before { background: var(--emerald); }

.pack h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.pack .tagline {
  color: var(--amber);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
}

.pack:nth-child(2) .tagline { color: var(--coral); }
.pack:nth-child(3) .tagline { color: var(--emerald); }

.pack ul {
  list-style: none;
  margin: 16px 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pack li {
  font-size: 14px;
  color: var(--text-dim);
  padding-left: 22px;
  position: relative;
}

.pack li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--amber);
  font-weight: 800;
}

.pack .price {
  font-size: 24px;
  font-weight: 900;
  color: var(--text);
}

.pack .price small {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mute);
  display: block;
  margin-top: 2px;
}

/* ------ Pricing ------ */

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 60px;
}

@media (max-width: 900px) {
  .price-grid {
    grid-template-columns: 1fr;
  }
}

.price-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(247, 179, 43, 0.12), var(--card));
  border-color: var(--amber);
  transform: scale(1.02);
  box-shadow: 0 24px 60px -20px rgba(247, 179, 43, 0.35);
}

.price-card.featured::after {
  content: "BEST VALUE";
  position: absolute;
  top: -12px;
  left: 28px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: #1A1A2E;
  background: var(--amber);
  padding: 5px 10px;
  border-radius: 999px;
}

.price-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.price-card .big-price {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 12px 0 4px;
}

.price-card .big-price small {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-mute);
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
  color: var(--text-dim);
}

.price-card li::before {
  content: "✓  ";
  color: var(--emerald);
  font-weight: 900;
}

.price-card .note {
  font-size: 12px;
  color: var(--text-mute);
  margin-top: auto;
}

/* ------ Privacy strip ------ */

.privacy {
  text-align: center;
  padding: 100px 0;
}

.privacy h2 {
  max-width: 820px;
  margin: 0 auto 16px;
}

.privacy .lede {
  margin: 0 auto 36px;
}

.privacy-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.pill {
  font-size: 14px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--text-dim);
}

.pill::before {
  content: "✕  ";
  color: var(--coral);
  font-weight: 900;
}

/* ------ FAQ ------ */

.faq {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.faq-list {
  max-width: 820px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

details.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: border-color 200ms var(--ease);
}

details.faq-item[open] {
  border-color: rgba(247, 179, 43, 0.35);
}

details.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

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

details.faq-item summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 400;
  color: var(--amber);
  transition: transform 200ms var(--ease);
  flex: 0 0 auto;
}

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

details.faq-item p {
  margin: 14px 0 0;
  font-size: 15px;
  color: var(--text-dim);
}

/* ------ Final CTA ------ */

.final-cta {
  padding: 140px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 50% 50%, rgba(247, 179, 43, 0.12), transparent 70%);
  pointer-events: none;
}

.final-cta h2 {
  max-width: 820px;
  margin: 0 auto 18px;
  position: relative;
  font-size: clamp(36px, 6vw, 68px);
}

.final-cta .lede {
  margin: 0 auto 36px;
  position: relative;
}

.final-cta .cta-row {
  justify-content: center;
  position: relative;
}

/* ------ Footer ------ */

footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
}

@media (max-width: 780px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

footer h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-mute);
  margin: 0 0 16px;
  font-weight: 800;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer li a {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 600;
  transition: color 160ms var(--ease);
}

footer li a:hover {
  color: var(--text);
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-mute);
  max-width: 300px;
  margin-top: 14px;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  color: var(--text-mute);
  font-size: 13px;
}

/* ------ Doc pages (privacy, support) ------ */

.doc {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 28px 120px;
}

.doc h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 12px;
}

.doc .meta {
  color: var(--text-mute);
  font-size: 14px;
  margin-bottom: 40px;
}

.doc h2 {
  font-size: 26px;
  margin: 48px 0 14px;
  color: var(--text);
}

.doc h3 {
  font-size: 19px;
  margin: 32px 0 10px;
  color: var(--text);
}

.doc p,
.doc li {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.65;
}

.doc ul {
  padding-left: 22px;
}

.doc a {
  color: var(--amber);
  border-bottom: 1px dotted rgba(247, 179, 43, 0.4);
}

.doc a:hover {
  border-bottom-color: var(--amber);
}

.doc .tldr {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--amber);
  padding: 22px 26px;
  border-radius: var(--radius-sm);
  margin: 30px 0;
}

.doc .tldr strong {
  color: var(--amber);
  display: block;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ------ Reveal on scroll ------ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
