:root {
  --bg: #130903;
  --bg-soft: #1f1008;
  --surface: rgba(36, 19, 9, 0.84);
  --surface-soft: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 216, 184, 0.14);
  --line-strong: rgba(255, 186, 125, 0.3);
  --text: #fff7ec;
  --muted: #e2ccb5;
  --muted-strong: #f3e0cc;
  --accent: #f97316;
  --accent-bright: #ffab4d;
  --accent-deep: #ba4c06;
  --sand: #fff0de;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 171, 77, 0.14), transparent 24%),
    radial-gradient(circle at 92% 14%, rgba(249, 115, 22, 0.16), transparent 20%),
    radial-gradient(circle at 50% 100%, rgba(121, 48, 10, 0.18), transparent 30%),
    linear-gradient(180deg, #1f1008 0%, #140802 48%, #080301 100%);
}

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

p,
h1,
h2,
h3 {
  margin: 0;
}

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

main section[id] {
  scroll-margin-top: 7rem;
}

.page-glow {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.34;
}

.page-glow-one {
  top: -7rem;
  left: -5rem;
  width: 24rem;
  height: 24rem;
  background: rgba(249, 115, 22, 0.2);
}

.page-glow-two {
  top: 14rem;
  right: -6rem;
  width: 22rem;
  height: 22rem;
  background: rgba(255, 171, 77, 0.12);
}

.site-shell {
  position: relative;
  z-index: 1;
  width: min(100%, calc(var(--content-width) + 3rem));
  margin: 0 auto;
  padding: 1rem 1.5rem 3rem;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(19, 9, 3, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo,
.footer-logo {
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.28));
}

.brand-logo {
  width: clamp(8.5rem, 15vw, 11.5rem);
  height: auto;
}

.footer-logo {
  width: clamp(13rem, 24vw, 18rem);
  height: auto;
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow,
.offer-tag,
.signal-number,
.step-card span,
.quote-mark {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  color: #1b1209;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 18px 40px rgba(249, 115, 22, 0.28);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 44px rgba(249, 115, 22, 0.34);
}

.button-small {
  min-height: 2.7rem;
  padding-inline: 1.15rem;
}

.button-ghost {
  border-color: rgba(255, 224, 197, 0.22);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  box-shadow: none;
}

.hero,
.section-grid,
.solution-grid,
.results-grid,
.quote-grid,
.testimonial-grid,
.contact-grid,
.signal-band {
  display: grid;
  gap: 1.25rem;
}

.hero {
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  align-items: stretch;
  padding: 3.4rem 0 1rem;
}

.hero-copy,
.hero-photo-card,
.signal-band,
.problem-list article,
.step-card,
.offer-card,
.quote-card,
.testimonial-card,
.faq-list details,
.cta-panel,
.contact-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-photo-card,
.signal-band,
.testimonials,
.cta-panel {
  border-radius: var(--radius-xl);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  padding: 2.2rem 2rem 2.35rem;
}

.hero-copy::before {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -4rem;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 216, 184, 0.08);
}

.eyebrow {
  color: var(--accent-bright);
  font-size: 0.96rem;
}

.hero h1,
.section-copy h2,
.section-heading h2,
.cta-panel h2 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  line-height: 0.94;
}

.hero h1 {
  margin-top: 1rem;
  font-size: clamp(3.15rem, 7vw, 6.1rem);
}

.hero .lede,
.hero-support,
.section-copy p,
.section-heading p,
.signal-copy,
.problem-list p,
.step-card p,
.offer-card p,
.quote-text,
.quote-meta,
.testimonial-copy p,
.faq-list p,
.cta-panel p,
.contact-card p,
.footer-note,
.footer-brand p {
  color: var(--muted);
  line-height: 1.7;
}

.hero .lede {
  margin-top: 1.25rem;
  max-width: 42rem;
  font-size: 1.12rem;
}

.hero-support {
  margin-top: 1rem;
  max-width: 38rem;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 0;
  margin: 1.7rem 0 0;
  list-style: none;
}

.trust-strip li,
.contact-chip,
.footer-links a {
  border-radius: 999px;
  font-weight: 700;
}

