* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --mandarine: #D44E23;
  --mandarine-hover: #ff7f4f;
  --light-orange: #FF5D00;
  --navy: #1A1A2E;
  --deep: #0B0E1A;
  --white: #fff;
  --teal: #00C9A7;
  --muted: rgba(255, 255, 255, 0.65);
  --line: rgba(255, 255, 255, 0.08);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--deep);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
  padding: 14px 28px;
  text-decoration: none;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--mandarine);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.2);
}

.btn-primary:hover {
  background: var(--mandarine-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255,255,255,0.25);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 18, 0.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  z-index: 70;
}

.menu-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 14, 26, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }
nav .brand {
  display: inline-flex;
  align-items: center;
}

nav .brand img {
  height: 28px;
  width: auto;
  max-width: 140px;
  display: block;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  text-transform: uppercase;
}

nav .nav-cta { font-size: 14px; padding: 10px 20px; }
nav .nav-links { display: flex; gap: 32px; font-size: 14px; font-weight: 500; }
nav .nav-links a { color: var(--muted); transition: color 0.2s ease; }
nav .nav-links a:hover { color: #fff; }

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-burger {
  display: none;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-burger:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.3);
}

.nav-burger span {
  display: block;
  height: 2px;
  width: 18px;
  background: #fff;
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.nav-burger span:nth-child(2) { width: 13px; }

.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: min(86vw, 340px);
  height: 100dvh;
  padding: 92px 24px 28px;
  border-left: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(12, 17, 32, 0.98), rgba(8, 12, 24, 0.98));
  box-shadow: -24px 0 64px rgba(0, 0, 0, 0.55);
  transform: translateX(102%);
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 90;
}

.mobile-menu-header {
  position: absolute;
  top: 18px;
  left: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}

.mobile-menu-logo {
  height: 24px;
  width: auto;
  max-width: 114px;
  display: block;
}

.menu-close {
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.04);
  color: #fff;
  border-radius: 10px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.menu-close:hover {
  background: rgba(255,255,255,0.1);
}

.mobile-menu a {
  padding: 16px 0;
  font-weight: 500;
  font-size: 16px;
  border-bottom: 1px solid var(--line);
}

.mobile-menu a.btn { border-bottom: none; margin-top: 20px; }
.mobile-menu.open { transform: translateX(0); }

.hero { text-align: center; padding: 80px 0 60px; position: relative; overflow: hidden; }
.hero::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 94, 47, 0.08), transparent 70%);
  pointer-events: none;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(40px, 7vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero h1 .o { color: var(--light-orange); }

.hero p.sub {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 32px;
  font-weight: 400;
}

.tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 20px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mandarine);
  font-weight: 700;
  margin-bottom: 20px;
}

.tagline-word {
  display: inline-block;
  position: relative;
  color: #FF721F;
  opacity: 0.98;
}

.tagline-word::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: transparent;
  background: linear-gradient(
    112deg,
    #FF721F 0%,
    #FF721F 34%,
    #ffd7be 44%,
    #ffe9dc 50%,
    #ffd7be 56%,
    #FF721F 66%,
    #FF721F 100%
  );
  background-size: 240% 100%;
  background-position: 190% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  animation: taglineWordSwipe 9s cubic-bezier(0.35, 0, 0.25, 1) infinite;
  pointer-events: none;
}

.tagline-word:nth-of-type(1)::after { animation-delay: 0s; }
.tagline-word:nth-of-type(3)::after { animation-delay: 1.1s; }
.tagline-word:nth-of-type(5)::after { animation-delay: 2.2s; }

.tagline-dot {
  color: #FF721F;
  opacity: 0.75;
  transform: translateY(-1px);
}

.tagline::before, .tagline::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: rgba(255, 107, 53, 0.4);
}

.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-cta .btn-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-cta .btn-primary::after {
  content: '';
  position: absolute;
  top: -120%;
  left: -45%;
  width: 38%;
  height: 340%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.35) 48%, transparent 100%);
  transform: rotate(15deg);
  animation: buttonShimmer 5.6s ease-in-out infinite;
  pointer-events: none;
}

.hero-note { font-size: 13px; color: var(--muted); margin-top: 20px; }

@keyframes taglineWordSwipe {
  0%, 8% {
    background-position: 190% 50%;
    opacity: 0;
  }
  22%, 34% {
    background-position: -18% 50%;
    opacity: 1;
  }
  46%, 100% {
    background-position: -18% 50%;
    opacity: 0;
  }
}

@keyframes buttonShimmer {
  0%, 70% { left: -45%; opacity: 0; }
  74% { opacity: 1; }
  100% { left: 125%; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .tagline-word::after,
  .hero-cta .btn-primary::after {
    animation: none;
  }
}

.stat-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 64px;
}

