:root {
  --bg: #0a0a0c;
  --bg-soft: #121317;
  --surface: rgba(14, 15, 19, 0.82);
  --surface-strong: #171a22;
  --border: rgba(255, 196, 0, 0.16);
  --text: #f4f7fb;
  --muted: #b8bfcc;
  --brand: #ffc400;
  --brand-deep: #ff5b2e;
  --accent: #0f62d8;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  --radius: 24px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(255, 91, 46, 0.18), transparent 28%),
    radial-gradient(circle at top left, rgba(15, 98, 216, 0.16), transparent 24%),
    radial-gradient(circle at 50% 0%, rgba(255, 196, 0, 0.12), transparent 26%),
    linear-gradient(180deg, #08090c 0%, #0b0c11 48%, #10131a 100%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.shell {
  width: min(var(--shell), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(10, 10, 12, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.26));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-copy strong,
.section-head h2,
.hero h1,
.video-copy h2,
.result-copy h2,
.lead-copy h2,
.pricing-copy h2 {
  font-family: "Sora", sans-serif;
}

.brand-copy small {
  color: var(--muted);
}

.top-nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.96rem;
}

.top-nav a:hover,
.site-footer a:hover {
  color: #fff;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta {
  padding: 13px 18px;
  color: #111215;
  background: linear-gradient(135deg, #ffd54a 0%, #ff9a2f 100%);
  box-shadow: 0 16px 30px rgba(255, 145, 0, 0.24);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-1px);
}

.hero {
  padding: 78px 0 54px;
}

.hero-grid,
.video-grid,
.result-grid,
.lead-grid,
.pricing-box,
.footer-grid {
  display: grid;
  gap: 34px;
}

.hero-grid {
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffd24d;
  background: rgba(255, 196, 0, 0.1);
  border: 1px solid rgba(255, 196, 0, 0.2);
}

.hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.7rem, 6vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-lead,
.section-head p,
.video-copy p,
.result-copy p,
.lead-copy p,
.pricing-copy p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.07rem;
}

.hero-points {
  display: grid;
  gap: 16px;
  margin: 28px 0;
}

.hero-points div,
.contact-points div,
.mini-list div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-points strong,
.contact-points strong,
.mini-list strong {
  display: block;
  margin-bottom: 6px;
}

.hero-points span {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-highlights span {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #dce8f7;
  font-size: 0.9rem;
  font-weight: 600;
}

.btn {
  min-height: 54px;
  padding: 0 24px;
}

.btn-primary {
  color: #111215;
  background: linear-gradient(135deg, #ffd54a 0%, #ff8d24 100%);
  box-shadow: 0 22px 40px rgba(255, 141, 36, 0.24);
}

.btn-secondary {
  color: #f3f7fc;
  background: rgba(15, 98, 216, 0.12);
  border: 1px solid rgba(15, 98, 216, 0.28);
}

.btn-full {
  width: 100%;
}

.hero-note {
  margin-top: 18px;
  color: #88a5c8;
  font-size: 0.92rem;
}

.promo-banner,
.pricing-callout {
  margin-top: 22px;
  padding: 20px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 196, 0, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.12), rgba(255, 91, 46, 0.08)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 196, 0, 0.16);
  color: #ffd24d;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.promo-pricing,
.pricing-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 14px;
  margin: 14px 0 10px;
}

.promo-from,
.pricing-old {
  color: #94a8c7;
  font-size: 1rem;
  text-decoration: line-through;
}

.promo-pricing strong,
.pricing-price-row strong {
  color: #ffd24d;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
}

.promo-banner p,
.pricing-callout p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.promo-inline-note,
.pricing-inline-note {
  margin-top: 12px !important;
  color: #ffd24d !important;
  font-size: 0.95rem;
}

.promo-inline-note strong,
.pricing-inline-note strong {
  color: #fff;
}