.trust-strip li {
  padding: 0.66rem 0.9rem;
  border: 1px solid rgba(255, 221, 191, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--sand);
  font-size: 0.93rem;
}

.contact-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.contact-chip {
  padding: 0.76rem 1rem;
  border: 1px solid rgba(255, 177, 108, 0.22);
  background: rgba(255, 156, 58, 0.08);
  color: var(--sand);
}

.hero-media {
  display: flex;
}

.hero-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(18, 9, 4, 0.8);
}

.hero-photo {
  width: 100%;
  height: 100%;
  min-height: 28rem;
  border-radius: calc(var(--radius-xl) - 10px);
  object-fit: cover;
}

.hero-photo-badge {
  position: absolute;
  left: 1.55rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(255, 221, 191, 0.18);
  border-radius: 999px;
  background: rgba(19, 9, 3, 0.78);
  backdrop-filter: blur(10px);
  color: var(--sand);
  font-size: 0.9rem;
  font-weight: 800;
}

.badge-top {
  top: 1.55rem;
}

.badge-bottom {
  bottom: 1.55rem;
}

.signal-band {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 1rem;
  margin-top: 1.8rem;
}

.signal-card {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
}

.signal-number {
  color: var(--accent-bright);
  font-size: 2.1rem;
  line-height: 1;
}

.signal-copy {
  margin-top: 0.55rem;
  font-size: 0.98rem;
}

.section-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
  padding-top: 4.5rem;
}

.section-copy,
.section-heading {
  padding-right: 0.5rem;
}

.section-copy h2,
.section-heading h2,
.cta-panel h2 {
  margin-top: 0.8rem;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
}

.section-copy p,
.section-heading p,
.cta-panel p {
  margin-top: 1rem;
  font-size: 1.02rem;
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.problem-list article,
.step-card,
.offer-card,
.quote-card,
.testimonial-card,
.faq-list details,
.contact-card {
  padding: 1.3rem;
  border-radius: var(--radius-lg);
}

.problem-list h3,
.step-card h3,
.offer-card h3,
.testimonial-copy h3,
.contact-card h3,
.faq-list summary {
  margin-top: 0.45rem;
  font-size: 1.08rem;
}

.problem-list p,
.step-card p,
.offer-card p,
.contact-card p,
.faq-list p,
.testimonial-copy p {
  margin-top: 0.45rem;
  font-size: 0.98rem;
}

.solution-section,
.results-section,
.contact-section {
  padding-top: 4.5rem;
}

.solution-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.45rem;
}

.step-card span,
.offer-tag {
  color: var(--accent-bright);
  font-size: 0.88rem;
}

.step-card span {
  display: inline-block;
}

.feature-photo {
  width: 100%;
  min-height: 28rem;
  border-radius: var(--radius-xl);
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.results-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  margin-top: 1.5rem;
}

.result-showcase {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.result-showcase-wide {
  grid-column: span 2;
}

.result-showcase img {
  width: 100%;
  height: clamp(15rem, 30vw, 22rem);
  object-fit: cover;
  background: rgba(255, 255, 255, 0.02);
}

.result-showcase-wide img {
  object-fit: contain;
  padding: 1rem;
}

.result-copy {
  padding: 1.1rem 1.2rem 1.2rem;
}

.result-copy h3 {
  margin-top: 0.45rem;
  font-size: 1.1rem;
}

.result-copy p:last-child {
  margin-top: 0.45rem;
  color: var(--muted);
  line-height: 1.6;
}

.offer-stack {
  display: grid;
  gap: 1rem;
}

.offer-card-featured {
  border-color: rgba(255, 156, 58, 0.34);
  background:
    linear-gradient(180deg, rgba(249, 115, 22, 0.15), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
}

.testimonials {
  margin-top: 4.5rem;
  padding: 1.6rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.quote-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.35rem;
}

.quote-card {
  position: relative;
}

.quote-mark {
  color: rgba(255, 171, 77, 0.52);
  font-size: 3rem;
  line-height: 0.9;
}

.quote-text {
  margin-top: 0.45rem;
  font-size: 1rem;
}

.quote-meta {
  margin-top: 1rem;
  color: var(--muted-strong);
  font-size: 0.92rem;
  font-weight: 700;
}

.testimonial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.35rem;
}

.testimonial-card {
  display: grid;
  gap: 0.85rem;
}

.testimonial-video {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  background: #000;
  object-fit: cover;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
}

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

.faq-list details[open] {
  border-color: var(--line-strong);
}

.faq-list p {
  margin-top: 0.8rem;
}

.cta-panel {
  margin-top: 4.5rem;
  padding: 1.6rem;
}

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.45rem;
}

