/* Piirus — matches the desktop app (indigo-violet, soft cards) */
:root {
  --bg: #30283A;
  --bg-elev: #3A3348;
  --card: #2C2636;
  --border: rgba(243, 232, 255, 0.10);
  --border-strong: rgba(112, 95, 182, 0.45);
  --text: #F3E8FF;
  --muted: #E9D5FF;
  --faint: #C4B8D8;
  --accent: #705FB6;
  --accent-2: #A78BFA;
  --accent-dim: rgba(112, 95, 182, 0.22);
  --purple: #705FB6;
  --purple-deep: #30283A;
  --indigo: #1E1B4B;
  --indigo-deep: #16143D;
  --tan: #AE7E56;
  --ok: #22C55E;
  --danger: #FF3D5A;
  --radius: 17px;
  --shadow: 0 2px 18px rgba(18, 16, 24, 0.28);
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Instrument Sans", var(--font);
  --max: 1100px;
  --header-h: 64px;
  --btn-grad: linear-gradient(135deg, #6A5EB4, #705FB6 50%, #7660B8);
  --tan-grad: linear-gradient(135deg, #A87850, #AE7E56 50%, #B4845C);
  --text-shadow: 0 1px 10px rgba(6, 4, 14, 0.264);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow: visible;
  height: auto;
}
body {
  margin: 0;
  overflow: visible;
  height: auto;
  font-family: var(--font);
  background:
    radial-gradient(ellipse 95% 58% at 50% 12%, rgba(130, 96, 176, 0.40), transparent 62%),
    #30283A;
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
  text-shadow: var(--text-shadow);
  touch-action: pan-y;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
code { font-size: 0.9em; color: #c4b5fd; }

/* Header */
.site-header {
  position: relative;
  z-index: 50;
  height: var(--header-h);
  display: flex; align-items: center;
  background: #1A1628;
}
body:is(.page-home, .page-features, .page-purchase, .page-auth, .page-legal) .site-header {
  position: absolute;
  left: 0;
  right: 0;
  top: 1.1rem;
  height: auto;
  background: transparent;
}
.header-inner {
  width: min(100% - 2rem, var(--max));
  max-width: calc(100% - 2rem);
  min-width: 0;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
body:is(.page-home, .page-features, .page-purchase, .page-auth, .page-legal) .header-inner {
  background: rgba(62, 54, 88, 0.45);
  border: 0;
  border-radius: 16px;
  padding: 1rem 1.5rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 28px rgba(8, 6, 16, 0.32);
}
.logo { display: flex; align-items: center; gap: 0.55rem; color: var(--text); text-decoration: none; opacity: 0.85; }
.logo:hover { text-decoration: none; }
.logo-img {
  width: 40px; height: 40px;
  border-radius: 0;
  display: block;
  object-fit: contain;
  background: none;
  padding: 0;
}
.logo-mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  display: grid; place-items: center; font-weight: 700; font-size: 0.95rem; color: #fff;
}
.logo-text { font-family: var(--display); font-weight: 700; letter-spacing: -0.02em; color: #fff; }
.logo-wordmark {
  display: block;
  height: 16px;
  width: auto;
}
.nav { display: flex; align-items: center; gap: 0.2rem; flex-wrap: wrap; }
.nav a {
  color: var(--muted);
  padding: 0.45rem 0.8rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background: transparent;
  border: 1px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.12s, box-shadow 0.15s;
}
.nav a:hover {
  color: #fff;
  background: rgba(112, 95, 182, 0.42);
  border-color: rgba(196, 181, 253, 0.28);
  box-shadow: 0 2px 12px rgba(18, 16, 24, 0.28);
  text-decoration: none;
}
.nav a.is-active {
  color: #fff;
  background: rgba(112, 95, 182, 0.28);
}
.nav a.btn {
  border: 0;
}
.nav a.btn-green {
  border: 0;
}
.nav a.btn-green:hover {
  filter: brightness(1.08);
  box-shadow: none;
  background: linear-gradient(135deg, #1E8A46, #22A653 52%, #2FC466);
  border: 0;
}
.nav .btn { margin-left: 0.35rem; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 10px 8px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 1px;
}

.main {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto 3rem;
  padding-top: 1.5rem;
}
body:is(.page-home, .page-features, .page-purchase, .page-auth, .page-legal) .main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}
body:is(.page-home, .page-features, .page-purchase, .page-auth, .page-legal) .main > .flash {
  width: min(100% - 2rem, var(--max));
  margin: 0.75rem auto 0;
}
.content-wrap {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 2.5rem 0 0;
}
body:is(.page-home, .page-features, .page-purchase, .page-auth, .page-legal) .content-wrap {
  width: 100%;
  max-width: none;
  padding: 4.75rem 0 4.5rem;
  position: relative;
  z-index: 1;
  isolation: isolate;
  background: transparent;
  border-top: 1px solid rgba(232, 226, 245, 0.28);
  box-shadow: 0 -16px 36px rgba(6, 4, 14, 0.42);
}
body:is(.page-features, .page-purchase, .page-auth, .page-legal) .content-wrap {
  padding-top: calc(var(--header-h) + 4.5rem);
  border-top: 0;
  box-shadow: none;
}
body.page-auth .content-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--header-h) + 3.25rem);
  padding-bottom: 3.25rem;
}
body:is(.page-home, .page-features, .page-purchase, .page-auth, .page-legal) .content-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.5;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 55% at 8% 12%, rgba(139, 92, 246, 0.42), transparent 58%),
    radial-gradient(ellipse 70% 50% at 92% 18%, rgba(16, 185, 129, 0.30), transparent 56%),
    radial-gradient(ellipse 65% 48% at 86% 82%, rgba(37, 99, 235, 0.36), transparent 58%),
    radial-gradient(ellipse 55% 42% at 14% 78%, rgba(6, 182, 212, 0.22), transparent 52%),
    radial-gradient(ellipse 50% 40% at 48% 58%, rgba(168, 85, 247, 0.18), transparent 55%),
    linear-gradient(168deg, #241A38 0%, #1B1732 38%, #152036 72%, #14242C 100%);
}
body:is(.page-home, .page-features, .page-purchase, .page-auth, .page-legal) .content-wrap > * {
  width: min(100% - 2rem, var(--max));
  margin-left: auto;
  margin-right: auto;
}
body:is(.page-home, .page-features, .page-purchase, .page-auth, .page-legal) .site-footer {
  position: relative;
  z-index: 1;
  isolation: auto;
  background: #000;
  border-top: 0;
}

.site-footer {
  position: relative;
  z-index: 1;
  background: #000;
  border-top: 0;
  padding: 1.5rem 0;
  color: var(--faint);
  font-size: 0.88rem;
}
.footer-inner {
  width: min(100% - 2rem, var(--max)); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.footer-nav { display: flex; flex-wrap: wrap; gap: 0.35rem 0.9rem; }
.footer-nav a { color: var(--muted); font-weight: 600; text-decoration: none; }
.footer-nav a:hover { color: #fff; text-decoration: none; }

/* ── Full-page hero ─────────────────────────────────── */
.hero-full {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 3.5rem) 1.25rem 4.5rem;
  overflow: visible;
  isolation: auto;
  z-index: 1;
}
body:is(.page-home, .page-features, .page-purchase, .page-auth, .page-legal) .hero-full-bg.hero-dots {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
body:is(.page-home, .page-features, .page-purchase, .page-auth, .page-legal) .hero-full-overlay {
  z-index: 0;
  pointer-events: none;
}
body:is(.page-home, .page-features, .page-purchase, .page-auth, .page-legal) .hero-full-inner {
  position: relative;
  z-index: 1;
}
.hero-full-bg {
 position: absolute;
  inset: 0;
  z-index: -2;
  background: #1A1628;
  overflow: hidden;
}
.hero-full-bg.hero-dots {
  background: #0b1220;
  overflow: hidden;
}
.hero-dotfield {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3em;
  height: 3em;
  font: 72px/1.3 serif;
  color: transparent;
  mix-blend-mode: screen;
  will-change: transform;
  pointer-events: none;
  animation: hero-dots-move 100s ease-in-out infinite alternate;
}
.hero-dotfield::before {
  content: ".";
  display: block;
}
.hero-dotfield-1 { animation-duration: 80s; animation-delay: -25s; }
.hero-dotfield-2 { animation-duration: 100s; animation-delay: -55s; }
.hero-dotfield-3 { animation-duration: 90s; animation-delay: -15s; }
.hero-dotfield-4 { animation-duration: 110s; animation-delay: -70s; }
.hero-dotfield-1::before {
  text-shadow:
    0.876em 1.471em 24px hsla(255,93%,73%,0.97),
    3.614em -0.823em 24px hsla(188,100%,67%,0.97),
    3.192em -1.416em 16px hsla(136,85%,50%,0.97),
    3.306em 2.299em 12px hsla(262,100%,71%,0.94),
    2.247em 1.816em 14px hsla(196,100%,56%,0.97),
    -1.770em -1.779em 14px hsla(144,96%,50%,0.94),
    0.019em 1.664em 14px hsla(268,98%,63%,0.9),
    1.198em 2.107em 18px hsla(204,100%,69%,0.97),
   4.571em 3.209em 22px hsla(152,86%,58%,0.86),
    1.288em -1.816em 20px hsla(274,82%,73%,0.82),
    3.557em 0.396em 12px hsla(212,86%,61%,0.86),
    4.104em -1.676em 18px hsla(158,87%,59%,0.82),
    1.650em -0.769em 22px hsla(280,94%,68%,0.82),
    -0.084em -1.906em 18px hsla(220,92%,65%,0.86),
    2.608em -1.932em 18px hsla(164,91%,51%,0.97),
    -0.919em 1.155em 22px hsla(286,87%,69%,0.94),
    -1.408em 0.609em 14px hsla(228,84%,66%,0.97),
    -0.132em 3.486em 14px hsla(170,78%,61%,0.97),
   2.164em -1.378em 14px hsla(290,83%,75%,0.9),
    -2.135em 1.784em 24px hsla(236,95%,73%,0.82),
    -1.695em -0.706em 22px hsla(176,79%,54%,0.97),
    0.307em 1.857em 14px hsla(255,96%,73%,0.97),
    -1.277em 0.394em 22px hsla(188,97%,64%,0.86),
    3.361em -0.453em 14px hsla(136,85%,60%,0.86),
    2.471em 0.407em 18px hsla(262,100%,62%,0.94),
    -1.878em -1.324em 20px hsla(196,95%,59%,0.94),
    -0.453em 3.107em 20px hsla(144,93%,56%,0.97),
    -1.007em 2.466em 12px hsla(268,89%,63%,0.94),
   1.604em 3.285em 20px hsla(204,94%,66%,0.86),
    4.038em -0.735em 12px hsla(152,80%,58%,0.94),
    0.831em -1.625em 14px hsla(274,88%,70%,0.97),
    1.691em -1.184em 16px hsla(212,89%,67%,0.9),
    2.267em 2.286em 20px hsla(158,81%,62%,0.82),
    4.080em 0.944em 16px hsla(280,94%,62%,0.82),
    1.869em -1.536em 12px hsla(220,98%,68%,0.86),
    4.596em -1.533em 20px hsla(164,88%,50%,0.86),
    1.784em -0.915em 20px hsla(255,92%,66%,0.82),
    2.377em -0.784em 14px hsla(188,92%,66%,0.88),
   -0.031em 0.691em 16px hsla(136,88%,58%,0.82),
    0.806em 1.346em 14px hsla(262,96%,62%,0.88),
    2.189em 0.466em 14px hsla(196,82%,66%,0.96),
    -0.209em -1.469em 20px hsla(144,92%,62%,0.96),
    3.233em -0.688em 12px hsla(268,96%,66%,0.82),
    3.877em -0.770em 12px hsla(204,92%,54%,0.92),
    2.673em -2.138em 20px hsla(152,88%,54%,0.96),
    -1.098em -1.766em 14px hsla(274,96%,62%,0.96),
    -1.202em 3.369em 20px hsla(212,92%,58%,0.82),
    4.467em -1.765em 20px hsla(158,92%,70%,0.96),
   3.638em -1.415em 22px hsla(280,100%,70%,0.96),
    3.304em -1.274em 14px hsla(220,88%,70%,0.96),
    4.621em 4.193em 12px hsla(164,88%,62%,0.92),
    0.300em -1.807em 20px hsla(286,92%,66%,0.82),
    -1.014em 2.282em 16px hsla(228,82%,62%,0.88),
    -0.600em -0.851em 12px hsla(170,100%,62%,0.88),
    -1.712em 2.112em 14px hsla(290,82%,54%,0.96),
    3.768em 0.828em 20px hsla(236,82%,62%,0.88),
    3.294em 0.910em 14px hsla(176,100%,70%,0.92),
    0.007em 3.984em 16px hsla(255,92%,62%,0.96),
   0.486em -1.841em 14px hsla(188,100%,54%,0.88),
    -1.333em -1.405em 16px hsla(136,82%,62%,0.82);
}
.hero-dotfield-2::before {
  text-shadow:
    4.316em -1.130em 12px hsla(255,96%,73%,0.86),
    2.573em 2.585em 16px hsla(188,94%,61%,0.9),
    4.324em -0.019em 20px hsla(136,85%,60%,0.94),
    2.615em -1.700em 12px hsla(262,100%,68%,0.9),
    0.666em -0.881em 12px hsla(196,100%,68%,0.97),
   -1.784em 0.024em 16px hsla(144,90%,53%,0.94),
    -0.075em 2.843em 22px hsla(268,98%,63%,0.9),
    3.412em 2.139em 14px hsla(204,100%,60%,0.9),
    1.416em -1.800em 16px hsla(152,92%,58%,0.97),
    3.799em 0.463em 14px hsla(274,88%,76%,0.9),
    0.501em -1.844em 20px hsla(212,98%,70%,0.97),
    1.385em 2.697em 20px hsla(158,87%,50%,0.82),
    4.576em 0.205em 18px hsla(280,97%,62%,0.86),
    1.282em 0.484em 12px hsla(220,100%,65%,0.86),
    -1.995em 0.333em 14px hsla(164,88%,54%,0.86),
   0.816em -1.611em 14px hsla(286,87%,60%,0.82),
    -0.874em -1.244em 14px hsla(228,96%,69%,0.82),
    3.556em 1.091em 20px hsla(170,78%,64%,0.9),
    4.541em 2.611em 18px hsla(290,89%,66%,0.9),
    4.292em -1.313em 24px hsla(236,100%,70%,0.82),
    -2.076em 1.100em 22px hsla(176,78%,60%,0.82),
    -1.035em 2.291em 18px hsla(255,90%,67%,0.82),
    -1.680em -0.818em 22px hsla(188,94%,61%,0.97),
    -0.466em 3.370em 14px hsla(136,82%,54%,0.82),
    1.750em 1.834em 18px hsla(262,95%,62%,0.97),
   3.472em -1.763em 18px hsla(196,100%,56%,0.86),
    -0.818em 1.038em 18px hsla(144,84%,59%,0.94),
    -0.474em 3.514em 12px hsla(268,92%,60%,0.97),
    -1.127em 3.514em 22px hsla(204,100%,60%,0.82),
    1.192em 1.743em 12px hsla(152,89%,52%,0.9),
    3.011em -1.975em 22px hsla(274,91%,67%,0.94),
    1.435em -1.133em 16px hsla(212,92%,58%,0.94),
    1.937em -1.335em 24px hsla(158,90%,62%,0.9),
    -0.304em 3.236em 16px hsla(280,91%,68%,0.9),
    1.373em 0.157em 24px hsla(220,100%,71%,0.94),
   3.358em 4.037em 14px hsla(164,91%,57%,0.9),
    3.100em 2.056em 18px hsla(255,88%,58%,0.96),
    4.579em 0.623em 18px hsla(188,82%,70%,0.92),
    -0.949em 1.062em 20px hsla(136,100%,58%,0.96),
    -0.047em -1.352em 18px hsla(262,82%,70%,0.88),
    3.020em 0.750em 18px hsla(196,92%,54%,0.88),
    3.858em 2.887em 12px hsla(144,96%,62%,0.82),
    -1.127em 3.839em 12px hsla(268,92%,58%,0.88),
    2.563em 2.118em 18px hsla(204,88%,62%,0.92),
    -1.018em -0.272em 18px hsla(152,88%,62%,0.82),
   2.016em 3.031em 18px hsla(274,100%,70%,0.92),
    0.116em -1.157em 20px hsla(212,92%,62%,0.82),
    4.607em 1.676em 12px hsla(158,82%,70%,0.96),
    1.705em -0.094em 16px hsla(280,88%,62%,0.96),
    4.500em -0.205em 22px hsla(220,88%,70%,0.88),
    2.382em 0.881em 18px hsla(164,82%,54%,0.88),
    0.098em 2.090em 18px hsla(286,100%,58%,0.82),
    1.199em -0.961em 14px hsla(228,82%,54%,0.82),
    1.173em -2.158em 14px hsla(170,100%,54%,0.88),
    0.568em 4.148em 20px hsla(290,92%,66%,0.96),
   -0.646em 2.093em 22px hsla(236,96%,70%,0.88),
    -1.876em 0.796em 20px hsla(176,88%,54%,0.88),
    -2.258em 0.559em 12px hsla(255,92%,70%,0.96),
    4.064em 0.395em 18px hsla(188,92%,62%,0.88),
    -0.602em -1.539em 20px hsla(136,100%,70%,0.96);
}
.hero-dotfield-3::before {
  text-shadow:
    1.678em 1.920em 24px hsla(255,90%,73%,0.97),
    3.980em -0.844em 22px hsla(188,100%,70%,0.9),
   4.370em 1.275em 18px hsla(136,88%,50%,0.9),
    0.614em 1.213em 12px hsla(262,100%,71%,0.9),
    4.110em 1.445em 22px hsla(196,92%,56%,0.82),
    -0.029em 3.503em 14px hsla(144,84%,56%,0.82),
    2.244em 2.771em 20px hsla(268,92%,66%,0.82),
    0.206em 2.083em 20px hsla(204,100%,69%,0.86),
    2.474em 3.451em 16px hsla(152,92%,52%,0.82),
    -1.187em -1.258em 16px hsla(274,82%,64%,0.94),
    -0.327em -0.742em 14px hsla(212,95%,67%,0.97),
    1.020em 0.220em 20px hsla(158,87%,56%,0.94),
   -1.722em 0.983em 18px hsla(280,94%,62%,0.86),
    -2.099em 1.362em 18px hsla(220,98%,65%,0.94),
    2.760em 0.997em 22px hsla(164,82%,60%,0.9),
    0.946em 0.617em 20px hsla(286,93%,66%,0.94),
    3.760em 3.963em 18px hsla(228,93%,60%,0.94),
    -0.040em 3.934em 14px hsla(170,78%,55%,0.9),
    2.030em -0.226em 20px hsla(290,83%,72%,0.94),
    0.751em 3.019em 22px hsla(236,95%,76%,0.97),
    -1.963em 2.630em 22px hsla(176,78%,57%,0.94),
    -1.573em -0.324em 20px hsla(255,84%,76%,0.82),
   -0.849em -0.831em 20px hsla(188,94%,58%,0.82),
    1.701em 4.173em 22px hsla(136,88%,50%,0.86),
    0.611em 3.683em 24px hsla(262,92%,71%,0.82),
    3.107em 1.646em 14px hsla(196,100%,59%,0.82),
    0.075em -1.450em 22px hsla(144,93%,56%,0.82),
    2.932em 3.181em 12px hsla(268,86%,69%,0.9),
    2.007em 0.026em 14px hsla(204,100%,60%,0.9),
    0.430em 2.659em 16px hsla(152,83%,52%,0.97),
    -0.819em -1.205em 12px hsla(274,85%,73%,0.97),
    -1.315em 2.960em 20px hsla(212,95%,67%,0.9),
   2.146em -0.544em 12px hsla(158,78%,50%,0.86),
    0.093em 0.240em 16px hsla(280,91%,68%,0.97),
    3.469em -1.946em 18px hsla(220,100%,71%,0.97),
    -0.282em 2.494em 14px hsla(164,82%,54%,0.86),
    -2.172em 4.194em 14px hsla(255,82%,70%,0.92),
    1.680em 4.310em 14px hsla(188,96%,66%,0.82),
    -0.553em 1.390em 22px hsla(136,82%,70%,0.82),
    2.604em -1.288em 16px hsla(262,82%,70%,0.96),
    -0.383em 3.996em 14px hsla(196,88%,62%,0.88),
    -1.270em 1.687em 12px hsla(144,88%,70%,0.92),
   1.384em -0.555em 22px hsla(268,82%,62%,0.92),
    3.445em 2.361em 14px hsla(204,92%,54%,0.96),
    -1.186em 4.240em 14px hsla(152,82%,58%,0.96),
    -1.726em 4.105em 18px hsla(274,82%,62%,0.88),
    4.312em 4.155em 22px hsla(212,82%,66%,0.82),
    -1.632em -1.310em 16px hsla(158,88%,54%,0.82),
    -0.540em 2.516em 12px hsla(280,92%,58%,0.88),
    2.462em -1.938em 20px hsla(220,88%,70%,0.88),
    2.294em -1.779em 18px hsla(164,96%,58%,0.88),
    1.319em 2.225em 20px hsla(286,96%,62%,0.82),
   1.055em 2.138em 18px hsla(228,82%,70%,0.92),
    3.926em 0.657em 14px hsla(170,96%,70%,0.88),
    4.037em 1.361em 18px hsla(290,100%,54%,0.92),
    2.539em -1.173em 16px hsla(236,92%,62%,0.88),
    4.735em 0.864em 16px hsla(176,82%,70%,0.92),
    -0.809em 4.343em 16px hsla(255,100%,58%,0.92),
    -0.556em 1.316em 12px hsla(188,88%,54%,0.82),
    3.553em 2.115em 20px hsla(136,82%,66%,0.96);
}
.hero-dotfield-4::before {
 text-shadow:
    0.578em 1.360em 24px hsla(255,84%,67%,0.94),
    -0.669em -1.820em 12px hsla(188,100%,58%,0.82),
    -1.135em 1.185em 16px hsla(136,91%,60%,0.94),
    3.009em 2.154em 16px hsla(262,89%,68%,0.9),
    1.997em -1.306em 12px hsla(196,100%,56%,0.9),
    4.321em -1.332em 22px hsla(144,90%,50%,0.9),
    0.424em 0.959em 14px hsla(268,89%,63%,0.9),
    2.880em 2.815em 12px hsla(204,100%,60%,0.9),
    0.313em 0.919em 18px hsla(152,92%,64%,0.86),
   -0.614em 0.825em 24px hsla(274,88%,76%,0.82),
    -0.310em -1.942em 12px hsla(212,98%,70%,0.97),
    1.494em 4.167em 16px hsla(158,90%,53%,0.94),
    -1.442em 0.109em 24px hsla(280,91%,74%,0.82),
    4.593em 2.716em 22px hsla(220,100%,71%,0.82),
    -1.230em 3.782em 22px hsla(164,82%,60%,0.9),
    4.063em -1.609em 12px hsla(286,84%,69%,0.9),
    -0.987em 1.247em 22px hsla(228,87%,60%,0.9),
    1.085em 4.064em 12px hsla(170,86%,64%,0.9),
    1.515em 1.023em 16px hsla(290,89%,72%,0.94),
   0.541em 1.392em 18px hsla(236,89%,70%,0.9),
    -1.304em -1.180em 14px hsla(176,78%,63%,0.94),
    2.227em 3.654em 12px hsla(255,90%,76%,0.86),
    -0.306em 1.307em 24px hsla(188,100%,61%,0.82),
    2.569em 1.472em 12px hsla(136,94%,54%,0.94),
    2.505em 4.133em 18px hsla(262,95%,65%,0.86),
    4.093em 0.268em 12px hsla(196,95%,62%,0.94),
    -1.211em -1.970em 18px hsla(144,93%,59%,0.97),
    4.346em 2.603em 22px hsla(268,98%,69%,0.86),
    -0.699em 2.287em 22px hsla(204,94%,66%,0.9),
   -2.106em 2.323em 20px hsla(152,83%,55%,0.86),
    1.497em -1.521em 12px hsla(274,91%,76%,0.97),
    -1.852em 3.462em 18px hsla(212,89%,64%,0.86),
    2.416em 2.272em 16px hsla(158,90%,62%,0.9),
    4.449em 1.853em 16px hsla(280,88%,62%,0.86),
    -1.403em -1.900em 12px hsla(220,95%,74%,0.82),
    3.633em 3.737em 14px hsla(164,91%,54%,0.94),
    -1.770em 0.479em 12px hsla(255,100%,54%,0.82),
    -0.004em 0.414em 12px hsla(188,82%,66%,0.82),
    1.431em -1.018em 20px hsla(136,88%,58%,0.88),
   4.203em 2.623em 16px hsla(262,96%,62%,0.82),
    -0.404em 3.966em 20px hsla(196,100%,58%,0.82),
    -2.023em -1.579em 18px hsla(144,96%,70%,0.88),
    1.540em 3.419em 12px hsla(268,100%,58%,0.92),
    -2.186em 1.250em 16px hsla(204,92%,58%,0.96),
    4.690em -0.802em 14px hsla(152,96%,62%,0.92),
    1.245em -0.900em 12px hsla(274,88%,62%,0.82),
    0.892em -2.126em 18px hsla(212,82%,54%,0.92),
    4.556em 3.030em 12px hsla(158,92%,70%,0.92),
    1.695em -0.335em 14px hsla(280,96%,54%,0.88),
   1.710em 1.895em 12px hsla(220,92%,66%,0.82),
    -0.577em 0.495em 14px hsla(164,88%,58%,0.96),
    3.192em -0.890em 18px hsla(286,88%,66%,0.82),
    -1.710em -1.306em 18px hsla(228,88%,70%,0.96),
    3.300em 0.809em 12px hsla(170,100%,66%,0.96),
    1.036em 3.675em 18px hsla(290,88%,70%,0.96),
    0.651em 3.754em 16px hsla(236,92%,54%,0.96),
    0.238em 1.112em 12px hsla(176,96%,70%,0.92),
    3.292em -1.968em 20px hsla(255,82%,66%,0.82),
    -1.046em 4.008em 20px hsla(188,100%,54%,0.82),
   3.989em 1.644em 14px hsla(136,82%,58%,0.82);
}
@keyframes hero-dots-move {
  from { transform: rotate(0deg) scale(16.25) translate3d(-72px, 36px, 0); }
  to { transform: rotate(360deg) scale(23.75) translate3d(72px, -36px, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-dotfield { animation: none; }
}
.hero-full-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(26, 22, 40, 0.08) 0%, rgba(26, 22, 40, 0.16) 100%);
  pointer-events: none;
}
.hero-full-inner {
  width: 100%;
  max-width: 1080px;
  min-width: 0;
  text-align: center;
  margin-top: 5.5rem;
}
.hero-core {
  margin-top: 4.25rem;
}
.hero-core .eyebrow {
  color: #fff;
}
.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 1.15rem;
}
.hero-shield {
  display: block;
  width: min(168px, 38vw);
  height: auto;
  margin: 0 auto 0.55rem;
  opacity: 0.85;
  filter: none;
}
.hero-wordmark {
  display: block;
  width: min(168px, 38vw);
  height: auto;
  opacity: 0.92;
}
.hero-full h1 {
  font-family: var(--display);
  font-size: clamp(1.35rem, 3.2vw, 2.45rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.7rem;
  white-space: nowrap;
}
.hero-full h1 em {
  font-style: normal;
  color: #fff;
}
.hero-full .lede {
  color: rgba(243, 240, 255, 0.95);
  font-size: clamp(1.22rem, 2.1vw, 1.45rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  max-width: none;
  margin: 0 auto 1.4rem;
  line-height: 1.4;
  white-space: nowrap;
}
.hero-full .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}
.hero-actions .btn-green {
  box-shadow: none;
}
.hero-actions .btn-blue {
  box-shadow: none;
}
.hero-businesses {
  margin: 10.5rem auto 0;
  width: min(100%, 920px);
  min-width: 0;
}
.hero-businesses .eyebrow {
  color: #fff;
  font-size: 1.08rem;
  letter-spacing: 0.14em;
  margin: 0 0 2rem;
}
.hero-biz-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem 1.75rem;
  align-items: center;
}
.hero-biz-row figure {
  margin: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.hero-biz-row img {
  display: block;
  height: auto;
  width: auto;
  max-height: 104px;
  max-width: 100%;
  object-fit: contain;
}
.hero-biz-netforge-wrap {
  align-items: flex-start;
}
.hero-biz-row img.hero-biz-netforge {
  max-width: 68%;
}
.hero-biz-row img.hero-biz-whitehouse {
  max-height: 78px;
  max-width: 78%;
}
.hero-biz-sub {
  color: #fff;
  font-family: VT323, "Courier New", ui-monospace, monospace;
  font-style: normal;
  font-size: 1.15rem;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-reviews {
  min-width: 0;
  text-align: left;
}
.hero-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem 0;
  min-width: 0;
}
.hero-reviews figure {
  margin: 0;
  padding: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: none;
  border: 0;
  border-radius: 0;
}
.hero-reviews figure + figure {
  border-left: 1px solid rgba(243, 232, 255, 0.18);
  margin-left: 1.75rem;
  padding-left: 1.75rem;
}
.hero-stars {
  margin: 0 0 0.45rem;
  color: #FBBF24;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}
.hero-reviews blockquote {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(233, 226, 248, 0.86);
  font-weight: 400;
}
.hero-reviews figcaption {
  margin: 0 0 0.25rem;
  padding: 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(196, 181, 253, 0.9);
}
.hero-full .hero-meta {
  margin: 1.25rem 0 0;
  font-size: 0.88rem;
  color: rgba(184, 176, 212, 0.9);
}
.hero-full .hero-meta strong { color: var(--accent); font-weight: 600; }

.eyebrow {
  margin: 0 0 0.5rem; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent);
}
.lede { color: var(--muted); font-size: 1.05rem; max-width: 36rem; margin: 0 0 1.25rem; }
.plain-list {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  max-width: 36rem;
  color: var(--muted);
}
.plain-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
}
.plain-list li:last-child { border-bottom: 0; }
.more-link { margin: 0; }
.more-link a { font-weight: 600; }
.home-close {
  text-align: center;
  padding: 0.25rem 0 1.5rem;
}
.home-close p {
  color: var(--muted);
  margin: 0 0 1rem;
}

/* Compact content blocks */
.home-story,
.home-panel,
.home-letter,
.home-what,
.home-tiers,
.hero-reviews,
.feat-section,
.cta-band {
  margin: 0 0 2.75rem;
  padding: 4rem 4.2rem 4.2rem;
  background: rgba(62, 54, 88, 0.45);
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(8, 6, 16, 0.28);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.home-panel .section-tight:last-child { margin-bottom: 0; }
.home-letter {
  padding: 4.3rem 4.2rem 4.3rem;
}
.home-letter .eyebrow { color: #C4B5FD; }
.home-letter h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.18;
  margin: 0 0 1.15rem;
}
.home-letter-hello {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: #fff;
}
.home-letter-body p {
  margin: 0 0 0.95rem;
  color: rgba(233, 226, 248, 0.88);
  font-size: 1.05rem;
  line-height: 1.7;
}
.home-letter-body p:last-child { margin-bottom: 0; }
.home-letter-sign {
  margin: 1.5rem 0 0;
  font-family: var(--display);
  font-size: 1.02rem;
  line-height: 1.45;
  color: rgba(243, 240, 255, 0.92);
}
.home-letter-sign strong {
  display: inline-block;
  margin-top: 0.15rem;
  font-size: 1.15rem;
}
.home-letter-sign span {
  display: inline-block;
  margin-top: 0.1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(196, 181, 253, 0.9);
}
.home-story .eyebrow,
.home-panel .eyebrow {
  color: #C4B5FD;
}
.home-what .eyebrow { color: #C4B5FD; }
.home-what .home-letter-body { margin-bottom: 1.35rem; }
.home-what .more-link { margin-top: 1.25rem; }
.home-tiers .eyebrow { color: #C4B5FD; }
.home-tiers > .lede {
  margin: -0.35rem 0 1.5rem;
  color: rgba(233, 226, 248, 0.86);
  font-size: 1.05rem;
  max-width: 38rem;
}
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}
.tier-card {
  display: flex;
  flex-direction: column;
  background: rgba(243, 232, 255, 0.05);
  border-radius: 14px;
  padding: 2rem 1.85rem 1.95rem;
  min-height: 0;
}
.tier-card {
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(243, 232, 255, 0.06);
  transition: background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
.tier-card.is-featured {
  background: rgba(243, 232, 255, 0.05);
  box-shadow: inset 0 0 0 1px rgba(243, 232, 255, 0.06);
}
.tier-card:hover {
  background: rgba(167, 139, 250, 0.16);
  box-shadow: inset 0 0 0 2px rgba(196, 181, 253, 0.55), 0 14px 32px rgba(8, 6, 16, 0.3);
  transform: translateY(-5px);
}
.tier-medal {
  margin: 0 0 0.7rem;
  line-height: 0;
}
.tier-medal-svg { display: block; }
/* metal eyebrows after generic */


.tier-card.is-selected { box-shadow: inset 0 0 0 2px rgba(196, 181, 253, 0.70); }

.tier-card::after {
  content: ";
  position: absolute;
  top: -70%;
  left: -45%;
  width: 55%;
  height: 240%;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.06), rgba(255,255,255,0));
  transform: rotate(20deg);
  pointer-events: none;
}

.tier-card.metal-bronze { background: linear-gradient(155deg, rgba(255, 226, 190, 0.09) 0%, rgba(255, 226, 190, 0.03) 24%, rgba(255, 226, 190, 0) 58%), linear-gradient(rgba(168, 118, 72, 0.14), rgba(168, 118, 72, 0.14)), rgba(62, 54, 88, 0.45); box-shadow: inset 0 0 0 1px rgba(150, 118, 88, 0.30), inset 0 1px 0 rgba(255, 224, 182, 0.08); }

.tier-card.metal-silver { background: linear-gradient(155deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.03) 24%, rgba(255, 255, 255, 0) 58%), linear-gradient(rgba(180, 190, 205, 0.10), rgba(180, 190, 205, 0.10)), rgba(62, 54, 88, 0.45); box-shadow: inset 0 0 0 1px rgba(160, 170, 184, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.10); }

.tier-card.metal-gold { background: linear-gradient(155deg, rgba(255, 242, 190, 0.10) 0%, rgba(255, 242, 190, 0.03) 24%, rgba(255, 242, 190, 0) 58%), linear-gradient(rgba(190, 162, 80, 0.14), rgba(190, 162, 80, 0.14)), rgba(62, 54, 88, 0.45); box-shadow: inset 0 0 0 1px rgba(168, 146, 88, 0.30), inset 0 1px 0 rgba(255, 244, 196, 0.10); }

.tier-card.metal-bronze:hover {
  box-shadow: inset 0 0 0 2px rgba(240, 186, 122, 0.85), 0 16px 36px rgba(8, 6, 16, 0.42);
}
.tier-card.metal-silver:hover {
  box-shadow: inset 0 0 0 2px rgba(236, 242, 250, 0.85), 0 16px 36px rgba(8, 6, 16, 0.42);
}
.tier-card.metal-gold:hover {
  box-shadow: inset 0 0 0 2px rgba(250, 222, 120, 0.88), 0 16px 36px rgba(8, 6, 16, 0.42);
}
.tier-switch a { display: flex; align-items: center; gap: 0.45rem; }
.tier-switch-medal { display: inline-flex; line-height: 0; }
.tier-switch-medal svg { width: 22px; height: 24px; }
.tier-card .eyebrow {
  margin: 0 0 0.35rem;
  color: #C4B5FD;
}
.tier-card.metal-bronze .eyebrow { color: #D4A574; }
.tier-card.metal-silver .eyebrow { color: #D0D7E2; }
.tier-card.metal-gold .eyebrow { color: #E4C76A; }
.tier-card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: #fff;
}
.tier-card .price {
  font-size: 1.85rem;
  font-weight: 700;
  font-family: var(--display);
  margin: 0 0 0.25rem;
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
}
.tier-card .price span {
  margin-left: 0.15rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  -webkit-text-fill-color: var(--muted);
}
.tier-extra {
  margin: 0 0 0.7rem;
  color: #C4B5FD;
  font-size: 0.88rem;
  font-weight: 600;
}
.tier-blurb {
  margin: 0 0 0.85rem;
  color: rgba(233, 226, 248, 0.86);
  font-size: 0.95rem;
  line-height: 1.5;
}
.tier-card ul,
.tier-points {
  margin: 0 0 1.15rem;
  padding: 0;
  list-style: none;
}
.tier-card ul li,
.tier-points li {
  position: relative;
  padding: 0.28rem 0;
  text-align: center;
  color: rgba(233, 226, 248, 0.88);
  font-size: 0.92rem;
  line-height: 1.45;
}
.tier-card ul li::before,
.tier-points li::before {
  content: "✓";
  position: static;
  margin-right: 0.4rem;
  color: var(--ok);
  font-weight: 700;
}
.tier-card .btn {
  margin-top: auto;
  width: 100%;
}
.tier-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.15rem;
  width: min(100% - 2rem, 28.5rem);
}
.tier-switch a {
  flex: 1 1 0;
  min-width: 6.5rem;
  text-align: center;
  padding: 0.55rem 0.6rem 0.6rem;
  border-radius: 12px;
  background: rgba(62, 54, 88, 0.45);
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
}
.tier-switch a span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C4B5FD;
  margin-bottom: 0.12rem;
}
.tier-switch a:hover { color: #fff; text-decoration: none; }
.tier-switch a.is-active {
  color: #fff;
  background: rgba(167, 139, 250, 0.22);
  box-shadow: inset 0 0 0 2px rgba(167, 139, 250, 0.45);
}
.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem 1.75rem;
}
.what-grid article {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}
.what-ico {
  position: relative;
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  margin-top: 0.15rem;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(243, 232, 255, 0.06);
  box-shadow: 0 2px 8px rgba(8, 6, 16, 0.16);
}
.what-ico::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.02) 42%, rgba(18, 12, 36, 0.08) 100%);
}
.what-grid img {
  width: 56px;
  height: 56px;
  display: block;
  border-radius: 14px;
}
.what-grid h3 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: #fff;
}
.what-grid p {
  margin: 0;
  color: rgba(233, 226, 248, 0.86);
  font-size: 0.95rem;
  line-height: 1.6;
}
.home-story h2,
.home-panel h2,
.home-what h2,
.hero-reviews h2,
.feat-section > h2,
.section-tight h2 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.18;
  margin: 0 0 1.15rem;
  max-width: none;
}
.home-story-copy {
  max-width: none;
}
.home-story-copy p {
  margin: 0 0 0.9rem;
  color: rgba(233, 226, 248, 0.86);
  font-size: 1.05rem;
  line-height: 1.65;
}
.home-story-copy p:last-child { margin-bottom: 0; }

