/* Veil premium marketing layer — class, calm, futuristic */

:root {
  --veil-font-display: "Segoe UI", system-ui, -apple-system, "SF Pro Display", Roboto, sans-serif;
  --veil-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --veil-ease-soft: cubic-bezier(0.33, 1, 0.68, 1);
  --veil-line: linear-gradient(90deg, transparent, rgba(232, 185, 35, 0.45), transparent);
}

body.veil-premium-ready {
  font-family: var(--veil-font-display);
}

/* Ambient grid */
body.veil-premium-ready::before {
  background:
    radial-gradient(ellipse 90% 55% at 50% -15%, rgba(232, 185, 35, 0.14), transparent 58%),
    radial-gradient(ellipse 55% 45% at 100% 5%, rgba(96, 165, 250, 0.1), transparent 52%),
    radial-gradient(ellipse 45% 35% at 0% 95%, rgba(167, 139, 250, 0.07), transparent 48%),
    linear-gradient(180deg, #060910 0%, var(--bg) 40%, #060910 100%);
}

body.veil-premium-ready::after {
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 20%, transparent 75%);
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s var(--veil-ease-out) var(--reveal-delay, 0s),
    transform 0.65s var(--veil-ease-out) var(--reveal-delay, 0s);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Typography */
.eyebrow {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-mid);
}

.hero h1 {
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 0.85rem;
  background: linear-gradient(165deg, #fff 0%, #e8edf5 45%, #c4cdd9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lede {
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 52ch;
}

/* Cards */
.card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  animation: veil-rise-in 0.55s var(--veil-ease-out) both;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 40%, rgba(232, 185, 35, 0.12));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.7;
}

.price-card--featured {
  background: #101725;
  box-shadow: 0 0 0 1px rgba(246, 213, 122, 0.16), 0 20px 50px rgba(0, 0, 0, 0.45);
}

.price-card--featured::before {
  content: "Popular";
  position: absolute;
  inset: auto;
  top: 1rem;
  right: 1rem;
  bottom: auto;
  left: auto;
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(232, 185, 35, 0.18);
  border: 1px solid rgba(232, 185, 35, 0.35);
  color: var(--gold-end);
  pointer-events: none;
  z-index: 2;
  opacity: 1;
}

/* Showcase strip */
.veil-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 1.25rem 0 0;
}

.veil-showcase__item {
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(8, 12, 20, 0.55);
  backdrop-filter: blur(10px);
}

