:root {
  color-scheme: dark;
  --bg: #121315;
  --bg-deep: #0d0e10;
  --surface-low: #1a1c1e;
  --surface: #1e2022;
  --surface-high: #292a2c;
  --surface-highest: #343537;
  --text: #e3e2e5;
  --muted: #c3c7ce;
  --subtle: #8d9198;
  --border: #43474d;
  --primary: #acc9ec;
  --on-primary: #12324e;
  --warning: #eabf86;
  --danger: #ff6b60;
  --green: #4fd46b;
  --shadow: rgba(0, 0, 0, 0.45);
  --max: 1160px;
  --radius: 18px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -10%, rgba(172, 201, 236, 0.14), transparent 38%),
    radial-gradient(circle at 20% 18%, rgba(118, 147, 179, 0.11), transparent 34%),
    linear-gradient(180deg, #15171a 0%, var(--bg) 42%, #0f1012 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: radial-gradient(rgba(227, 226, 229, 0.18) 1px, transparent 1.2px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.72), rgba(0,0,0,0.12) 72%, transparent);
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(18,19,21,0.96), rgba(18,19,21,0.52), rgba(18,19,21,0.96));
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--primary); }
button, input, select, textarea { font: inherit; }

.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 90px 0; }
.section-tight { padding: 62px 0; }
.center { text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(227, 226, 229, 0.055);
  color: var(--muted);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 13px;
  line-height: 1;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px rgba(172,201,236,0.7);
}

