:root {
  --bg: #070b12;
  --bg-soft: #0f1726;
  --card: #131d2d;
  --border: rgba(111, 184, 255, 0.2);
  --text: #edf4ff;
  --muted: #99abc4;
  --primary: #2fb2ff;
  --secondary: #4c7dff;
  --accent-art: #8fd5ff;
  --success: #4ed3a6;
  --warn: #ffb347;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Sora", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 8% -18%, rgba(47, 178, 255, 0.22), transparent 45%),
    radial-gradient(circle at 94% -10%, rgba(76, 125, 255, 0.18), transparent 42%),
    linear-gradient(180deg, #08101b 0%, #070b12 100%);
  color: var(--text);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: radial-gradient(circle at center, black 38%, transparent 92%);
  mask-image: radial-gradient(circle at center, black 38%, transparent 92%);
  opacity: 0.55;
}

a {
  color: inherit;
}

.shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: rgba(7, 11, 18, 0.88);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(3, 8, 16, 0.4);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 8px 20px rgba(10, 13, 22, 0.4);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  color: #0a0d16;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.brand-stack {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-stack strong {
  font-size: 0.86rem;
}

.brand-stack em {
  color: var(--accent-art);
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-style: normal;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.nav a.active,
.nav a:hover {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  border: 1px solid transparent;
  padding: 11px 18px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #06101d;
  box-shadow: 0 12px 34px rgba(47, 178, 255, 0.28);
}

.btn-outline {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.01);
}

.page-hero {
  padding: 56px 0 28px;
}

.kicker {
  color: var(--accent-art);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.72rem;
  margin-bottom: 8px;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 12px;
}

.subtitle {
  color: var(--muted);
  max-width: 760px;
  margin-bottom: 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.card {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
}

.card h3 {
  color: #fdf6e8;
}

.card p {
  color: var(--muted);
  margin: 10px 0 0;
}

.price {
  font-size: 1.65rem;
  font-weight: 800;
  margin: 8px 0;
}

.price small {
  font-size: 0.95rem;
  color: var(--muted);
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.section {
  padding: 20px 0 34px;
}

.section + .section {
  border-top: 1px solid var(--border);
}

.callout {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(87, 184, 255, 0.08), rgba(138, 125, 255, 0.08), rgba(255, 191, 107, 0.08));
  padding: 22px;
}

.callout .btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.footer {
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.86rem;
  padding: 18px 0 26px;
  margin-top: 26px;
}

.page-hero-immersive {
  padding: 64px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 20px;
  align-items: stretch;
}

.hero-copy,
.hero-visual,
.feature-card,
.offer-card,
.story-panel,
.proof-panel,
.cta-band {
  position: relative;
  overflow: hidden;
}

.hero-copy {
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 34px;
  background:
    radial-gradient(circle at top left, rgba(87, 184, 255, 0.18), transparent 42%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  box-shadow: 0 24px 46px rgba(4, 8, 20, 0.34);
}

.hero-copy::after,
.hero-visual::after,
.cta-band::after {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 191, 107, 0.2), transparent 68%);
  pointer-events: none;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  max-width: 11ch;
  margin-bottom: 18px;
}

.hero-title span,
.accent-text {
  background: linear-gradient(120deg, var(--primary), var(--secondary) 55%, var(--accent-art));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.03rem;
  color: var(--muted);
  max-width: 60ch;
  margin: 0 0 20px;
}

.hero-actions,
.pill-row,
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pill-row {
  margin-top: 18px;
}

.info-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
}

.info-pill strong {
  color: var(--accent-art);
}

.hero-visual {
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 22px;
  background:
    radial-gradient(circle at 85% 15%, rgba(138, 125, 255, 0.2), transparent 33%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  box-shadow: 0 24px 46px rgba(4, 8, 20, 0.32);
}

.visual-frame {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(9, 10, 16, 0.78), rgba(24, 27, 43, 0.94));
  padding: 18px;
  min-height: 100%;
}

.visual-label {
  color: var(--accent-art);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.mini-board {
  display: grid;
  gap: 12px;
}

.mini-card {
  border-radius: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.mini-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.mini-card p,
.mini-card ul,
.story-panel p,
.proof-panel p,
.feature-card p,
.offer-card p,
.offer-card li,
.section-intro p {
  color: var(--muted);
}

.mini-card ul,
.offer-card ul,
.story-list,
.proof-list {
  margin: 12px 0 0;
  padding-left: 18px;
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 6px;
}

.metric-card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.025);
}

.metric-card strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 8px;
}

.metric-card span {
  color: var(--muted);
  font-size: 0.88rem;
}

.section-intro {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
}

.section-intro p {
  max-width: 60ch;
  margin: 0;
}

.feature-grid,
.offer-grid,
.story-grid,
.proof-grid {
  display: grid;
  gap: 16px;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.offer-grid,
.story-grid,
.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.offer-card,
.story-panel,
.proof-panel,
.cta-band {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  box-shadow: 0 14px 30px rgba(7, 12, 26, 0.24);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover,
.offer-card:hover,
.story-panel:hover,
.proof-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 178, 255, 0.5);
  box-shadow: 0 18px 36px rgba(7, 12, 26, 0.36);
}

.feature-card h3,
.offer-card h3,
.story-panel h3,
.proof-panel h3,
.cta-band h2 {
  margin-bottom: 10px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent-art);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.link-arrow:hover {
  color: var(--accent-art);
}

.offer-card.popular {
  border-color: rgba(138, 125, 255, 0.42);
  background:
    radial-gradient(circle at top right, rgba(138, 125, 255, 0.18), transparent 34%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  transform: translateY(-8px);
}

.offer-tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(138, 125, 255, 0.18);
  color: #d9d3ff;
  margin-bottom: 14px;
}

.offer-price {
  font-size: 2rem;
  line-height: 1;
  margin: 10px 0 14px;
  font-weight: 800;
}

.offer-price small {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 600;
}

.story-panel.highlight,
.proof-panel.highlight {
  background:
    radial-gradient(circle at bottom left, rgba(255, 191, 107, 0.14), transparent 34%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 16px;
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(87, 184, 255, 0.14), transparent 36%),
    linear-gradient(145deg, rgba(87, 184, 255, 0.06), rgba(138, 125, 255, 0.08), rgba(255, 191, 107, 0.08));
}

.section-spacious {
  padding-top: 28px;
  padding-bottom: 40px;
}

.rise-in {
  animation: riseIn 0.7s ease both;
}

.rise-in.delay-1 {
  animation-delay: 0.08s;
}

.rise-in.delay-2 {
  animation-delay: 0.16s;
}

.float-card {
  animation: floatCard 4.2s ease-in-out infinite;
}

.float-card.delay-1 {
  animation-delay: 0.5s;
}

.float-card.delay-2 {
  animation-delay: 1s;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@media (max-width: 860px) {
  .topbar-inner {
    align-items: flex-start;
    padding: 12px 0;
    flex-direction: column;
  }

  .nav {
    gap: 12px;
  }

  .hero-grid,
  .feature-grid,
  .offer-grid,
  .story-grid,
  .proof-grid,
  .metric-band,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .section-intro {
    flex-direction: column;
    align-items: flex-start;
  }

  .offer-card.popular {
    transform: none;
  }
}

@media (max-width: 620px) {
  .hero-copy,
  .hero-visual,
  .feature-card,
  .offer-card,
  .story-panel,
  .proof-panel,
  .cta-band {
    padding: 20px;
    border-radius: 20px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 12vw, 3.6rem);
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }
}