.stat {
  flex: 1;
  min-width: 200px;
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stat:last-child { border-right: none; }

.stat .num {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: var(--mandarine);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat .lbl { font-size: 14px; color: var(--muted); margin-top: 12px; font-weight: 500; }

section.block { padding: 80px 0; }

.offer-section { background: rgba(255,255,255,.015); }

.kicker {
  text-align: center;
  color: var(--mandarine);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

h2.title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

p.lead {
  text-align: center;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 56px;
  font-size: 18px;
}

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.step {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.step:hover {
  background: rgba(255, 255, 255, 0.035);
  transform: translateY(-4px);
  border-color: var(--light-orange);
}

.step .step-num {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  margin-bottom: 24px;
  display: block;
  transition: color 0.3s ease;
}

.step:hover .step-num {
  color: var(--light-orange);
}

.step h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: #fff;
}

.step p { color: var(--muted); font-size: 15px; line-height: 1.6; }

.billing-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 auto 24px;
  width: fit-content;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.billing-option {
  appearance: none;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 18px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.billing-option.is-active {
  color: #fff;
  background: rgba(212, 78, 35, 0.9);
  box-shadow: 0 6px 18px rgba(212, 78, 35, 0.35);
}

.tiers { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }

.tiers .card.is-hidden { display: none; }

#pricing-cards {
  transition: opacity 0.18s ease, transform 0.18s ease;
}

#pricing-cards.is-switching-out {
  opacity: 0;
  transform: translateY(8px);
}

#pricing-cards.is-switching-in {
  animation: pricingSwitchIn 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes pricingSwitchIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card {
  background: linear-gradient(160deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  transform-style: preserve-3d;
}

.card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(232,94,47,0), rgba(232,94,47,0.45), rgba(0,201,167,0.15), rgba(232,94,47,0));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.card::after {
  content: '';
  position: absolute;
  top: -150%;
  left: -30%;
  width: 70%;
  height: 280%;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.07) 50%, transparent 100%);
  transform: rotate(12deg);
  transition: top 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: rgba(255, 107, 53, 0.45);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(232,94,47,0.18);
}

.card:hover::before {
  opacity: 1;
}

.card:hover::after {
  top: -20%;
}

.card:hover .price {
  transform: translateZ(12px);
  text-shadow: 0 10px 28px rgba(232, 94, 47, 0.25);
}

.card.feature {
  border-color: rgba(232, 94, 47, 0.5);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  background: linear-gradient(160deg, rgba(232,94,47,0.05), rgba(255,255,255,0.01));
}

.card.feature:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.55), 0 0 36px rgba(232, 94, 47, 0.2);
}

.ribbon {
  position: absolute;
  top: 20px;
  right: -36px;
  transform: rotate(45deg);
  background: var(--mandarine);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 6px 48px;
  font-family: var(--font-heading);
}

.tier {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mandarine);
  margin-bottom: 12px;
}

.price {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.price small {
  font-size: 16px;
  color: var(--muted);
  font-weight: 500;
  display: inline-block;
  padding-left: 8px;
}
.price-sub { color: var(--muted); font-size: 15px; margin: 12px 0 32px; }

ul.feat { list-style: none; margin: 0 0 32px; flex: 1; }
ul.feat li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 8px 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}

ul.feat li svg { flex-shrink: 0; margin-top: 4px; }
.card .btn { width: 100%; }

.scar { margin-top: 20px; font-size: 13px; color: var(--muted); text-align: center; }
.scar b { color: var(--mandarine); font-weight: 700; }

.card:hover .scar b {
  color: #d97b58;
}

.bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  overflow: hidden;
  margin: 12px 0;
}

.bar i { display: block; height: 100%; width: 100%; background: var(--mandarine); border-radius: 99px; }

.waitlist {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 16px;
  max-width: 640px;
  margin: 48px auto 0;
  padding: 36px 32px;
  text-align: center;
}

.waitlist h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.waitlist p { color: var(--muted); font-size: 15px; margin-bottom: 24px; }

.form-row { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; }

.form-row input {
  flex: 1;
  min-width: 220px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 18px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-row input:focus { outline: none; border-color: var(--mandarine); }
.form-row .btn { padding: 14px 24px; border-radius: 10px; }
#wl-msg { font-size: 14px; color: var(--teal); margin-top: 16px; min-height: 20px; }

.faq { max-width: 760px; margin: 0 auto; }

.qa { border-bottom: 1px solid var(--line); padding: 24px 0; }
.qa:last-child { border-bottom: none; }

.qa h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
}

.qa h4 span { color: var(--mandarine); font-weight: 800; }
.qa p { color: var(--muted); font-size: 16px; padding-left: 28px; line-height: 1.6; }

footer { border-top: 1px solid var(--line); padding: 48px 0; text-align: center; }
footer img { height: 24px; opacity: 0.9; margin-bottom: 20px; }

footer .links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}

footer .links a:hover { color: #fff; }
footer .fine { font-size: 13px; color: rgba(255, 255, 255, 0.3); max-width: 640px; margin: 0 auto; }

@media(max-width: 820px) {
  .steps { grid-template-columns: 1fr; gap: 16px; }
  .tiers { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); padding: 24px 16px; }
  .stat:last-child { border-bottom: none; }
  .hero { padding: 56px 0 40px; }
  nav .nav-links { display: none; }
  nav .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .price { font-size: 48px; }
  nav {
    backdrop-filter: none;
    background: rgba(11, 14, 26, 0.96);
  }
  nav .wrap {
    height: 68px;
  }
  .brand-name {
    font-size: 13px;
    letter-spacing: 0.1em;
  }
  .menu-backdrop {
    background: rgba(3, 6, 14, 0.7);
    z-index: 85;
  }
}

@media(min-width: 821px) {
  .mobile-menu,
  .menu-backdrop {
    display: none !important;
  }
}
