:root {
  --bg-main: #050816;
  --bg-alt: #070b1c;
  --bg-light: #f7f9fc;
  --bg-card-dark: rgba(15, 23, 42, 0.8);
  --bg-card-light: rgba(255, 255, 255, 0.9);
  --border-glass-dark: rgba(148, 163, 184, 0.35);
  --border-glass-light: rgba(148, 163, 184, 0.25);
  --text-main: #f9fafb;
  --text-muted: #9ca3af;
  --text-dark: #111827;
  --accent-orange: #ff7a3d;
  --accent-orange-soft: rgba(255, 122, 61, 0.35);
  --accent-teal: #2ec4b6;
  --accent-purple: #7c3aed;
  --accent-red: #fb7185;
  --accent-amber: #fbbf24;
  --accent-blue: #38bdf8;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
  --shadow-soft-light: 0 14px 32px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 0 40px rgba(255, 122, 61, 0.55);
}

/* RESET */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top, #0b1220 0, #020617 40%, #000 100%);
  color: var(--text-main);
}

body {
  -webkit-font-smoothing: antialiased;
}

.page-wrapper {
  min-height: 100vh;
}

/* NAVBAR */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.7), transparent);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.logo-mark {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: radial-gradient(circle at 20% 20%, #f97316, #7c3aed);
  box-shadow: 0 0 18px rgba(248, 113, 113, 0.6);
}

.logo-text {
  font-size: 15px;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 14px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 0;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accent-orange), var(--accent-teal));
  border-radius: 999px;
  transition: width 0.2s ease;
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-links a:hover::after {
  width: 100%;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s ease-out;
  white-space: nowrap;
}

.btn-primary {
  background: radial-gradient(circle at 20% 0, #fed7aa, #f97316);
  color: #111827;
  box-shadow: var(--shadow-glow);
  border-color: rgba(248, 250, 252, 0.1);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 0 55px rgba(248, 113, 22, 0.8);
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.7);
  color: var(--text-main);
  border-color: rgba(148, 163, 184, 0.4);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.95);
  border-color: rgba(248, 250, 252, 0.6);
}

.btn-large {
  padding: 14px 26px;
  font-size: 15px;
}

/* HERO */


.hero {
  position: relative;
  padding: 80px 0 180px; /* increased height */
}