.site-shell {
  width: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.nav {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-bottom: 1px solid rgba(255,255,255,0.055);
  background: rgba(13, 14, 16, 0.72);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 30;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 17px;
  white-space: nowrap;
}
.logo-mark {
  width: 28px;
  height: 28px;
  display: block;
  flex: 0 0 28px;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.18));
}
.logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px rgba(172,201,236,0.8);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 13px;
}
.nav-actions { display: flex; align-items: center; gap: 10px; }
.mobile-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  min-height: 42px;
  padding: 0 18px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: var(--on-primary);
  background: linear-gradient(180deg, #bdd8f5, var(--primary));
  border-color: rgba(172,201,236,0.85);
  box-shadow: 0 10px 28px rgba(172,201,236,0.16), inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  color: #071c2f;
  background: linear-gradient(180deg, #d9ebff, #b7d5f4);
  border-color: rgba(217,235,255,0.95);
  box-shadow: 0 14px 34px rgba(172,201,236,0.24), inset 0 1px 0 rgba(255,255,255,0.62);
}
.btn-primary:active {
  color: #071c2f;
  background: linear-gradient(180deg, #a9c8e8, #9fbee0);
  border-color: rgba(172,201,236,0.9);
}
.btn-primary:visited {
  color: var(--on-primary);
}
.btn-secondary {
  color: var(--text);
  background: rgba(227,226,229,0.055);
  border-color: rgba(255,255,255,0.1);
}

.hero {
  padding: 72px 0 34px;
  min-height: 820px;
  overflow: hidden;
}
.hero-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.hero h1, .page-hero h1 {
  margin: 24px 0 18px;
  font-size: clamp(42px, 6vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 650;
}
.hero p.lede, .page-hero p.lede {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.hero-cta {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-line {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--subtle);
  font-size: 13px;
}
.trust-line svg { width: 15px; height: 15px; }

.download-hero {
  width: min(var(--max), calc(100% - 40px));
  min-height: auto;
  margin: 0 auto;
  text-align: center;
}
.download-hero .hero-lede {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.download-hero .hero-actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.download-hero + .section > .section-heading,
.download-hero + .section + .section > .privacy-panel,
.download-hero ~ .section > .section-heading,
.download-hero ~ .section > .feature-grid,
.download-hero ~ .section > .template-download,
.download-hero ~ .section > .faq-list {
  width: min(var(--max), calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}
.section-heading.left { text-align: left; }
.feature-grid.three { grid-template-columns: repeat(3, 1fr); }
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: var(--on-primary);
  background: linear-gradient(180deg, #bdd8f5, var(--primary));
  font-weight: 800;
}
.privacy-panel {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(234,191,134,0.22);
  background: linear-gradient(180deg, rgba(234,191,134,0.10), rgba(30,32,34,0.58));
}
.privacy-panel h2 { margin: 10px 0 10px; }
.privacy-panel p:last-child { margin-bottom: 0; }
.faq-list.compact { max-width: min(880px, calc(100% - 40px)); }
code {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 7px;
  padding: 2px 6px;
  background: rgba(13,14,16,0.56);
  color: var(--text);
  font-size: 0.92em;
}

.mockup-wrap {
  margin: 46px auto 0;
  width: min(1050px, calc(100% - 36px));
  position: relative;
}
.product-window {
  position: relative;
  height: 615px;
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 70%, rgba(24, 98, 118, 0.76), transparent 35%),
    radial-gradient(circle at 78% 42%, rgba(74, 25, 110, 0.78), transparent 40%),
    linear-gradient(135deg, rgba(177, 101, 48, 0.38), rgba(34, 40, 54, 0.72) 44%, rgba(57, 18, 89, 0.8));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 58px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.12);
  isolation: isolate;
  background-clip: padding-box;
}
.mac-menu-bar {
  height: 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 0 18px;
  background: rgba(25, 25, 28, 0.42);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(24px);
  font-size: 12.5px;
  color: rgba(255,255,255,0.72);
  border-radius: 18px 18px 0 0;
}
.mac-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  white-space: nowrap;
  min-width: 0;
}
.apple-glyph { font-size: 16px; color: rgba(255,255,255,0.86); line-height: 1; margin-right: 2px; }
.mac-left strong { font-weight: 600; color: rgba(255,255,255,0.82); }
.mac-right {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
  color: rgba(255,255,255,0.82);
}
.status-anchor { position: relative; display: flex; align-items: center; justify-content: center; }
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f56;
  box-shadow: 0 0 12px rgba(255,95,86,0.8), 0 0 2px rgba(255,255,255,0.45) inset;
}
.status-popover {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 235px;
  min-height: 76px;
  padding: 14px 15px;
  border-radius: 10px;
  background: rgba(30, 32, 34, 0.88);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 36px rgba(0,0,0,0.38), inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(22px);
  z-index: 6;
  color: var(--text);
  white-space: normal;
}
.status-popover::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  border-left: 1px solid rgba(255,255,255,0.08);
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(30, 32, 34, 0.9);
}
.status-popover b { display: block; font-size: 14px; margin-bottom: 6px; }
.status-popover span { display: block; color: var(--muted); font-size: 12px; line-height: 1.35; white-space: normal; overflow-wrap: anywhere; }
.mac-icon { width: 16px; height: 16px; color: rgba(255,255,255,0.76); }

.dashboard-card {
  width: min(700px, 72%);
  min-height: 365px;
  position: absolute;
  left: 50%;
  top: 142px;
  transform: translateX(-50%);
  padding: 28px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(30,32,34,0.75), rgba(30,32,34,0.50));
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 22px 42px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
}
.dash-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  padding-bottom: 14px;
}
.dash-title { font-size: 18px; font-weight: 600; margin: 0 0 4px; }
.dash-date { color: var(--muted); margin: 0; }
.earnings { text-align: right; color: var(--muted); }
.earnings strong { display: block; color: var(--primary); font-size: 18px; margin-bottom: 3px; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 20px 0 22px; }
.metric {
  background: rgba(18,19,21,0.74);
  border: 1px solid rgba(255,255,255,0.055);
  border-radius: 8px;
  padding: 15px;
}
.metric span { display: block; color: var(--muted); margin-bottom: 8px; }
.metric strong { font-size: 18px; }
.chart-title { display: flex; align-items: baseline; gap: 8px; color: var(--muted); font-size: 15px; margin-bottom: 12px; }
.chart-title strong { color: var(--text); font-weight: 600; }
.chart {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: stretch;
}
.y-axis {
  height: 136px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: rgba(195,199,206,0.52);
  font-size: 11px;
  padding-bottom: 20px;
}
.chart-area { min-width: 0; }
.bars {
  position: relative;
  height: 136px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  align-items: end;
  padding: 10px 10px 20px;
  border-radius: 10px;
  background: rgba(18,19,21,0.40);
  overflow: hidden;
}
.bars::before {
  content: "";
  position: absolute;
  inset: 10px 10px 20px;
  background: repeating-linear-gradient(to bottom, rgba(255,255,255,0.055) 0 1px, transparent 1px 34px);
  pointer-events: none;
}
.bar {
  position: relative;
  z-index: 1;
  min-height: 8px;
  border-radius: 7px 7px 3px 3px;
  background: #6f7d8e;
  opacity: 0.86;
}
.bar.accent {
  background: var(--primary);
  opacity: 1;
  box-shadow: 0 0 18px rgba(172,201,236,0.28);
}
.x-axis {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  padding: 8px 10px 0;
  color: rgba(195,199,206,0.55);
  font-size: 11px;
  text-align: center;
}
.mockup-caption { margin-top: 13px; text-align: center; color: var(--muted); font-size: 13px; }

h2 { margin: 0 0 14px; font-size: clamp(28px, 4vw, 42px); line-height: 1.1; letter-spacing: -0.035em; font-weight: 650; }
.section-lede { max-width: 680px; margin: 0 auto 34px; color: var(--muted); line-height: 1.7; }
.problem-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.problem-card, .feature-card, .shot-card, .faq-item, .form-card, .privacy-card {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(30,32,34,0.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.055);
  border-radius: 14px;
}

