:root {
  --red: #E8372A;
  --red-dark: #B52B20;
  --gold: #D4A316;
  --bg: #FFFFFF;
  --bg2: #FFFFFF;
  --bg3: #F1F1F5;
  --border: rgba(0, 0, 0, 0.06);
  --border-strong: rgba(0, 0, 0, 0.12);
  --text: #121214;
  --muted: #626064;
  --muted2: #4A494D;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;
}
main {
  z-index: 0;
}
.wrapper section{
    width:100%;
    height:100vh;
    padding: 5em 0;
    border:0px solid #ccc;
}
.wrapper{
    border:1px solid #000;
    padding:2em;
}
#video-bg {
  position: absolute;
  width: 100%;
  height: 100vh;
  border-radius: 50px;
  z-index: -1;
  left: 0;
  top: 0;
  opacity: 0.1;
}
/* ── CURSOR ── */
#cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
}
#cursor-ring {
  position: fixed;
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  opacity: 0.55;
}
/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(249, 249, 251, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.06em;
  color: var(--text);
  text-decoration: none;
}
.nav-logo span {
  color: var(--red);
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--muted2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--red);
}
.nav-cta {
  background: var(--red);
  color: #fff;
  padding: 9px 22px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}
/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;

  align-items: center;
  gap: 60px;
  padding: 140px 80px 80px;
  position: relative;
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 20%, rgba(232, 55, 42, 0.06) 0%, transparent 60%), radial-gradient(ellipse 40% 40% at 80% 80%, rgba(214, 163, 22, 0.04) 0%, transparent 60%);
}
.hero-grid {
 display: grid;
  grid-template-columns: 1fr 1fr; 
     width:100%;
}
.hero-left {
  position: relative;
  z-index: 2;
  text-align: left;
    padding:0 2em;
   
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 55, 42, 0.08);
  border: 1px solid rgba(232, 55, 42, 0.2);
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  will-change: transform, opacity;
}
.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(50px, 6.5vw, 90px);
  line-height: 0.95;
  color: var(--text);
  margin-bottom: 16px;
  will-change: transform, opacity;
}
.hero h1 span {
  display: block;
}
.hero h1 b {
  display: block;
/*  background-image: linear-gradient(90deg, #ff7e5f, #feb47b);*/
  padding: 10px;
  color: #fff;
   background-color: var(--red);var(--red);
}
.hero h1 em {
  font-style: normal;
  color: var(--red);
  font-size: clamp(30px, 6.5vw, 60px);
  display: block;
}
.hero-sub-headline {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 42px);
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 24px;
  will-change: transform, opacity;
}
.hero p {
  font-size: 18px;
  font-weight: 400;
  color: var(--muted2);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.65;
  will-change: transform, opacity;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  will-change: transform, opacity;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  box-shadow: 0 4px 14px rgba(232, 55, 42, 0.2);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--muted2);
  border: 1px solid var(--border-strong);
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  display: inline-block;
}
.btn-ghost:hover {
  border-color: var(--text);
  color: var(--text);
  background: var(--bg3);
}
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  will-change: transform, opacity;
}
.featured-icon img {
  width: 100px;
}
.hero-trust span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-trust span::before {
  content: '✓';
  color: var(--gold);
  font-size: 14px;
  font-weight: bold;
}
.hero-right {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  will-change: transform, opacity;
}
.video-wrapper {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
  aspect-ratio: 16 / 9;
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
  cursor: pointer;
  z-index: 3;
}
.video-wrapper.is-playing .video-overlay {
  opacity: 0;
  pointer-events: none;
}
.play-btn {
  width: 76px;
  height: 76px;
  background: var(--red);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.2s;
  box-shadow: 0 8px 24px rgba(232, 55, 42, 0.4);
}
.play-btn svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  margin-left: 4px;
}
.video-overlay:hover .play-btn {
  transform: scale(1.1);
  background: var(--red-dark);
}
/* ─── SECTIONS ─── */
.section {
    
}
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  will-change: transform, opacity;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 0.02em;
  line-height: 0.95;
  color: var(--text);
  margin-bottom: 20px;
  will-change: transform, opacity;
}
.section-sub {
  font-size: 17px;
  font-weight: 400;
  color: var(--muted2);
  margin: 0 auto;
  max-width: 90%;
  line-height: 1.65;
  margin-bottom: 56px;
  will-change: transform, opacity;
}
/* ─── FEATURES ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-radius: 8px;
}
.feat {
  background: var(--bg2);
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
  will-change: transform, opacity;
}
.feat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.feat:hover::before {
  transform: scaleX(1);
}
.feat-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  display: block;
}
.feat-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}
.feat h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.feat p {
  font-size: 14px;
  color: var(--muted2);
  font-weight: 400;
  line-height: 1.65;
}
/* ─── HOW IT WORKS ─── */
#how .how-wrap {
  position: relative;
}
#how .how-line {
  position: absolute;
  top: 28px;
  left: calc(12.5% - 0px);
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--red) 0%, var(--border-strong) 100%);
  z-index: 0;
  transform-origin: left;
  will-change: transform;
}
.how-wrap .steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}
#how .step {
  text-align: center;
  will-change: transform, opacity;
}
#how .step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--red);
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}
#how .step h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}
#how .step p {
  font-size: 13px;
  color: var(--muted2);
  font-weight: 400;
  line-height: 1.6;
}
#how .step code {
  font-family: var(--font-mono);
  font-size: 12px;
  background: rgba(232, 55, 42, 0.06);
  color: var(--red);
  padding: 2px 7px;
  border-radius: 3px;
}
/* ─── FOR WHO ─── */
.for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.for-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
  will-change: transform, opacity;
}
.for-card-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  display: block;
}
.for-card h3 {
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 28px;
  line-height: 1.2;
}
.for-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.for-list li {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted2);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.55;
  will-change: transform, opacity;
}
.for-list li::before {
  content: '→';
  color: var(--red);
  flex-shrink: 0;
  font-size: 13px;
  margin-top: 1px;
}
/* ─── PRICING ─── */
.pricing-wrap {
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg2);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.02);
}
.pricing-top {
  padding: 48px 48px 36px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.pricing-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #A37903;
  background: rgba(245, 200, 66, 0.15);
  border: 1px solid rgba(245, 200, 66, 0.3);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 28px;
}
.price-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 6px;
}
.price-cur {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--muted);
  margin-top: 10px;
}
.price-num {
  font-family: var(--font-display);
  font-size: 100px;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.02em;
}
.price-note {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 32px;
}
.pricing-features {
  padding: 36px 48px;
}
.pricing-features ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.pricing-features li {
  font-size: 15px;
  font-weight: 400;
  color: var(--muted2);
  display: flex;
  gap: 12px;
  align-items: center;
}
.pricing-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: bold;
  flex-shrink: 0;
}
.pricing-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--red);
  color: #fff;
  padding: 16px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
  letter-spacing: 0.02em;
}
.pricing-btn:hover {
  background: var(--red-dark);
}
.pricing-guarantee {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}
.pricing-guarantee span {
  color: #A37903;
}
/* ─── FAQ ─── */
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 12px;
}
.faq-a {
  font-size: 15px;
  font-weight: 400;
  color: var(--muted2);
  line-height: 1.7;
  max-width: 680px;
}
/* ─── FINAL CTA ─── */
.final-cta {
  text-align: center;
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 100%, rgba(232, 55, 42, 0.04) 0%, transparent 65%);
}
.final-cta h2 {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 88px);
  letter-spacing: 0.02em;
  line-height: 0.95;
  color: var(--text);
  margin-bottom: 20px;
}
.final-cta h2 em {
  font-style: normal;
  color: var(--red);
}
.final-cta p {
  position: relative;
  z-index: 1;
  font-size: 17px;
  font-weight: 400;
  color: var(--muted2);
  margin-bottom: 40px;
}
.final-cta .hero-actions {
  position: relative;
  z-index: 1;
  justify-content: center;
}
.final-cta .hero-trust {
  position: relative;
  z-index: 1;
  justify-content: center;
}
/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg2);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.footer-logo span {
  color: var(--red);
}
footer p {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}
/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 120px 24px 60px;
    gap: 40px;
    text-align: center;
  }
  .hero-left {
    text-align: center;
  }
  .hero p {
    margin-inline: auto;
  }
  .hero-actions, .hero-trust {
    justify-content: center;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .how-line {
    display: none;
  }
  .for-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  nav {
    padding: 16px 20px;
  }
  .nav-links {
    display: none;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 80px 20px;
  }
  footer {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
/* ════════════════════════════════════════
       FLOATING NAV — UNTOUCHED
    ════════════════════════════════════════ */
#navPill {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 52px;
  background: rgba(28, 25, 23, 0.94);
  backdrop-filter: blur(18px);
  border: 0px solid rgba(255, 255, 255, 0.09);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px 0 22px;
  z-index: 9999;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.22);
}
.pill-logo {
  font-family: 'Playfair Display', serif;
  font-family: "Fraunces", serif;
  text-decoration: none;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -1px;
  color: #f7f4ef;
  color: rgba(255, 167, 7, 1.00);
  color: var(--red);
  text-decoration: none;
}
.pill-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pill-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.00);
  border: 1px solid rgba(255, 255, 255, 0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.hbars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 17px;
}
.hbars span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: rgba(255, 42, 0, 1.00);
  border-radius: 0px;
}
#drop {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  background: #1c1917;
  border: 0px solid rgba(255, 255, 255, 0.09);
  border-radius: 0px;
  z-index: 9998;
  overflow: hidden;
  height: 0;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}
#dropBody {
  padding: 78px 28px 30px;
  visibility: hidden;
}
.mnav {
  list-style: none;
}
.mnav a {
  font-weight: 700;
  font-size: 1.1em;
  color: rgba(255, 255, 255, 1.00);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5em 0;
  transition: all 0.3s ease;
}
.mnav a:hover {
  color: var(--red);
  transition: all 0.3s ease;
  transform: translateX(10px);
}