*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0b0f14;
  --bg2: #0f141c;
  --card: #131a24;
  --line: #222c3a;

  --white: #eef2f8;
  --gray: #8a96a8;
  --dim: #5c6878;

  --cyan: #4db8ff;
  --blue: #2b7de9;
  --grad: linear-gradient(135deg, #4db8ff, #2b7de9);

  --shell: 1140px;
  --nav: 140px;
  --r: 12px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav);
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', system-ui, sans-serif;
}

.shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── logo ── */

.logo-wrap {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: linear-gradient(180deg, #141c2e, #0a0f18);
  border: 1px solid #2a4060;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.logo-wrap-sm { padding: 5px 12px; }

.logo { height: 36px; width: auto; display: block; }
.logo-wrap-sm .logo { height: 28px; }

/* ── navbar ── */

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 32px 0 0;
  transition:
    opacity 0.9s ease,
    padding 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.topbar.nav-recede {
  z-index: 100;
  opacity: 0.88;
  transition:
    opacity 1s ease 0.2s,
    padding 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.topbar.nav-scrolled {
  z-index: 500;
  opacity: 1;
  padding: 14px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  min-height: 52px;
  position: relative;
  transition:
    gap 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.45s ease,
    border-color 0.45s ease,
    border-radius 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
}

.topbar.nav-scrolled .nav-inner {
  gap: 2px;
  width: fit-content;
  max-width: calc(100% - 32px);
  margin-inline: auto;
  padding: 6px 10px 6px 14px;
  min-height: 0;
  background: rgba(13, 18, 26, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.topbar.nav-scrolled .nav-logo-slot {
  padding-right: 10px;
  margin-right: 2px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.topbar.nav-scrolled .nav-rest {
  flex: 0 0 auto;
  justify-content: flex-start;
}

.topbar.nav-scrolled .nav-logo .logo {
  height: 36px;
}

.topbar.nav-scrolled .menu a {
  padding: 4px 12px;
  font-size: 13px;
}

.topbar.nav-scrolled .nav-sep {
  height: 12px;
}

.nav-logo-slot {
  flex-shrink: 0;
}

.nav-logo {
  display: block;
  line-height: 0;
  will-change: transform;
  transform-origin: center center;
}

.nav-logo .logo {
  height: 96px;
  width: auto;
  display: block;
  transition: height 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.topbar.nav-recede .nav-logo .logo {
  height: 80px;
}

.topbar.nav-recede.nav-scrolled .nav-logo .logo {
  height: 36px;
}

.nav-rest {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.75s ease 0.35s;
}

.topbar.nav-loaded .nav-rest {
  opacity: 1;
  pointer-events: auto;
}

.menu {
  display: flex;
  align-items: center;
  gap: 0;
}

.menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--dim);
  padding: 4px 16px;
  transition: color 0.15s;
  white-space: nowrap;
}

.menu a:hover {
  color: var(--white);
}

.nav-sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

.nav-text-cta {
  color: var(--white) !important;
  font-weight: 600 !important;
}

.toggle {
  display: none;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  opacity: 0;
  transition: opacity 0.6s ease 0.35s;
}

.topbar.nav-loaded .toggle {
  opacity: 1;
}

.toggle i,
.toggle i::before,
.toggle i::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--white);
  position: relative;
}

.toggle i::before,
.toggle i::after {
  content: '';
  position: absolute;
  left: 0;
}

.toggle i::before { top: -6px; }
.toggle i::after { top: 6px; }

@media (prefers-reduced-motion: reduce) {
  .nav-logo {
    transform: none !important;
    transition: none !important;
  }

  .nav-rest,
  .toggle {
    opacity: 1 !important;
    pointer-events: auto !important;
    transition: none !important;
  }

  body.nav-intro:not(.hero-ready)::before {
    display: none;
  }

  body.nav-intro {
    overflow: auto;
  }

  .hero-center > * {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── intro: nav first, then hero ── */

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 150;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.65s ease;
}

body.nav-intro:not(.hero-ready)::before {
  opacity: 1;
}

body.nav-intro {
  overflow: hidden;
}

body.hero-ready {
  overflow: auto;
}

.hero-center > * {
  opacity: 0;
  transform: translateY(20px);
}

body.hero-ready .hero-center > * {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

body.hero-ready .hero-badge { transition-delay: 0s; }
body.hero-ready .hero-display { transition-delay: 0.06s; }
body.hero-ready .hero-sub { transition-delay: 0.12s; }
body.hero-ready .hero-actions { transition-delay: 0.18s; }

/* ── hero buttons ── */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--blue);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.15s;
}

.btn-primary:hover {
  background: #2568c4;
  transform: none;
  box-shadow: none;
}

.btn-sm {
  padding: 11px 22px;
  font-size: 13px;
}

.btn-hero.btn-sm {
  padding: 11px 24px;
  font-size: 13px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(0, 180, 255, 0.25);
  border-radius: 10px;
  transition: 0.2s;
}

.btn-ghost:hover {
  background: rgba(0, 180, 255, 0.08);
  border-color: rgba(0, 180, 255, 0.4);
}

/* ── hero ── */

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav) + 48px) 0 100px;
  overflow: hidden;
}

