:root {
  --navy-black: #0A0F2C;
  --midnight: #1C2640;
  --electric: #3B82F6;
  --white: #FFFFFF;
  --steel: #8BA3C7;
  --border: #2A3A5C;
  --font-display: 'Sora', sans-serif;
  --font-body: 'Manrope', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--navy-black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.5;
}

a { color: var(--electric); text-decoration: none; }
a:hover { color: var(--steel); }

img { max-width: 100%; display: block; }

.eyebrow {
  display: inline-block;
  color: var(--electric);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.4px;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 15, 44, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--white); letter-spacing: -0.3px; }
.logo span { color: var(--electric); }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--steel); font-weight: 600; font-size: 15px; }
.nav-links a:hover { color: var(--white); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 10px;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.btn:hover { opacity: 0.88; }
.btn-primary { background: var(--electric); color: var(--white); }
.btn-primary:hover { color: var(--white); }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--white); }
.btn-outline:hover { color: var(--white); border-color: var(--electric); }
.btn-sm { padding: 10px 22px; font-size: 14px; border-radius: 8px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-full { width: 100%; padding: 14px; font-size: 15px; text-align: center; }

/* HERO */
.hero {
  padding: 110px 24px 80px;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, var(--midnight) 0%, var(--navy-black) 65%);
}
.hero-inner { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 5.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -1px;
}
.hero-sub { color: var(--steel); font-size: 18px; line-height: 1.6; max-width: 600px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 4px; }
.hero-trust { color: var(--steel); font-size: 14px; font-weight: 600; margin-top: 4px; }

/* STATS */
.stats { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--midnight); }
.stats-inner { max-width: 1200px; margin: 0 auto; padding: 36px 24px; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 24px; text-align: center; }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: 28px; color: var(--electric); }
.stat-label { font-size: 13px; color: var(--steel); margin-top: 4px; }

/* SECTIONS */
.section { max-width: 1200px; margin: 0 auto; padding: 90px 24px 20px; }
.section-head { text-align: center; max-width: 560px; margin: 0 auto 48px; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.section-head h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 4vw, 36px); letter-spacing: -0.6px; }
.section-head p { color: var(--steel); font-size: 15px; }

/* FOUNDER */
.founder-card {
  display: flex; align-items: center; gap: 48px;
  background: var(--midnight); border: 1px solid var(--border); border-radius: 20px;
  padding: 48px; max-width: 900px; margin: 0 auto;
}
.founder-photo {
  width: 160px; height: 160px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--electric); flex-shrink: 0;
}
.founder-copy { display: flex; flex-direction: column; gap: 10px; }
.founder-copy h2 { font-family: var(--font-display); font-weight: 800; font-size: 28px; }
.founder-copy p { color: var(--steel); font-size: 15px; line-height: 1.6; }
@media (max-width: 640px) {
  .founder-card { flex-direction: column; text-align: center; padding: 36px 28px; }
}