.premium-material {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(30,32,34,0.88), rgba(18,19,21,0.78));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 26px 90px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.09),
    inset 0 -1px 0 rgba(255,255,255,0.025);
  backdrop-filter: blur(24px);
}
.premium-material > * {
  position: relative;
  z-index: 2;
}
.premium-material::before {
  content: "";
  position: absolute;
  inset: -42%;
  z-index: 0;
  background:
    radial-gradient(circle at 13% 34%, rgba(27, 132, 154, 0.45), transparent 31%),
    radial-gradient(circle at 88% 20%, rgba(105, 48, 166, 0.42), transparent 34%),
    radial-gradient(circle at 58% 94%, rgba(172, 201, 236, 0.15), transparent 30%),
    radial-gradient(circle at 6% 96%, rgba(234, 191, 134, 0.13), transparent 28%);
  filter: blur(22px) saturate(1.08);
  opacity: 0.72;
  transform: translate3d(-1.5%, -1%, 0) scale(1.02);
  animation: auroraDrift 26s ease-in-out infinite alternate;
}
.premium-material::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.075), transparent 22%, rgba(255,255,255,0.02)),
    radial-gradient(rgba(255,255,255,0.18) 0.65px, transparent 0.8px);
  background-size: auto, 17px 17px;
  opacity: 0.16;
  mix-blend-mode: screen;
  pointer-events: none;
}
.premium-material--subtle::before {
  opacity: 0.38;
  filter: blur(28px) saturate(0.95);
  animation-duration: 34s;
}
.premium-material--subtle::after { opacity: 0.11; }

@keyframes auroraDrift {
  0% { transform: translate3d(-2%, -1%, 0) rotate(0deg) scale(1.02); }
  45% { transform: translate3d(1.2%, 0.6%, 0) rotate(4deg) scale(1.04); }
  100% { transform: translate3d(2.3%, 2%, 0) rotate(8deg) scale(1.06); }
}

.problem-card {
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 18px 14px;
  color: var(--text);
}
.problem-card svg { width: 22px; height: 22px; color: var(--primary); opacity: 0.92; }
.problem-card span { font-size: 14px; line-height: 1.35; }

.popular-guides {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  text-align: left;
}
.guide-link-card {
  display: grid;
  gap: 8px;
  min-height: 126px;
  padding: 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(30,32,34,0.58);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.guide-link-card:hover {
  transform: translateY(-2px);
  color: var(--text);
  border-color: rgba(172,201,236,0.24);
  background: rgba(30,32,34,0.82);
}
.guide-link-card strong { font-size: 15px; letter-spacing: -0.02em; }
.guide-link-card span { color: var(--muted); font-size: 13px; line-height: 1.45; }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 24px;
  min-height: 228px;
  transition: background .18s ease, transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  z-index: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(172,201,236,0.16), transparent 32%),
    radial-gradient(circle at 85% 12%, rgba(105,48,166,0.18), transparent 34%),
    radial-gradient(circle at 22% 90%, rgba(27,132,154,0.14), transparent 28%);
  filter: blur(18px);
  opacity: 0;
  transform: translate3d(-1%, -1%, 0) scale(1.02);
  transition: opacity .2s ease;
  animation: auroraDrift 38s ease-in-out infinite alternate;
}
.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(rgba(255,255,255,0.16) 0.55px, transparent 0.75px);
  background-size: 16px 16px;
  opacity: 0;
  mix-blend-mode: screen;
  pointer-events: none;
  transition: opacity .2s ease;
}
.feature-card > * { position: relative; z-index: 2; }
.feature-card:hover {
  transform: translateY(-2px);
  background: rgba(41,42,44,0.78);
  border-color: rgba(172,201,236,0.18);
  box-shadow: 0 18px 42px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.07);
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover::after { opacity: 0.08; }
.feature-icon { width: 28px; height: 28px; color: var(--primary); margin-bottom: 20px; display: block; }
.feature-card h3 { margin: 0 0 10px; font-size: 18px; }
.feature-card p { margin: 0; color: var(--muted); line-height: 1.58; }

.screenshots { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; align-items: stretch; }
.shot-card { padding: 18px; overflow: hidden; }
.shot-card h3 { margin: 16px 0 6px; }
.shot-card p { margin: 0; color: var(--muted); line-height: 1.55; }
.shot-main { min-height: 390px; }
.mini-window, .mini-menu, .mini-settings, .real-screenshot-frame, .real-menu-frame {
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(18,19,21,0.55);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.real-screenshot-frame {
  position: relative;
  overflow: hidden;
  min-height: 265px;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.real-screenshot-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 265px;
  object-fit: cover;
  object-position: center top;
  border-radius: 13px;
}
.shot-stack { display: grid; gap: 18px; }
.real-menu-frame {
  position: relative;
  overflow: hidden;
  height: 174px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 12% 8%, rgba(172,201,236,0.08), transparent 34%),
    rgba(18,19,21,0.58);
}
.real-menu-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.real-menu-frame--availability { height: 250px; }
.real-menu-frame--availability img { object-position: center top; }
.mini-menu { height: 150px; padding: 16px; }
.menu-line { height: 20px; margin: 10px 0; border-radius: 5px; background: rgba(255,255,255,0.08); }
.menu-line.short { width: 55%; }
.mini-settings { min-height: 178px; padding: 14px; display: grid; gap: 8px; overflow: hidden; }
.setting-row { border-radius: 10px; border: 1px solid rgba(255,255,255,0.06); background: rgba(30,32,34,0.75); padding: 10px 12px; color: var(--muted); font-size: 13px; line-height: 1.25; }

