/* =========================================================
   GLOW X — Standalone landing page styles
   Design tokens mirror the app's oklch palette
   ========================================================= */

:root {
  --background: oklch(0.13 0.035 265);
  --foreground: oklch(0.98 0.005 250);
  --card: oklch(0.17 0.04 265);
  --primary: oklch(0.82 0.13 230);
  --primary-fg: oklch(0.13 0.035 265);
  --muted-fg: oklch(0.62 0.03 260);
  --border: oklch(0.28 0.035 265);
  --primary-soft: oklch(0.62 0.09 235);

  --font-display: "Anton", sans-serif;
  --font-sans: "Inter", "Hind Siliguri", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { 
  background: var(--background); 
  color: var(--foreground); 
  margin: 0;
  padding: 0;
  width: 100%;
}
body {
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  width: 100%;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: color-mix(in oklch, var(--primary) 30%, transparent); }

/* -------- Utility -------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--md { max-width: 1100px; }
.text-fg { color: var(--foreground); }
.text-primary { color: var(--primary); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
}

.h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.25;
  margin-top: 12px;
}
.h2--xl { font-size: clamp(3rem, 7vw, 5rem); }
.h2--italic { font-style: italic; }

.grad-text {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.outline-text {
  color: transparent;
  text-shadow: 
    -1px -1px 0 var(--primary),  
     1px -1px 0 var(--primary),
    -1px  1px 0 var(--primary),
     1px  1px 0 var(--primary);
}

.section-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 64px;
}
.lede {
  max-width: 32rem;
  margin-top: 24px;
  color: var(--muted-fg);
  font-size: 15px;
}

/* -------- Chip / small pill -------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid color-mix(in oklch, var(--primary) 40%, transparent);
  background: color-mix(in oklch, var(--background) 60%, transparent);
  border-radius: 999px;
  padding: 6px 16px;
  backdrop-filter: blur(10px);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}
.chip__dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--primary);
  animation: pulse 2s ease-in-out infinite;
}

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}
.btn--primary {
  background: var(--primary);
  color: var(--primary-fg);
}
.btn--primary:hover { background: var(--foreground); color: var(--background); transform: scale(1.02); }
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--xl {
  padding: 20px 40px;
  font-size: 16px;
  box-shadow: 0 10px 40px -10px var(--primary);
}
.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(4px); }

/* -------- NAV -------- */
.nav {
  position: relative; z-index: 50;
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklch, var(--background) 80%, transparent);
  backdrop-filter: blur(12px);
}
.nav__inner {
  max-width: 1200px; margin: 0 auto;
  height: 64px; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: -0.04em;
}
.nav__links { display: none; gap: 32px; }
.nav__links a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-fg);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--primary); }
@media (min-width: 768px) { .nav__links { display: flex; } }

/* -------- HERO -------- */
.hero { position: relative; border-bottom: 1px solid var(--border); overflow: hidden; }
.hero__glow { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.glow {
  position: absolute;
  border-radius: 999px;
  background: color-mix(in oklch, var(--primary) 40%, transparent);
  filter: blur(160px);
}
.glow--lg { width: 700px; height: 700px; left: 50%; top: 65%; transform: translate(-50%, -50%); }
.glow--md { width: 400px; height: 400px; left: 50%; top: 70%; transform: translate(-50%, -50%); filter: blur(100px); background: color-mix(in oklch, var(--primary) 30%, transparent); }
.glow--xl { width: 700px; height: 700px; left: 50%; top: 50%; transform: translate(-50%, -50%); filter: blur(180px); background: color-mix(in oklch, var(--primary) 20%, transparent); }

.hero__inner {
  position: relative; z-index: 1;
  max-width: 900px; margin: 0 auto;
  padding: 56px 24px 64px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}

.hero__title {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-top: 24px;
}
.hero__line { 
  display: block; 
  font-family: 'Hind Siliguri', var(--font-sans), sans-serif;
  font-size: clamp(1.8rem, 4.5vw, 2.6rem); 
  font-weight: 700;
  line-height: 1.2;
  color: var(--foreground);
}
.hero__line--grad {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 850;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.hero__sub {
  margin-top: 24px;
  max-width: 36rem;
  color: var(--muted-fg);
  font-size: 17px;
  font-weight: 500;
}

.social {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  border: 1px solid var(--border);
  background: color-mix(in oklch, var(--card) 60%, transparent);
  padding: 6px 20px 6px 6px;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}
.social__avatars { display: flex; }
.social__avatars img,
.social__more {
  width: 32px; height: 32px; border-radius: 999px;
  border: 2px solid var(--background);
  object-fit: cover;
}
.social__avatars > * + * { margin-left: -8px; }
.social__more {
  display: grid; place-items: center;
  background: var(--primary); color: var(--primary-fg);
  font-family: var(--font-mono); font-size: 10px; font-weight: 900;
}
.social__meta { text-align: left; }
.social__title {
  font-family: var(--font-display); font-size: 14px;
  text-transform: uppercase; letter-spacing: -0.02em; line-height: 1;
}
.social__sub {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted-fg); margin-top: 4px;
}

.btn--primary.btn--xl { margin-top: 32px; }

.micro {
  margin-top: 12px;
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted-fg);
}
.strike { text-decoration: line-through; }
.save {
  background: color-mix(in oklch, var(--primary) 20%, transparent);
  color: var(--primary);
  padding: 2px 8px;
}

.hero__product {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin-top: 32px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.hero__product img { width: 100%; object-fit: contain; position: relative; z-index: 1; border-radius: 16px; }
.tag {
  position: absolute;
  border: 1px solid color-mix(in oklch, var(--primary) 40%, transparent);
  background: color-mix(in oklch, var(--background) 70%, transparent);
  padding: 8px 12px;
  backdrop-filter: blur(10px);
  z-index: 2;
}
.tag__label {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--primary);
}
.tag__value {
  font-family: var(--font-display); font-size: 24px; line-height: 1;
}
.tag--tl { top: 12px; left: 12px; text-align: left; }
.tag--br { bottom: 12px; right: 12px; text-align: right; }
@media (min-width: 768px) {
  .tag--tl { left: 16px; top: 16px; }
  .tag--br { right: 16px; bottom: 16px; }
}
@media (max-width: 640px) { .tag { display: none; } }

