:root {
  --bg: #04060b;
  --bg-2: #0a1019;
  --bg-3: #0f1724;

  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --panel-soft: rgba(255, 255, 255, 0.04);

  --stroke: rgba(255, 255, 255, 0.11);
  --stroke-strong: rgba(255, 255, 255, 0.18);

  --text: #f8fbff;
  --muted: #aeb8c8;
  --muted-strong: #dbe4f0;

  --accent: #eef4ff;
  --accent-soft: rgba(238, 244, 255, 0.14);

  --blue-glow: #8dbdff;
  --violet-glow: #b7a6ff;
  --cyan-glow: #9be7ff;
  --rose-glow: #ffd2e8;

  --premium-light: linear-gradient(135deg, #ffffff 0%, #edf4ff 35%, #dbe7ff 100%);
  --panel-gradient: linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.04));
  --hero-gradient: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.04));

  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --shadow-strong: 0 32px 110px rgba(0, 0, 0, 0.42);

  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 18px;

  --content-width: min(1240px, calc(100% - 32px));
  --transition: 0.28s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(141, 189, 255, 0.12), transparent 26%),
    radial-gradient(circle at top right, rgba(183, 166, 255, 0.10), transparent 22%),
    radial-gradient(circle at bottom right, rgba(155, 231, 255, 0.08), transparent 24%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 55%, var(--bg-3) 100%);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body.modal-open {
  overflow: hidden;
}

a,
button,
input {
  font: inherit;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bg-gradient {
  position: absolute;
  border-radius: 50%;
  filter: blur(84px);
  opacity: 0.5;
}

.bg-gradient-1 {
  width: 520px;
  height: 520px;
  top: -180px;
  left: -180px;
  background: radial-gradient(circle, rgba(141, 189, 255, 0.22), transparent 70%);
}

.bg-gradient-2 {
  width: 560px;
  height: 560px;
  right: -180px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(183, 166, 255, 0.18), transparent 70%);
}

.bg-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 32%, transparent 86%);
}

.bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.9) 0.7px, transparent 0.8px),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.65) 0.7px, transparent 0.8px),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,0.55) 0.7px, transparent 0.8px);
  background-size: 150px 150px;
}

/* HEADER */