/* PRODUCT GRID */
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.product-grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.card {
  background: var(--midnight);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.card-featured { border: 2px solid var(--electric); }
.card-badge {
  position: absolute; top: -13px; right: 22px;
  background: var(--electric); color: var(--white);
  font-size: 11px; font-weight: 800; padding: 5px 12px;
  border-radius: 999px; letter-spacing: 0.3px;
}
.card-tag { font-size: 12px; font-weight: 700; color: var(--steel); letter-spacing: 0.3px; }
.card-tag-free { color: var(--electric); }
.card h3 { font-family: var(--font-display); font-weight: 700; font-size: 20px; }
.card-desc { color: var(--steel); font-size: 14px; line-height: 1.6; flex-grow: 1; }
.card-price { font-family: var(--font-display); font-weight: 800; font-size: 28px; }
.tier-list { display: flex; flex-direction: column; gap: 12px; font-size: 13px; color: var(--steel); }
.tier-list li { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; border-top: 1px solid var(--border); padding-top: 12px; }
.tier-list li:first-child { border-top: none; padding-top: 0; }
.tier-info { display: flex; flex-direction: column; gap: 2px; }
.tier-name { color: var(--white); font-weight: 700; font-size: 14px; }
.tier-name em { color: var(--electric); font-style: normal; font-weight: 700; font-size: 11px; margin-left: 6px; }
.tier-sub { color: var(--steel); font-size: 12px; }
.tier-list strong { color: var(--white); font-weight: 800; font-size: 16px; white-space: nowrap; }
.card-compact { padding: 26px 22px; }
.price-row { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.price-current { font-family: var(--font-display); font-weight: 800; font-size: 24px; color: var(--white); }
.price-original { font-size: 14px; color: var(--steel); text-decoration: line-through; }
.price-discount { font-size: 11px; font-weight: 800; color: var(--electric); background: rgba(59,130,246,0.12); padding: 3px 8px; border-radius: 999px; letter-spacing: 0.3px; }

/* RESULTS */
.results-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
.result-card { background: var(--midnight); border: 1px solid var(--border); border-radius: 16px; padding: 30px; }
.result-num { font-family: var(--font-display); font-weight: 800; font-size: 32px; color: var(--electric); }
.result-name { font-weight: 700; font-size: 15px; margin-top: 6px; }
.result-note { color: var(--steel); font-size: 13px; margin-top: 4px; }

/* FAQ */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--midnight); border: 1px solid var(--border); border-radius: 12px; padding: 18px 22px; }
.faq-item summary { font-weight: 700; font-size: 15px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--electric); font-size: 20px; font-weight: 700; }
.faq-item[open] summary::after { content: '–'; }
.faq-item p { color: var(--steel); font-size: 14px; margin-top: 12px; line-height: 1.6; }

/* FOOTER */
.footer { border-top: 1px solid var(--border); margin-top: 100px; }
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 56px 24px 32px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px;
}
.footer-brand { max-width: 320px; display: flex; flex-direction: column; gap: 10px; }
.footer-logo { font-family: var(--font-display); font-weight: 800; font-size: 18px; }
.footer-brand p { color: var(--steel); font-size: 13px; line-height: 1.6; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; font-size: 13px; }
.footer-col h4 { color: var(--white); font-weight: 700; margin-bottom: 2px; font-size: 13px; }
.footer-col a { color: var(--steel); }
.footer-legal {
  border-top: 1px solid var(--border); max-width: 1200px; margin: 0 auto;
  padding: 20px 24px; color: var(--steel); font-size: 12px; line-height: 1.6;
}
.footer-legal a { margin-left: 8px; }

/* STICKY MOBILE CTA */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(10, 15, 44, 0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
}

/* TEXT GRADIENT */
.text-gradient {
  background: linear-gradient(100deg, var(--electric) 10%, #7cb0ff 50%, var(--electric) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* GLOW ORBS (hero decoration) */
.hero { position: relative; overflow: hidden; }
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}
.glow-orb-1 {
  width: 420px; height: 420px;
  top: -160px; left: 50%;
  transform: translateX(-70%);
  background: radial-gradient(circle, rgba(59,130,246,0.35) 0%, rgba(59,130,246,0) 70%);
  animation: orb-float-1 14s ease-in-out infinite;
}
.glow-orb-2 {
  width: 320px; height: 320px;
  bottom: -140px; right: 8%;
  background: radial-gradient(circle, rgba(139,163,199,0.25) 0%, rgba(139,163,199,0) 70%);
  animation: orb-float-2 18s ease-in-out infinite;
}
@keyframes orb-float-1 {
  0%, 100% { transform: translateX(-70%) translateY(0); }
  50% { transform: translateX(-55%) translateY(30px); }
}
@keyframes orb-float-2 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-24px) translateX(-16px); }
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(139,163,199,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,163,199,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, #000 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, #000 30%, transparent 90%);
}
.hero-inner { position: relative; z-index: 1; }