.benefits-strip {
  margin-top: 40px;
  width: 100%;
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 640px) { .benefits-strip { grid-template-columns: repeat(4, 1fr); } }
.bstrip__item {
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.bstrip__item .ico {
  font-size: 24px; color: var(--primary);
}
.bstrip__item > div { display: flex; flex-direction: column; text-align: left; }
.bstrip__tag {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted-fg);
}
.bstrip__title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* -------- PROOF -------- */
.proof { border-bottom: 1px solid var(--border); padding: 80px 0; }
.proof__frame {
  max-width: 640px; margin: 0 auto;
  overflow: hidden; border-radius: 2px;
  outline: 1px solid var(--border);
}
.proof__frame img { width: 100%; object-fit: cover; }
.proof__stats {
  margin-top: 32px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 16px;
  text-align: center;
  font-family: var(--font-sans);
}
.stat {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(1.875rem, 4vw, 3rem);
  color: var(--primary);
}
.stat__label {
  margin-top: 6px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted-fg);
}

/* -------- SYSTEM / ORBIT -------- */
.system {
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
  padding: 112px 0;
}
.system__bg { position: absolute; inset: 0; pointer-events: none; }
.grid-bg {
  position: absolute; inset: 0; opacity: 0.04;
  background-image:
    linear-gradient(var(--primary) 1px, transparent 1px),
    linear-gradient(90deg, var(--primary) 1px, transparent 1px);
  background-size: 60px 60px;
}

.orbit {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 80px auto 0;
  aspect-ratio: 1 / 1;
}
.orbit__svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.orbit__center {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.orbit__halo {
  position: absolute; inset: -32px;
  border-radius: 999px;
  background: color-mix(in oklch, var(--primary) 20%, transparent);
  filter: blur(48px);
}
.orbit__medallion {
  position: relative;
  width: 128px; height: 128px;
  border-radius: 999px;
  overflow: hidden;
  opacity: 0.6;
  outline: 1px solid color-mix(in oklch, var(--primary) 30%, transparent);
}
@media (min-width: 768px) { .orbit__medallion { width: 160px; height: 160px; } }
.orbit__medallion img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); }

.orbit__nodes { position: absolute; inset: 0; }
.onode {
  position: absolute;
  display: flex; flex-direction: column; align-items: center;
  z-index: 20;
}
.onode__wrap { position: relative; }
.onode__glow {
  position: absolute; inset: 0; border-radius: 999px;
  background: color-mix(in oklch, var(--primary) 50%, transparent);
  filter: blur(32px);
  transition: background 0.3s;
}
.onode:hover .onode__glow { background: color-mix(in oklch, var(--primary) 70%, transparent); }
.onode__inner {
  position: relative;
  width: 90px; height: 90px;
  display: grid; place-items: center;
  border-radius: 999px;
  border: 2px solid var(--primary);
  background: var(--card);
  box-shadow: 0 10px 40px -5px var(--primary);
  backdrop-filter: blur(10px);
  transition: transform 0.3s;
  font-size: 34px; color: var(--primary);
}
@media (min-width: 768px) {
  .onode__inner { width: 112px; height: 112px; font-size: 40px; }
}
.onode:hover .onode__inner { transform: scale(1.1); }
.onode__tag {
  position: absolute; top: -8px; right: -8px;
  background: var(--primary); color: var(--primary-fg);
  padding: 2px 8px;
  font-family: var(--font-mono); font-size: 10px; font-weight: 900;
}
.onode__label { margin-top: 12px; display: flex; flex-direction: column; align-items: center; }
.onode__title {
  white-space: nowrap;
  font-family: var(--font-display); font-size: 18px;
  text-transform: uppercase; letter-spacing: -0.02em;
}
@media (min-width: 768px) { .onode__title { font-size: 20px; } }
.onode__sub {
  white-space: nowrap;
  font-family: var(--font-sans); font-size: 12px;
  letter-spacing: normal; color: var(--primary);
}

.trust {
  margin-top: 64px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 24px;
  text-align: center;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted-fg);
  font-weight: 700;
}
.trust > div { display: flex; align-items: center; gap: 12px; }
.trust .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--primary); }
@media (min-width: 768px) { .trust { flex-direction: row; gap: 48px; } }

/* -------- PROTOCOL -------- */
.protocol {
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
  padding: 112px 0;
}
.protocol__glow {
  position: absolute; left: 50%; top: 50%;
  width: 600px; height: 600px;
  transform: translate(-50%, -50%);
  filter: blur(120px);
  background: color-mix(in oklch, var(--primary) 10%, transparent);
}

.steps {
  position: relative;
  display: flex; flex-direction: column;
  gap: 128px;
}
@media (min-width: 768px) { .steps { gap: 192px; } }
.steps__path {
  display: none;
  position: absolute; left: 50%; top: 40px;
  width: 100%; height: 80%;
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 0.2;
}
@media (min-width: 768px) { .steps__path { display: block; } }

.step {
  position: relative; z-index: 10;
  display: flex; flex-direction: column; align-items: center;
}
@media (min-width: 768px) {
  .step { flex-direction: row; justify-content: flex-start; }
  .step--reverse { flex-direction: row-reverse; }
}
.step__node {
  position: relative;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .step__node { width: 50%; justify-content: flex-end; padding-right: 64px; }
  .step--reverse .step__node { justify-content: flex-start; padding-left: 64px; padding-right: 0; }
}
.ghost {
  position: absolute; top: -48px; right: -16px;
  font-family: var(--font-display);
  font-size: 12rem; line-height: 1;
  color: var(--primary); opacity: 0.1;
  pointer-events: none; user-select: none;
}
.step--reverse .ghost { left: -16px; right: auto; }
@media (min-width: 768px) {
  .ghost { right: 16px; }
  .step--reverse .ghost { left: 16px; }
}

