/* VaultKit — dark premium theme (owner feedback: white bg was dead) */
:root {
  --bg: #07060c;
  --bg-elevated: #0f0d18;
  --bg-card: #14111f;
  --bg-card-hover: #1a1628;
  --line: rgba(167, 139, 250, 0.14);
  --line-strong: rgba(167, 139, 250, 0.28);
  --text: #f4f0ff;
  --text-muted: #a89bc4;
  --text-faint: #6f6588;
  --violet: #8b5cf6;
  --violet-bright: #a78bfa;
  --violet-deep: #6d28d9;
  --amber: #fbbf24;
  --amber-dim: #d97706;
  --pink: #f472b6;
  --success: #34d399;
  --font: "Inter", "Segoe UI", system-ui, sans-serif;
  --display: "DM Serif Display", Georgia, "Times New Roman", serif;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --max: 1120px;
  --header-h: 4.25rem;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --glow: 0 0 60px rgba(139, 92, 246, 0.25);
  --focus: 0 0 0 3px rgba(167, 139, 250, 0.5);
  --transition: 160ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(ellipse 90% 70% at 85% -10%, rgba(139, 92, 246, 0.28), transparent 50%),
    radial-gradient(ellipse 60% 50% at -10% 40%, rgba(244, 114, 182, 0.12), transparent 45%),
    radial-gradient(ellipse 50% 40% at 70% 100%, rgba(251, 191, 36, 0.08), transparent 50%),
    var(--bg);
  background-attachment: fixed;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--violet-bright);
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--amber);
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--violet);
  color: #fff;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
  color: #fff;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 100;
  background: linear-gradient(90deg, var(--violet), var(--pink), var(--amber));
  box-shadow: 0 0 12px rgba(167, 139, 250, 0.6);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 6, 12, 0.82);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}

.logo-mark {
  display: inline-flex;
  width: 1.75rem;
  height: 1.75rem;
  color: var(--violet-bright);
  filter: drop-shadow(0 0 10px rgba(167, 139, 250, 0.5));
}

.logo-mark svg {
  width: 100%;
  height: 100%;
  transition: transform 400ms ease;
}

.logo:hover .logo-mark svg {
  transform: rotate(180deg);
}

.footer-logo .logo-mark {
  color: var(--violet-bright);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 1px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-list a:hover,
.nav-list a.is-active {
  color: var(--text);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--violet), var(--violet-deep));
  color: #fff !important;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 20px rgba(109, 40, 217, 0.4);
}

.nav-cta:hover {
  filter: brightness(1.08);
  color: #fff !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 2.85rem;
  padding: 0.75rem 1.35rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    filter var(--transition),
    transform var(--transition);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--violet-bright), var(--violet-deep));
  color: #fff;
  box-shadow: 0 8px 28px rgba(109, 40, 217, 0.35);
}

.btn-primary:hover {
  color: #fff;
  filter: brightness(1.06);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text);
  border-color: var(--line-strong);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--violet-bright);
  color: var(--text);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
  background: rgba(251, 191, 36, 0.06);
}

.btn-accent {
  background: linear-gradient(135deg, var(--amber), var(--amber-dim));
  color: #1a1000;
  font-weight: 700;
}

.btn-accent:hover {
  color: #1a1000;
  filter: brightness(1.05);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  min-height: 2.25rem;
  padding: 0.45rem 0.95rem;
  font-size: 0.875rem;
}

/* Hero */
.hero {
  padding: 4rem 0 4.5rem;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.2), transparent 40%),
    radial-gradient(circle at 90% 60%, rgba(244, 114, 182, 0.12), transparent 35%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.75rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
}

.hero h1 {
  margin: 0 0 1.1rem;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.35rem, 5.2vw, 3.65rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text);
  text-shadow: 0 0 40px rgba(139, 92, 246, 0.25);
}

.hero-lead {
  margin: 0 0 1.6rem;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 36rem;
}

.hero-lead strong {
  color: var(--text);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-proof li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
  flex-shrink: 0;
}

.hero-card {
  background: linear-gradient(160deg, #1c1530 0%, #120e1c 50%, #1a1028 100%);
  color: var(--text);
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow), var(--glow);
  padding: 1.85rem;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.35), transparent 70%);
  pointer-events: none;
}

.hero-card-inner {
  position: relative;
}

.hero-card-label {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
}

.hero-card-title {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 400;
}

.hero-card-price {
  margin: 0 0 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero-card-price .currency {
  font-size: 1.25rem;
  color: var(--violet-bright);
  vertical-align: super;
}

.hero-card ul {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero-card li {
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--line);
}

.hero-card li:last-child {
  border-bottom: none;
}

/* Sections */
.section {
  padding: 4rem 0;
  position: relative;
}

.section--alt {
  background: rgba(15, 13, 24, 0.65);
  border-block: 1px solid var(--line);
}

.section--pricing {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(139, 92, 246, 0.12), transparent 60%),
    transparent;
}

.section-header {
  max-width: 40rem;
  margin-bottom: 2.25rem;
}