.notification-showcase { padding-top: 72px; }
.notification-grid { display: grid; gap: 18px; }
.notification-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 24px;
  overflow: hidden;
  border-radius: 22px;
}
.notification-card.premium-material::before {
  opacity: 0.62;
  background:
    radial-gradient(circle at 18% 18%, rgba(172, 201, 236, 0.22), transparent 34%),
    radial-gradient(circle at 92% 8%, rgba(105, 48, 166, 0.24), transparent 32%),
    linear-gradient(135deg, rgba(30,32,34,0.78), rgba(18,19,21,0.56));
}
.notification-card--discord {
  grid-template-columns: 1fr;
}
.notification-card--discord.premium-material::before {
  background:
    radial-gradient(circle at 14% 16%, rgba(88, 101, 242, 0.22), transparent 30%),
    radial-gradient(circle at 90% 86%, rgba(172, 201, 236, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(30,32,34,0.78), rgba(18,19,21,0.56));
}
.phone-status-frame,
.discord-status-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(13,14,16,0.62);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 22px 60px rgba(0,0,0,0.22);
}
.phone-status-frame {
  height: 400px;
  border-radius: 28px;
}
.phone-status-frame img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.92) contrast(1.02);
}
.discord-status-frame {
  border-radius: 18px;
  padding: 24px;
}
.discord-status-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.discord-avatar {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #5865f2;
  box-shadow: 0 14px 32px rgba(88,101,242,0.24);
}
.discord-avatar svg { width: 38px; height: 38px; }
.discord-body { min-width: 0; display: grid; gap: 7px; }
.discord-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; line-height: 1.1; }
.discord-name { color: var(--text); font-size: 20px; font-weight: 800; letter-spacing: -0.01em; }
.discord-app-badge {
  color: #fff;
  background: #5865f2;
  border-radius: 6px;
  padding: 3px 6px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}
.discord-time { color: var(--subtle); font-size: 14px; }
.discord-message {
  min-width: 0;
  color: var(--text);
  font-size: 22px;
  line-height: 1.28;
  overflow-wrap: anywhere;
}
.notification-copy { position: relative; z-index: 1; }
.feature-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.notification-copy h3 { margin: 0 0 10px; font-size: 27px; letter-spacing: -0.02em; }
.notification-copy p { margin: 0; color: var(--muted); line-height: 1.65; }

.privacy-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 20px;
}
.privacy-band.premium-material::before {
  opacity: 0.82;
  background:
    radial-gradient(circle at 8% 28%, rgba(27, 132, 154, 0.52), transparent 33%),
    radial-gradient(circle at 92% 18%, rgba(105, 48, 166, 0.46), transparent 35%),
    radial-gradient(circle at 50% 105%, rgba(172, 201, 236, 0.16), transparent 33%);
}
.check-list { display: grid; gap: 12px; }
.check-item { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); }
.check-item svg { width: 18px; height: 18px; flex: 0 0 18px; color: var(--primary); margin-top: 2px; }

.signup-grid { display: grid; grid-template-columns: 0.86fr 1.14fr; gap: 28px; align-items: start; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 980px;
  margin: 28px auto 0;
}
.pricing-grid--download { margin-top: 24px; }
.pricing-card {
  position: relative;
  padding: 28px;
  border-radius: 22px;
  display: grid;
  gap: 16px;
  align-content: start;
}
.pricing-card--featured {
  border-color: rgba(172, 201, 236, 0.28);
  box-shadow: 0 24px 70px rgba(0,0,0,0.34), 0 0 0 1px rgba(172,201,236,0.1) inset;
}
.pricing-kicker {
  color: var(--primary);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pricing-price {
  color: var(--text);
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 850;
  letter-spacing: -0.06em;
  line-height: 0.95;
}
.pricing-price span {
  color: var(--muted);
  font-size: 18px;
  letter-spacing: -0.02em;
  margin-left: 4px;
}
.pricing-purpose {
  margin: -4px 0 2px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}
.pricing-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}
.pricing-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.42;
}
.pricing-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--primary);
  font-weight: 900;
}
.pricing-card .btn { width: 100%; margin-top: 4px; }
.pricing-note { margin: -6px 0 0; color: var(--subtle); font-size: 12px; text-align: center; }
.pricing-disclaimer { max-width: 980px; margin: 18px auto 0; }
.form-card { padding: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { color: var(--muted); font-size: 13px; }
input, select, textarea {
  width: 100%;
  color: var(--text);
  background: rgba(13,14,16,0.7);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px;
  min-height: 44px;
  padding: 10px 12px;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: rgba(172,201,236,0.75); box-shadow: 0 0 0 3px rgba(172,201,236,0.12); }
.checkbox { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: 13px; line-height: 1.45; }
.checkbox input { width: 16px; min-height: 16px; margin-top: 2px; }
.form-note { color: var(--subtle); font-size: 12px; line-height: 1.5; margin: 12px 0 0; }
.form-status { color: var(--primary); min-height: 18px; font-size: 13px; margin-top: 10px; }

.faq-list { max-width: 880px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { padding: 20px; }
.faq-item h3 { margin: 0 0 8px; font-size: 17px; }
.faq-item p { margin: 0; color: var(--muted); line-height: 1.65; }

.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 26px 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--subtle);
  font-size: 12px;
}
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.disclaimer { max-width: 660px; line-height: 1.55; }