.dot-node {
  position: relative;
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: 999px;
  border: 1px solid color-mix(in oklch, var(--primary) 50%, transparent);
  background: color-mix(in oklch, var(--primary) 20%, transparent);
  box-shadow: 0 0 30px color-mix(in oklch, var(--primary) 30%, transparent);
  backdrop-filter: blur(4px);
  margin-bottom: 24px;
}
@media (min-width: 768px) { .dot-node { margin-bottom: 0; } }
.dot-node--final {
  border-color: var(--foreground);
  background: var(--primary);
  box-shadow: 0 0 50px color-mix(in oklch, var(--primary) 60%, transparent);
}
.dot-node__inner {
  width: 12px; height: 12px; border-radius: 999px;
  background: var(--primary);
}
.dot-node--final .dot-node__inner { width: 16px; height: 16px; background: var(--foreground); }
.pulse { animation: pulse 2s ease-in-out infinite; }

.step__text { text-align: center; }
@media (min-width: 768px) {
  .step__text { width: 50%; text-align: left; }
  .step--reverse .step__text { text-align: right; }
}
.step__text .eyebrow {
  display: block; margin-bottom: 8px;
  font-size: 14px;
}
.step__text h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.875rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.step__text p {
  max-width: 20rem;
  color: var(--muted-fg);
  font-size: 18px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .step:not(.step--reverse) .step__text p { margin-left: 0; }
  .step--reverse .step__text p { margin-right: 0; margin-left: auto; }
}

.status {
  margin-top: 96px;
  display: flex; justify-content: center;
  border-top: 1px solid color-mix(in oklch, var(--primary) 10%, transparent);
  padding-top: 48px;
}

/* -------- MARQUEE -------- */
.marquee {
  overflow: hidden;
  background: var(--primary);
  padding: 16px 0;
}
.marquee__track {
  display: flex; gap: 48px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: var(--primary-fg);
  width: max-content;
  animation: marquee 30s linear infinite;
}

/* -------- ORDER -------- */
.order {
  position: relative;
  padding: 40px 24px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.order__bg {
  position: absolute; inset: 0;
  opacity: 0.2;
  background: radial-gradient(circle at 50% 50%, var(--primary) 0%, transparent 60%);
  pointer-events: none;
}
.order__inner {
  position: relative; z-index: 1;
  max-width: 640px; width: 100%;
  display: flex; flex-direction: column; align-items: center;
}
@media (min-width: 768px) {
  .order__inner {
    max-width: 1000px;
  }
}
.order__img {
  width: 192px; height: 192px;
  object-fit: cover;
  border-radius: 2px;
  outline: 1px solid color-mix(in oklch, var(--primary) 30%, transparent);
  margin-bottom: 32px;
}
.order .h2 { margin-bottom: 32px; }
.order__box {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 32px;
  display: flex; flex-direction: column; align-items: center;
  gap: 24px;
}
@media (min-width: 768px) {
  .order__box { flex-direction: row; justify-content: space-between; padding: 40px; }
}
.order__price { text-align: left; }
.order__price .strike {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--muted-fg); text-transform: uppercase;
}
.order__num {
  font-family: var(--font-display); font-size: 48px;
}
.order__price .save {
  font-size: 12px; font-weight: 900;
  background: none; padding: 0;
}
.order__box .btn { width: 100%; justify-content: center; padding: 24px 40px; font-size: 20px; }
@media (min-width: 768px) {
  .order__box .btn { width: auto; }
}
.order__badges {
  margin-top: 48px;
  width: 100%;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted-fg);
}
@media (min-width: 768px) { .order__badges { grid-template-columns: repeat(4, 1fr); } }

/* -------- FOOTER -------- */
.footer { border-top: 1px solid var(--border); padding: 40px 0; }
.footer__inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: space-between; gap: 16px;
}
@media (min-width: 768px) { .footer__inner { flex-direction: row; } }
.footer__meta {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--muted-fg);
}

/* -------- Animations -------- */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
@keyframes reveal-up {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.reveal { animation: reveal-up 0.9s cubic-bezier(0.19, 1, 0.22, 1) both; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* -------- Custom Checkout Form Additions -------- */
.order-form-card {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 32px;
  text-align: left;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .order-form-card { padding: 48px; }
}
.order-form-card h3 {
  font-family: var(--font-display);
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--foreground);
}
.order-form-card p {
  font-size: 13px;
  color: var(--muted-fg);
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label {
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: normal;
  text-transform: none;
  color: var(--foreground);
  font-weight: 600;
}
.form-control {
  width: 100%;
  background: color-mix(in oklch, var(--background) 70%, transparent);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--foreground);
  padding: 14px 18px;
  font-family: var(--font-sans);
  font-size: 14px;
  transition: all 0.2s;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px color-mix(in oklch, var(--primary) 15%, transparent);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}



/* -------- Entry & Scroll Reveal Animations -------- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), opacity 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}
.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.stagger-group .stagger-item {
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.stagger-group.is-revealed .stagger-item {
  opacity: 1;
  transform: translateY(0);
}

/* Orbit Section activation animation */
.orbit {
  opacity: 0;
  transform: scale(0.92);
  transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1), opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.orbit.is-revealed {
  opacity: 1;
  transform: scale(1);
}

/* Orbit nodes scale-in animation */
.orbit__nodes .onode {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5) !important;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.8s ease;
}
.orbit.is-revealed .orbit__nodes .onode {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1) !important;
}