.hero-card,
.video-frame,
.result-card,
.lead-form,
.pricing-box,
.info-card,
.faq-list details,
.metric-card,
.audience-panel,
.audience-list article {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  overflow: hidden;
}

.hero-overlay-card {
  position: absolute;
  right: 18px;
  padding: 14px 16px;
  max-width: 220px;
  border-radius: 18px;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.hero-overlay-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.96rem;
}

.hero-overlay-card span {
  display: block;
  color: #dce8f7;
  font-size: 0.82rem;
  line-height: 1.45;
}

.overlay-card-primary {
  top: 24px;
  background: rgba(11, 31, 55, 0.78);
}

.overlay-card-secondary {
  bottom: 24px;
  background: rgba(15, 98, 216, 0.24);
}

.proof-strip {
  padding: 8px 0 16px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.proof-grid article {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.proof-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 12px;
  color: #111215;
  font-weight: 800;
  background: linear-gradient(135deg, #ffd54a 0%, #ff8d24 100%);
}

.proof-grid p,
.info-card p,
.bullet-list li,
.faq-list p,
.site-footer p,
.site-footer a,
.lead-form small,
.form-feedback {
  color: var(--muted);
}

.section {
  padding: 88px 0;
}

.metrics-band {
  padding: 10px 0 24px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.metric-card {
  padding: 22px 20px;
}

.metric-card small {
  display: block;
  margin-bottom: 10px;
  color: #89a7cb;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 800;
}

.metric-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.metric-card span {
  display: block;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.94rem;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
}

.section-contrast {
  background: linear-gradient(180deg, rgba(2, 8, 18, 0.55), rgba(15, 29, 52, 0.42));
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head h2 {
  margin: 18px 0 12px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.06;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.info-card {
  padding: 24px;
}

.info-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.video-grid,
.result-grid,
.lead-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.audience-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: start;
}

.audience-panel,
.audience-list article {
  padding: 24px;
}

.audience-panel h2 {
  margin: 18px 0 12px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.06;
}

.audience-panel p,
.audience-list p {
  color: var(--muted);
  line-height: 1.72;
}

.audience-list {
  display: grid;
  gap: 16px;
}

.audience-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.bullet-list {
  margin: 24px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.video-frame {
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-points,
.mini-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.lead-form {
  padding: 28px;
  display: grid;
  gap: 18px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.lead-form span {
  font-size: 0.94rem;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #f6fbff;
  font: inherit;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #7d97ba;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: rgba(255, 196, 0, 0.58);
  box-shadow: 0 0 0 4px rgba(255, 196, 0, 0.08);
}

.form-feedback {
  min-height: 24px;
  margin: -4px 0 0;
  font-size: 0.94rem;
}

.form-feedback.success {
  color: #ffd24d;
}

.form-feedback.error {
  color: #ff9b9b;
}

.pricing-box {
  grid-template-columns: 1.2fr 0.8fr;
  padding: 30px;
  align-items: center;
}

.pricing-actions {
  display: grid;
  gap: 14px;
}

.faq-shell {
  max-width: 860px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 0 22px;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 0 0 18px;
  line-height: 1.7;
}

.site-footer {
  padding: 28px 0 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  grid-template-columns: 1.1fr 0.7fr 0.8fr;
  align-items: start;
}

.footer-grid > div {
  display: grid;
  gap: 10px;
}

@media (max-width: 980px) {
  .top-nav {
    display: none;
  }

  .hero-grid,
  .video-grid,
  .result-grid,
  .lead-grid,
  .pricing-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .cards-grid,
  .metrics-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .hero-overlay-card {
    position: static;
    max-width: none;
    margin: 16px;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(var(--shell), calc(100% - 24px));
  }

  .header-row {
    min-height: 74px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 46px;
  }

  .section {
    padding: 64px 0;
  }

  .lead-form,
  .pricing-box,
  .info-card {
    padding: 22px;
  }
}