.page-hero { padding: 72px 0 36px; text-align: center; }
.content-page { max-width: 880px; margin: 0 auto; padding: 0 0 80px; }
.content-page h2 { font-size: 28px; margin-top: 42px; }
.content-page p, .content-page li { color: var(--muted); line-height: 1.7; }
.content-page ul { padding-left: 22px; }
.callout { border: 1px solid rgba(172,201,236,0.16); background: rgba(172,201,236,0.06); border-radius: 14px; padding: 18px; color: var(--muted); }

.breadcrumbs {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--subtle);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.breadcrumbs a { color: var(--muted); }
.breadcrumbs span:last-child { color: var(--primary); }
.guide-page {
  max-width: 1120px;
  text-align: center;
  padding: 84px 0 34px;
}
.guide-page .breadcrumbs { justify-content: center; }
.guide-page h1 {
  max-width: 1040px;
  margin: 0 auto 18px;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}
.guide-page p.lede {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.5;
}
.guide-author {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
}
.guide-author span:not(.guide-author-avatar) + span:not(.guide-author-avatar)::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 12px;
  border-radius: 50%;
  background: rgba(195,199,206,0.48);
  vertical-align: middle;
}
.guide-author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(227,226,229,0.06);
  overflow: hidden;
}
.guide-author-avatar img { width: 24px; height: 24px; display: block; }
.guide-trust {
  margin: 16px 0 0;
  color: var(--subtle);
  font-size: 12px;
  line-height: 1.5;
}
.guide-content {
  display: grid;
  grid-template-columns: minmax(0, 760px) 280px;
  gap: 68px;
  align-items: start;
  padding-bottom: 104px;
}
.guide-article {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
}
.guide-media-card {
  margin: 0 0 42px;
}
.guide-media-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(30,32,34,0.64);
  box-shadow: 0 24px 70px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.08);
}
.guide-media-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.94;
}
.guide-media-frame--compact {
  width: min(100%, 560px);
  padding: 14px;
}
.guide-media-frame--compact img {
  border-radius: 14px;
}
.guide-media-card figcaption {
  margin-top: 12px;
  color: var(--subtle);
  font-size: 12px;
  line-height: 1.5;
}
.guide-section {
  scroll-margin-top: 96px;
  padding: 34px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.guide-media-card + .guide-section { border-top: 0; padding-top: 0; }
.guide-article h2 {
  margin: 0 0 14px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}
.guide-article p, .guide-article li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.76;
}
.guide-article p { margin: 0 0 16px; }
.guide-article p:last-child { margin-bottom: 0; }
.guide-article ul { margin: 0; padding-left: 22px; }
.guide-article li + li { margin-top: 9px; }
.guide-callout {
  margin: 18px 0 46px;
  background: rgba(172,201,236,0.07);
}
.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 22px 0 34px;
}
.proof-grid.three { grid-template-columns: 1fr; }
.proof-card {
  margin: 0;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(30,32,34,0.5);
  overflow: hidden;
}
.proof-card img { display: block; width: 100%; height: auto; }
.proof-card figcaption { padding: 12px 14px 14px; color: var(--subtle); font-size: 12px; line-height: 1.5; }
.calculator-card, .formula-module, .trust-signal-panel {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(172,201,236,0.16);
  background: rgba(30,32,34,0.58);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.calculator-grid, .trust-signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.calculator-card label, .formula-module code {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}
.calculator-card input {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  background: rgba(13,14,16,0.68);
  color: var(--text);
  padding: 11px 12px;
  font: inherit;
}
.calculator-results {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.calculator-results output, .trust-signal-grid a, .trust-signal-grid span {
  min-height: 68px;
  padding: 13px;
  border-radius: 14px;
  background: rgba(13,14,16,0.46);
  border: 1px solid rgba(255,255,255,0.07);
  color: var(--text);
  font-weight: 700;
}
.calculator-results output small, .trust-signal-grid small {
  display: block;
  margin-bottom: 6px;
  color: var(--subtle);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.download-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 14px; }
.formula-module ul { margin-top: 12px; }
.guide-definition {
  margin: 0 0 34px;
  padding: 18px 20px;
  border: 1px solid rgba(172,201,236,0.22);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(172,201,236,0.095), rgba(30,32,34,0.42));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.guide-definition strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 17px;
  letter-spacing: -0.02em;
}
.guide-definition p { margin: 0; }
.comparison-table-wrap {
  margin-top: 18px;
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(30,32,34,0.44);
}
.comparison-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.45;
}
.comparison-table th,
.comparison-table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: var(--muted);
}
.comparison-table th {
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.035);
}
.comparison-table td:first-child {
  color: var(--text);
  font-weight: 700;
}
.comparison-table tr:last-child td { border-bottom: 0; }
.template-download {
  margin: 18px 0 0;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(30,32,34,0.58);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}