/* Delays for orbit nodes */
.orbit.is-revealed .orbit__nodes .onode:nth-child(1) { transition-delay: 0.1s; }
.orbit.is-revealed .orbit__nodes .onode:nth-child(2) { transition-delay: 0.2s; }
.orbit.is-revealed .orbit__nodes .onode:nth-child(3) { transition-delay: 0.3s; }
.orbit.is-revealed .orbit__nodes .onode:nth-child(4) { transition-delay: 0.4s; }
.orbit.is-revealed .orbit__nodes .onode:nth-child(5) { transition-delay: 0.5s; }
.orbit.is-revealed .orbit__nodes .onode:nth-child(6) { transition-delay: 0.6s; }
.orbit.is-revealed .orbit__nodes .onode:nth-child(7) { transition-delay: 0.7s; }
.orbit.is-revealed .orbit__nodes .onode:nth-child(8) { transition-delay: 0.8s; }

/* Mobile responsive improvements for Orbit Layout */
@media (max-width: 768px) {
  /* Dim background glows on mobile to maintain deep dark mode contrast */
  .hero__glow {
    opacity: 1.0;
  }
  .glow--lg {
    width: 380px;
    height: 380px;
  }
  .glow--md {
    width: 240px;
    height: 240px;
  }
  .system__bg {
    opacity: 1.0;
  }
  .protocol__glow {
    opacity: 1.0;
  }

  .orbit {
    max-width: 340px;
    margin: 40px auto 0;
  }
  .orbit__medallion {
    width: 104px;
    height: 104px;
  }
  .orbit__halo {
    inset: -20px;
  }
  .onode__inner {
    width: 68px !important;
    height: 68px !important;
    font-size: 28px !important;
    border-width: 1.5px !important;
    box-shadow: 0 5px 20px -3px var(--primary) !important;
  }
  .onode__tag {
    font-size: 8px !important;
    padding: 1px 4px !important;
    top: -4px !important;
    right: -4px !important;
  }
  .onode__title {
    font-size: 13px !important;
  }
  .onode__sub {
    font-size: 10px !important;
    letter-spacing: normal !important;
    margin-top: 2px;
  }
  .onode__label {
    margin-top: 8px !important;
  }
  .benefits-strip {
    margin-top: 20px;
    padding-top: 20px;
  }
  .proof {
    padding: 48px 0 !important;
  }
  .system {
    padding: 48px 0 !important;
  }
  .protocol {
    padding: 48px 0 !important;
  }
  .order {
    padding: 24px 20px !important;
  }
  .steps {
    gap: 48px !important;
  }
  .ghost {
    display: none !important;
  }
  .dot-node {
    margin-bottom: 12px !important;
    width: 48px !important;
    height: 48px !important;
  }
  .dot-node--final .dot-node__inner {
    width: 12px !important;
    height: 12px !important;
  }
}

/* -------- UPGRADED TWO-COLUMN CHECKOUT FORM -------- */
.package-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
  width: 100%;
}
@media (min-width: 768px) {
  .package-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.package-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}
.package-card:hover {
  border-color: var(--primary);
  box-shadow: 0 0 15px -3px color-mix(in oklch, var(--primary) 30%, transparent);
}
.package-card.active {
  border-color: var(--primary);
  background: color-mix(in oklch, var(--primary) 5%, var(--card));
  box-shadow: 0 0 20px -3px color-mix(in oklch, var(--primary) 40%, transparent);
}
.radio-circle {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid var(--border);
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.package-card.active .radio-circle {
  border-color: var(--primary);
}
.package-card.active .radio-circle::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--primary);
  border-radius: 999px;
}
.package-thumb {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}
.package-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}
.package-title {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--foreground);
  line-height: 1.3;
}
.package-price {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}
.package-badge {
  position: absolute;
  top: -10px;
  right: 12px;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.badge-popular {
  background: #3b82f6;
}
.badge-value {
  background: #f59e0b;
}

.checkout-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 16px;
  width: 100%;
  text-align: left;
}
@media (min-width: 768px) {
  .checkout-container {
    grid-template-columns: 1.1fr 0.9fr;
  }
}
.checkout-form-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.checkout-form-col .form-group {
  margin-bottom: 0;
  gap: 6px;
}
.checkout-col-title {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--foreground);
  border-bottom: 2px solid var(--border);
  padding-bottom: 6px;
  margin-bottom: 10px;
}
.checkout-summary-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  width: 100%;
}
.summary-title {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--foreground);
  border-bottom: 2px solid var(--border);
  padding-bottom: 6px;
  margin-bottom: 10px;
  text-align: left;
}
.summary-item-row {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.summary-item-thumb {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.2);
}
.summary-item-details {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex-grow: 1;
  text-align: left;
}
.summary-item-name {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--foreground);
}
.summary-item-qty {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted-fg);
}
.summary-item-price {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--foreground);
}
.summary-totals {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.summary-total-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--muted-fg);
}
.summary-grand-total-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--foreground);
  border-top: 1px solid var(--border);
  padding-top: 8px;
  margin-top: 2px;
}
.submit-order-btn {
  width: 100%;
  justify-content: center;
  padding: 12px 20px !important;
  font-size: 15px !important;
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: var(--background) !important;
  font-weight: 700 !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 4px 15px -3px color-mix(in oklch, var(--primary) 40%, transparent) !important;
  margin-top: 4px !important;
}
.submit-order-btn:hover {
  background: color-mix(in oklch, var(--primary) 85%, #fff) !important;
  box-shadow: 0 4px 20px -3px color-mix(in oklch, var(--primary) 60%, transparent) !important;
  transform: translateY(-1px);
}

.delivery-selectors {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 8px;
  width: 100%;
}
@media (min-width: 640px) {
  .delivery-selectors {
    grid-template-columns: 1fr 1fr;
  }
}
.delivery-selector {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--foreground);
  user-select: none;
  transition: all 0.2s ease;
}
.delivery-selector:hover {
  border-color: var(--primary);
  box-shadow: 0 0 10px -3px color-mix(in oklch, var(--primary) 30%, transparent);
}
.delivery-selector:has(input[type="radio"]:checked) {
  border-color: var(--primary);
  background: color-mix(in oklch, var(--primary) 5%, var(--card));
  box-shadow: 0 0 15px -3px color-mix(in oklch, var(--primary) 40%, transparent);
}
.delivery-selector input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.radio-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid var(--border);
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s ease;
  background: rgba(0, 0, 0, 0.2);
}
.delivery-selector:hover .radio-dot {
  border-color: var(--primary);
}
.delivery-selector input[type="radio"]:checked + .radio-dot {
  border-color: var(--primary);
}
.delivery-selector input[type="radio"]:checked + .radio-dot::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--primary);
  border-radius: 999px;
}