.veil-showcase__item strong {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.veil-showcase__item span {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
}

/* Plan ladder */
.plan-ladder {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.plan-ladder__step {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(8, 12, 20, 0.45);
}

.plan-ladder__num {
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(232, 185, 35, 0.15);
  color: var(--gold-end);
  border: 1px solid rgba(232, 185, 35, 0.3);
}

.plan-ladder__step h3 {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
}

.plan-ladder__step p {
  margin: 0;
  font-size: 0.85rem;
}

/* Plus slot callout */
.slot-callout {
  margin-top: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  border: 1px dashed rgba(232, 185, 35, 0.35);
  background: rgba(232, 185, 35, 0.06);
}

.slot-callout strong {
  color: var(--gold-end);
}

/* Buttons */
.btn {
  border-radius: 10px;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.btn--ghost {
  backdrop-filter: blur(8px);
}

/* Site header glass */
.site-header {
  padding: 0.65rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(8, 12, 20, 0.55);
  backdrop-filter: blur(14px);
}

.trust-strip {
  animation: veil-rise-in 0.45s var(--veil-ease-out) 0.08s both;
}

@keyframes veil-shimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.hero--premium h1 {
  animation: veil-rise-in 0.6s var(--veil-ease-out) 0.12s both;
}

@media (max-width: 768px) {
  .veil-showcase {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .card, .hero--premium h1, .trust-strip {
    animation: none;
  }
}

/* -------------------------------------------------------------------------- */
/* v1.6 premium polish                                                        */
/* -------------------------------------------------------------------------- */

body.veil-premium-ready {
  background-image:
    radial-gradient(70% 46% at 82% 28%, rgba(66, 133, 244, 0.16), transparent 60%),
    radial-gradient(55% 38% at 20% 0%, rgba(236, 186, 59, 0.16), transparent 62%),
    linear-gradient(180deg, #040811 0%, #060b15 55%, #050913 100%);
}

.hero--premium {
  isolation: isolate;
}

.hero--premium::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 22% 90%, rgba(66, 133, 244, 0.18), transparent 42%),
    radial-gradient(circle at 80% 18%, rgba(236, 186, 59, 0.18), transparent 40%);
}

.hero--premium::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -30%;
  height: 58%;
  z-index: 0;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(67, 136, 249, 0.26) 0%, rgba(67, 136, 249, 0.08) 44%, transparent 72%);
  filter: blur(4px);
}

.hero--premium > * {
  position: relative;
  z-index: 1;
}

.hero h1 {
  background: linear-gradient(170deg, #ffffff 0%, #e7f1ff 38%, #cad8eb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.hero__lede strong {
  color: #f6d37c;
}

.veil-showcase {
  gap: 1rem;
}

.veil-showcase__item {
  border-radius: 16px;
  background: linear-gradient(165deg, rgba(10, 16, 31, 0.84), rgba(9, 15, 29, 0.74));
  border: 1px solid rgba(140, 167, 211, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.veil-showcase__item strong {
  color: #f1f6ff;
  font-size: 0.88rem;
}

.veil-showcase__item span {
  color: #9fb1d2;
}

.flow-step {
  border-radius: 14px;
  border-color: rgba(140, 167, 211, 0.22);
}

.plan-ladder__step,
.slot-callout,
.store-badge {
  border-radius: 14px;
}

.price-card--featured::before {
  content: "Recommended";
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.64rem;
  padding: 0.28rem 0.6rem;
}

.store-badge {
  border-color: rgba(140, 167, 211, 0.28);
  background: linear-gradient(165deg, rgba(10, 18, 35, 0.9), rgba(10, 17, 32, 0.74));
}

.store-badge:hover {
  border-color: rgba(236, 186, 59, 0.42);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.32), 0 0 24px rgba(236, 186, 59, 0.1);
}

.install-path {
  min-height: 100%;
}

.trust-list li::marker,
.steps li::marker {
  color: #e5be59;
}

@media (max-width: 768px) {
  .hero--premium::after {
    left: -18%;
    right: -18%;
    bottom: -38%;
  }
}

/* Extra polish for the marketing surfaces that opt into the premium layer. */
body.veil-premium-ready .site-header {
  background:
    linear-gradient(180deg, rgba(8, 12, 20, 0.88), rgba(9, 14, 24, 0.68)),
    radial-gradient(circle at 18% 20%, rgba(96, 165, 250, 0.06), transparent 28%);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

body.veil-premium-ready .trust-strip {
  border-color: rgba(74, 222, 128, 0.18);
  background:
    linear-gradient(180deg, rgba(7, 19, 16, 0.86), rgba(7, 13, 22, 0.76)),
    radial-gradient(circle at 12% 50%, rgba(74, 222, 128, 0.08), transparent 26%);
}

body.veil-premium-ready .hero {
  padding: clamp(1.7rem, 3vw, 2.3rem);
}

body.veil-premium-ready .hero h1 {
  font-size: clamp(2.1rem, 6vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

body.veil-premium-ready .hero__lede {
  font-size: 1.06rem;
}

body.veil-premium-ready .hero--premium::before {
  background:
    radial-gradient(circle at 18% 88%, rgba(96, 165, 250, 0.24), transparent 34%),
    radial-gradient(circle at 80% 16%, rgba(236, 186, 59, 0.2), transparent 30%),
    radial-gradient(circle at 54% 50%, rgba(74, 222, 128, 0.05), transparent 40%);
}

body.veil-premium-ready .hero--premium::after {
  height: 66%;
  opacity: 0.9;
  background: radial-gradient(circle, rgba(66, 133, 244, 0.26) 0%, rgba(66, 133, 244, 0.1) 44%, transparent 72%);
}

body.veil-premium-ready .card::after {
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent 32%, rgba(236, 186, 59, 0.12));
  opacity: 0.8;
}

body.veil-premium-ready .flow-step,
body.veil-premium-ready .trust-list li,
body.veil-premium-ready .steps li,
body.veil-premium-ready .veil-showcase__item,
body.veil-premium-ready .plan-ladder__step {
  border-color: rgba(140, 167, 211, 0.18);
  background: linear-gradient(165deg, rgba(10, 16, 31, 0.84), rgba(9, 15, 29, 0.72));
}

body.veil-premium-ready .veil-showcase__item strong,
body.veil-premium-ready .flow-step strong,
body.veil-premium-ready .plan-ladder__step h3 {
  color: #f5f9ff;
}

body.veil-premium-ready .veil-showcase__item span,
body.veil-premium-ready .flow-step p,
body.veil-premium-ready .plan-ladder__step p {
  color: #9eb0d0;
}

body.veil-premium-ready .price-card--featured {
  padding-top: 2rem;
  background: #0f1726;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.42);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.veil-premium-ready .price-card--featured::after {
  display: none;
}

body.veil-premium-ready .price-card--featured::before {
  all: unset;
  content: "Recommended";
  position: absolute;
  inset: auto;
  top: 0.6rem;
  right: 0.75rem;
  bottom: auto;
  left: auto;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 185, 35, 0.35);
  background: rgba(232, 185, 35, 0.18);
  color: var(--gold-end);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  width: auto;
  height: auto;
  pointer-events: none;
  font-size: 0.58rem;
  z-index: 2;
}

body.veil-premium-ready .price-card .trust-list {
  gap: 0.45rem;
}

body.veil-premium-ready .price-card .trust-list li {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0.18rem 0 0.18rem 0.15rem;
}

body.veil-premium-ready .store-badge {
  background: linear-gradient(165deg, rgba(10, 18, 35, 0.9), rgba(10, 17, 32, 0.74));
  border-color: rgba(140, 167, 211, 0.26);
}

body.veil-premium-ready .store-badge:hover {
  border-color: rgba(236, 186, 59, 0.42);
}

body.veil-premium-ready .btn {
  letter-spacing: 0.01em;
}

body.veil-premium-ready .btn--ghost {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

body.veil-premium-ready .nav a:hover,
body.veil-premium-ready .nav button:hover {
  transform: translateY(-1px);
}

body.veil-premium-ready .site-footer {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(8, 12, 20, 0.55);
}

@media (max-width: 768px) {
  body.veil-premium-ready .hero h1 {
    font-size: clamp(1.95rem, 12vw, 3rem);
  }
}

/* -------------------------------------------------------------------------- */
/* Futuristic homepage hero (marketing)                                       */
/* -------------------------------------------------------------------------- */

body.veil-premium-ready .hero-neo {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 480px);
  gap: 1.4rem;
  margin: 1rem 0 1.1rem;
  padding: clamp(1.2rem, 2.8vw, 1.8rem);
  border-radius: 24px;
  border: 1px solid rgba(125, 157, 209, 0.24);
  background:
    radial-gradient(circle at 85% 88%, rgba(37, 99, 235, 0.24), transparent 44%),
    radial-gradient(circle at 16% 6%, rgba(236, 186, 59, 0.12), transparent 30%),
    linear-gradient(165deg, rgba(7, 12, 22, 0.94), rgba(6, 10, 20, 0.84));
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

body.veil-premium-ready .hero-neo::after {
  content: "";
  position: absolute;
  right: -14%;
  bottom: -34%;
  width: 72%;
  height: 58%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.35) 0%, rgba(37, 99, 235, 0.12) 44%, transparent 72%);
  filter: blur(3px);
  pointer-events: none;
}

body.veil-premium-ready .hero-neo__left,
body.veil-premium-ready .hero-neo__right {
  position: relative;
  z-index: 1;
}

body.veil-premium-ready .hero-neo h1 {
  margin: 0.9rem 0 0.85rem;
  font-size: clamp(2.15rem, 5.8vw, 4.35rem);
  line-height: 1.03;
  letter-spacing: -0.06em;
  max-width: 10.5ch;
  background: linear-gradient(172deg, #ffffff 0%, #e7f0ff 48%, #d0d9ea 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body.veil-premium-ready .eyebrow--pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.34rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 215, 110, 0.26);
  background: rgba(10, 16, 30, 0.78);
  color: #f5d76e;
}

body.veil-premium-ready .eyebrow--pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #f5d76e;
  box-shadow: 0 0 10px rgba(245, 215, 110, 0.65);
}

body.veil-premium-ready .proof-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1rem;
}

body.veil-premium-ready .proof-row__avatars {
  display: flex;
  align-items: center;
}

body.veil-premium-ready .proof-avatar {
  width: 30px;
  height: 30px;
  margin-left: -8px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 700;
  color: #0d1526;
  background: linear-gradient(145deg, #f6d37c, #d19a17);
  border: 2px solid rgba(6, 10, 18, 0.95);
}

body.veil-premium-ready .proof-avatar:first-child {
  margin-left: 0;
}

body.veil-premium-ready .proof-row__rating {
  margin: 0;
  letter-spacing: 0.12em;
  color: #f5d76e;
  font-size: 0.74rem;
}

body.veil-premium-ready .proof-row__text {
  margin: 0.18rem 0 0;
  font-size: 0.85rem;
  color: #9eb0d0;
}

body.veil-premium-ready .neo-app-shell {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(140, 167, 211, 0.3);
  background: linear-gradient(165deg, rgba(10, 17, 31, 0.95), rgba(8, 14, 26, 0.86));
  padding: 0.8rem;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

body.veil-premium-ready .neo-app-shell__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}

body.veil-premium-ready .neo-app-shell__brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

body.veil-premium-ready .neo-app-shell__brand img {
  border-radius: 9px;
  box-shadow: 0 0 0 1px rgba(236, 186, 59, 0.42);
}

body.veil-premium-ready .neo-app-shell__brand strong {
  display: block;
  font-size: 1.12rem;
  line-height: 1;
  color: #eef3ff;
}

body.veil-premium-ready .neo-app-shell__brand span {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.76rem;
  color: #f6d37c;
}

body.veil-premium-ready .neo-app-shell__pill {
  padding: 0.28rem 0.58rem;
  border-radius: 999px;
  border: 1px solid rgba(236, 186, 59, 0.3);
  background: rgba(236, 186, 59, 0.1);
  font-size: 0.68rem;
  color: #f5d76e;
}

body.veil-premium-ready .neo-app-shell__status {
  padding: 0.5rem 0.6rem;
  border-radius: 10px;
  border: 1px solid rgba(74, 222, 128, 0.24);
  background: rgba(14, 50, 38, 0.38);
  color: #9af8be;
  font-size: 0.74rem;
}

body.veil-premium-ready .neo-app-shell__tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.42rem;
  margin: 0.72rem 0;
}

body.veil-premium-ready .neo-app-shell__tabs span {
  text-align: center;
  padding: 0.34rem 0.24rem;
  border-radius: 8px;
  font-size: 0.74rem;
  color: #90a3c3;
  border: 1px solid rgba(145, 170, 212, 0.16);
}

body.veil-premium-ready .neo-app-shell__tabs .is-active {
  color: #f6d37c;
  border-color: rgba(236, 186, 59, 0.44);
  background: rgba(236, 186, 59, 0.12);
}

body.veil-premium-ready .neo-app-shell__panel {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.7rem;
  align-items: center;
  padding: 0.7rem;
  border-radius: 12px;
  border: 1px solid rgba(140, 167, 211, 0.2);
  background: rgba(9, 15, 28, 0.82);
}

body.veil-premium-ready .neo-app-shell__panel p,
body.veil-premium-ready .neo-app-shell__panel small {
  margin: 0;
  color: #8ea3c6;
  font-size: 0.66rem;
}

body.veil-premium-ready .neo-app-shell__panel strong {
  display: block;
  margin: 0.18rem 0;
  color: #f3f7ff;
  font-size: 1.8rem;
  line-height: 1;
}

body.veil-premium-ready .neo-app-shell__shield {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.55rem;
  color: #f5d76e;
  border: 1px solid rgba(236, 186, 59, 0.45);
  box-shadow: 0 0 24px rgba(236, 186, 59, 0.2), inset 0 0 22px rgba(32, 63, 118, 0.42);
}

body.veil-premium-ready .neo-app-shell__low {
  color: #9af8be;
  font-size: 1.05rem;
}

body.veil-premium-ready .neo-app-shell__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-top: 0.7rem;
  padding: 0.6rem;
  border-radius: 10px;
  border: 1px solid rgba(140, 167, 211, 0.16);
  background: rgba(8, 13, 24, 0.76);
}

body.veil-premium-ready .neo-app-shell__foot span {
  color: #94ccff;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

body.veil-premium-ready .neo-app-shell__foot button {
  border: 1px solid rgba(140, 167, 211, 0.26);
  background: rgba(14, 22, 38, 0.9);
  color: #b2c4e2;
  border-radius: 8px;
  padding: 0.4rem 0.56rem;
  font-size: 0.71rem;
}

body.veil-premium-ready .feature-band {
  margin-top: 1.1rem;
}

body.veil-premium-ready .feature-band > h2 {
  font-size: clamp(1.55rem, 3.8vw, 2.5rem);
  margin-bottom: 1.15rem;
  letter-spacing: -0.03em;
}

body.veil-premium-ready .feature-band__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

body.veil-premium-ready .feature-band__grid article {
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(138, 164, 206, 0.2);
  background: linear-gradient(165deg, rgba(10, 16, 31, 0.84), rgba(9, 15, 29, 0.72));
}

body.veil-premium-ready .feature-band__grid h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  color: #f2f6ff;
}

@media (max-width: 980px) {
  body.veil-premium-ready .hero-neo {
    grid-template-columns: 1fr;
  }

  body.veil-premium-ready .hero-neo h1 {
    max-width: 14ch;
  }
}

@media (max-width: 720px) {
  body.veil-premium-ready .feature-band__grid {
    grid-template-columns: 1fr;
  }

  body.veil-premium-ready .proof-row {
    flex-wrap: wrap;
  }
}

/* -------------------------------------------------------------------------- */
/* Multi-page premium art direction                                           */
/* -------------------------------------------------------------------------- */

body.veil-premium-ready .page-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 1rem;
  align-items: start;
}