.template-download h3 { margin: 0 0 6px; font-size: 18px; }
.template-download p { margin: 0; }
.csv-template {
  display: block;
  margin: 18px 0 0;
  padding: 16px;
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(13,14,16,0.64);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  white-space: pre;
}
.guide-related {
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.guide-related h2 { margin-bottom: 18px; }
.guide-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.related-guide-card {
  min-height: 144px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(30,32,34,0.5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}
.related-guide-card span { font-weight: 700; line-height: 1.25; }
.related-guide-card small { color: var(--subtle); line-height: 1.45; }
.related-guide-card:hover {
  color: var(--text);
  border-color: rgba(172,201,236,0.28);
  background: rgba(41,42,44,0.64);
}
.guide-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 26px;
  padding-top: 6px;
}
.guide-sidebar-card {
  padding: 0 0 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: transparent;
}
.guide-sidebar-card h3 {
  margin: 0 0 13px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.guide-sidebar-card p { margin: 0 0 14px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.guide-sidebar-links { display: grid; gap: 10px; }
.guide-sidebar-links a { color: var(--muted); font-size: 14px; line-height: 1.35; }
.guide-sidebar-links a:first-child { color: var(--primary); }
.guide-sidebar-links a:hover { color: var(--primary); }
.guide-sidebar-cta {
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  background: rgba(30,32,34,0.62);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.guide-sidebar-cta h3 {
  color: var(--text);
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: none;
}
.guide-sidebar-cta .btn { width: 100%; min-height: 38px; font-size: 13px; }

.btn.mobile-toggle { display: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 960px) {
  .site-shell { width: 100%; margin-top: 0; }
  .nav-links { display: none; }
  .btn.mobile-toggle { display: inline-flex; }
  .nav.open .nav-links {
    display: grid;
    position: absolute;
    left: 12px;
    right: 12px;
    top: 68px;
    padding: 16px;
    border-radius: 14px;
    background: rgba(13,14,16,0.96);
    border: 1px solid rgba(255,255,255,0.08);
  }
  .hero { min-height: auto; padding-top: 54px; }
  .product-window { height: 480px; }
  .mac-left { gap: 10px; font-size: 11px; }
  .mac-left span:nth-child(n+5) { display: none; }
  .mac-right { gap: 10px; font-size: 11px; }
  .dashboard-card { width: calc(100% - 48px); top: 116px; padding: 20px; }
  .status-popover { width: 215px; }
  .problem-grid, .feature-grid, .feature-grid.three, .popular-guides { grid-template-columns: repeat(2, 1fr); }
  .screenshots, .privacy-band, .signup-grid, .pricing-grid, .notification-card, .guide-content { grid-template-columns: 1fr; }
  .guide-content { gap: 40px; }
  .guide-sidebar { position: static; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); }
  .guide-related-grid { grid-template-columns: 1fr; }
  .phone-status-frame { height: 340px; }
  .phone-status-frame img { padding: 0; object-fit: cover; }
  .notification-copy h3 { font-size: 24px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 24px, var(--max)); }
  .nav { padding: 0 14px; }
  .nav .logo-text { display: none; }
  .nav .logo { gap: 0; }
  .nav-actions .btn-primary { white-space: nowrap; padding-inline: 14px; }
  .hero h1, .page-hero h1 { font-size: 40px; }
  .hero-copy { padding: 0 12px; }
  .mockup-wrap { width: calc(100% - 16px); }
  .product-window { height: 520px; }
  .mac-menu-bar { padding: 0 10px; }
  .mac-left span:not(.apple-glyph):not(:nth-child(2)) { display: none; }
  .mac-right span:last-child { display: none; }
  .status-popover { width: 190px; left: auto; right: -36px; transform: none; }
  .status-popover::before { left: auto; right: 40px; transform: rotate(45deg); }
  .dashboard-card { width: calc(100% - 24px); top: 132px; }
  .metric-row { grid-template-columns: 1fr; gap: 9px; }
  .chart { display: none; }
  .problem-grid, .feature-grid, .feature-grid.three, .form-grid, .popular-guides { grid-template-columns: 1fr; }
  .guide-page { padding: 54px 0 28px; text-align: left; }
  .guide-page .breadcrumbs { justify-content: flex-start; }
  .guide-page h1 { margin-left: 0; margin-right: 0; font-size: 38px; line-height: 1.02; letter-spacing: -0.055em; }
  .guide-page p.lede { margin-left: 0; margin-right: 0; font-size: 17px; }
  .guide-author { justify-content: flex-start; margin-top: 20px; }
  .guide-author span:not(.guide-author-avatar) + span:not(.guide-author-avatar)::before { display: none; }
  .guide-trust { font-size: 11px; }
  .guide-media-card { margin-bottom: 32px; }
  .guide-media-frame { border-radius: 16px; }
  .proof-grid, .proof-grid.three, .calculator-grid, .calculator-results, .trust-signal-grid { grid-template-columns: 1fr; }
  .guide-section { padding: 28px 0; }
  .guide-article p, .guide-article li { font-size: 15px; line-height: 1.72; }
  .related-guide-card { min-height: 116px; }
  .template-download { grid-template-columns: 1fr; }
  .template-download .btn { justify-self: start; }
  .comparison-table { min-width: 620px; }
  .notification-card { padding: 18px; gap: 18px; }
  .phone-status-frame { height: 300px; border-radius: 22px; }
  .discord-status-frame { padding: 16px; }
  .discord-status-card { gap: 12px; align-items: flex-start; }
  .discord-avatar { width: 44px; height: 44px; flex-basis: 44px; }
  .discord-avatar svg { width: 29px; height: 29px; }
  .discord-name { font-size: 17px; }
  .discord-time { font-size: 12px; }
  .discord-message { font-size: 18px; }
  .notification-copy h3 { font-size: 22px; }
  .footer { flex-direction: column; }
}

/* Premium download page */
.download-page {
  position: relative;
  overflow: hidden;
}
.download-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 82% 4%, rgba(172,201,236,0.16), transparent 30%),
    radial-gradient(circle at 12% 18%, rgba(27,132,154,0.11), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.018), transparent 28%);
  pointer-events: none;
}
.download-hero-premium,
.download-flow-section,
.download-split-section,
.download-support-section {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}
.download-hero-premium {
  min-height: calc(100vh - 142px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  padding: clamp(72px, 10vw, 132px) 0 72px;
}
.download-copy { max-width: 720px; }
.download-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.download-kicker span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(227,226,229,0.055);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.download-kicker span:first-child {
  color: var(--on-primary);
  background: linear-gradient(180deg, #bdd8f5, var(--primary));
  border-color: rgba(172,201,236,0.8);
  box-shadow: 0 12px 30px rgba(172,201,236,0.16);
}
.download-copy h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(48px, 7.4vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.075em;
  font-weight: 720;
}
.download-lede {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}
.download-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.download-hero-actions .btn,
.download-card-actions .btn,
.download-support-card .btn {
  min-height: 48px;
  padding-inline: 22px;
  border-radius: 12px;
}
.buy-license-premium {
  position: relative;
  isolation: isolate;
  min-height: 56px !important;
  padding-inline: 30px !important;
  overflow: hidden;
  color: #182633;
  border-color: rgba(255,255,255,0.22);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.62), rgba(255,255,255,0.18)),
    linear-gradient(135deg, #f7e7b8 0%, #bdd8f5 48%, #c7b8ff 100%);
  box-shadow:
    0 22px 52px rgba(172,201,236,0.22),
    0 14px 34px rgba(234,191,134,0.14),
    inset 0 1px 0 rgba(255,255,255,0.68),
    inset 0 -1px 0 rgba(18,19,21,0.10);
  font-weight: 850;
  letter-spacing: -0.01em;
}
.buy-license-premium::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: 11px;
  background: linear-gradient(120deg, rgba(255,255,255,0.38), transparent 42%, rgba(255,255,255,0.25));
  opacity: 0.95;
}
.buy-license-premium::after {
  content: "→";
  font-size: 16px;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform .18s ease;
}
.buy-license-premium:hover {
  color: #101c28;
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
  box-shadow:
    0 28px 68px rgba(172,201,236,0.28),
    0 16px 40px rgba(234,191,134,0.18),
    inset 0 1px 0 rgba(255,255,255,0.72);
}
.buy-license-premium:hover::after { transform: translate(3px, -1px); }
.download-microcopy {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--subtle);
  font-size: 13px;
  line-height: 1.55;
}
.download-product-card {
  align-self: center;
  padding: 22px;
  border-radius: 28px;
}
.download-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.download-card-top img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  box-shadow: 0 18px 34px rgba(0,0,0,0.24);
}
.download-card-top span,
.download-info-label {
  display: block;
  color: var(--subtle);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.download-card-top strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: 18px;
  letter-spacing: -0.025em;
}
.download-file-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 15px;
  align-items: center;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(13,14,16,0.38);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.055);
}
.download-file-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 17px;
  color: var(--on-primary);
  background: linear-gradient(180deg, #d4e4f6, var(--primary));
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.02em;
  box-shadow: 0 18px 35px rgba(172,201,236,0.15);
}
.download-file-card h2 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.download-file-card p,
.download-receipt-flow p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.download-card-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 16px;
}
.download-card-actions .btn { width: 100%; }
.download-receipt-flow {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.09);
  display: grid;
  gap: 12px;
}
.download-receipt-flow div {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  align-items: baseline;
}
.download-receipt-flow span {
  color: var(--subtle);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.download-receipt-flow strong {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}
.download-checksum {
  margin-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 14px;
  color: var(--subtle);
  font-size: 12px;
}
.download-checksum summary {
  cursor: pointer;
  color: var(--muted);
  font-weight: 700;
}
.download-checksum code {
  display: block;
  margin-top: 10px;
  overflow-wrap: anywhere;
  line-height: 1.55;
}
.download-flow-section { padding: 34px 0 72px; }
.download-section-heading {
  max-width: 720px;
  margin-bottom: 24px;
}
.download-section-heading h2 {
  margin-top: 14px;
  margin-bottom: 10px;
}
.download-section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.download-flow-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-radius: 26px;
  padding: 8px;
}
.download-step-row {
  position: relative;
  padding: 24px;
  min-height: 192px;
}
.download-step-row + .download-step-row {
  border-left: 1px solid rgba(255,255,255,0.09);
}
.download-step-number {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.download-step-row h3,
.download-faq-grid h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.download-step-row p,
.download-info-card p,
.download-support-card p,
.download-faq-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.download-split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 10px 0 72px;
}
.download-info-card,
.download-support-card,
.download-faq-grid article {
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(30,32,34,0.52);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.055);
}
.download-info-card {
  min-height: 262px;
  padding: 28px;
  border-radius: 24px;
}
.download-info-card h2 {
  margin: 16px 0 12px;
  font-size: clamp(26px, 3vw, 36px);
}
.download-support-section { padding: 0 0 92px; }
.download-support-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 30px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 0% 0%, rgba(172,201,236,0.12), transparent 36%),
    rgba(30,32,34,0.58);
}
.download-support-card h2 {
  max-width: 760px;
  margin: 12px 0 10px;
  font-size: clamp(28px, 3.8vw, 44px);
}
.download-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}
.download-faq-grid article {
  padding: 22px;
  border-radius: 20px;
}