.checkout-main-title {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  color: var(--foreground);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .checkout-main-title {
    font-size: 28px;
    margin-bottom: 28px;
  }
}

/* =========================================================
   NEW SECTIONS STYLES
   ========================================================= */

.animate-hover {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.animate-hover:hover {
  transform: translateY(-4px);
}

/* -------- PROBLEMS SECTION -------- */
.problems-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  background: radial-gradient(circle at 50% 0%, color-mix(in oklch, var(--primary) 3%, transparent) 0%, transparent 70%);
}
.problems-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 640px) {
  .problems-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .problems-grid { grid-template-columns: repeat(4, 1fr); }
}
.problem-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}
.problem-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.01);
}
.problem-card__icon {
  font-size: 26px;
  width: 52px;
  height: 52px;
  border-radius: 99px;
  background: color-mix(in oklch, var(--primary) 8%, transparent);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}
.problem-card:hover .problem-card__icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--primary);
  color: white;
}
.problem-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--foreground);
}
.problem-card__desc {
  font-size: 14px;
  color: var(--muted-fg);
  line-height: 1.6;
}

/* -------- REVIEWS SECTION -------- */
.reviews-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.video-review__container {
  max-width: 640px;
  margin: 0 auto 48px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.video-review__wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-review__player {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-review__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.3s;
}
.video-review__player:focus ~ .video-review__overlay,
.video-review__player:active ~ .video-review__overlay,
.video-review__player[controls] ~ .video-review__overlay {
  opacity: 0;
}
.play-btn {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.video-review__badge {
  font-size: 12px;
  font-family: var(--font-mono);
  background: rgba(0, 0, 0, 0.7);
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid var(--border);
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.review-card__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.review-card__stars {
  color: #ffc107;
  font-size: 16px;
}
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.badge {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}
.badge--verified {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.badge--repeat {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.2);
}
.review-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--foreground);
  margin-bottom: 24px;
  font-style: italic;
}
.review-card__meta {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.review-card__author {
  font-weight: 700;
  font-size: 14px;
}
.review-card__location {
  font-size: 12px;
  color: var(--muted-fg);
}
.trust-strip {
  margin-top: 56px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  background: var(--card);
}
@media (min-width: 768px) {
  .trust-strip {
    flex-direction: row;
    justify-content: space-around;
  }
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.trust-strip__icon {
  font-size: 20px;
}

/* -------- DEMO SECTION -------- */
.demo-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.demo-video__container {
  max-width: 640px;
  margin: 0 auto 32px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.demo-video__wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}
.demo-video__player {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.demo-video__flow {
  position: absolute;
  bottom: 0;
  inset-x: 0;
  background: rgba(0, 0, 0, 0.7);
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 11px;
  text-align: center;
  padding: 8px;
  border-top: 1px solid var(--border);
}
.demo-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .demo-steps { grid-template-columns: repeat(3, 1fr); }
}
.demo-step {
  position: relative;
  padding: 32px 24px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--card);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.demo-step:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.04);
}
.demo-step__num {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.15;
  position: absolute;
  top: 16px;
  right: 20px;
}
.demo-step__content h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--foreground);
}
.demo-step__content p {
  font-size: 13px;
  color: var(--muted-fg);
  line-height: 1.5;
}

/* -------- WHY GLOW X -------- */
.why-glow-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(circle at 50% 0%, color-mix(in oklch, var(--primary) 3%, transparent) 0%, transparent 70%);
}
.why-glow-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 640px) {
  .why-glow-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .why-glow-grid { grid-template-columns: repeat(4, 1fr); }
}
.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.01);
}
.why-card__icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: color-mix(in oklch, var(--primary) 8%, transparent);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}
.why-card:hover .why-card__icon {
  transform: scale(1.1);
  background: var(--primary);
  color: white;
}
.why-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--foreground);
}
.why-card__desc {
  font-size: 13px;
  color: var(--muted-fg);
  line-height: 1.6;
}

/* -------- BENEFITS + INGREDIENTS -------- */
.benefits-ingredients-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.benefits-ingredients-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .benefits-ingredients-grid { grid-template-columns: repeat(2, 1fr); }
}
.col-title {
  font-family: var(--font-display);
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 10px;
}
.benefits-list, .ingredients-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.benefits-list li {
  display: flex;
  gap: 16px;
}
.benefit-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: rgba(130, 200, 250, 0.1);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.benefit-info h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.benefit-info p {
  font-size: 13.5px;
  color: var(--muted-fg);
  line-height: 1.5;
}
.ingredients-list li {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  background: var(--card);
}
.ingredient-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--primary);
}
.ingredient-desc {
  font-size: 13px;
  color: var(--muted-fg);
  line-height: 1.5;
  margin-top: 6px;
}
.guidance-box {
  margin-top: 56px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(10px);
}
.guidance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .guidance-grid { grid-template-columns: repeat(3, 1fr); }
}
.guidance-grid h5 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--primary);
  font-family: var(--font-mono);
}
.guidance-grid p {
  font-size: 13px;
  color: var(--muted-fg);
  line-height: 1.6;
}

/* -------- REAL RESULTS -------- */
.proof-section {
  padding: 80px 0 32px;
  border-bottom: 1px solid var(--border);
}
.proof__details {
  max-width: 640px;
  margin: 32px auto 0;
  text-align: center;
}
.proof__details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  text-align: left;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
  background: var(--card);
}
@media (min-width: 640px) {
  .proof__details-grid { grid-template-columns: repeat(2, 1fr); }
}
.proof-detail-item {
  font-size: 13px;
  color: var(--foreground);
}
.results-disclaimer {
  font-size: 11px;
  color: var(--muted-fg);
  font-style: italic;
}
.stats-source-info {
  font-size: 11px;
  color: var(--muted-fg);
  text-align: center;
  max-width: 640px;
  margin: 20px auto 0;
}

