/* =========================================================
   TOKENS & NEW FONTS
========================================================= */
:root {
  --bg: #0B0F19;
  --bg-alt: #0F1420;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-solid: #121729;
  --line: rgba(255, 255, 255, 0.09);
  --amber: #FF9D00;
  --amber-soft: rgba(255, 157, 0, 0.14);
  --amber-glow: 0 0 34px rgba(255, 157, 0, 0.35);
  --rust: #E85D2C;
  --text: #F4F1EA;
  --muted: #9BA3B4;
  --green: #22C55E;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  --radius: 1.1rem;
  
  /* NEW PREMIUM FONTS */
  --display: 'Playfair Display', serif;
  --body: 'Plus Jakarta Sans', sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: radial-gradient(ellipse 900px 500px at 50% -10%, rgba(255, 157, 0, 0.10), transparent 60%), var(--bg);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 4px; }

.mono-label {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--amber);
}

/* HEADINGS */
h1, h2, h3 { 
  font-family: var(--display); 
  letter-spacing: 0.5px; 
  color: #fff; 
  font-weight: 600; 
}

.section { padding: clamp(3.2rem, 8vw, 5.5rem) 1.5rem; }
.wrap { max-width: 1080px; margin: 0 auto; }
.center { text-align: center; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--body); font-weight: 700; font-size: 0.9rem;
  padding: 0.95rem 1.6rem; border-radius: 0.7rem;
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn-primary { background: var(--amber); color: #0B0F19; box-shadow: 0 14px 30px rgba(255, 157, 0, 0.25); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(255, 157, 0, 0.35); }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   HEADER
========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 1.25rem;
  background: rgba(11, 15, 25, 0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 0.65rem; }
.brand-logo { width: 38px; height: 38px; object-fit: contain; flex-shrink: 0; filter: drop-shadow(0 2px 10px rgba(255, 157, 0, 0.25)); }
.brand-word { font-family: var(--body); font-weight: 800; font-size: 1.3rem; letter-spacing: -0.5px; color: #fff; line-height: 1; }
.brand-tag { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.14em; color: var(--muted); text-transform: uppercase; display: block; margin-top: 2px; }
.site-header .btn { padding: 0.6rem 1.05rem; font-size: 0.8rem; }

/* =========================================================
   HERO
========================================================= */
.hero-photo { position: relative; width: 100%; min-height: 100vh; overflow: hidden; background: var(--bg); }
.hero-photo-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(11, 15, 25, 0.55) 0%, rgba(11, 15, 25, 0.05) 22%, rgba(11, 15, 25, 0.15) 45%, rgba(11, 15, 25, 0.93) 72%, var(--bg) 100%);
}
.hero-photo-text {
  position: absolute;
  left: 50%;
  bottom: 12%; /* Anchors text to the bottom instead of pushing from the top */
  top: auto; 
  transform: translateX(-50%);
  z-index: 10;
  width: 100%;
  max-width: 780px;
  text-align: center;
  padding: 0 1.5rem;
}
.hero-photo-text h1 {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  line-height: 1.15;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.65);
  margin-bottom: 1.5rem;
}
.hero-photo-text h1 em { font-style: italic; color: var(--amber); font-weight: 500; }

@media (max-width: 600px) {
  .hero-photo { min-height: 85vh; } /* Gives a tiny bit more room on mobile */
  .hero-photo-text { bottom: 10%; }
}
.hero-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 0; max-width: 640px; margin: 0 auto; }
.hero-stats span { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.08em; color: var(--text); text-transform: uppercase; padding: 0 1.1rem; position: relative; }
.hero-stats span:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 14px; background: var(--line); }
.hero-stats i { color: var(--amber); margin-right: 0.4rem; }

/* =========================================================
   SCARCITY TRACKER
========================================================= */
.spot-tracker { max-width: 640px; margin: 2rem auto 0; width: 100%; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.4rem 1.6rem; }
.spot-tracker-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.9rem; }
.spot-count { font-family: var(--mono); font-size: 0.8rem; color: var(--text); }
.spot-count strong { color: var(--amber); font-size: 0.95rem; }
.spot-bar { display: flex; gap: 5px; }
.spot-seg { flex: 1; height: 9px; border-radius: 3px; background: rgba(255, 255, 255, 0.08); }
.spot-seg.filled { background: linear-gradient(90deg, var(--rust), var(--amber)); }
.spot-seg.open { box-shadow: 0 0 0 1px rgba(255, 157, 0, 0.35) inset; }