.section-tight { margin-bottom: 2.25rem; }
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pill-list li {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.simple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}
.ez-grid {
  grid-template-columns: 1fr 1fr;
}
.ez-card {
  border: 1px solid rgba(201, 162, 98, 0.28);
}
.simple-grid .card p { margin: 0; font-size: 0.92rem; }
.simple-grid h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-family: var(--display);
  color: #fff;
}

.card {
  background: var(--card);
  border: 0;
  border-radius: var(--radius);
  padding: 2.8rem 2.9rem;
  box-shadow: var(--shadow);
}
.card h2, .card h3 { margin: 0 0 0.5rem; font-family: var(--display); letter-spacing: -0.02em; }
.muted { color: var(--muted); }
.small { font-size: 0.88rem; }
.version-tag {
  display: inline-block; font-weight: 700; color: var(--accent);
  background: var(--accent-dim); border: 1px solid rgba(16, 185, 129, 0.35);
  padding: 0.2rem 0.55rem; border-radius: 999px; font-size: 0.85rem; margin: 0 0 0.5rem;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.35rem;
  border: 0; border-radius: 10px; padding: 0.7rem 1.15rem; font: inherit; font-weight: 600;
  cursor: pointer; text-decoration: none; transition: transform 0.12s, background 0.15s, filter 0.15s;
}
.btn:active { transform: scale(0.98); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-primary {
  background: var(--btn-grad);
  color: #fff;
  box-shadow: 0 2px 18px rgba(18, 16, 24, 0.32);
}
.btn-primary:hover:not(:disabled) { filter: brightness(1.08); text-decoration: none; color: #fff; }
.btn-green {
  background: linear-gradient(135deg, #1E8A46, #22A653 52%, #2FC466);
  color: #fff;
  border: 0;
  box-shadow: none;
}
.btn-green:hover:not(:disabled) { filter: brightness(1.08); text-decoration: none; color: #fff; }
.btn-blue {
  background: linear-gradient(135deg, #2551CD, #2E66E0 50%, #4484EC);
  color: #fff;
  box-shadow: 0 2px 18px rgba(46, 102, 224, 0.28);
}
.btn-blue:hover:not(:disabled) { filter: brightness(1.08); text-decoration: none; color: #fff; }
.btn-tan {
  background: var(--tan-grad);
  color: #fff;
  box-shadow: 0 2px 18px rgba(18, 16, 24, 0.32);
}
.btn-tan:hover:not(:disabled) { filter: brightness(1.06); text-decoration: none; color: #fff; }
.btn-ghost {
  background: rgba(44, 38, 54, 0.55);
  color: var(--text);
  border: 1px solid rgba(210, 206, 214, 0.28);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { color: #fff; border-color: var(--accent-2); text-decoration: none; background: rgba(42, 37, 69, 0.75); }
.btn-sm { padding: 0.4rem 0.75rem; font-size: 0.88rem; }

.checklist { margin: 0.75rem 0 1rem; padding: 0; list-style: none; color: var(--muted); }
.checklist li { padding: 0.3rem 0 0.3rem 1.35rem; position: relative; }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; color: var(--ok); font-weight: 700;
}

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.pricing { display: grid; grid-template-columns: 1fr 0.9fr; gap: 1.5rem; align-items: start; }
.pricing-card .price {
  font-size: 2rem; font-weight: 700; font-family: var(--display); margin: 0.25rem 0 0.75rem;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: none;
}
.pricing-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0.85rem;
  align-items: stretch;
  margin-top: 0.35rem;
}
.pricing-offer h3 {
  margin: 0 0 0.15rem;
  font-family: var(--display);
  font-size: 1.2rem;
  color: #fff;
}
.pricing-offer .price,
.purchase-offer .price {
  font-size: clamp(2.05rem, 4vw, 2.75rem);
  font-weight: 700;
  font-family: var(--display);
  margin: 0.15rem 0 0.85rem;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}
.pricing-offer .price span,
.purchase-offer .price span {
  display: inline-block;
  margin-left: 0.4rem;
  font-size: 1rem;
  font-weight: 600;
  background: none;
  -webkit-text-fill-color: var(--muted);
  color: var(--muted);
  text-shadow: var(--text-shadow);
}
.purchase-offer {
  text-align: center;
  padding-left: 3.2rem;
  padding-right: 3.2rem;
}
body.page-purchase .content-wrap > .feat-page-head {
  width: min(100% - 2rem, var(--max));
}
body.page-purchase .content-wrap > .purchase-offer {
  width: min(100% - 2rem, var(--max));
}
.purchase-offer > h2 {
  margin-bottom: 0.35rem;
}
.feat-section.purchase-offer > .lede {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.15rem;
  max-width: 44rem;
  font-size: 1.02rem;
}
.purchase-offer .btn {
  min-width: 11.5rem;
}
.purchase-offer .tier-points {
  max-width: 44rem;
  margin: 0 auto 1.3rem;
  text-align: center;
}

.purchase-offer .form-stack {
  max-width: 44rem;
  margin: 1.35rem auto 0;
  text-align: left;
}
.purchase-offer .form-stack .btn {
  width: 100%;
  min-width: 0;
}
.purchase-offer .checkout-total {
  text-align: left;
}
.purchase-offer .flash {
  max-width: none;
  text-align: left;
}
body.page-purchase .feat-page-head .lede {
  max-width: 20rem;
  font-size: 1.05rem;
}
.volume-banner {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  color: #a7f3d0;
  background: rgba(16, 185, 129, 0.14);
  border: 1px solid rgba(16, 185, 129, 0.32);
}
.pricing-break {
  display: grid;
  gap: 0.85rem;
}
.pricing-break .was {
  text-decoration: line-through;
  color: rgba(196, 184, 216, 0.72);
  margin-right: 0.4rem;
  font-weight: 500;
}
.pricing-break strong {
  color: #fff;
  font-size: 1.12rem;
}
.feat-section > .eyebrow { color: #C4B5FD; }
.checkout-total {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 600;
  color: #fff;
}
.checkout-total .volume-applied {
  font-weight: 600;
  color: #a7f3d0;
}

.auth-wrap {
  display: grid;
  place-items: center;
  margin: 0 auto;
  padding: 0;
}
.auth-card {
  width: min(100% - 2rem, var(--max));
  margin: 0;
  padding: 4rem 4.2rem 4.2rem;
  background: rgba(62, 54, 88, 0.45);
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(8, 6, 16, 0.28);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.auth-shield {
  display: block;
  width: 72px;
  height: auto;
  margin: 0 auto 1.05rem;
  opacity: 0.85;
}
.auth-card .eyebrow {
  text-align: center;
  color: #C4B5FD;
}
.auth-card h1 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4.5vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0 0 0.55rem;
  color: #fff;
  text-align: center;
}
.auth-card .lede {
  text-align: center;
  max-width: none;
  margin: 0 auto 0.35rem;
  font-size: 1.02rem;
}
.auth-card .btn {
  width: 100%;
}
.auth-card.checkout-card {
  width: min(100%, 32rem);
}
.auth-card .checkout-total {
  text-align: left;
}
.auth-card .volume-banner {
  margin: 0 auto 0.85rem;
}
.auth-switch {
  margin: 1.15rem 0 0;
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted);
}
.auth-switch a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.auth-switch a:hover { color: #C4B5FD; text-decoration: underline; }
.form-stack { display: grid; gap: 0.85rem; margin-top: 1rem; }
.form-stack label { display: grid; gap: 0.35rem; font-size: 0.85rem; font-weight: 600; color: var(--muted); text-align: left; }
.form-stack input, .form-stack textarea, .form-stack select {
  width: 100%;
  background: rgba(18, 14, 32, 0.45);
  border: 1px solid rgba(243, 232, 255, 0.16);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  color: var(--text);
  font: inherit;
  text-shadow: none;
}
.form-stack input:focus, .form-stack textarea:focus {
  outline: none; border-color: rgba(167, 139, 250, 0.65);
  box-shadow: 0 0 0 3px rgba(112, 95, 182, 0.22);
}

.flash {
  border-radius: 10px; padding: 1.3rem 1.55rem; margin: 0 0 1rem; font-size: 0.92rem;
}
.flash p { margin: 0.2rem 0; }
.flash-error { background: rgba(248,113,113,0.12); border: 1px solid rgba(248,113,113,0.35); color: #fecaca; }
.flash-success { background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.35); color: #a7f3d0; }
.flash-info { background: rgba(167,139,250,0.12); border: 1px solid rgba(167,139,250,0.35); color: #ddd6fe; }

.dash-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 1.25rem;
}
.dash h1 { margin: 0; font-family: var(--display); letter-spacing: -0.02em; }
.status { font-weight: 700; margin: 0.35rem 0; }
.status-ok { color: var(--ok); }
.status-locked { color: #fbbf24; }
.changelog {
  background: var(--bg); border: 1px solid var(--border); border-radius: 10px;
  padding: 0.75rem; color: var(--muted); white-space: pre-wrap; font-size: 0.88rem;
  max-height: 160px; overflow: auto;
}
.hash { font-size: 0.8rem; }
.table-wrap { overflow: auto; }
.table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.table th, .table td { text-align: left; padding: 0.55rem 0.4rem; border-bottom: 1px solid var(--border); }
.table th { color: var(--faint); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.steps { color: var(--muted); padding-left: 1.2rem; }
.steps li { margin: 0.35rem 0; }

.cta-band {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.25rem; flex-wrap: wrap;
}
.cta-band h2 {
  margin: 0 0 0.35rem; font-family: var(--display); letter-spacing: -0.02em; font-size: 1.25rem;
}
.cta-band p { margin: 0; }
.cta-band .hero-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }

body:is(.page-features, .page-purchase) .hero-full {
  min-height: 0;
  padding: calc(var(--header-h) + 5.5rem) 1.25rem 3.25rem;
}
body:is(.page-features, .page-purchase) .hero-full h1,
body:is(.page-features, .page-purchase) .hero-full .lede {
  white-space: normal;
}
body:is(.page-features, .page-purchase) .hero-core { margin-top: 1.5rem; }
body:is(.page-features, .page-purchase) .hero-shield { width: min(120px, 30vw); }

.feat-jump {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin: 1.35rem 0 0;
}
.feat-jump a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(62, 54, 88, 0.5);
  color: #fff;
  border: 1px solid rgba(243, 232, 255, 0.16);
  border-radius: 999px;
  padding: 0.48rem 0.95rem;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.feat-jump a span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #C4B5FD;
}
.feat-jump a:hover { background: rgba(112, 95, 182, 0.55); color: #fff; text-decoration: none; border-color: rgba(167, 139, 250, 0.45); }
.feat-jump a:hover span { color: #fff; }

.feat-section { scroll-margin-top: 6rem; }
.feat-section > .lede { margin-bottom: 1rem; max-width: none; }
.feat-page-head {
  text-align: center;
  scroll-margin-top: 6rem;
  margin: 0 auto 2.15rem;
  padding: 0.35rem 0.5rem 0.25rem;
  background: none;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.feat-page-head .eyebrow {
  color: #C4B5FD;
  margin-bottom: 0.65rem;
}
.feat-page-head h1 {
  font-family: var(--display);
  font-size: clamp(2.7rem, 7.5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin: 0 0 0.35rem;
  color: #fff;
}
.feat-page-head h1::after {
  content: "";
  display: block;
  width: 3.4rem;
  height: 3px;
  margin: 0.95rem auto 0;
  border-radius: 99px;
  background: linear-gradient(90deg, #705FB6, #A78BFA 55%, #7DD3FC);
}
.feat-page-head .lede {
  max-width: 34rem;
  margin: 0 auto;
  font-size: clamp(1.05rem, 2vw, 1.18rem);
  color: rgba(243, 240, 255, 0.92);
  line-height: 1.5;
}
.feat-page-head .feat-jump {
  justify-content: center;
  margin-top: 1.55rem;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}
.feat-card {
  background: rgba(243, 232, 255, 0.05);
  border-radius: 14px;
  padding: 2.35rem 2.5rem;
  box-shadow: none;
  min-height: 0;
}
.feat-card.tan { background: rgba(174, 126, 86, 0.12); }

.feat-body { display: flex; align-items: flex-start; gap: 0.85rem; }

.feat-body > img { width: 30px; height: 30px; flex: 0 0 30px; display: block; margin-top: 2px; opacity: 0.95; }

.feat-body > p { flex: 1 1 auto; min-width: 0; margin: 0; }
.feat-card .ico {
  width: 32px; height: 32px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: var(--btn-grad);
  color: #fff;
  font-size: 0.95rem;
  margin: 0 0 0.7rem;
}
.feat-card.tan .ico { background: var(--tan-grad); }
.feat-card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: #fff;
}
.feat-card p { margin: 0; color: rgba(233, 226, 248, 0.86); font-size: 0.95rem; line-height: 1.55; }

.feat-wide {
  background: rgba(243, 232, 255, 0.05);
  border-radius: 14px;
  padding: 2.35rem 2.5rem;
  box-shadow: none;
}
.feat-wide h3 { margin: 0 0 0.4rem; font-family: var(--display); color: #fff; }
.feat-wide p { margin: 0; color: rgba(233, 226, 248, 0.86); }

.pill-list li {
  background: var(--card);
  border: 0;
  box-shadow: var(--shadow);
  color: var(--text);
}

.site-footer { background: #000; border-top: 0; color: var(--muted); }

.page-legal .main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}
body.page-legal .content-wrap > .feat-page-head,
body.page-legal .content-wrap > .legal-doc {
  width: min(100% - 2rem, 44rem);
}
body.page-legal .feat-page-head h1 {
  font-size: clamp(2.15rem, 6vw, 3.5rem);
}
body.page-legal .feat-page-head .lede {
  max-width: 32rem;
}
.legal-doc {
  text-align: left;
}
.legal-doc > .legal-updated {
  margin: 0 0 1.5rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.legal-doc h2 {
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 1.9rem 0 0.55rem;
  scroll-margin-top: 6rem;
}
.legal-doc h2:first-of-type { margin-top: 0.15rem; }
.legal-doc h3 {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 1.15rem 0 0.4rem;
}
.legal-doc p,
.legal-doc li {
  color: rgba(233, 226, 248, 0.88);
  font-size: 0.98rem;
  line-height: 1.68;
}
.legal-doc p { margin: 0 0 0.8rem; }
.legal-doc ol,
.legal-doc ul {
  margin: 0 0 0.85rem;
  padding-left: 1.3rem;
}
.legal-doc li { margin: 0.32rem 0; }
.legal-doc .legal-caps {
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  color: rgba(243, 240, 255, 0.92);
}
.legal-doc a { font-weight: 600; }
.legal-card h2 {
  margin: 1.35rem 0 0.45rem;
  font-size: 1.15rem;
}
.legal-card h2:first-child { margin-top: 0; }
.legal-card p { color: var(--muted); margin: 0 0 0.75rem; }

.check-row {
  display: flex !important;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.6rem;
  font-weight: 500 !important;
  color: var(--muted);
}
.check-row input { width: auto !important; margin-top: 0.2rem; }

.app-preview { padding: 1.05rem; }
.app-preview img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.app-shots {
  display: grid;
  grid-template-columns: minmax(160px, 0.4fr) minmax(280px, 1fr);
  gap: 1.25rem;
  align-items: start;
}
.app-shot {
  margin: 0;
  display: flex;
  flex-direction: column;
  background: transparent;
  padding: 0;
  min-width: 0;
}
.app-shot-frame {
  position: static;
  height: auto;
  padding: 0;
  background: transparent;
  border-radius: 12px;
  overflow: visible;
}
.app-shot-frame img {
  position: static;
  inset: auto;
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.app-shot figcaption {
  text-align: center;
  margin-top: 0.65rem;
  font-size: 0.92rem;
  font-weight: 700;
  font-family: var(--display);
  letter-spacing: -0.02em;
}
.home-panel .app-shot {
  gap: 0;
}
.home-panel .app-shot-tab {
  width: 100%;
  margin: 0;
  border: 0;
  border-radius: 12px 12px 0 0;
  box-shadow: none;
  cursor: default;
  background: #3A5BA8;
  color: #fff;
}
.home-panel .app-shot-tab:active {
  transform: none;
}
.home-panel .app-shot-frame {
  border-radius: 0 0 12px 12px;
}
.home-panel .app-shot-frame img {
  border-radius: 0 0 12px 12px;
}

@media (max-width: 860px) {
  .hero, .pricing, .pricing-layout, .grid-3, .grid-2, .simple-grid, .ez-grid, .feat-grid, .app-shots, .hero-reviews-grid, .what-grid, .tier-grid { grid-template-columns: 1fr; }
  .hero-reviews figure + figure {
    border-left: 0;
    margin-left: 0;
    padding-left: 0;
    border-top: 1px solid rgba(243, 232, 255, 0.18);
    margin-top: 0.35rem;
    padding-top: 1.35rem;
  }
  .header-inner { position: relative; }
  .nav-toggle { display: flex; }
  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 0.7rem;
    background: rgba(22, 18, 36, 0.94);
    border-radius: 14px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 12px 32px rgba(8, 6, 16, 0.4);
  }
  .nav.is-open { display: flex; }
  .nav .btn { margin-left: 0; }
  .nav .btn-sm { display: inline-flex; width: 100%; justify-content: center; }
  .nav a { white-space: normal; }
  .hero-full h1,
  .hero-full .lede { white-space: normal; }
  .hero-full h1 { font-size: clamp(1.45rem, 6.4vw, 2.1rem); }
  .auth-card { padding: 2.15rem 1.45rem 2.25rem; }
  .feat-page-head { padding: 0.15rem 0 0.1rem; margin-bottom: 1.65rem; }
  .feat-page-head h1 { font-size: clamp(2.35rem, 12vw, 3.4rem); }
  .feat-jump { gap: 0.4rem; }
  .feat-jump a { font-size: 0.8rem; padding: 0.42rem 0.78rem; }
  .hero-full-inner { margin-top: 2.25rem; }
  .hero-core { margin-top: 0; }
  body.page-home .hero-full {
    overflow: visible;
    align-items: flex-start;
  }
  .hero-businesses {
    margin-top: 5.5rem;
    padding: 3.5rem 0 4.75rem;
    width: 100%;
  }
  .hero-businesses .eyebrow {
    margin-bottom: 3rem;
  }
  .hero-biz-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5.5rem;
    width: 100%;
  }
  .hero-biz-row figure {
    width: 100%;
    max-width: 260px;
    padding: 1.5rem 0;
  }
  .hero-biz-netforge-wrap { align-items: center; }
  .hero-biz-row img,
  .hero-biz-row img.hero-biz-netforge,
  .hero-biz-row img.hero-biz-whitehouse {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 88px;
  }
}

/* ── Scroll / load reveals ──────────────────────────── */
html.js-reveal .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
html.js-reveal .reveal.reveal-nav {
  transform: translateY(-28px);
}
html.js-reveal .reveal.reveal-hero {
  transform: translateY(36px);
}
html.js-reveal .reveal.is-in,
html:not(.js-reveal) .reveal,
.reveal.is-in {
  opacity: 1 !important;
  transform: none !important;
}
html.js-reveal .header-inner.reveal {
  transition-duration: 0.7s;
}
@media (prefers-reduced-motion: reduce) {
  html.js-reveal .reveal,
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none;
  }
}
.feat-shot { display: block; width: 100%; height: auto; margin: 0 0 1.4rem; }

.purchase-offer { border-radius: 18px; border: 1px solid rgba(243, 232, 255, 0.14); overflow: hidden; }



.purchase-offer .tier-medal { display: flex; justify-content: center; margin: 0 0 0.5rem; }
.purchase-offer .tier-blurb { margin: 0 auto 1.1rem; max-width: 40rem; }

.feat-section.feat-plain { background: none; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; padding: 0; }

.auth-card .form-stack { max-width: 34rem; margin-left: auto; margin-right: auto; }

.tier-card { text-align: center; }

.tier-card .tier-medal { display: flex; justify-content: center; }

body.page-purchase #plans .tier-grid { grid-template-columns: 1fr; }

/* ── Plans (tier cards) — redesign ───────────────────────────────── */
.tier-grid { gap: 1.15rem; }

.tier-card {
  padding: 2.15rem 1.7rem 1.8rem;
  border-radius: 16px;
  align-items: center;
}

.tier-medal { margin: 0 0 0.9rem; display: flex; justify-content: center; }
.tier-medal-svg { width: 46px; height: 50px; }

.tier-card .eyebrow { font-size: 0.76rem; letter-spacing: 0.16em; }

/* equal-height titles so every price/CTA lines up across cards */
.tier-card h3 {
  min-height: 2.6em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.55rem;
  line-height: 1.25;
}
.tier-card .price { font-size: 2rem; }

/* features: left aligned, hanging checks, divider above */
.tier-card ul,
.tier-card .tier-points {
  width: 100%;
  margin: 0.95rem 0 1.4rem;
  padding: 1.05rem 0 0;
  border-top: 1px solid rgba(243, 232, 255, 0.12);
  text-align: left;
}
.tier-card ul li,
.tier-card .tier-points li {
  position: relative;
  padding: 0.3rem 0 0.3rem 1.55rem;
  text-align: left;
  font-size: 0.92rem;
  line-height: 1.45;
}
.tier-card ul li::before,
.tier-card .tier-points li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.3rem;
  margin: 0;
  color: var(--ok);
  font-weight: 700;
}

.tier-badge {
  display: inline-block;
  margin: 0 0 0.9rem;
  padding: 0.24rem 0.78rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #7C3AED, #A78BFA);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.42);
}

.tier-card.is-featured {
  background: linear-gradient(160deg, rgba(167, 139, 250, 0.17), rgba(124, 58, 237, 0.06)), rgba(62, 54, 88, 0.5);
  box-shadow: inset 0 0 0 1.5px rgba(196, 181, 253, 0.6), 0 20px 44px rgba(8, 6, 16, 0.4);
}

/* keep the row rhythm identical whether or not a card shows the badge */
.tier-badge-empty { visibility: hidden; }

/* "No phone or remote support" — a negative isn't an included feature */
.tier-card ul li.point-none { color: rgba(233, 226, 248, 0.55); }
.tier-card ul li.point-none::before { content: "\2013"; color: rgba(233, 226, 248, 0.40); }

/* purchase page: the three plans side by side, like the home page (stacks under 861px) */
@media (min-width: 861px) {
  body.page-purchase #plans .tier-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Auth (sign in / create account) — two column shell ──────────── */
.auth-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
  width: min(100%, 68rem);
  margin: 0 auto;
  padding: 1.5rem 0 2rem;
}

.auth-aside { text-align: left; }
.auth-aside-shield {
  display: block;
  width: 118px;
  height: auto;
  margin: 0 0 1.5rem;
  filter: drop-shadow(0 18px 40px rgba(139, 92, 246, 0.35));
}
.auth-aside .eyebrow { color: #C4B5FD; margin: 0 0 0.5rem; }
.auth-aside h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 0.95rem;
}
.auth-aside h1 em { font-style: normal; color: #C4B5FD; }
.auth-aside .lede { margin: 0 0 1.35rem; max-width: 36ch; }

.auth-points { list-style: none; margin: 0 0 1.7rem; padding: 0; display: grid; gap: 0.55rem; }
.auth-points li {
  position: relative;
  padding-left: 1.6rem;
  color: rgba(233, 226, 248, 0.88);
  font-size: 0.95rem;
  line-height: 1.45;
}
.auth-points li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--ok);
  font-weight: 700;
}
.auth-partners {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.auth-panel { display: flex; justify-content: flex-end; }
.auth-split .auth-card {
  width: 100%;
  max-width: 30rem;
  padding: 2.5rem 2.3rem 2.4rem;
  text-align: left;
}
.auth-split .auth-card h2 {
  font-family: var(--display);
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 0.5rem;
}
.auth-split .auth-card .lede { text-align: left; margin: 0; }
.auth-split .auth-card .flash { margin: 1rem 0 0; }
.auth-split .auth-card .form-stack { max-width: none; margin-top: 1.4rem; }
.auth-split .auth-card .auth-switch { text-align: left; }

@media (max-width: 900px) {
  .auth-split { grid-template-columns: 1fr; gap: 2.25rem; padding-top: 0.5rem; }
  .auth-aside { text-align: center; }
  .auth-aside-shield { margin: 0 auto 1.3rem; }
  .auth-aside .lede { margin-left: auto; margin-right: auto; }
  .auth-points { max-width: 26rem; margin-left: auto; margin-right: auto; text-align: left; }
  .auth-panel { justify-content: center; }
  .auth-split .auth-card { max-width: 32rem; text-align: left; }
}

/* auth: prevent grid min-content from forcing horizontal overflow */
.auth-split { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); }
.auth-split, .auth-aside, .auth-panel { min-width: 0; }
.auth-panel .auth-card { max-width: 100%; }
.auth-aside h1, .auth-aside .lede, .auth-points li, .auth-partners { overflow-wrap: anywhere; }
@media (max-width: 900px) {
  .auth-split { grid-template-columns: minmax(0, 1fr); }
}

/* ── Accessibility + small polish ───────────────────────────────── */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 60;
  padding: 0.6rem 1.05rem;
  border-radius: 10px;
  background: #7C3AED;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.18s ease;
}
.skip-link:focus { top: 1rem; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid #C4B5FD;
  outline-offset: 2px;
}

.not-found .hero-actions { justify-content: flex-start; margin-top: 1.5rem; }
.not-found .lede { max-width: 48ch; }

@media (prefers-reduced-motion: reduce) {
  .hero-dotfield,
  .hero-dotfield::before { animation: none !important; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ── Account / admin pages: compact header + tidy card grid ──────── */
.dash .feat-page-head {
  text-align: left;
  padding-bottom: 0.35rem;
  margin: 0 0 1.35rem;
}
.dash .feat-page-head h1 {
  font-size: clamp(1.85rem, 3vw, 2.45rem);
  margin: 0.15rem 0 0.45rem;
}
.dash .feat-page-head .lede { margin: 0; max-width: 60ch; }

.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
  gap: 1.25rem;
  align-items: start;
}
.admin-grid .card { margin: 0; }

.dash .card { padding: 1.6rem 1.6rem 1.7rem; }
.dash .card h2 { font-size: 1.15rem; margin: 0 0 0.9rem; }
.dash .card .form-stack { margin-top: 0.9rem; }

@media (max-width: 700px) {
  .dash .feat-page-head { text-align: left; }
}

/* keep the title accent left-aligned on account/admin pages */
.dash .feat-page-head h1::after { margin-left: 0; margin-right: auto; margin-top: 0.6rem; }

/* ── Plans cards — approved layout (left aligned, badge above) ───── */
.tier-grid { gap: 1.15rem; align-items: stretch; }

.tier-card,
.tier-card.metal-bronze,
.tier-card.metal-silver,
.tier-card.metal-gold {
  position: relative;
  overflow: visible;
  align-items: stretch;
  text-align: left;
  padding: 2.05rem 1.75rem 1.75rem;
  border-radius: 16px;
  background: rgba(19, 17, 27, 0.66);
  box-shadow: inset 0 0 0 1px rgba(243, 232, 255, 0.08);
}
.tier-card::after { display: none; }
.tier-card:hover { transform: none; background: rgba(19, 17, 27, 0.66); box-shadow: inset 0 0 0 1px rgba(167, 139, 250, 0.45); }

.tier-card.is-featured {
  background: linear-gradient(180deg, rgba(109, 91, 208, 0.22), rgba(19, 17, 27, 0.74) 46%), rgba(19, 17, 27, 0.7);
  box-shadow: inset 0 0 0 1.5px rgba(140, 120, 255, 0.6), 0 22px 52px rgba(80, 60, 200, 0.26);
}

.tier-badge {
  position: absolute;
  top: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0.26rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #7C3AED, #A78BFA);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.45);
}
.tier-badge-empty { display: none; }

.tier-card .tier-medal { display: flex; justify-content: flex-start; margin: 0.35rem 0 1.05rem; }
.tier-medal-svg { width: 40px; height: 44px; }
.tier-card .eyebrow { text-align: left; margin: 0 0 0.5rem; }

.tier-card h3 {
  display: block;
  text-align: left;
  min-height: 0;
  font-size: 1.3rem;
  margin: 0 0 1.15rem;
}

.tier-card .price {
  text-align: left;
  font-size: 2.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.4rem;
}
.tier-card .price span { font-size: 0.95rem; font-weight: 500; margin-left: 0.25rem; }

.tier-card .tier-extra { text-align: left; font-size: 0.85rem; margin: 0 0 1.15rem; }
.tier-card.metal-bronze .tier-extra { color: #E0A96D; }
.tier-card.metal-silver .tier-extra { color: #C4B5FD; }
.tier-card.metal-gold .tier-extra { color: #E4C76A; }

.tier-card .tier-blurb { text-align: left; font-size: 0.95rem; margin: 0 0 1.45rem; }

.tier-card ul.tier-points,
.tier-card ul {
  width: 100%;
  margin: 0;
  padding: 0;
  border-top: 0;
}
.tier-card ul li { text-align: left; font-size: 0.92rem; padding: 0.32rem 0 0.32rem 1.6rem; }

.tier-points .sub-points {
  list-style: none;
  margin: 0.3rem 0 0.15rem 0.15rem;
  padding: 0 0 0 1rem;
  border-left: 1px solid rgba(243, 232, 255, 0.16);
}
.tier-points .sub-points li {
  position: relative;
  padding: 0.16rem 0 0.16rem 1.3rem;
  font-size: 0.85rem;
  color: rgba(233, 226, 248, 0.68);
}
.tier-points .sub-points li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.16rem;
  color: rgba(233, 226, 248, 0.42);
  font-weight: 700;
  font-size: 0.78rem;
}

.tier-card .btn { margin-top: auto; width: 100%; }

/* heading on the purchase page */
.plans-head { text-align: left; margin: 0 0 1.9rem; }
.plans-head .eyebrow { margin: 0 0 0.55rem; }
.plans-head h1 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 0.6rem;
}
.plans-head .lede { margin: 0; }

/* the home page section uses the same heading treatment now */
.home-tiers > .eyebrow,
.home-tiers > h2,
.home-tiers > .lede { text-align: left; }