.hero-spotlight {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 50% 42%, rgba(43, 125, 233, 0.14) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 50% 50%, rgba(100, 80, 200, 0.06) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

body.hero-ready .hero-spotlight {
  opacity: 1;
}

.hero-center {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  margin-bottom: 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(43, 125, 233, 0.8);
  animation: pulse 2s infinite;
}

.hero-display {
  margin-bottom: 24px;
  line-height: 0.95;
}

.hero-outline {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3.25rem, 11vw, 6.75rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.85);
  paint-order: stroke fill;
}

.hero-solid {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3.75rem, 14vw, 8.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: -0.02em;
}

.hero-sub {
  font-size: clamp(16px, 2.2vw, 19px);
  color: var(--dim);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: 0.2s;
  white-space: nowrap;
}

.btn-hero-fill {
  color: #0a0e14;
  background: #fff;
  border: 1px solid #fff;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.12);
}

.btn-hero-fill:hover {
  background: #e8ecf2;
  transform: translateY(-1px);
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.2);
}

.btn-hero-outline {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-hero-outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ── shared section language (matches hero) ── */

.section-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.section-badge-sm {
  margin-bottom: 20px;
  padding: 6px 14px;
  font-size: 10px;
}

.section-display {
  line-height: 0.95;
  margin-bottom: 16px;
}

.section-outline {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.75);
}

.section-solid {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.25rem, 7vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: -0.02em;
}

.section-display-left {
  text-align: left;
}

.section-lead {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--dim);
  max-width: 460px;
  line-height: 1.65;
}

.section-lead-left {
  text-align: left;
  margin: 0;
}

.section-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 50% 20%, rgba(43, 125, 233, 0.08) 0%, transparent 65%);
}

.sec-head {
  margin-bottom: 56px;
}

/* ── sections ── */

.section {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  overflow: hidden;
}

/* ── product scroll sections ── */

.sec-head,
.quote-discord-card,
.agent-prestige,
.agent-notice,
.agent-featured,
.pricing-tabs {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.sec-head.in-view,
.quote-discord-card.in-view,
.agent-prestige.in-view,
.agent-notice.in-view,
.agent-featured.in-view,
.pricing-tabs.in-view {
  opacity: 1;
  transform: none;
}

.product-block {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.product-block-first {
  padding-top: 100px;
}

.product-block + .product-block {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.product-block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-block-inner.in-view {
  opacity: 1;
  transform: none;
}

.product-block-inner.reverse .product-block-visual {
  order: 2;
}

.product-block-inner.reverse .product-block-content {
  order: 1;
}

.product-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.product-title .title-muted {
  color: rgba(255, 255, 255, 0.35);
}

.product-lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--dim);
  margin-bottom: 32px;
  max-width: 440px;
}

.product-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}

.detail {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  transition: border-color 0.2s, background 0.2s;
}

.detail:hover {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.detail strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 6px;
}

.detail span {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.5;
}

.product-action {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.product-from {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.product-from em {
  font-style: normal;
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--white);
  margin-left: 6px;
}

/* previews */

.product-block-visual {
  display: flex;
  justify-content: center;
}

.preview {
  width: 100%;
  max-width: 420px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 24px 64px rgba(0, 0, 0, 0.45);
}

.preview-web .preview-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #0a1018;
  border-bottom: 1px solid var(--line);
}

.preview-chrome span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #3a4555;
}

.preview-url {
  margin-left: auto;
  font-size: 11px;
  color: var(--dim);
  background: var(--bg);
  padding: 3px 10px;
  border-radius: 4px;
}

.preview-screen {
  padding: 20px;
}

.preview-nav-bar {
  height: 10px;
  width: 40%;
  background: #2a3545;
  border-radius: 3px;
  margin-bottom: 16px;
}