.hero-dark {
  background: radial-gradient(circle at top, #020617 0, #020617 40%, #000 100%);
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.hero-glow {
  position: absolute;
  inset: -120px;
  background:
    radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.18), transparent 55%),
    radial-gradient(circle at 100% 0, rgba(248, 113, 22, 0.22), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
  z-index: -1;
}

.hero-content h1 {
  font-size: 54px; /* BIG, premium */
  line-height: 1.18; /* spacious */
  margin: 0 0 26px;
  letter-spacing: -0.6px; /* modern sleek */
  font-weight: 700;
}

.hero-content h1 span {
  color: #fbbf24;
}

.hero-sub {
  font-size: 20px; /* readable, premium */
  line-height: 1.68; /* breathing room */
  max-width: 600px; /* better width */
  margin-bottom: 32px;
  color: var(--text-muted);
}

.hero-cta-row {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-primary {
  padding: 16px 32px; /* bigger button */
  font-size: 17px;
  font-weight: 600;
}

.hero-meta {
  font-size: 15px;
  margin-top: 12px;
  color: #9ca3af;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-device {
  max-width: 480px;
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}

.hero-orbits-svg {
  position: absolute;
  width: 400px;
  height: auto;
  opacity: 0.7;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(to bottom, rgba(15,23,42,0) 0%, rgba(31,41,51,1) 100%);
}

/* SECTIONS */

.section {
  padding: 90px 20px;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-header {
  max-width: 640px;
  margin-bottom: 32px;
}

.section-dark {
  background: radial-gradient(circle at top, #020617 0, #020617 40%, #000 100%);
}

.section-light {
  background: radial-gradient(circle at top, #f7f9fc 0, #e5e7eb 40%, #d1d5db 100%);
  color: var(--text-dark);
}

.section-light .section-sub {
  color: #4b5563;
}

.section-light .eyebrow {
  color: #6b7280;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6b7280;
}

.section h2 {
  font-size: 34px;
  margin: 10px 0 16px;
  letter-spacing: -0.3px;
}

.section-sub {
  font-size: 17px;
  line-height: 1.65; /* breathing room */
  max-width: 620px;
  color: var(--text-muted);
}

/* GRID */

.grid {
  display: grid;
  gap: 18px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* GLASS CARDS */

.glass {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass-dark);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  background: var(--bg-card-dark);
}

.card {
  padding: 22px 22px 20px;
  position: relative;
}

.card h3 {
  /* margin: 8px 0 6px; */
  font-size: 20px;
  margin-bottom: 10px;
}

.card p {
  font-size: 16px;
  line-height: 1.6;
  /* color: var(--text-muted); */
}

.card-light {
  background: var(--bg-card-light);
  border-color: var(--border-glass-light);
  box-shadow: var(--shadow-soft-light);
  backdrop-filter: blur(12px);
}

.section-light .card h3,
.section-light .card p {
  color: var(--text-dark);
}

/* CARD ICONS */

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 600;
  color: #020617;
  margin-bottom: 10px;
}

.icon-red {
  background: linear-gradient(to bottom right, #fecaca, #fb7185);
}

.icon-amber {
  background: linear-gradient(to bottom right, #fef3c7, #fbbf24);
}

.icon-teal {
  background: linear-gradient(to bottom right, #ccfbf1, #2ec4b6);
}

.icon-purple {
  background: linear-gradient(to bottom right, #ede9fe, #7c3aed);
}

.icon-blue {
  background: linear-gradient(to bottom right, #e0f2fe, #38bdf8);
}

/* IMAGE CARD PLACEHOLDER */

.card-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image-placeholder {
  width: 100%;
  height: 140px;
  border-radius: 14px;
  border: 1px dashed rgba(148, 163, 184, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.6);
}

.card-image-3d {
  max-width: 100%;
  height: auto;
}

/* SOLUTION TOOLBOX */

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: center;
}

.solution-visual,
.roadmap-visual {
  margin-top: 36px;
  margin-bottom: 36px;
  /* display: flex; */
  /* justify-content: center; */
}  
  
}

.toolbox {
  width: 280px;
  padding: 16px 16px 18px;
}

.toolbox-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.toolbox-label {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: #e5e7eb;
}

.toolbox-body {
  position: relative;
  border-radius: 14px;
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.2), rgba(15, 23, 42, 0.95));
  padding: 12px;
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.toolbox-3d {
  width: 100%; 
  max-width: 500px;
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.7));
}

.blueprint-lines-svg {
  position: absolute;
  inset: 0;
  opacity: 0.6;
  pointer-events: none;
}

/* BULLET LIST */

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 18px;
  font-size: 14px;
  color: var(--text-muted);
}

.section-light .bullet-list {
  color: #4b5563;
}

.bullet-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(to bottom right, var(--accent-orange), var(--accent-teal));
}

/* PILLS */

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 8px;
}

.pill-clarity {
  background: rgba(56, 189, 248, 0.12);
  color: #0f172a;
}

.pill-profit {
  background: rgba(34, 197, 94, 0.12);
  color: #0f172a;
}

.pill-services {
  background: rgba(129, 140, 248, 0.12);
  color: #0f172a;
}

.pill-retention {
  background: rgba(14, 165, 233, 0.12);
  color: #0f172a;
}

.pill-pricing {
  background: rgba(248, 113, 22, 0.12);
  color: #0f172a;
}

.pill-roadmap {
  background: rgba(236, 72, 153, 0.12);
  color: #0f172a;
}

/* DELIVERABLE ICONS */

.deliverable-icon {
  margin: 18px auto 0;
  max-width: 180px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.35));
}

/* Equal-height deliverable cards */
.deliverable-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* pushes icon to bottom */
  height: 100%;
}

/* STEPS */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.step {
  padding: 18px 18px 16px;
}

.step-badge {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 6px;
}

/* ROADMAP VISUAL */

.roadmap-visual {
  margin-top: 28px;
  position: relative;
  display: flex;
  justify-content: center;
}

.roadmap-3d {
  max-width: 460px;
  width: 100%;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.7));
}

.roadmap-arrows-svg {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  pointer-events: none;
}

/* PERFECT BOX */

.perfect-box {
  margin-top: 26px;
  padding: 26px 26px 22px;
  border-radius: var(--radius-lg);
}

.perfect-box h3 {
  margin: 0 0 10px;
  font-size: 22px;
  margin-bottom: 16px;
  letter-spacing: -0.2px;
  font-weight: 600;
}

.perfect-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-muted);
}

.section-light .perfect-box ul {
  color: #4b5563;
}

.perfect-box li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}

.perfect-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 14px;
  color: var(--accent-teal);
}

/* AUDIENCE ICONS */

.audience-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* pushes icon to bottom */
  height: 100%;
  text-align: center; /* optional: matches deliverables vibe */
}

/* Audience Icons — Centered + Larger + Glow */
.audience-icon {
  display: block;
  margin: 24px auto 0; /* centers + consistent spacing */
  max-width: 180px;    /* same as deliverables */
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.35)); /* same glow */
}

/* TESTIMONIALS */

.stars {
  font-size: 14px;
  color: #facc15;
  margin-bottom: 6px;
}

.role {
  font-size: 12px;
  color: #9ca3af;
  margin-top: -2px;
  margin-bottom: 8px;
}

.results-tags {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: #e5e7eb;
}

/* CTA FINAL */

