:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #090708;
  color: #fff8fb;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --panel: #171015;
  --cream: #fff4fb;
  --rose: #f071a8;
  --hot: #ff4f98;
  --mauve: #c69aaf;
  --petal: #ffd7e6;
  --line: #4b3945;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(9, 7, 8, 0.84), rgba(9, 7, 8, 0.98)),
    repeating-linear-gradient(90deg, rgba(240, 113, 168, 0.055) 0 1px, transparent 1px 64px),
    #090708;
}

a { color: var(--petal); text-underline-offset: 4px; }
a:hover { outline: 3px solid rgba(240, 113, 168, 0.52); outline-offset: 3px; }

.page-shell { width: min(940px, calc(100% - 40px)); margin: 0 auto; }

.page-header,
.page-footer {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  text-decoration: none;
  font-weight: 950;
}

.brand img { width: 42px; height: 42px; }

.page-nav,
.page-footer nav { display: flex; flex-wrap: wrap; gap: 14px; }
.page-nav a,
.page-footer a { font-weight: 800; }

.page-hero {
  border-block: 1px solid rgba(240, 113, 168, 0.5);
  padding: clamp(54px, 9vw, 92px) 0;
}

.eyebrow {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--petal);
  font-size: 0.82rem;
  font-weight: 900;
}

h1,
h2,
h3 { color: var(--cream); text-wrap: balance; }
h1 { max-width: 780px; margin: 16px 0; font-size: clamp(2.7rem, 7vw, 5.4rem); line-height: 0.98; }
h2 { margin: 42px 0 12px; font-size: clamp(1.55rem, 3vw, 2.2rem); }
h3 { margin: 0 0 8px; font-size: 1.08rem; }
p, li { color: var(--mauve); line-height: 1.7; }
.lede { max-width: 720px; color: var(--petal); font-size: 1.12rem; }

.cta {
  display: inline-flex;
  margin-top: 18px;
  border-radius: 999px;
  background: var(--rose);
  color: #fff;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 950;
}

.content { padding: 10px 0 58px; }
.content section { scroll-margin-top: 20px; }
.card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 18px; }
.card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(23, 16, 21, 0.78);
  padding: 20px;
}
.card p { margin-bottom: 0; }
.steps { counter-reset: steps; padding: 0; list-style: none; }
.steps > li { counter-increment: steps; margin-top: 16px; border-left: 3px solid var(--rose); padding-left: 18px; }
.steps > li::before { content: "0" counter(steps); display: block; color: var(--hot); font-weight: 950; }
.callout { border-radius: 16px; background: rgba(240, 113, 168, 0.12); padding: 18px 20px; }
.page-footer { border-top: 1px solid var(--line); font-size: 0.86rem; }

@media (max-width: 680px) {
  .page-header,
  .page-footer { align-items: flex-start; flex-direction: column; }
  .card-grid { grid-template-columns: 1fr; }
  .page-nav { gap: 10px; }
}