.contact-card {
  display: grid;
  align-content: start;
  min-height: 100%;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 177, 108, 0.26);
}

.contact-card h3 {
  overflow-wrap: anywhere;
}

.footer {
  display: grid;
  gap: 1rem;
  margin-top: 4rem;
  padding: 2rem 0 1rem;
  color: var(--muted);
}

.footer-brand {
  display: grid;
  gap: 0.95rem;
  justify-items: start;
}

.footer-brand p {
  max-width: 30rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-links a {
  padding: 0.72rem 1rem;
  border: 1px solid rgba(255, 221, 191, 0.16);
  color: var(--sand);
}

.footer-note {
  max-width: 58rem;
  font-size: 0.92rem;
}

.footer-credit {
  color: var(--muted-strong);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-bounce-logo {
  transform-origin: center bottom;
  will-change: transform;
}

.js-bounce-logo.is-bouncing {
  animation: ball-drop 2.1s cubic-bezier(0.25, 0.85, 0.35, 1) 1 forwards;
}

@keyframes ball-drop {
  0% {
    transform: translateY(-44px) scaleX(0.98) scaleY(1.02);
  }
  16% {
    transform: translateY(0) scaleX(1.07) scaleY(0.91);
  }
  30% {
    transform: translateY(-24px) scaleX(0.99) scaleY(1.01);
  }
  48% {
    transform: translateY(0) scaleX(1.04) scaleY(0.95);
  }
  64% {
    transform: translateY(-12px) scaleX(1) scaleY(1);
  }
  80% {
    transform: translateY(0) scaleX(1.02) scaleY(0.97);
  }
  92% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .hero,
  .section-grid,
  .solution-grid,
  .quote-grid,
  .testimonial-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .signal-band {
    grid-template-columns: 1fr;
  }

  .problem-list,
  .results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .result-showcase-wide {
    grid-column: span 2;
  }

  .nav {
    display: none;
  }

  .hero-photo {
    min-height: 24rem;
  }
}

@media (max-width: 720px) {
  .site-shell {
    padding-inline: 1rem;
  }

  .topbar {
    padding: 0.85rem 0.95rem;
    border-radius: 24px;
  }

  .brand-logo,
  .footer-logo {
    height: auto;
  }

  .brand-logo {
    width: min(9.5rem, 42vw);
  }

  .footer-logo {
    width: min(14rem, 74vw);
  }

  .hero {
    padding-top: 2.2rem;
  }

  .hero-copy,
  .hero-photo-card,
  .signal-band,
  .testimonials,
  .cta-panel {
    padding: 1.2rem;
  }

  .problem-list article,
  .step-card,
  .offer-card,
  .quote-card,
  .testimonial-card,
  .faq-list details,
  .contact-card {
    padding: 1rem;
  }

  .hero h1,
  .section-copy h2,
  .section-heading h2,
  .cta-panel h2 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .hero-actions,
  .contact-chip-row,
  .footer-links {
    gap: 0.75rem;
  }

  .button,
  .button-ghost,
  .contact-chip,
  .footer-links a {
    width: 100%;
  }

  .trust-strip li {
    width: 100%;
    text-align: center;
  }

  .problem-list,
  .results-grid {
    grid-template-columns: 1fr;
  }

  .result-showcase-wide {
    grid-column: auto;
  }

  .hero-photo {
    min-height: 21rem;
  }

  .hero-photo-badge {
    position: static;
    margin-top: 0.75rem;
    width: fit-content;
  }

  .footer-brand {
    justify-items: start;
  }
}