body.veil-premium-ready .page-hero h1 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
  background: linear-gradient(170deg, #ffffff 0%, #e7f1ff 45%, #cad8eb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body.veil-premium-ready .page-hero .lede {
  color: #a9bcdb;
}

body.veil-premium-ready .side-panel {
  border-radius: 16px;
  border: 1px solid rgba(138, 164, 206, 0.22);
  background:
    linear-gradient(165deg, rgba(10, 16, 31, 0.86), rgba(9, 15, 29, 0.72)),
    radial-gradient(circle at 20% 12%, rgba(236, 186, 59, 0.08), transparent 32%);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

body.veil-premium-ready .side-panel h3 {
  margin-top: 0;
  color: #f2f7ff;
}

body.veil-premium-ready .pricing-sandwich {
  gap: 1rem;
  align-items: stretch;
}

body.veil-premium-ready .pricing-mid {
  gap: 1rem;
}

body.veil-premium-ready .price-card {
  transition: transform 0.2s var(--veil-ease-soft), box-shadow 0.24s var(--veil-ease-soft), border-color 0.2s ease;
}

body.veil-premium-ready .price-card:hover {
  transform: translateY(-2px);
  border-color: rgba(236, 186, 59, 0.34);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4), 0 0 24px rgba(236, 186, 59, 0.08);
}

