/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:      #0d0e1d;
  --navy-2:    #161829;
  --navy-3:    #1f202e;
  --blue:      #3F63C4;
  --blue-2:    #495CE2;
  --blue-3:    #3951E4;
  --cyan:      #018BD3;
  --indigo:    #1d64c8;
  --white:     #FFFFFF;
  --white-60:  rgba(255,255,255,0.62);
  --white-20:  rgba(255,255,255,0.18);
  --white-10:  rgba(255,255,255,0.07);
  --glow-blue: rgba(63, 99, 196, 0.55);
  --font: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-serif: 'DM Serif Display', Georgia, serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background-color: var(--navy);
  color: var(--white);
  font-size: clamp(0.9rem, 0.625rem + 0.42vw, 1rem);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* =====================
   LAYOUT
   ===================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center {
  text-align: center;
}

/* =====================
   GRADIENT TEXT
   ===================== */
.gradient-text {
  background: conic-gradient(from 180deg at 50% 50%, #3F63C4 0deg, #018BD3 130deg, #495CE2 260deg, #3F63C4 360deg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =====================
   NAV
   ===================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  background: rgba(13, 14, 29, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--white-10);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 30px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 10rem;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.btn-nav {
  padding: 0 1.4rem;
  min-height: 40px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.875rem;
  box-shadow: 0 0 10px rgba(63, 99, 196, 0.55), 0 0 20px rgba(63, 99, 196, 0.3);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  animation: glow-breathe 1.6s ease-in-out infinite;
}

.btn-nav:hover {
  box-shadow: 0 0 20px rgba(63, 99, 196, 0.75), 0 0 30px rgba(63, 99, 196, 0.5);
  transform: translateY(-1px);
  animation-play-state: paused;
}

.btn-primary {
  padding: 0 2.2rem;
  min-height: 52px;
  max-height: 52px;
  background: var(--white);
  color: var(--navy);
  font-size: 1rem;
  box-shadow: 0 0 10px rgba(63, 99, 196, 0.55), 0 0 20px rgba(63, 99, 196, 0.3);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  animation: glow-breathe 1.6s ease-in-out infinite;
}

.btn-primary:hover {
  box-shadow: 0 0 20px rgba(63, 99, 196, 0.75), 0 0 30px rgba(63, 99, 196, 0.5);
  transform: translateY(-2px);
  animation-play-state: paused;
}

.btn-primary:hover .ring { animation-play-state: running; }

.btn-large {
  padding: 0 3rem;
  min-height: 60px;
  max-height: 60px;
  font-size: 1.05rem;
}

@keyframes glow-breathe {
  0%, 100% {
    box-shadow: 0 0 10px rgba(63, 99, 196, 0.55), 0 0 20px rgba(63, 99, 196, 0.3);
  }
  50% {
    box-shadow: 0 0 22px rgba(63, 99, 196, 0.8), 0 0 38px rgba(1, 139, 211, 0.45);
  }
}

.btn-rings {
  position: absolute;
  inset: 0;
  border-radius: 10rem;
  pointer-events: none;
}

.ring {
  position: absolute;
  inset: -4px;
  border-radius: 10rem;
  border: 2px solid rgba(63, 99, 196, 0.5);
  opacity: 0;
  animation: none;
}

.btn-primary:hover .ring--1 { animation: ring-expand 1s ease-out 0.1s infinite; }
.btn-primary:hover .ring--2 { animation: ring-expand 1s ease-out 0.5s infinite; }
.btn-primary:hover .ring--3 { animation: ring-expand 1s ease-out 0.9s infinite; }

@keyframes ring-expand {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.5); }
}

/* =====================
   GLOWS
   ===================== */
.hero-glow {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}

.hero-glow--wash {
  inset: 0;
  border-radius: 0;
  background: linear-gradient(to bottom, rgba(63, 99, 196, 0.18) 0%, rgba(73, 92, 226, 0.10) 100%);
}

.hero-glow--orb {
  width: 110%;
  height: 420px;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  background: conic-gradient(from 90deg at 50% 50%, rgba(1,139,211,0.7) 0deg, rgba(63,99,196,0.75) 169.2deg, rgba(73,92,226,0.7) 338.4deg, rgba(1,139,211,0.7) 360deg);
  filter: blur(90px);
  opacity: 0.55;
}

