* {
  box-sizing: border-box;
}

:root {
  --bg: #080808;
  --bg-soft: #111111;
  --bg-card: rgba(255,255,255,0.04);
  --line: rgba(255,255,255,0.08);
  --text: #f7f7f7;
  --muted: #bdbdbd;
  --orange: #ff7a00;
  --orange-2: #ff9d42;
  --orange-glow: rgba(255,122,0,0.35);
  --shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 18px 60px rgba(0,0,0,0.45), 0 0 40px rgba(255,122,0,0.12);
  --radius: 24px;
  --max: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top right, rgba(255,122,0,0.14), transparent 22%),
    radial-gradient(circle at left center, rgba(255,122,0,0.08), transparent 20%),
    linear-gradient(180deg, #050505 0%, #0a0a0a 55%, #070707 100%);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 22px 0;
}

.section-dark {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--orange-2);
  margin-bottom: 14px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.05;
}

.section-heading p,
p {
  color: var(--muted);
  line-height: 1.7;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10,10,10,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.brand img,
.footer-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

nav a {
  color: #f3f3f3;
  font-size: 14px;
}

.nav-cta,
.btn {
  border-radius: 999px;
  transition: 0.25s ease;
}

.nav-cta {
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #0b0b0b;
  font-weight: 800;
  box-shadow: 0 8px 30px rgba(255,122,0,0.28);
}

.menu-btn,
.mobile-menu {
  display: none;
}

.hero {
  padding-top: 90px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,122,0,0.16), transparent 22%),
    radial-gradient(circle at 85% 15%, rgba(255,122,0,0.12), transparent 25%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(46px, 8vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero-copy h1 span {
  color: var(--orange-2);
  text-shadow: 0 0 26px rgba(255,122,0,0.28);
}

.hero-copy p {
  max-width: 660px;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  font-weight: 800;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #111;
  box-shadow: 0 10px 34px rgba(255,122,0,0.28), inset 0 1px 0 rgba(255,255,255,0.35);
}

.btn-primary:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(255,122,0,0.34);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.13);
  background: rgba(255,255,255,0.03);
  color: #fff;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.06);
}

.hero-points {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-points div,
.plan-tag,
.floating-badge,
.featured-badge {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: #fff;
  font-size: 13px;
}

.glass-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card {
  position: relative;
}

.stat-card {
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.stat-card::before,
.price-card.featured::before {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255,122,0,0.32), transparent 60%);
  filter: blur(20px);
}

.stat-head {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--orange-2);
  margin-bottom: 24px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}

.stat-grid strong {
  display: block;
  font-size: 34px;
  margin-bottom: 6px;
}

.stat-grid span {
  color: var(--muted);
  font-size: 14px;
}

.floating-badge {
  margin-top: 14px;
  display: inline-flex;
  color: var(--orange-2);
}

.trust-strip {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trust-grid div {
  padding: 14px 18px;
  border-right: 1px solid rgba(255,255,255,0.05);
  color: #ececec;
  font-size: 14px;
}

.trust-grid div:last-child {
  border-right: 0;
}

.bot-grid,
.pricing-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 24px;
}

.bot-card,
.price-card,
.testimonial {
  padding: 28px;
}

.bot-card h3,
.result-copy h3,
.price-card h3,
.equity-copy h3 {
  margin: 8px 0 12px;
  font-size: 28px;
}

.icon-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 0 18px rgba(255,122,0,0.5);
}

.bot-card ul,
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.bot-card li,
.price-card li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  color: #e4e4e4;
}

.bot-card li::before,
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange-2);
  box-shadow: 0 0 14px rgba(255,122,0,0.4);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
  margin-bottom: 26px;
}

.result-card {
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.result-card:hover,
.equity-wrap:hover {
  transform: translateY(-6px);
  border-color: rgba(255,122,0,0.22);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 34px rgba(255,122,0,0.14);
}

.result-image-wrap {
  padding: 18px 18px 0;
}

.result-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: contain;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #ffffff;
}

.result-copy {
  padding: 20px 22px 24px;
}

.view-more {
  display: inline-block;
  margin-top: 10px;
  color: #ff9d42;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.equity-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 20px;
  align-items: center;
  padding: 24px;
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.equity-image {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  max-height: 320px;
  width: 100%;
  object-fit: contain;
  background: #ffffff;
}

.price-card h3 {
  font-size: 48px;
  margin-top: 14px;
}

.price-card h3 span {
  font-size: 16px;
  color: var(--muted);
  font-weight: 600;
  margin-left: 4px;
}

.strike {
  margin-top: -4px;
  margin-bottom: 22px;
}

.featured {
  position: relative;
  transform: translateY(-6px);
  border-color: rgba(255,122,0,0.28);
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  color: #111;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  font-weight: 800;
}

.full {
  width: 100%;
  margin-top: 14px;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0,1fr));
}