body.veil-premium-ready .price-card__amount {
  font-size: clamp(1.55rem, 3.6vw, 2.25rem);
  letter-spacing: -0.03em;
  color: #f6d37c;
}

body.veil-premium-ready #plus-hero {
  background:
    radial-gradient(circle at 86% 82%, rgba(37, 99, 235, 0.24), transparent 42%),
    radial-gradient(circle at 18% 8%, rgba(236, 186, 59, 0.14), transparent 34%),
    linear-gradient(165deg, rgba(8, 14, 28, 0.95), rgba(7, 12, 24, 0.84));
}

body.veil-premium-ready .install-paths {
  gap: 1rem;
}

body.veil-premium-ready .install-path {
  border: 1px solid rgba(138, 164, 206, 0.22);
  background:
    linear-gradient(165deg, rgba(10, 16, 31, 0.86), rgba(9, 15, 29, 0.73)),
    radial-gradient(circle at 14% 16%, rgba(74, 222, 128, 0.06), transparent 35%);
}

body.veil-premium-ready details.card summary {
  cursor: pointer;
  color: #e9eff9;
}

body.veil-premium-ready .invite-box,
body.veil-premium-ready .credential,
body.veil-premium-ready .diagnostics-block {
  border-color: rgba(138, 164, 206, 0.22);
  background: linear-gradient(165deg, rgba(10, 16, 31, 0.8), rgba(9, 15, 29, 0.66));
}