.topbar {
  width: var(--content-width);
  margin: 20px auto 0;
  padding: 16px 20px;
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.045);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.15rem;
  color: #07101a;
  background: linear-gradient(135deg, #ffffff 0%, #eef5ff 50%, #dbe7ff 100%);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.95),
    0 10px 24px rgba(141, 189, 255, 0.18);
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-subtitle {
  font-size: 0.76rem;
  color: var(--muted);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-link {
  min-height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--muted-strong);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 700;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
  border: 1px solid transparent;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
  transform: translateY(-1px);
}

.nav-link-cta {
  border-color: var(--stroke);
  background: rgba(255,255,255,0.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.admin-link {
  border-color: rgba(141, 189, 255, 0.24);
  background: rgba(141, 189, 255, 0.08);
  color: #ecf4ff;
}

.hidden {
  display: none !important;
}

/* MAIN LAYOUT */

.page-shell {
  width: var(--content-width);
  margin: 26px auto 90px;
  position: relative;
  z-index: 1;
}

.hero-panel,
.stats-strip,
.feature-card,
.timeline-card,
.waitlist-panel,
.promise-box,
.modal-content,
.quote-panel,
.metric-strip,
.showcase-card,
.pillar-card {
  border: 1px solid var(--stroke);
  background: var(--panel-gradient);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.hero-panel,
.waitlist-panel,
.timeline-card,
.quote-panel {
  position: relative;
}

.hero-panel::after,
.waitlist-panel::after,
.timeline-card::after,
.quote-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(141, 189, 255, 0.08), transparent 28%),
    radial-gradient(circle at bottom left, rgba(183, 166, 255, 0.07), transparent 26%);
}

/* HERO */

.hero-panel {
  min-height: 760px;
  padding: 48px;
  border-radius: 42px;
  background: var(--hero-gradient);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
  box-shadow:
    var(--shadow-strong),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.eyebrow,
.section-tag,
.modal-tag,
.float-label,
.feature-index {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.045);
  color: var(--muted-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-title {
  margin: 18px 0 0;
  font-size: clamp(3.2rem, 6vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  font-weight: 900;
  max-width: 820px;
}

.hero-title span {
  display: block;
  background: linear-gradient(90deg, #ffffff 0%, #dce8ff 30%, #bcd6ff 66%, #efe4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  margin: 24px 0 0;
  max-width: 680px;
  color: var(--muted);
  line-height: 1.92;
  font-size: 1.06rem;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* BUTTONS */

.primary-btn,
.secondary-btn {
  min-height: 58px;
  padding: 0 24px;
  border-radius: 18px;
  font-family: inherit;
  font-size: 0.97rem;
  font-weight: 800;
  border: none;
  transition:
    transform var(--transition),
    opacity var(--transition),
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
}

.primary-btn:active,
.secondary-btn:active {
  transform: scale(0.97);
}

.primary-btn {
  color: #08101a;
  background: linear-gradient(135deg, #ffffff 0%, #eef5ff 35%, #d9e6ff 100%);
  box-shadow:
    0 18px 40px rgba(141, 189, 255, 0.18),
    0 8px 24px rgba(183, 166, 255, 0.10),
    inset 0 1px 1px rgba(255,255,255,0.98);
}

.primary-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}

.primary-btn:hover::after {
  transform: translateX(120%);
}

.primary-btn:hover {
  box-shadow:
    0 22px 44px rgba(141, 189, 255, 0.22),
    0 10px 28px rgba(183, 166, 255, 0.12),
    inset 0 1px 1px rgba(255,255,255,1);
}

.secondary-btn {
  color: var(--text);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--stroke);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

/* HERO VISUAL */

.hero-right {
  display: flex;
  justify-content: center;
}

.hero-visual {
  width: 100%;
  min-height: 560px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
}

.orbit-1 {
  width: 320px;
  height: 320px;
  animation: slowSpin 18s linear infinite;
}

.orbit-2 {
  width: 430px;
  height: 430px;
  animation: slowSpinReverse 24s linear infinite;
}

.hero-core {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid var(--stroke-strong);
  background: rgba(255,255,255,0.06);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 18px 40px rgba(0,0,0,0.25),
    0 0 30px rgba(141, 189, 255, 0.09);
}

.hero-core-label {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
  margin-bottom: 2px;
}

.hero-core strong {
  display: block;
  font-size: 2.05rem;
  letter-spacing: -0.04em;
}

.hero-float-card {
  position: absolute;
  width: 250px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.045);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.hero-float-card-top {
  top: 26px;
  right: 8px;
}

.hero-float-card-bottom {
  bottom: 28px;
  left: 8px;
}

.float-label {
  min-height: 32px;
  padding: 0 12px;
  font-size: 0.74rem;
}

.hero-float-card h3 {
  margin: 14px 0 8px;
  font-size: 1.14rem;
  letter-spacing: -0.03em;
}

.hero-float-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  font-size: 0.94rem;
}

/* COUNTDOWN */

.stats-strip {
  margin-top: 20px;
  padding: 16px;
  border-radius: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stat-card {
  padding: 22px 16px;
  border-radius: 22px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.04);
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.stat-card h3 {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.stat-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* CONTENT */

.content-section {
  margin-top: 44px;
}

.section-head {
  max-width: 820px;
  margin-bottom: 24px;
}

.section-head.compact {
  max-width: 620px;
}

.section-head h2 {
  margin: 14px 0 10px;
  font-size: clamp(2.15rem, 4vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
  font-size: 1.01rem;
}

/* GRIDS */

.feature-grid,
.showcase-grid,
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.showcase-card,
.pillar-card {
  padding: 26px;
  border-radius: 28px;
}

.feature-index {
  min-height: 34px;
  padding: 0 12px;
  font-size: 0.8rem;
}

.feature-card h3,
.showcase-card h3,
.pillar-card h3 {
  margin: 16px 0 10px;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.feature-card p,
.showcase-card p,
.pillar-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
}

/* SPLIT / TIMELINE */

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.timeline-card {
  padding: 28px;
  border-radius: 30px;
}

.timeline-card::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 18px;
  width: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04));
}

.timeline-item {
  position: relative;
  padding-left: 34px;
}

.timeline-item + .timeline-item {
  margin-top: 24px;
}

.timeline-dot {
  position: absolute;
  left: 10px;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff, #b9d7ff, #d9c8ff);
  box-shadow:
    0 0 0 8px rgba(185, 215, 255, 0.06),
    0 0 18px rgba(141, 189, 255, 0.18);
}

.timeline-item h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
}

/* QUOTE / EXTRA SUPPORT */

.quote-panel {
  padding: 34px;
  border-radius: 32px;
}

.quote-panel h2 {
  margin: 12px 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.quote-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

/* WAITLIST */

.waitlist-panel {
  margin-top: 44px;
  padding: 32px;
  border-radius: 36px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
}

.waitlist-copy h2 {
  margin: 14px 0 12px;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.waitlist-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.88;
}

.waitlist-form-wrap {
  display: flex;
  align-items: center;
}

.promise-box {
  margin-top: 22px;
  padding: 22px;
  border-radius: 24px;
}

.promise-box h3 {
  margin: 0 0 8px;
  font-size: 1.06rem;
  letter-spacing: -0.02em;
}

.promise-box p {
  margin: 0;
}

.waitlist-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.input-group label {
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 700;
}

.input-group input,
.waitlist-form > input {
  width: 100%;
  height: 58px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  padding: 0 16px;
  font-size: 1rem;
  outline: none;
  transition:
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.input-group input::placeholder,
.waitlist-form > input::placeholder {
  color: #8f99aa;
}

.input-group input:focus,
.waitlist-form > input:focus {
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.065);
  box-shadow:
    0 0 0 4px rgba(255,255,255,0.045),
    0 0 18px rgba(141, 189, 255, 0.08);
  transform: translateY(-1px);
}

.input-group input.invalid,
.waitlist-form > input.invalid {
  border-color: rgba(255,125,159,0.7);
  box-shadow: 0 0 0 4px rgba(255,125,159,0.08);
  animation: softShake 0.32s ease;
}

.input-group input.valid,
.waitlist-form > input.valid {
  border-color: rgba(255,255,255,0.22);
}

.full-btn {
  width: 100%;
  margin-top: 4px;
  gap: 10px;
}

.full-btn.loading {
  opacity: 0.92;
}

.btn-loader {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(8,16,26,0.18);
  border-top-color: rgba(8,16,26,0.9);
  display: none;
  animation: slowSpin 0.8s linear infinite;
}

.full-btn.loading .btn-loader {
  display: inline-block;
}

.form-message {
  min-height: 24px;
  margin: 4px 0 0;
  font-size: 0.95rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
}

.form-message.show {
  opacity: 1;
  transform: translateY(0);
}

.form-message.success {
  color: #dfe9f7;
}

.form-message.error {
  color: #ffb1c5;
}

/* FOOTER */

.footer {
  width: var(--content-width);
  margin: 42px auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--muted);
  z-index: 1;
}

.admin-trigger {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 34px;
  height: 34px;
  opacity: 0.01;
  background: transparent;
  border: none;
}

/* MODAL */

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.modal.show {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 12, 0.68);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1;
}

.modal-content {
  position: relative;
  z-index: 2;
  width: min(580px, calc(100% - 28px));
  padding: 32px;
  border-radius: 32px;
}

.modal-content > * {
  position: relative;
  z-index: 3;
}

.modal-tag {
  margin-bottom: 16px;
}

.modal-content h3 {
  margin: 0 0 12px;
  font-size: 2rem;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.modal-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}

.success-modal-content {
  text-align: center;
}

.success-check-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 26px auto 0;
}

.success-check-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  animation: slowSpin 4.2s linear infinite;
}

.success-check-core {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 900;
  color: #08101a;
  background: linear-gradient(135deg, #f4f8ff, #dce6f5);
  box-shadow:
    0 0 24px rgba(141, 189, 255, 0.16),
    inset 0 1px 1px rgba(255,255,255,0.9);
}

/* INTRO */

.intro {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, #0b111a, #05070c);
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.intro.hidden {
  opacity: 0;
  visibility: hidden;
}

.intro-core {
  text-align: center;
}

.intro-logo {
  width: 90px;
  height: 90px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  font-weight: 900;
  color: #08101a;
  background: linear-gradient(135deg, #ffffff, #dce6ff);
  margin: 0 auto 16px;
  animation: introFloat 2.2s ease-in-out infinite;
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.95),
    0 18px 40px rgba(141, 189, 255, 0.14);
}

.intro-text {
  color: #aeb8c8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

/* REVEAL */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(10px);
  transition: all 0.8s cubic-bezier(.2,.7,.2,1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* SUCCESS BURST */

.success-burst {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
}

.success-burst span {
  position: absolute;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, white, rgba(141,189,255,0.6));
  border-radius: 50%;
  animation: burst 1s ease forwards;
}

/* ANIMATIONS */

@keyframes slowSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes slowSpinReverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@keyframes softShake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-4px);
  }
  50% {
    transform: translateX(4px);
  }
  75% {
    transform: translateX(-2px);
  }
}

@keyframes introFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes burst {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(var(--x), var(--y)) scale(0.2);
  }
}

/* RESPONSIVE */

@media (max-width: 1180px) {
  .hero-panel {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .split-section,
  .waitlist-panel,
  .feature-grid,
  .showcase-grid,
  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-float-card-top {
    top: 18px;
    right: 4px;
  }

  .hero-float-card-bottom {
    bottom: 18px;
    left: 4px;
  }
}

@media (max-width: 768px) {
  .topbar {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding: 14px;
    border-radius: 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .brand-subtitle {
    display: none;
  }

  .topbar-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .nav-link {
    flex: 1 1 auto;
  }

  .page-shell {
    width: calc(100% - 20px);
    margin-top: 14px;
  }

  .hero-panel,
  .stats-strip,
  .waitlist-panel,
  .timeline-card,
  .feature-card,
  .showcase-card,
  .pillar-card,
  .quote-panel,
  .modal-content {
    padding: 22px;
    border-radius: 26px;
  }

  .hero-title {
    font-size: 2.9rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-core {
    width: 156px;
    height: 156px;
  }

  .hero-float-card {
    position: static;
    width: 100%;
  }

  .hero-visual {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .orbit-2 {
    width: 320px;
    height: 320px;
  }

  .orbit-1 {
    width: 240px;
    height: 240px;
  }

  .intro-logo {
    width: 78px;
    height: 78px;
    font-size: 2rem;
    border-radius: 22px;
  }
}

@media (max-width: 520px) {
  .hero-title {
    font-size: 2.35rem;
  }

  .hero-description,
  .section-head p,
  .waitlist-copy p,
  .timeline-item p,
  .feature-card p,
  .showcase-card p,
  .pillar-card p,
  .modal-content p {
    font-size: 0.96rem;
  }

  .stats-strip {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================
   PREMIUM FOOTER UPGRADE
========================= */

.footer {
  width: var(--content-width);
  margin: 60px auto 40px;
  padding: 22px 26px;
  border-radius: 22px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;

  border: 1px solid var(--stroke);
  background: rgba(255,255,255,0.035);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow:
    0 20px 60px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* =========================
   PRIVACY LINK PREMIUM STYLE
========================= */

.footer a {
  position: relative;
  color: var(--muted-strong);
  font-weight: 700;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;

  border: 1px solid transparent;
  transition: all 0.3s ease;
}

/* glow hover */
.footer a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
  border-color: var(--stroke);
  transform: translateY(-1px);

  box-shadow:
    0 8px 22px rgba(141,189,255,0.12),
    0 4px 12px rgba(183,166,255,0.08);
}

/* animated underline glow */
.footer a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(141,189,255,0.8),
    transparent
  );

  opacity: 0;
  transform: scaleX(0.4);
  transition: all 0.3s ease;
}

.footer a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

/* =========================
   SUBTLE PREMIUM FADE
========================= */

.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;

  background:
    radial-gradient(circle at top, rgba(141,189,255,0.08), transparent 40%),
    radial-gradient(circle at bottom, rgba(183,166,255,0.06), transparent 40%);
}