.hero-glow--cta {
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(73, 92, 226, 0.4) 0%, transparent 70%);
  filter: blur(80px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* =====================
   HERO
   ===================== */
.hero {
  position: relative;
  padding: 160px 0 100px;
  text-align: center;
  overflow: hidden;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: var(--white-10);
  border: 1px solid var(--white-20);
  border-radius: 10rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero-scroll {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

/* =====================
   HERO VSL
   ===================== */
.hero-vsl {
  margin-top: 1.75rem;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.vsl-label-top {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}

.vsl-wrapper {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--white-10);
  background: var(--navy-2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(63, 99, 196, 0.15);
}

/* =====================
   SECTIONS
   ===================== */
.section {
  padding: 100px 0;
  position: relative;
}

.section--dark {
  background: var(--navy-2);
}

.section--cta {
  overflow: hidden;
  text-align: center;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-body {
  font-size: 1.05rem;
  color: var(--white-60);
  max-width: 680px;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.section--cta .section-body {
  margin-left: auto;
  margin-right: auto;
}

/* =====================
   STATS
   ===================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.stat-card {
  background: var(--white-10);
  border: 1px solid var(--white-20);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--white-60);
}

/* =====================
   OWNERSHIP / ROLE GRID
   ===================== */
.ownership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.ownership-item {
  background: var(--white-10);
  border: 1px solid var(--white-20);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.ownership-item:hover {
  border-color: rgba(63, 99, 196, 0.45);
  transform: translateY(-3px);
}

.ownership-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.ownership-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.ownership-item p {
  font-size: 0.9rem;
  color: var(--white-60);
  line-height: 1.65;
}

/* =====================
   POD / SUPPORT DIAGRAM
   ===================== */
.pod-section {
  overflow: hidden;
}

.pod-diagram-wrap {
  max-width: 960px;
  margin: 3rem auto 0;
  padding: 0 2rem;
}

.pod-diagram {
  position: relative;
  width: 100%;
  aspect-ratio: 900 / 520;
}

.pod-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.pod-node {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 0.7rem 1rem;
  text-align: center;
  min-width: 110px;
  z-index: 2;
  backdrop-filter: blur(10px);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.pod-node:hover {
  transform: translate(-50%, -53%);
  border-color: rgba(63, 99, 196, 0.45);
}

.pod-node--center {
  top: 50%;
  left: 50%;
  min-width: 165px;
  padding: 1rem 1.4rem;
  border-color: rgba(63, 99, 196, 0.55);
  background: rgba(63, 99, 196, 0.16);
  box-shadow: 0 0 40px rgba(63, 99, 196, 0.22);
}

.pod-node--center:hover {
  transform: translate(-50%, -50%);
}

.pod-node--ai {
  top: 16.9%;
  left: 50%;
  border-color: rgba(1, 139, 211, 0.5);
  background: rgba(1, 139, 211, 0.1);
}

.pod-node--ai:hover {
  border-color: rgba(1, 139, 211, 0.75);
}

.pod-node--mb { top: 39.4%; left: 69.2%; }
.pod-node--ce { top: 78.1%; left: 62.6%; }
.pod-node--ds { top: 78.1%; left: 37.4%; }
.pod-node--co { top: 39.4%; left: 30.8%; }

.pod-node-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.pod-node-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  white-space: nowrap;
}

.pod-node-sub {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.pod-node--center .pod-node-label {
  font-size: 0.875rem;
  font-weight: 800;
}

.pod-node--center .pod-node-sub {
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.72rem;
}

.pod-node--ai .pod-node-sub {
  color: rgba(1, 139, 211, 0.8);
}

.pod-mobile {
  display: none;
}

/* =====================
   REQUIREMENTS
   ===================== */
.requirements-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}

.req-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--white-10);
  border: 1px solid var(--white-20);
  border-radius: 12px;
  font-size: 0.975rem;
  color: var(--white-60);
  line-height: 1.65;
  transition: border-color 0.2s ease;
}

.req-item:hover {
  border-color: rgba(63, 99, 196, 0.45);
}

.req-item strong {
  color: var(--white);
}

.req-check {
  color: var(--cyan);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* =====================
   VALUES
   ===================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--white-20);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.value-card:hover {
  border-color: rgba(1, 139, 211, 0.45);
  transform: translateY(-3px);
}

.value-card--wide {
  grid-column: 1 / -1;
}

.value-num {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.5rem;
}

.value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--white-60);
  line-height: 1.7;
}

/* =====================
   EARNINGS TIERS
   ===================== */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.tier-card {
  background: var(--white-10);
  border: 1px solid var(--white-20);
  border-radius: 18px;
  padding: 2rem 1.6rem;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.tier-card:hover {
  border-color: rgba(63, 99, 196, 0.45);
  transform: translateY(-3px);
}

.tier-card--featured {
  background: rgba(63, 99, 196, 0.12);
  border-color: rgba(63, 99, 196, 0.45);
  box-shadow: 0 0 36px rgba(63, 99, 196, 0.2);
}

.tier-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white-60);
  margin-bottom: 0.6rem;
}

.tier-amount {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.tier-desc {
  font-size: 0.875rem;
  color: var(--white-60);
  line-height: 1.65;
}

/* =====================
   PERKS
   ===================== */
.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.perk-item {
  padding: 2rem 1.5rem;
  background: var(--white-10);
  border: 1px solid var(--white-20);
  border-radius: 16px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.perk-item:hover {
  border-color: rgba(63, 99, 196, 0.45);
  transform: translateY(-3px);
}

.perk-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.75rem;
}

.perk-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.perk-item p {
  font-size: 0.875rem;
  color: var(--white-60);
  line-height: 1.65;
}

/* =====================
   CTA
   ===================== */
.section-cta-inline {
  margin-top: 4rem;
  padding-top: 2rem;
  text-align: center;
}

.cta-note {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--white-60);
}

/* =====================
   FOOTER
   ===================== */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--white-10);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--white-60);
  font-style: italic;
  margin-top: 0.25rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--white-60);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-disclaimer {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.32);
  max-width: 620px;
  text-align: center;
  line-height: 1.6;
  margin-top: 0.5rem;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 640px) {
  .pod-diagram { display: none; }

  .pod-mobile {
    display: block;
    padding: 0 1.25rem;
    margin-top: 2rem;
  }

  .pod-mobile-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(63, 99, 196, 0.16);
    border: 1px solid rgba(63, 99, 196, 0.45);
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }

  .pod-mobile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .pod-mobile-item {
    padding: 0.75rem 1rem;
    background: var(--white-10);
    border: 1px solid var(--white-20);
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
  }

  .pod-mobile-item--ai {
    grid-column: 1 / -1;
    border-color: rgba(1, 139, 211, 0.45);
    background: rgba(1, 139, 211, 0.1);
    color: var(--cyan);
  }
}