body.veil-premium-ready .portal-tabs {
  border: 1px solid rgba(138, 164, 206, 0.2);
  border-radius: 12px;
  background: rgba(8, 13, 24, 0.66);
  padding: 0.25rem;
}

body.veil-premium-ready .portal-tab {
  border-radius: 10px;
}

body.veil-premium-ready .portal-tab[aria-selected="true"] {
  box-shadow: 0 0 0 1px rgba(236, 186, 59, 0.34);
}

body.veil-premium-ready .table-scroll {
  border-radius: 12px;
  border: 1px solid rgba(138, 164, 206, 0.2);
  background: rgba(8, 13, 24, 0.64);
}

body.veil-premium-ready .layout:not(.layout--wide) .hero--premium {
  padding: 1.35rem;
}

body.veil-premium-ready .layout:not(.layout--wide) .hero--premium h1 {
  font-size: clamp(1.75rem, 5vw, 2.6rem);
  letter-spacing: -0.04em;
}

body.veil-premium-ready .layout:not(.layout--wide) .hero--premium h2 {
  margin-top: 1.15rem;
  color: #f2f7ff;
}

body.veil-premium-ready .layout:not(.layout--wide) .hero--premium ul,
body.veil-premium-ready .layout:not(.layout--wide) .hero--premium ol {
  padding-left: 1.1rem;
}

body.veil-premium-ready .layout:not(.layout--wide) .hero--premium li {
  margin-bottom: 0.45rem;
  color: #a9bcdb;
}

body.veil-premium-ready .layout:not(.layout--wide) .hero--premium p {
  color: #9fb2d2;
}

@media (max-width: 980px) {
  body.veil-premium-ready .page-split {
    grid-template-columns: 1fr;
  }
}