@media (max-width: 960px) {
  .download-hero-premium {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 58px;
  }
  .download-product-card { max-width: 520px; width: 100%; }
  .download-flow-panel,
  .download-split-section,
  .download-faq-grid { grid-template-columns: 1fr; }
  .download-step-row { min-height: 0; }
  .download-step-row + .download-step-row {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.09);
  }
  .download-step-number { margin-bottom: 24px; }
  .download-support-card { grid-template-columns: 1fr; }
  .download-support-card .btn { justify-self: start; }
}

@media (max-width: 620px) {
  .download-hero-premium,
  .download-flow-section,
  .download-split-section,
  .download-support-section {
    width: min(100% - 24px, var(--max));
  }
  .download-copy h1 { font-size: 44px; }
  .download-lede { font-size: 16px; }
  .download-hero-actions .btn { width: 100%; }
  .download-product-card,
  .download-info-card,
  .download-support-card { border-radius: 20px; }
  .download-product-card { padding: 16px; }
  .download-file-card { grid-template-columns: 1fr; }
  .download-file-icon { width: 52px; height: 52px; }
  .download-receipt-flow div { grid-template-columns: 1fr; gap: 4px; }
  .download-flow-panel { padding: 0; }
  .download-step-row { padding: 22px; }
  .download-info-card,
  .download-support-card,
  .download-faq-grid article { padding: 22px; }
  .download-support-card .btn { width: 100%; }
}