.section-header h2 {
  margin: 0 0 0.65rem;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  line-height: 1.2;
  color: var(--text);
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Pack cards */
.pack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.pack-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition:
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.pack-card:hover {
  border-color: var(--line-strong);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.pack-card--featured {
  border-color: rgba(167, 139, 250, 0.45);
  background: linear-gradient(180deg, #1a1430 0%, #14111f 100%);
  box-shadow: var(--glow);
  position: relative;
}

.pack-card .badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border-radius: var(--radius-pill);
  background: rgba(251, 191, 36, 0.15);
  color: var(--amber);
  border: 1px solid rgba(251, 191, 36, 0.35);
}

.pack-tier {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet-bright);
}

.pack-tier--featured {
  color: var(--amber);
}

.pack-card h3 {
  margin: 0.15rem 0;
  font-size: 1.35rem;
  font-weight: 650;
}

.pack-tagline {
  margin: 0 0 0.5rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.pack-price {
  margin: 0.35rem 0 0.75rem;
}

.pack-price-amount {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.pack-price .muted {
  color: var(--text-faint);
  font-size: 0.9rem;
}

.pack-features {
  margin: 0 0 1.15rem;
  padding: 0;
  list-style: none;
  flex: 1;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.pack-features li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--line);
  padding-left: 1.15rem;
  position: relative;
}

.pack-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-size: 0.8rem;
  font-weight: 700;
}

.pack-features li:last-child {
  border-bottom: none;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.steps li {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--pink));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4);
}

.steps h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
}

.steps p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Sample panel */
.sample-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(28, 21, 48, 0.95), rgba(15, 13, 24, 0.98));
  border: 1px solid var(--line-strong);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.sample-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(251, 191, 36, 0.12), transparent 45%);
  pointer-events: none;
}

.sample-copy,
.sample-media {
  position: relative;
}

.sample-panel h2 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2rem);
}

.sample-copy > p:not(.eyebrow) {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.sample-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

.sample-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.sample-trust li::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--amber);
}

.sample-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.sample-cover {
  background: linear-gradient(145deg, #2a1f45, #12101a);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 1rem;
  box-shadow: inset 0 0 40px rgba(139, 92, 246, 0.15);
}

.sample-cover-mark {
  color: var(--violet-bright);
  display: inline-flex;
  margin-bottom: 0.5rem;
}

.sample-cover-brand {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.sample-cover-title {
  margin: 0.25rem 0;
  font-family: var(--display);
  font-size: 1.5rem;
}

.sample-cover-meta {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.sample-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.sample-list li {
  padding: 0.45rem 0 0.45rem 1.2rem;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.sample-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 2px;
  background: var(--violet);
}

.sample-list li:last-child {
  border-bottom: none;
}

/* Pricing table */
.pricing-table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
}

.pricing-row {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1.4fr 0.9fr;
  gap: 0.75rem;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row--head {
  background: rgba(139, 92, 246, 0.1);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.pricing-row--highlight {
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.15), transparent 70%);
  border-left: 3px solid var(--violet-bright);
}

.badge-inline {
  display: inline-block;
  margin-left: 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.15rem 0.4rem;
  border-radius: var(--radius-pill);
  background: rgba(251, 191, 36, 0.15);
  color: var(--amber);
  vertical-align: middle;
}

.pricing-note {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--text-faint);
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.65rem;
  max-width: 42rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.15rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item[open] .faq-chevron {
  transform: rotate(-135deg);
}

.faq-body {
  padding: 0 1.15rem 1.1rem;
  color: var(--text-muted);
}

.faq-body p {
  margin: 0;
}

.faq-body a {
  color: var(--amber);
}

/* CTA band */
.cta-band {
  padding: 3.5rem 0;
}

.cta-inner {
  text-align: center;
  background: linear-gradient(135deg, #1a1030 0%, #2a1450 45%, #1a0f28 100%);
  border: 1px solid var(--line-strong);
  border-radius: calc(var(--radius) + 4px);
  padding: 2.75rem 1.5rem;
  box-shadow: var(--glow);
}

.cta-inner h2 {
  margin: 0 0 0.65rem;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.cta-inner p {
  margin: 0 0 1.35rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: #05040a;
  padding: 2.5rem 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 1.5rem;
  align-items: start;
}

.footer-logo {
  margin: 0 0 0.35rem;
  color: var(--text);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-meta {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-faint);
}

.muted {
  color: var(--text-muted);
}

/* Reveal: never blank without JS */
[data-reveal] {
  opacity: 1;
  transform: none;
}

html.js [data-reveal]:not(.is-revealed) {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

html.js [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

html.js [data-reveal][data-delay="1"] {
  transition-delay: 0.06s;
}
html.js [data-reveal][data-delay="2"] {
  transition-delay: 0.14s;
}
html.js [data-reveal][data-delay="3"] {
  transition-delay: 0.22s;
}

@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal],
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none;
  }
  #scroll-progress {
    display: none;
  }
}

/* Mobile */
@media (max-width: 900px) {
  .hero-grid,
  .pack-grid,
  .steps,
  .sample-panel {
    grid-template-columns: 1fr;
  }

  .pricing-row {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-row--head {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 0.7rem 1rem;
  background: rgba(7, 6, 12, 0.96);
  border-top: 1px solid var(--line-strong);
  backdrop-filter: blur(14px) saturate(1.2);
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-cta-text strong {
  color: var(--text);
}

@media (max-width: 720px) {
  .sticky-cta {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sticky-cta {
    transition: none;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .nav-list {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1rem 1rem;
    background: rgba(10, 8, 18, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .nav-list.is-open {
    display: flex;
  }

  .nav-list a {
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    justify-content: center;
    margin-top: 0.5rem;
  }

  .hero {
    padding: 2.5rem 0 3rem;
  }

  .section {
    padding: 3rem 0;
  }

  .sample-panel {
    padding: 1.35rem;
  }
}