/* -------- OFFER SELECTION -------- */
.offers-section {
  padding: 32px 0 80px;
  border-bottom: 1px solid var(--border);
}
.offers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .offers-grid { grid-template-columns: repeat(3, 1fr); }
}
.offer-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.offer-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05);
}
.popular-card {
  border: 2px solid var(--primary) !important;
  background: linear-gradient(to bottom, var(--card), color-mix(in oklch, var(--primary) 2%, transparent)) !important;
  box-shadow: 0 20px 50px color-mix(in oklch, var(--primary) 6%, transparent) !important;
}
.offer-card__badge {
  position: absolute;
  top: -14px;
  padding: 6px 18px;
  border-radius: 99px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  font-family: var(--font-mono);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.badge--start { background: var(--border); color: var(--foreground); }
.badge--popular { background: var(--primary); color: white; }
.badge--value { background: #10b981; color: white; }

.offer-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 16px;
  color: var(--foreground);
}
.offer-card__qty {
  font-size: 13px;
  color: var(--muted-fg);
  margin-bottom: 8px;
}
.offer-card__gift {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.offer-card__savings {
  font-size: 12px;
  font-weight: 700;
  color: #10b981;
  background: rgba(16, 185, 129, 0.08);
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 24px;
}
.offer-card__price-box {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 32px;
}
.offer-card__old-price {
  font-size: 16px;
  color: var(--muted-fg);
  text-decoration: line-through;
}
.offer-card__price {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--foreground) 30%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* -------- TRUST STRIP + ORDER FORM -------- */
.order-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.form-trust-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .form-trust-strip { grid-template-columns: repeat(4, 1fr); }
}
.form-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 12px;
  background: var(--card);
}
.form-trust-icon {
  font-size: 24px;
}
.form-trust-text {
  display: flex;
  flex-direction: column;
}
.form-trust-text strong {
  font-size: 13.5px;
}
.form-trust-text span {
  font-size: 11px;
  color: var(--muted-fg);
}

/* -------- FAQ SECTION -------- */
/* -------- FAQ SECTION -------- */
.faq-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(circle at 50% 0%, color-mix(in oklch, var(--primary) 3%, transparent) 0%, transparent 70%);
}
.faq-accordion {
  max-width: 800px;
  margin: 48px auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--card);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item:hover {
  border-color: color-mix(in oklch, var(--primary) 30%, transparent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}
.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 15px 35px color-mix(in oklch, var(--primary) 6%, transparent);
}
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--foreground);
  padding: 22px 28px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  outline: none;
  transition: all 0.25s ease;
}
.faq-question:hover {
  background: rgba(255, 255, 255, 0.01);
}
.faq-item.active .faq-question {
  color: var(--primary);
}
.faq-icon {
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--primary);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.active .faq-icon {
  transform: rotate(90deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 28px;
  color: var(--muted-fg);
  font-size: 14.5px;
  line-height: 1.6;
}
.faq-item.active .faq-answer {
  padding-bottom: 24px;
}
.final-cta-box {
  margin-top: 80px;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 56px 40px;
  background: var(--card);
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 100% 100%, color-mix(in oklch, var(--primary) 4%, transparent) 0%, transparent 60%), var(--card);
}
.final-cta-box h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-transform: uppercase;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--foreground) 40%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.final-cta-box p {
  color: var(--muted-fg);
  font-size: 14.5px;
  max-width: 480px;
  margin: 0 auto;
}

/* =========================================================
   LIGHT THEME OVERRIDES (.light-theme)
   ========================================================= */
.light-theme {
  --background: oklch(0.99 0.005 250); /* Crisp clean white background */
  --foreground: oklch(0.12 0.015 250); /* Deep slate charcoal text */
  --card: oklch(1 0 0); /* Pure white cards */
  --primary: oklch(0.52 0.13 250); /* Premium rich cobalt blue */
  --primary-fg: oklch(1 0 0); /* White text on primary buttons */
  --muted-fg: oklch(0.46 0.015 250); /* Soft slate grey for body text */
  --border: oklch(0.92 0.01 250); /* Subtly visible borders */
  --primary-soft: oklch(0.60 0.11 245);
}

/* Enhanced CTA Buttons with premium gradients and active states */
.light-theme .btn--primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-soft) 100%);
  box-shadow: 0 8px 30px -6px color-mix(in oklch, var(--primary) 30%, transparent);
  color: white !important;
}
.light-theme .btn--primary:hover {
  background: var(--foreground);
  box-shadow: 0 8px 30px -6px rgba(0, 0, 0, 0.15);
  color: white !important;
  transform: translateY(-2px);
}

/* Background Grids */
.light-theme .grid-bg {
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.08) 1px, transparent 1px);
}

/* Subtle Glowing Blurs */
.light-theme .glow {
  background: color-mix(in oklch, var(--primary) 12%, transparent);
  filter: blur(120px);
}

/* Card Layers and Shadows */
.light-theme .checkout-card,
.light-theme .protocol__step,
.light-theme .package-card,
.light-theme .proof__frame,
.light-theme .track-order-card,
.light-theme .problem-card,
.light-theme .review-card,
.light-theme .trust-strip,
.light-theme .demo-step,
.light-theme .why-card,
.light-theme .ingredients-list li,
.light-theme .guidance-box,
.light-theme .proof__details-grid,
.light-theme .offer-card,
.light-theme .form-trust-item,
.light-theme .faq-item,
.light-theme .final-cta-box,
.light-theme .rating-capsule,
.light-theme .review-card-premium,
.light-theme .demo-step-new,
.light-theme .why-feature-card,
.light-theme .orbit-center__image,
.light-theme .orbit-node__circle {
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.01);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.light-theme .package-card:hover,
.light-theme .problem-card:hover,
.light-theme .why-card:hover,
.light-theme .offer-card:hover,
.light-theme .review-card-premium:hover,
.light-theme .demo-step-new:hover,
.light-theme .why-feature-card:hover {
  border-color: var(--primary);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
}