.preview-hero-block {
  height: 80px;
  background: linear-gradient(135deg, #1a3050, #1e2840);
  border-radius: 6px;
  margin-bottom: 16px;
  border: 1px solid #2a3a50;
}

.preview-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.preview-cols div {
  height: 48px;
  background: #1a2230;
  border-radius: 4px;
  border: 1px solid var(--line);
}

/* discord preview */
.preview-bot {
  padding: 0;
  background: #1a1d28;
}

.preview-discord-header {
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--dim);
  border-bottom: 1px solid #2a2d38;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.preview-discord-msg {
  display: flex;
  gap: 12px;
  padding: 12px 16px;
}

.preview-discord-av {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #5865f2;
  flex-shrink: 0;
}

.preview-discord-av.bot {
  background: var(--blue);
}

.preview-discord-name {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.preview-discord-msg p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.45;
}

/* bundle preview */
.preview-bundle {
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.04);
}

.bundle-preview-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 12px;
}

.bundle-preview-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 20px;
}

.bundle-preview-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.bundle-preview-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--dim);
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.bundle-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(43, 125, 233, 0.15);
  color: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
}

.bundle-preview-foot {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bundle-preview-price {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
}

.bundle-preview-save {
  font-size: 12px;
  font-weight: 600;
  color: #6dbf8a;
}

.plan-save {
  color: #7dd3a8 !important;
  font-weight: 600;
  font-size: 12px !important;
  padding-left: 0 !important;
}

.plan-save::before {
  display: none !important;
}

.plan-price-custom .plan-amount {
  letter-spacing: 0.08em;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.45);
}

.plan-contact-note {
  color: rgba(255, 255, 255, 0.45) !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
  font-style: italic;
  padding-left: 0 !important;
}

.plan-contact-note::before {
  display: none !important;
}

/* ── get a quote ── */

.section-quote {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.quote-discord-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 36px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.quote-discord-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(88, 101, 242, 0.15);
  color: #5865f2;
  flex-shrink: 0;
}

.quote-discord-body h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 8px;
}

.quote-discord-body p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--dim);
  margin-bottom: 14px;
}

.quote-discord-steps {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quote-discord-steps li {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.5);
}

.quote-discord-card .btn-hero {
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .quote-discord-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 24px;
  }

  .quote-discord-icon {
    margin: 0 auto;
  }

  .quote-discord-steps {
    justify-content: center;
  }

  .quote-discord-card .btn-hero {
    width: 100%;
    justify-content: center;
  }
}

/* ── agents ── */

.section-agents {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.agent-prestige {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 32px;
  max-width: 720px;
  margin: 0 auto 32px;
  padding: 22px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
}

.prestige-item {
  text-align: center;
}

.prestige-value {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 5px;
}

.prestige-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.prestige-sep {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.agent-notice {
  display: flex;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto 36px;
  padding: 26px 28px;
  background: linear-gradient(135deg, rgba(43, 125, 233, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 3px solid rgba(255, 255, 255, 0.55);
  border-radius: 20px;
  text-align: left;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.agent-notice-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
}

.agent-notice h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

.agent-notice p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}

.agent-notice-rules {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.agent-notice-rules li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}

.agent-notice-rules li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.agent-notice-rules strong {
  color: var(--white);
}

.agent-notice a {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.agent-featured {
  max-width: 620px;
  margin: 0 auto;
  padding: 40px 36px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.agent-featured-vip {
  position: relative;
  padding-top: 48px;
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 32px 80px rgba(0, 0, 0, 0.5);
}

.agent-vip-badge {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0a0e14;
  background: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.12);
  white-space: nowrap;
}

.agent-featured-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.agent-avatar-lg {
  width: 96px;
  height: 96px;
  font-size: 30px;
  border-radius: 22px;
  box-shadow: 0 0 48px rgba(43, 125, 233, 0.25);
}

.agent-avatar-discord {
  display: block;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.12);
}

.agent-discord-user {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
}

.agent-featured h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}

.agent-title {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.agent-featured-bio {
  font-size: 15px;
  line-height: 1.75;
  color: var(--dim);
  margin-bottom: 28px;
}

.agent-featured .agent-skills {
  justify-content: center;
  margin-bottom: 20px;
}

.agent-dm-note {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 22px;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-align: left;
}

.agent-dm-note strong {
  color: rgba(255, 255, 255, 0.7);
}

.agent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.agent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.agent-card {
  padding: 24px 20px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: 0.25s;
}

.agent-card:hover {
  border-color: #3a5070;
}

.agent-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.agent-avatar {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: hsl(var(--c), 55%, 42%);
  flex-shrink: 0;
}

.agent-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.agent-card .agent-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
}

.agent-card > p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.agent-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.agent-skills span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.5);
}

