:root {
  color-scheme: dark;
  --bg: #0b0812;
  --surface: #191322;
  --surface-raised: #241a30;
  --ink: #fff7ff;
  --muted: #c9bdcf;
  --line: rgba(255, 255, 255, 0.14);
  --accent: #ff7ade;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(900px 540px at 85% -90px, rgba(255, 0, 204, 0.17), transparent 70%),
    radial-gradient(700px 580px at -10% 70%, rgba(114, 41, 168, 0.2), transparent 72%),
    var(--bg);
  color: var(--ink);
  font: 17px/1.6 var(--font);
}
a { color: var(--accent); }
a:hover { color: #ffc4f0; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.shell { width: min(1100px, calc(100% - 48px)); margin: 0 auto; }
.site-header, .site-footer { border-bottom: 1px solid var(--line); }
.site-header .shell, .site-footer .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header .shell { min-height: 82px; }
.brand { color: var(--ink); font-size: 28px; font-weight: 800; letter-spacing: -0.07em; text-decoration: none; }
.brand span { color: #ff4dc7; }
.site-nav, .footer-nav { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.site-nav a, .footer-nav a { color: var(--muted); font-size: 14px; font-weight: 650; text-decoration: none; }
.site-nav a[aria-current="page"] { color: var(--ink); }
main { padding: 70px 0 88px; }
.eyebrow { color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 760px; margin-bottom: 18px; font-size: clamp(38px, 6vw, 68px); line-height: 1.06; letter-spacing: -0.055em; }
h2 { font-size: clamp(22px, 3vw, 31px); letter-spacing: -0.035em; }
h3 { font-size: 19px; }
.lede { max-width: 750px; color: var(--muted); font-size: clamp(17px, 2vw, 20px); }
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin: 44px 0 26px; }
.card, .info-panel {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(155deg, var(--surface-raised), var(--surface));
  padding: clamp(24px, 3vw, 36px);
}
.card.featured { border-color: rgba(255, 122, 222, 0.56); box-shadow: 0 15px 55px rgba(255, 0, 204, 0.09); }
.card h2 { margin-bottom: 8px; }
.price { margin: 22px 0 4px; font-size: clamp(32px, 4.7vw, 52px); font-weight: 800; letter-spacing: -0.055em; line-height: 1.1; }
.price small { display: block; margin-top: 9px; color: var(--muted); font-size: 0.34em; font-weight: 650; letter-spacing: 0; }
.muted, .small { color: var(--muted); }
.small { font-size: 14px; }
.rule { height: 1px; margin: 28px 0; background: var(--line); }
.feature-list { margin: 0; padding-left: 21px; }
.feature-list li + li { margin-top: 9px; }
.info-panel { margin-top: 18px; }
.info-panel p:last-child, .card p:last-child { margin-bottom: 0; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}
.button.primary { background: #d400a9; border-color: #d400a9; }
.button:hover { color: var(--ink); background: #a90087; }
.policy { max-width: 800px; }
.policy section { padding: 26px 0; border-top: 1px solid var(--line); }
.policy section:first-of-type { margin-top: 42px; }
.policy ul { padding-left: 22px; }
.policy li + li { margin-top: 10px; }
.site-footer { border-top: 1px solid var(--line); border-bottom: 0; }
.site-footer .shell { min-height: 96px; }
.site-footer p { margin: 0; color: var(--muted); font-size: 14px; }
@media (max-width: 680px) {
  .shell { width: min(100% - 32px, 1100px); }
  .site-header .shell, .site-footer .shell { align-items: flex-start; flex-direction: column; gap: 12px; padding: 20px 0; }
  .site-header .shell, .site-footer .shell { min-height: 0; }
  main { padding: 54px 0 70px; }
  .pricing-grid { grid-template-columns: 1fr; margin-top: 34px; }
}