/* Form controls customization */
.light-theme .form-control {
  background: oklch(0.97 0.005 250);
  border: 1px solid var(--border);
  color: var(--foreground);
  transition: all 0.2s ease;
}
.light-theme .form-control:focus {
  background: var(--card);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px color-mix(in oklch, var(--primary) 12%, transparent);
}

/* Text Overrides */
.light-theme .outline-text {
  text-shadow: 
    -1px -1px 0 var(--border),  
     1px -1px 0 var(--border),
    -1px  1px 0 var(--border),
     1px  1px 0 var(--border);
  color: oklch(0.96 0.005 250);
}

/* =========================================================
   AESTHETIC REDESIGNS (Reviews, How to Use, Difference)
   ========================================================= */

/* -------- REVIEWS SECTION DESIGN -------- */
.reviews-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 56px;
}
@media (min-width: 768px) {
  .reviews-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.reviews-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.12);
  padding: 6px 16px;
  border-radius: 99px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}
.reviews-pill__dot {
  font-size: 14px;
  margin-right: -2px;
}
.reviews-main-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--foreground);
  line-height: 1.25;
}
.rating-capsule {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.rating-capsule__score {
  font-size: 26px;
  font-weight: 900;
  color: var(--foreground);
  margin-bottom: 4px;
}
.rating-capsule__label {
  font-size: 12px;
  color: var(--muted-fg);
  font-weight: 600;
  white-space: nowrap;
}
.reviews-grid-premium {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .reviews-grid-premium {
    grid-template-columns: repeat(3, 1fr);
  }
}
.review-card-premium {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 1024px) {
  .review-card-premium:nth-child(2) {
    transform: translateY(-20px);
  }
}
.review-card-premium:hover {
  transform: translateY(-8px);
  border-color: color-mix(in oklch, var(--primary) 30%, transparent);
}
@media (min-width: 1024px) {
  .review-card-premium:nth-child(2):hover {
    transform: translateY(-28px);
  }
}
.review-card-premium__quote {
  color: color-mix(in oklch, var(--primary) 40%, transparent);
  margin-bottom: 20px;
}
.review-card-premium__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--foreground);
  margin-bottom: 28px;
  font-weight: 500;
}
.review-card-premium__separator {
  border-top: 1px solid var(--border);
  margin-bottom: 20px;
  margin-top: auto;
}
.review-card-premium__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.review-author-box {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: color-mix(in oklch, var(--primary) 8%, transparent);
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
  display: grid;
  place-items: center;
}
.review-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--foreground);
}
.review-location {
  font-size: 12px;
  color: var(--muted-fg);
}
.review-stars {
  color: var(--primary);
  font-size: 14px;
  letter-spacing: 2px;
}

/* -------- HOW TO USE SECTION DESIGN -------- */
.demo-header {
  margin-bottom: 48px;
}
.demo-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.12);
  padding: 6px 16px;
  border-radius: 99px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}
.demo-pill__dot {
  font-size: 14px;
  margin-right: -2px;
}
.demo-main-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--foreground);
}
.demo-steps-new {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .demo-steps-new {
    grid-template-columns: repeat(3, 1fr);
  }
  .demo-steps-new::before {
    content: '';
    position: absolute;
    top: 54px;
    left: 15%;
    right: 15%;
    height: 1px;
    border-top: 1px dashed color-mix(in oklch, var(--primary) 30%, transparent);
    z-index: 1;
  }
}
.demo-step-new {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  z-index: 2;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.demo-step-new:hover {
  transform: translateY(-6px);
}
.demo-step-num-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-mono);
  margin-bottom: 24px;
  box-shadow: 0 4px 12px color-mix(in oklch, var(--primary) 20%, transparent);
}
.demo-step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--foreground);
}
.demo-step-desc {
  font-size: 14px;
  color: var(--muted-fg);
  line-height: 1.6;
}
.demo-cta-container {
  display: flex;
  justify-content: center;
  margin-bottom: 56px;
}
.btn--pill {
  border-radius: 99px !important;
  padding: 16px 32px !important;
  font-weight: 700 !important;
}

/* -------- DIFFERENCE SECTION DESIGN -------- */
.why-glow-header {
  margin-bottom: 48px;
}
.why-glow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.12);
  padding: 6px 16px;
  border-radius: 99px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}
.why-glow-pill__dot {
  font-size: 14px;
  margin-right: -2px;
}
.why-glow-main-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--foreground);
}
.why-glow-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 1024px) {
  .why-glow-layout {
    grid-template-columns: 350px 1fr;
  }
}
.why-glow-benefit-card {
  background: #080e1a;
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.benefit-card-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.benefit-card-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: #38bdf8;
  letter-spacing: 0.12em;
}
.benefit-card-list {
  list-style: none;
  margin: 36px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.benefit-card-list li {
  display: flex;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.5;
  color: #ffffff;
}
.check-icon {
  color: #38bdf8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
  flex-shrink: 0;
}
.benefit-card-footer {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(8px);
}
.benefit-card-weight {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.weight-num {
  font-family: 'Hind Siliguri', 'Inter', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: #38bdf8;
  line-height: 1;
  letter-spacing: -1px;
}
.weight-unit {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 900;
  font-style: italic;
  background: #38bdf8;
  color: #080e1a;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-left: 6px;
  transform: skewX(-8deg);
  line-height: 1;
}
.benefit-card-usage {
  font-size: 11px;
  color: #cbd5e1;
  margin-top: 8px;
}
.why-glow-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .why-glow-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.why-feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.why-feature-card:hover {
  transform: translateY(-6px);
}
.why-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: color-mix(in oklch, var(--primary) 8%, transparent);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}
.why-feature-card:hover .why-feature-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.05);
}
.why-feature-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--foreground);
}
.why-feature-desc {
  font-size: 13.5px;
  color: var(--muted-fg);
  line-height: 1.6;
}