.download-confidence-section {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  padding: 8px 0 72px;
}
.download-confidence-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: start;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 28px;
}
.download-confidence-copy h2 {
  margin: 14px 0 14px;
  max-width: 520px;
  font-size: clamp(32px, 4.6vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.download-confidence-copy p {
  margin: 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.download-unlocks-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.download-unlocks-grid div {
  min-height: 116px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(13,14,16,0.34);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.download-unlocks-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.download-unlocks-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.download-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}
.download-trust-strip article {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(30,32,34,0.48);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.055);
}
.download-trust-strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.download-trust-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.download-page a:not(.btn) {
  color: var(--primary);
}
.download-text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 750;
}

@media (max-width: 960px) {
  .download-confidence-panel,
  .download-trust-strip { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .download-confidence-section {
    width: min(100% - 24px, var(--max));
  }
  .download-confidence-panel { padding: 22px; border-radius: 20px; }
  .download-unlocks-grid { grid-template-columns: 1fr; }
  .download-unlocks-grid div { min-height: 0; }
}

/* Release notes page */
.release-page {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  padding-bottom: 90px;
}
.release-hero {
  padding: clamp(70px, 10vw, 126px) 0 58px;
  max-width: 860px;
}
.release-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(227,226,229,0.055);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.release-hero h1 {
  margin: 22px 0 18px;
  font-size: clamp(48px, 7.4vw, 86px);
  line-height: 0.94;
  letter-spacing: -0.07em;
}
.release-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.release-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.release-timeline { display: grid; gap: 18px; }
.release-card {
  padding: clamp(24px, 4vw, 42px);
  border-radius: 28px;
}
.release-card-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.release-version {
  display: block;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.release-card-header h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
}
.release-card-header time {
  color: var(--subtle);
  font-size: 13px;
  white-space: nowrap;
}
.release-summary {
  max-width: 820px;
  margin: 24px 0 26px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.release-note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.release-note-grid section {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(13,14,16,0.34);
}
.release-note-grid h3 {
  margin: 0 0 12px;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.release-note-grid ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
}
.release-note-grid li + li { margin-top: 7px; }
.release-note-grid a,
.release-support a:not(.btn) { color: var(--primary); }
.release-support {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 28px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(30,32,34,0.52);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.055);
}
.release-support h2 {
  margin: 12px 0 10px;
  font-size: clamp(28px, 3.8vw, 42px);
}
.release-support p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 760px) {
  .release-page { width: min(100% - 24px, var(--max)); }
  .release-card-header,
  .release-note-grid,
  .release-support { grid-template-columns: 1fr; }
  .release-card-header time { white-space: normal; }
  .release-support .btn { justify-self: start; }
}