.section-cta {
  position: relative;
  padding: 72px 20px 56px;
  background: radial-gradient(circle at top, #020617 0, #020617 40%, #000 100%);
}

.cta-inner {
  text-align: center;
}

.cta-glow {
  position: absolute;
  inset: -120px;
  background:
    radial-gradient(circle at 50% 0, rgba(248, 113, 22, 0.35), transparent 60%),
    radial-gradient(circle at 0 100%, rgba(56, 189, 248, 0.18), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(129, 140, 248, 0.18), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
  z-index: -1;
}

.section-cta h2 {
  font-size: 26px;
  margin: 12px 0 10px;
}

.cta-footer {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  font-size: 12px;
  color: #9ca3af;
}

.cta-tagline {
  color: #e5e7eb;
}

.cta-visual {
  margin-top: 26px;
  position: relative;
  display: flex;
  justify-content: center;
}

.cta-device {
  margin-top: 52px;
  max-width: 580px;
  width: 100%;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.8));
}

.cta-glow-svg {
  position: absolute;
  inset: 0;
  opacity: 0.8;
  pointer-events: none;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    order: -1;
    margin-bottom: 10px;
  }

  .section-split {
    grid-template-columns: minmax(0, 1fr);
  }

  .nav-inner {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 52px 16px;
  }

  .hero {
    padding: 56px 16px 52px;
  }

  .scan-card {
    max-width: 260px;
  }
}


/* ==========================================
   FINAL STEP — Premium Typography Upgrade
   ========================================== */

#cta-final .eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
}

#cta-final h2 {
  font-size: 34px;            /* premium */
  line-height: 1.22;
  margin: 12px 0 18px;
  letter-spacing: -0.3px;
}

#cta-final .section-sub {
  font-size: 18px;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 32px;
}

#cta-final .hero-meta {
  font-size: 16px;
  margin-top: 18px;
  color: var(--text-muted);
}

#cta-final .cta-tagline {
  font-size: 18px;
  margin-top: 20px;
  display: block;
  line-height: 1.6;
}




/* ==========================================
   GRAND 9+ EXCELLENCE REWARD SECTION (FINAL)
   ========================================== */
.reward-grand {
  width: 100%;
  background: #1F2933 ; /* TRUE charcoal, not navy #0b0b0d #2F3E46*/
  padding: 20px 0 35px; /* much shorter */
  text-align: center;
  /*border-top: 2px solid rgba(255, 200, 0, 0.35); */
  /*border-bottom: 1px solid rgba(255, 215, 0, 0.15); */
}

.reward-grand-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.reward-grand-shield {
  width: 220px;
  height: auto;
  margin-bottom: 4px; /* tighter spacing */
  filter: drop-shadow(0 0 40px rgba(251, 191, 36, 0.55));
}

.reward-grand-text {
  font-size: 20px;
  font-weight: 700;
  color: #fbbf24;
  letter-spacing: 0.4px;
  margin-top: 8px;
}

/* ==========================================
   ANIMATIONS — Fade Up on Scroll
   ========================================== */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.8s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* Card Hover Lift */
.card:hover,
.deliverable-card:hover,
.audience-card:hover {
  transform: translateY(-6px);
  transition: transform 0.25s ease;
  box-shadow: 0 22px 55px rgba(0,0,0,0.55);
}

/* Icon Glow Pulse */
.deliverable-icon,
.audience-icon {
  animation: glowPulse 3.2s ease-in-out infinite;
}

@keyframes glowPulse {
  0% { filter: drop-shadow(0 8px 18px rgba(0,0,0,0.35)); }
  50% { filter: drop-shadow(0 12px 28px rgba(0,0,0,0.55)); }
  100% { filter: drop-shadow(0 8px 18px rgba(0,0,0,0.35)); }
}

/* ==========================================
   HERO DEVICE — Entrance + Float Animation
   ========================================== */

/* Initial state for fade-up entrance */
.hero-device {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.1s ease-out;
}

/* When visible */
.hero-device.visible {
  opacity: 1;
  transform: translateY(0);
  animation: heroFloat 6s ease-in-out infinite;
}

/* Gentle floating animation */
@keyframes heroFloat {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* GLOBAL FIX — Prevent Horizontal Scroll */
html, body {
  overflow-x: hidden;
}

/* ==========================================
   FIX DOUBLE VERTICAL SCROLLBAR
   ========================================== */

html, body {
  height: auto;
  overflow-y: visible;
  overflow-x: hidden;
}

.page-wrapper,
.section,
.section-inner {
  overflow: visible !important;
}

/* Glow layers should not create scrollbars */
.hero-glow,
.cta-glow,
.blueprint-lines-svg,
.roadmap-arrows-svg {
  overflow: hidden;
  max-height: 100%;
}

/* Hero visual safety */
.hero-visual {
  overflow: visible;
}

/* REMOVE INTERNAL SCROLL CONTAINERS */
html, body {
  overflow-x: hidden;
  overflow-y: auto;
  height: auto;
}

/* Prevent ANY child from becoming its own scroll area */
* {
  overflow-y: visible !important;
}