/* -------- ORBITAL SCIENCE SECTION -------- */
.orbit-wrapper {
  position: relative;
  width: 100%;
  padding: 40px 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.orbit-container {
  position: relative;
  width: 320px;
  height: 320px;
  display: block;
}
@media (min-width: 400px) {
  .orbit-container {
    width: 350px;
    height: 350px;
  }
}
@media (min-width: 600px) {
  .orbit-container {
    width: 480px;
    height: 480px;
  }
}
@media (min-width: 1024px) {
  .orbit-container {
    width: 600px;
    height: 600px;
  }
}

.orbit-line-1 {
  width: 80%;
  height: 80%;
  border: 1px dashed rgba(59, 130, 246, 0.2);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}
.orbit-line-2 {
  width: 53%;
  height: 53%;
  border: 1px dashed rgba(59, 130, 246, 0.12);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}
.orbit-spokes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.orbit-spokes line {
  stroke: rgba(59, 130, 246, 0.2);
  stroke-width: 1.5;
  stroke-dasharray: 4 4;
}

/* Center Product */
.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
  z-index: 10;
}
@media (min-width: 600px) {
  .orbit-center {
    width: 120px;
    height: 120px;
  }
}
@media (min-width: 1024px) {
  .orbit-center {
    width: 150px;
    height: 150px;
  }
}

.orbit-center__glow {
  position: absolute;
  inset: -15px;
  border-radius: 20px;
  background: radial-gradient(circle, color-mix(in oklch, var(--primary) 22%, transparent) 0%, transparent 70%);
  filter: blur(6px);
  pointer-events: none;
  animation: pulse-glow 3s infinite ease-in-out;
}
.orbit-center__image {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border: 1.5px solid var(--primary);
  background: var(--card);
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 10px 30px color-mix(in oklch, var(--primary) 15%, transparent);
}
@media (min-width: 1024px) {
  .orbit-center__glow {
    inset: -20px;
    border-radius: 24px;
    filter: blur(8px);
  }
  .orbit-center__image {
    border-radius: 20px;
    border-width: 2px;
    padding: 10px;
  }
}

.orbit-center__image img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  border-radius: 8px;
}

/* Nodes Styling */
.orbit-node {
  position: absolute;
  width: 100px;
  text-align: center;
  transform: translate(-50%, -50%);
  z-index: 5;
}
@media (min-width: 600px) {
  .orbit-node {
    width: 140px;
  }
}
@media (min-width: 1024px) {
  .orbit-node {
    width: 160px;
  }
}

.orbit-node__circle {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--card);
  border: 1.5px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.08);
  color: var(--primary);
}
@media (min-width: 600px) {
  .orbit-node__circle {
    width: 68px;
    height: 68px;
    border-radius: 16px;
  }
}
@media (min-width: 1024px) {
  .orbit-node__circle {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    border-width: 2px;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.1);
  }
}

.orbit-node:hover .orbit-node__circle {
  transform: scale(1.1);
  background: var(--primary);
  color: white !important;
  box-shadow: 0 15px 35px color-mix(in oklch, var(--primary) 25%, transparent);
}
.orbit-node:hover .node-svg {
  color: white !important;
}

.orbit-node__badge {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(25%, -25%);
  background: var(--primary);
  color: white !important;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--card);
}
@media (min-width: 600px) {
  .orbit-node__badge {
    width: 20px;
    height: 20px;
    font-size: 9px;
  }
}
@media (min-width: 1024px) {
  .orbit-node__badge {
    width: 22px;
    height: 22px;
    font-size: 10px;
    border-radius: 4px;
    border-width: 1.5px;
  }
}

.node-svg {
  width: 18px;
  height: 18px;
  transition: color 0.3s ease;
}
@media (min-width: 600px) {
  .node-svg {
    width: 22px;
    height: 22px;
  }
}
@media (min-width: 1024px) {
  .node-svg {
    width: 24px;
    height: 24px;
  }
}

.orbit-node__content {
  margin-top: 10px;
}
@media (min-width: 1024px) {
  .orbit-node__content {
    margin-top: 16px;
  }
}

.orbit-node__title {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}
@media (min-width: 600px) {
  .orbit-node__title {
    font-size: 12px;
  }
}
@media (min-width: 1024px) {
  .orbit-node__title {
    font-size: 14px;
    margin-bottom: 4px;
  }
}

.orbit-node__desc {
  font-family: 'Hind Siliguri', sans-serif;
  font-size: 8px;
  color: var(--muted-fg);
  font-weight: 600;
}
@media (min-width: 600px) {
  .orbit-node__desc {
    font-size: 10px;
  }
}
@media (min-width: 1024px) {
  .orbit-node__desc {
    font-size: 11px;
  }
}

/* Individual node absolute coordinates on all viewports */
.node--top { top: 10%; left: 50%; }
.node--top-right { top: 27%; left: 88%; }
.node--bottom-right { top: 73%; left: 88%; }
.node--bottom { top: 90%; left: 50%; }
.node--bottom-left { top: 73%; left: 12%; }
.node--top-left { top: 27%; left: 12%; }

/* -------- PREMIUM FINAL CTA BOX -------- */
.final-cta-box-premium {
  margin-top: 80px;
  background: var(--primary);
  border-radius: 32px;
  padding: 64px 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px color-mix(in oklch, var(--primary) 20%, transparent);
}
.final-cta-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.final-cta-title {
  font-family: 'Hind Siliguri', 'Inter', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
  line-height: 1.3;
}
.final-cta-desc {
  font-family: 'Hind Siliguri', sans-serif;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 500;
  max-width: 540px;
  margin: 0 auto 28px auto;
  position: relative;
  z-index: 2;
}
.final-cta-btn-wrapper {
  position: relative;
  z-index: 2;
}
.btn--white-pill {
  background: white !important;
  color: var(--foreground) !important;
  border-radius: 99px !important;
  padding: 16px 44px !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  border: none !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn--white-pill:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}