/* ── pricing ── */

.section-pricing {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-pricing-first {
  padding-top: 100px;
  border-top: none;
}

.pricing-tabs {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.tab-group-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}

.tab-group-icon {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(43, 125, 233, 0.9);
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(43, 125, 233, 0.1);
  border: 1px solid rgba(43, 125, 233, 0.2);
}

.tab-group h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
  margin: 0;
  padding: 0;
  border: none;
  text-align: left;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.plans-single {
  grid-template-columns: 1fr;
  max-width: 360px;
  margin: 0 auto;
}

.plan {
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.plan::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 40%, rgba(255, 255, 255, 0.05) 100%);
  -webkit-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.6;
}

.plan::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  pointer-events: none;
}

.plan:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.plan-hit {
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 24px 64px rgba(0, 0, 0, 0.5);
}

.plan-hit::before {
  opacity: 1;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.28) 0%, rgba(43, 125, 233, 0.15) 50%, rgba(255, 255, 255, 0.06) 100%);
}

.plan-hit:hover {
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(43, 125, 233, 0.08);
}

.plan-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a0e14;
  background: #fff;
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15);
}

.plan-head {
  padding: 28px 28px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.plan-name {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
}

.plan-price {
  display: flex;
  align-items: flex-start;
  line-height: 1;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: var(--white);
}

.plan-price::before {
  content: '$';
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 0.35em;
  margin-right: 2px;
  color: rgba(255, 255, 255, 0.45);
}

.plan-price-custom::before {
  display: none;
}

.plan-amount {
  font-size: clamp(2.5rem, 5vw, 3rem);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.plan-features {
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-features li {
  position: relative;
  padding-left: 22px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

.plan-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(43, 125, 233, 0.12);
  border: 1px solid rgba(43, 125, 233, 0.35);
  box-shadow: 0 0 12px rgba(43, 125, 233, 0.15);
}

.plan-features li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: calc(0.45em + 4px);
  width: 4px;
  height: 2px;
  border-left: 1.5px solid rgba(255, 255, 255, 0.7);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.7);
  transform: rotate(-45deg);
}

.plan-btn {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
  text-align: center;
  font: inherit;
  cursor: pointer;
}

.plan-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.plan-hit .plan-btn.btn-hero-fill {
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.15);
}

.plan-custom .plan-btn {
  margin-top: auto;
}

/* ── contact ── */