.testimonial p {
  color: #f3f3f3;
  font-size: 18px;
}

.testimonial span {
  color: var(--orange-2);
  font-size: 14px;
}

.faq-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 0 22px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 6px 22px 0;
  font-weight: 700;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  color: var(--orange-2);
  font-size: 24px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 22px;
}

.site-footer {
  padding: 42px 0 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: #050505;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.5fr 1.2fr;
  gap: 24px;
}

.footer-tag,
.disclaimer,
.footer-bottom {
  color: var(--muted);
}

.footer-grid h4 {
  margin: 0 0 14px;
}

.footer-grid a {
  display: block;
  margin-bottom: 10px;
  color: #efefef;
}

.footer-bottom {
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.loader-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(255,122,0,0.08), transparent 24%),
    linear-gradient(180deg, #060606 0%, #0a0a0a 100%);
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.loader-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-box {
  width: min(92vw, 480px);
  padding: 24px;
  display: grid;
  justify-items: center;
  gap: 26px;
}

.ring-shell {
  position: relative;
  width: 350px;
  height: 350px;
  display: grid;
  place-items: center;
}

.ring {
  position: absolute;
  border-radius: 50%;
}

.outer-ring {
  inset: 0;
  border: 2px dashed rgba(255,122,0,0.75);
  box-shadow: 0 0 26px rgba(255,122,0,0.22);
  animation: spin 3s linear infinite;
}

.inner-ring {
  inset: 28px;
  border: 2px dotted rgba(255,177,112,0.7);
  box-shadow: inset 0 0 14px rgba(255,122,0,0.16), 0 0 20px rgba(255,122,0,0.14);
  animation: spin-reverse 5s linear infinite;
}

.logo-wrap {
  width: 240px;
  height: 240px;
  display: grid;
  place-items: center;
}

.loader-logo {
  width: 78%;
  height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(255,122,0,0.25));
  animation: pulse 2s ease-in-out infinite;
}

.progress-wrap {
  width: 100%;
}

.progress-bar {
  width: 100%;
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}

.progress-bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), #ffb06b, var(--orange));
  box-shadow: 0 0 24px rgba(255,122,0,0.38);
}

.loader-text {
  text-align: center;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  margin-top: 14px;
  color: #eeeeee;
  animation: blink 1.2s ease-in-out infinite;
}

.result-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.result-modal.open {
  opacity: 1;
  visibility: visible;
}

.result-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(8px);
}

.result-modal-content {
  position: relative;
  width: min(1100px, calc(100% - 30px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, #111111, #0b0b0b);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 40px rgba(255,122,0,0.16);
  padding: 22px;
  z-index: 2;
}

.result-modal-image-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: #fff;
}

.result-modal-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.result-modal-copy {
  padding-top: 18px;
}

.result-modal-copy h3 {
  margin: 0 0 10px;
  font-size: 32px;
}

.result-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  z-index: 3;
}

.result-modal-close:hover {
  background: rgba(255,122,0,0.16);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.22s; }

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spin-reverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

@media (max-width: 1100px) {
  .hero-grid,
  .equity-wrap,
  .faq-wrap,
  .footer-grid,
  .results-grid,
  .testimonial-grid,
  .pricing-grid,
  .bot-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .trust-grid div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 860px) {
  nav {
    display: none;
  }

  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
  }

  .mobile-menu {
    display: none;
    padding: 0 16px 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(10,10,10,0.96);
  }

  .mobile-menu.open {
    display: grid;
    gap: 10px;
  }

  .mobile-menu a {
    padding: 12px 0;
    color: #f4f4f4;
  }

  .mobile-cta {
    margin-top: 6px;
    text-align: center;
  }

  .hero-copy h1 {
    font-size: clamp(40px, 12vw, 62px);
  }

  .ring-shell {
    width: 280px;
    height: 280px;
  }

  .logo-wrap {
    width: 190px;
    height: 190px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 78px 0;
  }

  .container {
    width: min(calc(100% - 22px), var(--max));
  }

  .hero-actions,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .nav-cta {
    width: 100%;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .price-card h3 {
    font-size: 38px;
  }

  .result-modal-content {
    padding: 16px;
  }

  .result-modal-copy h3 {
    font-size: 24px;
  }
}