@media (max-width: 768px) {
  .hero { padding: 120px 0 80px; }
  .hero-title { font-size: 2.2rem; }

  .stats-grid,
  .ownership-grid,
  .perks-grid,
  .tier-grid { grid-template-columns: 1fr; }

  .values-grid { grid-template-columns: 1fr; }
  .value-card--wide { grid-column: 1; }

  .nav-inner { padding: 0 1.25rem; }
  .nav-logo-img { height: 24px; }

  .btn-large { padding: 1rem 2.2rem; font-size: 1rem; }
}

@media (max-width: 480px) {
  .container, .container--narrow { padding: 0 1.25rem; }
  .section { padding: 70px 0; }
  .hero-title { font-size: 1.9rem; }
}

/* =====================
   THANK YOU PAGE
   ===================== */
.ty-hero {
  padding-bottom: 80px;
}

.ty-hero-sub {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

.ty-check {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}

.ty-steps {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ty-step {
  display: grid;
  grid-template-columns: 56px 32px 1fr;
  gap: 0 1.25rem;
  align-items: start;
}

.ty-step-num {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding-top: 2px;
  text-align: right;
}

.ty-step-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
}

.ty-step-line::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(63,99,196,0.7);
  border: 2px solid rgba(63,99,196,0.95);
  flex-shrink: 0;
}

.ty-step-line::after {
  content: '';
  width: 1px;
  flex: 1;
  min-height: 48px;
  background: linear-gradient(to bottom, rgba(63,99,196,0.45), rgba(63,99,196,0.05));
  margin-top: 6px;
}

.ty-step--last .ty-step-line::after {
  display: none;
}

.ty-step-body {
  padding-bottom: 2.5rem;
}

.ty-step-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  margin-top: 0;
  line-height: 1.3;
}

.ty-step-body p {
  font-size: 0.925rem;
  color: var(--white-60);
  line-height: 1.75;
}

.ty-linkedin-section {
  text-align: center;
  overflow: hidden;
}

.ty-linkedin-glow {
  width: 500px;
  height: 340px;
  background: radial-gradient(circle, rgba(1,139,211,0.28) 0%, transparent 70%);
  filter: blur(70px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ty-linkedin-body {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

.ty-linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0a66c2;
  color: #fff;
  font-family: var(--font);
  font-size: 0.975rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10rem;
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 20px rgba(10,102,194,0.35);
}

.ty-linkedin-btn:hover {
  background: #0858a8;
  box-shadow: 0 6px 28px rgba(10,102,194,0.5);
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .ty-step {
    grid-template-columns: 40px 24px 1fr;
    gap: 0 1rem;
  }
}