/* MARQUEE */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--midnight);
  overflow: hidden;
  padding: 16px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  animation: marquee-scroll 26s linear infinite;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--steel);
  letter-spacing: 0.3px;
}
.marquee-track span:not(.dot) { padding: 0 2px; }
.marquee .dot { color: var(--electric); font-weight: 800; }
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee:hover .marquee-track { animation-play-state: paused; }

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* HOW IT WORKS */
.steps-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 24px;
  position: relative;
}
.steps-flow::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 15%, var(--border) 85%, transparent);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 4px;
}
.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--electric);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--midnight);
  border: 1px solid var(--border);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.step:hover .step-num {
  border-color: var(--electric);
  transform: translateY(-3px);
  box-shadow: 0 0 0 4px rgba(59,130,246,0.12);
}
.step h3 { font-family: var(--font-display); font-weight: 700; font-size: 17px; margin-top: 4px; }
.step p { color: var(--steel); font-size: 14px; line-height: 1.6; }

/* CARD + BUTTON POLISH */
.card {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--electric);
  box-shadow: 0 20px 40px -20px rgba(59,130,246,0.35);
}
.card-featured:hover {
  box-shadow: 0 24px 48px -18px rgba(59,130,246,0.5);
}
.founder-card, .result-card, .step-num {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}
.result-card:hover {
  transform: translateY(-4px);
  border-color: var(--electric);
  box-shadow: 0 16px 32px -18px rgba(59,130,246,0.3);
}
.btn-primary {
  position: relative;
  transition: opacity 0.15s ease, transform 0.2s ease, box-shadow 0.25s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -8px rgba(59,130,246,0.55);
}
.btn-outline:hover {
  transform: translateY(-2px);
}
.faq-item {
  transition: border-color 0.25s ease;
}
.faq-item:hover {
  border-color: var(--electric);
}

/* ACCESSIBILITY: FOCUS STATES */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--electric);
  outline-offset: 3px;
  border-radius: 6px;
}
:focus:not(:focus-visible) { outline: none; }

/* HERO CURSOR SPOTLIGHT */
.hero-spotlight {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(480px circle at var(--mx, 50%) var(--my, 20%), rgba(59,130,246,0.12), transparent 65%);
  transition: opacity 0.3s ease;
  opacity: 0;
}
.hero:hover .hero-spotlight { opacity: 1; }
@media (hover: none) { .hero-spotlight { display: none; } }

/* BUTTON ICON ALIGNMENT */
.btn svg { margin-left: 8px; transition: transform 0.2s ease; flex-shrink: 0; }
.btn:hover svg { transform: translateX(3px); }

/* HERO PRODUCT SHOWCASE */
.hero-showcase {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 56px auto 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.showcase-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(28, 38, 64, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 12px 30px -14px rgba(0,0,0,0.5);
  animation: showcase-float 6s ease-in-out infinite;
}
.showcase-card-1 { animation-delay: 0s; }
.showcase-card-2 { animation-delay: 1.2s; transform: translateY(6px); }
.showcase-card-3 { animation-delay: 2.4s; }
@keyframes showcase-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.showcase-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.showcase-copy { display: flex; flex-direction: column; gap: 2px; text-align: left; }
.showcase-copy span { font-size: 12px; color: var(--steel); font-weight: 600; white-space: nowrap; }
.showcase-copy strong { font-family: var(--font-display); font-size: 15px; color: var(--white); font-weight: 800; }
@media (prefers-reduced-motion: reduce) {
  .showcase-card { animation: none; }
}
@media (max-width: 760px) {
  .hero-showcase { gap: 12px; margin-top: 40px; }
  .showcase-card { padding: 12px 14px; }
  .showcase-copy span { display: none; }
}

/* NAV SCROLL STATE */
.nav.is-scrolled {
  background: rgba(10, 15, 44, 0.98);
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.6);
}

/* RESPONSIVE */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .product-grid, .product-grid-3, .results-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .section { padding: 64px 20px 10px; }
  .hero { padding: 80px 20px 56px; }
  .sticky-cta { display: block; }
  body { padding-bottom: 76px; }
  .steps-flow { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .steps-flow::before { display: none; }
}
@media (max-width: 480px) {
  .steps-flow { grid-template-columns: 1fr; }
}