.section-contact {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-glow-contact {
  background:
    radial-gradient(ellipse 45% 35% at 20% 50%, rgba(43, 125, 233, 0.1) 0%, transparent 65%);
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-left .section-badge {
  margin-bottom: 20px;
}

.section-discord {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-discord .btn-hero {
  margin-top: 8px;
}

.contact-discord {
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--dim);
  max-width: 360px;
}

.contact-discord a {
  color: var(--white);
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: border-color 0.2s;
}

.contact-discord a:hover {
  border-color: rgba(255, 255, 255, 0.55);
}

.contact-discord-btn {
  margin-top: 20px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-glass {
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form input,
.form select,
.form textarea {
  font-family: inherit;
  font-size: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
}

.form textarea { resize: vertical; }

.form .btn-hero {
  align-self: flex-start;
  margin-top: 8px;
  border: none;
  cursor: pointer;
}

.form .btn-hero.sent {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
}

/* ── footer ── */

.foot {
  position: relative;
  z-index: 1;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.foot-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.foot-logo {
  display: block;
  line-height: 0;
}

.foot-logo .logo {
  height: 32px;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.foot-logo:hover .logo {
  opacity: 1;
}

.foot-inner span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin-right: auto;
}

.foot-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.foot-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  padding: 4px 14px;
  transition: color 0.15s;
}

.foot-links a:hover { color: var(--white); }

.foot-sep {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* ── responsive ── */

@media (max-width: 960px) {
  .hero-outline,
  .section-outline {
    -webkit-text-stroke-width: 1px;
  }

  .product-block-inner,
  .product-block-inner.reverse .product-block-visual,
  .product-block-inner.reverse .product-block-content {
    grid-template-columns: 1fr;
    order: unset;
  }

  .product-details { grid-template-columns: 1fr; }

  .agent-grid { grid-template-columns: repeat(2, 1fr); }
  .plans {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
    gap: 16px;
  }

  .plan-head {
    padding: 24px 22px 18px;
  }

  .plan-features {
    padding: 20px 22px;
  }

  .prestige-sep { display: none; }
  .agent-prestige { gap: 20px; padding: 20px; }
  .agent-notice { flex-direction: column; padding: 20px; }
  .agent-actions { flex-direction: column; width: 100%; }
  .agent-actions .btn-hero { width: 100%; }

  .contact-split { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .topbar {
    padding: 20px 0 0;
  }

  .topbar.nav-scrolled {
    padding: 12px 16px 0;
  }

  .topbar.nav-scrolled .nav-inner {
    width: 100%;
    max-width: none;
    justify-content: space-between;
    padding: 8px 12px 8px 14px;
  }

  .topbar.nav-scrolled .nav-logo-slot {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
  }

  .topbar.nav-scrolled .nav-logo .logo {
    height: 32px;
  }

  .topbar.nav-recede.nav-scrolled .nav-logo .logo {
    height: 32px;
  }

  .nav-inner {
    justify-content: space-between;
  }

  .nav-rest {
    display: none;
    flex: none;
  }

  .topbar.nav-loaded .nav-rest.open {
    display: block;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    padding-top: 8px;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-rest.open .menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-rest.open .nav-sep {
    width: 100%;
    height: 1px;
    margin: 0;
  }

  .nav-rest.open .menu a {
    text-align: center;
    padding: 14px 16px;
  }

  .toggle {
    display: flex;
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }

  .btn-hero {
    width: 100%;
  }

  .agent-grid { grid-template-columns: 1fr; }
}

/* ── legal / terms page ── */

.legal-page {
  overflow: auto;
}

.legal-page .topbar-static {
  position: fixed;
  z-index: 100;
  padding: 20px 0;
  opacity: 1;
}

.legal-page .nav-logo .logo {
  height: 48px;
}

.legal-page .nav-rest-visible,
.legal-page .toggle-visible {
  opacity: 1;
  pointer-events: auto;
}

.legal-main {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav) + 48px) 0 80px;
}

.legal-shell {
  max-width: 760px;
}

.legal-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 56px;
}

.legal-updated {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 16px;
}

.legal-intro {
  max-width: 560px;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.legal-block {
  padding: 28px 28px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
}

.legal-block h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 14px;
}

.legal-block p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--dim);
  margin-bottom: 12px;
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-block ul {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-block li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray);
}

.legal-block li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(43, 125, 233, 0.7);
}

.legal-block li strong {
  color: var(--white);
  font-weight: 600;
}

.legal-block a {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: border-color 0.2s;
}

.legal-block a:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.legal-foot-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .legal-page .nav-rest {
    display: none;
    flex: none;
  }

  .legal-page .topbar .nav-rest.open {
    display: block;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    padding-top: 8px;
  }

  .legal-block {
    padding: 22px 20px;
  }
}

/* ── reviews page ── */

.reviews-main {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav) + 48px) 0 80px;
}

.reviews-shell {
  max-width: 680px;
}

.reviews-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
}

.review-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card {
  padding: 24px 26px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
}

.review-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 10px;
}

.review-identity {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-card h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.review-brand {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

.review-stars {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #e8c04a;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 4px;
}

.review-order {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 12px;
}

.review-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--dim);
}

/* ── checkout modal ── */

body.checkout-open {
  overflow: hidden;
}

.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.checkout-modal[hidden] {
  display: none;
}

.checkout-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 14, 0.82);
  backdrop-filter: blur(8px);
}

.checkout-modal-panel {
  position: relative;
  width: min(100%, 440px);
  padding: 32px 28px 28px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(43, 125, 233, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(18, 24, 34, 0.98), rgba(10, 14, 20, 0.98));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.checkout-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.checkout-modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.checkout-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
}

.checkout-modal-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.checkout-modal-plan {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 10px;
}

.checkout-modal-price {
  margin-bottom: 18px;
}

.checkout-amount {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.checkout-modal-features {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.checkout-modal-features li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--dim);
}

.checkout-modal-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.checkout-modal-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
}

.checkout-modal-setup {
  font-size: 13px;
  line-height: 1.5;
  color: #f0c674;
  background: rgba(240, 198, 116, 0.08);
  border: 1px solid rgba(240, 198, 116, 0.2);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 16px;
}

.checkout-modal-setup code {
  font-size: 12px;
  color: #fff;
}

.checkout-modal-actions {
  display: grid;
  gap: 10px;
}

.checkout-modal-actions .btn-hero {
  width: 100%;
}