/* =========================================================
   MARQUEE
========================================================= */
.marquee { width: 100%; background: var(--amber); color: #0B0F19; padding: 0.6rem 0; overflow: hidden; white-space: nowrap; margin-top: 3rem; }
.marquee-track { display: inline-block; animation: marquee 22s linear infinite; }
.marquee-item { display: inline-flex; align-items: center; gap: 0.5rem; margin-right: 2.75rem; font-family: var(--mono); font-weight: 600; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* =========================================================
   VIDEO SECTION
========================================================= */
.video-card { 
  width: 100%; 
  aspect-ratio: 16/9; 
  background: var(--bg-alt); 
  border: 1px solid var(--line); 
  border-radius: var(--radius); 
  position: relative; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  box-shadow: var(--shadow); 
  overflow: hidden; 
  cursor: pointer; 
}

.demo-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.video-card-label { 
  position: absolute; 
  top: 1rem; 
  left: 1rem; 
  font-family: var(--mono); 
  font-size: 0.65rem; 
  color: #fff; 
  background: rgba(11, 15, 25, 0.7); 
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  text-transform: uppercase; 
  letter-spacing: 0.08em; 
  z-index: 2;
  transition: opacity 0.3s ease;
}

.play-btn { 
  width: 64px; 
  height: 64px; 
  border-radius: 50%; 
  background: var(--amber); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: #0B0F19; 
  font-size: 1.3rem; 
  cursor: pointer; 
  transition: transform .25s ease, box-shadow .25s ease, opacity 0.3s ease; 
  z-index: 2;
}
.play-btn:hover { transform: scale(1.08); box-shadow: var(--amber-glow); }

.video-card.is-playing .play-btn,
.video-card.is-playing .video-card-label { opacity: 0; pointer-events: none; }

/* =========================================================
   CARDS & FEATURES
========================================================= */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.25rem; text-align: left; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.9rem; transition: transform .25s ease, border-color .25s ease; }
.card:hover { transform: translateY(-4px); border-color: rgba(255, 157, 0, 0.4); }
.card i.card-icon { font-size: 1.6rem; color: var(--amber); margin-bottom: 1rem; display: block; }
.card h3 { font-family: var(--display); color: #fff; font-size: 1.4rem; margin-bottom: 0.6rem; }
.card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1rem; }
.card ul { list-style: none; }
.card ul li { display: flex; gap: 0.55rem; align-items: flex-start; font-size: 0.9rem; color: #dcdcdc; margin-bottom: 0.55rem; }
.card ul li i { color: var(--green); font-size: 0.85rem; margin-top: 0.22rem; }

/* =========================================================
   COMPARISON TABLE (OLD VS NEW)
========================================================= */
.card-old { border-color: rgba(232, 93, 44, 0.2); background: rgba(232, 93, 44, 0.02); }
.card-new { border-color: var(--amber); background: linear-gradient(145deg, rgba(255, 157, 0, 0.05), var(--surface)); box-shadow: 0 10px 40px rgba(255, 157, 0, 0.1); }
.card-icon-bad { font-size: 1.6rem; color: var(--rust); margin-bottom: 1rem; display: block; }
.card-icon-good { font-size: 1.6rem; color: var(--green); margin-bottom: 1rem; display: block; }

.compare-list { margin-top: 1.2rem; }
.compare-list li { display: flex; gap: 0.8rem; align-items: flex-start; font-size: 0.95rem; color: #dcdcdc; margin-bottom: 1rem; line-height: 1.5; }
.compare-list li strong { color: #fff; font-weight: 700; }
.bad-list li i { color: var(--rust); font-size: 1.1rem; margin-top: 0.15rem; }
.good-list li i { color: var(--green); font-size: 1.1rem; margin-top: 0.15rem; }

/* =========================================================
   STEPS & QUALIFICATION
========================================================= */
.steps { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
.step { display: flex; gap: 1.1rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; }
.step-num { font-family: var(--display); font-size: 2.5rem; font-style: italic; color: var(--amber); line-height: 1; flex-shrink: 0; width: 2.4rem; }
.step h3 { font-family: var(--body); font-weight: 700; color: #fff; font-size: 1.1rem; margin-bottom: 0.3rem; }
.step p { color: var(--muted); font-size: 0.92rem; }

.qual-card { background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--amber); border-radius: var(--radius); padding: 1.9rem; text-align: left; }
.qual-card h3 { font-family: var(--display); font-size: 1.5rem; color: #fff; margin-bottom: 0.7rem; }
.qual-card > p { color: var(--muted); margin-bottom: 1.3rem; font-size: 0.95rem; }
.criteria-list { list-style: none; }
.criteria-list li { display: flex; gap: 0.75rem; align-items: flex-start; font-weight: 600; color: #fff; font-size: 0.95rem; margin-bottom: 0.9rem; }
.criteria-list li:last-child { margin-bottom: 0; }
.criteria-list i { color: var(--amber); font-size: 1.05rem; margin-top: 0.12rem; }

/* =========================================================
   FAQ
========================================================= */
details { background: var(--surface); border: 1px solid var(--line); border-radius: 0.85rem; margin-bottom: 0.85rem; overflow: hidden; }
details[open] { border-color: rgba(255, 157, 0, 0.45); }
summary { padding: 1.25rem 1.4rem; font-weight: 600; font-size: 1rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; color: #fff; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--amber); transition: transform .25s ease; flex-shrink: 0; }
details[open] summary::after { transform: rotate(180deg); }
.faq-body { padding: 0 1.4rem 1.3rem; color: var(--muted); font-size: 0.95rem; line-height: 1.65; }

/* =========================================================
   LEAD FORM
========================================================= */
.form-card { background: var(--surface); border: 1px solid rgba(255, 157, 0, 0.4); border-radius: 1.25rem; padding: 2.1rem 1.7rem; box-shadow: var(--shadow); text-align: left; backdrop-filter: blur(10px); }
.form-card h3 { font-family: var(--display); font-size: 1.8rem; color: #fff; text-align: center; margin-bottom: 0.4rem; }
.form-sub { text-align: center; color: var(--muted); font-size: 0.95rem; margin-bottom: 1.6rem; }

.dfy-box { background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.3); border-radius: 0.8rem; padding: 1.2rem; margin-bottom: 1.6rem; text-align: center; }
.dfy-box h4 { font-family: var(--body); color: var(--green); font-weight: 700; font-size: 1rem; margin-bottom: 0.35rem; }
.dfy-box p { color: var(--muted); font-size: 0.9rem; }

.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.85rem; color: var(--muted); margin-bottom: 0.4rem; font-weight: 600; }
.form-group input { width: 100%; background: rgba(0, 0, 0, 0.35); border: 1px solid var(--line); color: #fff; padding: 0.95rem 1rem; border-radius: 0.7rem; font-size: 1rem; font-family: var(--body); outline: none; transition: border-color .2s ease; }
.form-group input::placeholder { color: #5f6675; }
.form-group input:focus { border-color: var(--amber); }

.btn-submit { width: 100%; background: var(--amber); color: #0B0F19; font-weight: 700; font-size: 1.02rem; padding: 1.05rem; border: none; border-radius: 0.75rem; cursor: pointer; display: flex; justify-content: center; align-items: center; gap: 0.55rem; font-family: var(--body); transition: transform .25s ease, box-shadow .25s ease; }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(255, 157, 0, 0.32); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.risk-line { text-align: center; font-size: 0.85rem; color: var(--muted); margin-top: 1rem; display: flex; align-items: center; justify-content: center; gap: 0.45rem; }
.risk-line i { color: var(--green); }

.success-card { display: none; text-align: center; padding: 2.2rem 1.6rem; }
.success-card i { font-size: 2.8rem; color: var(--green); margin-bottom: 1rem; }
.success-card h3 { font-family: var(--display); color: #fff; font-size: 1.6rem; }
.success-card p { color: var(--muted); margin-top: 0.7rem; font-size: 1rem; }

/* =========================================================
   FOUNDER'S NOTE & ANIMATIONS
========================================================= */
.founder-card {
  display: flex;
  flex-direction: column;
  background: var(--surface-solid);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  padding: 2.5rem 1.5rem;
  position: relative;
  overflow: visible;
  margin-top: 3rem; 
}
@media (min-width: 768px) {
  .founder-card { flex-direction: row; align-items: center; padding: 3rem; gap: 3rem; margin-top: 0; }
}

.founder-image-wrapper {
  position: relative;
  width: 140px;
  height: 140px;
  margin: -5rem auto 1.5rem auto; 
  flex-shrink: 0;
  z-index: 2;
}
@media (min-width: 768px) {
  .founder-image-wrapper { width: 200px; height: 200px; margin: 0; }
}

.founder-img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--bg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  position: relative;
  z-index: 2;
  animation: floatImage 6s ease-in-out infinite;
}

.founder-glow {
  position: absolute; inset: -10px;
  background: radial-gradient(circle, rgba(255,157,0,0.4) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: pulseGlow 4s ease-in-out infinite;
}

.founder-title { font-family: var(--display); font-size: 1.6rem; color: var(--amber); margin-bottom: 1rem; }
@media (max-width: 767px) { .founder-title { text-align: center; } }
.founder-quote { font-size: 0.95rem; color: #fff; line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.founder-signature { font-family: var(--mono); font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 1.5rem; }

.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.scroll-animate.is-visible { opacity: 1; transform: translateY(0); }

@keyframes floatImage { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-12px); } }
@keyframes pulseGlow { 0%, 100% { opacity: 0.5; transform: scale(1); } 50% { opacity: 1; transform: scale(1.15); } }

/* =========================================================
   STICKY FOMO BAR
========================================================= */
.sticky-fomo-bar {
  position: fixed;
  bottom: 0; left: 0; width: 100%;
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 157, 0, 0.3);
  z-index: 9999;
  padding: 0.8rem 1rem;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.5);
  transform: translateY(100%);
  animation: slideUpBar 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 1.5s forwards;
}

@keyframes slideUpBar { to { transform: translateY(0); } }

.fomo-content { display: flex; align-items: center; justify-content: space-between; }
.fomo-text { display: flex; align-items: center; gap: 0.6rem; }
.fomo-fire { font-size: 1.5rem; animation: pulseGlow 2s infinite; }
.fomo-copy { display: flex; flex-direction: column; line-height: 1.2; }
.fomo-copy strong { color: var(--amber); font-size: 0.95rem; font-family: var(--body); }
.fomo-copy span { color: var(--muted); font-size: 0.75rem; font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.05em; }

.fomo-actions { display: flex; align-items: center; gap: 0.6rem; }
.btn-phone {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.05); border: 1px solid var(--line);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: all 0.2s ease;
}
.btn-phone:hover { background: rgba(34, 197, 94, 0.2); border-color: var(--green); color: var(--green); }
.fomo-btn { padding: 0.7rem 1.2rem; font-size: 0.85rem; }

@media (max-width: 400px) {
  .hide-mobile { display: none; }
  .fomo-copy strong { font-size: 0.85rem; }
  .fomo-btn { padding: 0.6rem 0.9rem; font-size: 0.75rem; }
}

/* =========================================================
   FOOTER
========================================================= */
footer { text-align: center; padding: 2.2rem 1.5rem 7rem; color: var(--muted); font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.05em; border-top: 1px solid var(--line); }
footer span { display: block; margin-top: 0.3rem; opacity: 0.7; }

/* RESPONSIVE */
@media (min-width: 760px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .form-card { padding: 2.8rem; }
}

.fab-call { position: fixed; bottom: 1.6rem; right: 1.6rem; background: var(--amber); color: #0B0F19; width: 58px; height: 58px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.5rem; box-shadow: var(--shadow); z-index: 900; text-decoration: none; animation: pulse-fab 2.4s infinite; transition: transform .25s ease; }
.fab-call:hover { transform: scale(1.08); }
@keyframes pulse-fab { 0% { box-shadow: 0 0 0 0 rgba(255, 157, 0, 0.55); } 70% { box-shadow: 0 0 0 14px rgba(255, 157, 0, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 157, 0, 0); } }