:root {
  --green: #04d924;
  --green-dark: #03951d;
  --ink: #07090b;
  --ink-soft: #141816;
  --muted: #5e6562;
  --line: #e5ebe7;
  --surface: #ffffff;
  --surface-soft: #f6f8f6;
  --shadow: 0 24px 70px rgba(7, 9, 11, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 0%, rgba(4, 217, 36, 0.08), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f8faf8 42%, #ffffff 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(var(--max), calc(100% - 40px));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(229, 235, 231, 0.88);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 34px rgba(7, 9, 11, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 174px;
  height: 38px;
  padding-left: 6px;
}

.brand-logo {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.brand-logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.brand-logo-base {
  filter: brightness(0);
}

.brand-logo-green {
  clip-path: inset(0 83.2% 0 0);
  filter: brightness(0) saturate(100%) invert(49%) sepia(96%) saturate(2194%) hue-rotate(95deg) brightness(101%)
    contrast(103%);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.main-nav a,
.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
}

.main-nav a {
  color: #323735;
}

.main-nav a:hover {
  background: var(--surface-soft);
}

.nav-cta {
  color: white;
  background: var(--ink);
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 106px) 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  align-items: center;
  gap: clamp(34px, 5vw, 74px);
  min-height: calc(100vh - 70px);
  padding-top: clamp(52px, 7vw, 88px);
}

.hero > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  letter-spacing: 0;
  line-height: 0.96;
}

.title-lines span {
  display: block;
}

h1 {
  margin-bottom: 24px;
  max-width: 760px;
  font-size: clamp(2.7rem, 4.35vw, 4.7rem);
  font-weight: 1000;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.7vw, 4.15rem);
  font-weight: 1000;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.05;
  font-weight: 950;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.hero-lead {
  max-width: 580px;
  margin-bottom: 28px;
  color: #242927;
  font-size: clamp(1.08rem, 1.4vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: var(--radius);
  font-weight: 950;
  line-height: 1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--green), #42d93b);
  box-shadow: 0 18px 34px rgba(4, 217, 36, 0.25);
}

.button-secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: white;
}

.button-dark {
  color: white;
  background: var(--ink);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: #424a46;
  font-size: 0.85rem;
  font-weight: 800;
}

.hero-proof strong {
  color: var(--ink);
}

.hero-visual {
  display: grid;
  gap: 16px;
  align-content: center;
  min-height: 560px;
}

.visual-card {
  overflow: hidden;
  border: 1px solid rgba(7, 9, 11, 0.1);
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.visual-main {
  width: min(500px, 88%);
  aspect-ratio: 3 / 3.58;
  margin-left: auto;
}

.floating-note {
  width: min(100%, 500px);
  margin-left: auto;
  padding: 20px 22px;
  border-radius: 18px;
  color: white;
  background: var(--ink);
  box-shadow: 0 18px 44px rgba(7, 9, 11, 0.2);
}

.floating-note span {
  display: block;
  margin-bottom: 6px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.floating-note strong {
  display: block;
  font-size: clamp(1.35rem, 2.2vw, 2.3rem);
  line-height: 1.05;
}

.marquee-band {
  overflow: hidden;
  padding: 18px max(20px, calc((100vw - var(--max)) / 2));
  color: white;
  background: var(--ink);
  scrollbar-width: none;
}

.marquee-band::-webkit-scrollbar {
  display: none;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 10px;
  animation: marquee-scroll 24s linear infinite;
}

.marquee-track span {
  flex: 0 0 auto;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 950;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 5px));
  }
}

.split-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
}

.diagnostic-copy h2,
.proof-copy h2 {
  font-size: clamp(2.05rem, 3.35vw, 3.75rem);
}

.diagnostic-copy p:not(.eyebrow),
.proof-copy p:not(.eyebrow) {
  max-width: 560px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pain-grid article,
.audience-grid article,
.offer-card,
.stats-grid article,
.resource-pair article,
.episode-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 14px 46px rgba(7, 9, 11, 0.06);
}

.pain-grid article {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.pain-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 34px;
  border-radius: 999px;
  color: white;
  background: var(--green);
  font-weight: 950;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 920px;
}

.audience {
  padding-top: 36px;
}

.audience-grid,
.offer-grid,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.audience-grid article {
  min-height: 260px;
  padding: 28px;
}

.audience-tag,
.offer-kicker {
  margin-bottom: 24px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.method-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
}

.split-section > *,
  .method-section > *,
  .proof-section > *,
  .podcast-panel > *,
  .bio-section > * {
  min-width: 0;
}

.method-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 24px;
}

.method-steps {
  display: grid;
  gap: 14px;
}

.method-steps article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: white;
  background: linear-gradient(135deg, #0c1110, #102710);
  box-shadow: 0 18px 46px rgba(7, 9, 11, 0.14);
}

.method-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--green);
  font-size: 1.4rem;
  font-weight: 1000;
}

.method-steps h3,
.method-steps p {
  color: white;
}

.method-steps p {
  margin-bottom: 0;
  opacity: 0.78;
}

.offer-card {
  min-height: 380px;
  padding: 28px;
}

.offer-card.is-featured {
  color: white;
  background: var(--ink);
  transform: translateY(-18px);
}

.offer-card.is-featured p,
.offer-card.is-featured li {
  color: rgba(255, 255, 255, 0.78);
}

.offer-card ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.offer-card li {
  display: flex;
  gap: 10px;
  color: #3e4542;
  font-weight: 800;
}

.offer-card li::before {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--green);
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: center;
}

.stats-grid {
  grid-column: 2;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stats-grid article {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 28px;
  text-align: center;
}

.stats-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  line-height: 0.9;
  font-weight: 1000;
}

.stats-grid span {
  color: var(--muted);
  font-weight: 800;
}

.companies-proof {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 64%) minmax(360px, 1fr);
  gap: clamp(18px, 2.3vw, 34px);
  align-items: start;
}

.companies-showcase {
  overflow: hidden;
  aspect-ratio: 1255 / 700;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
}

.companies-showcase img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.company-cases {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-self: stretch;
}

.company-cases article {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(14px, 1.3vw, 20px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: 0 14px 46px rgba(7, 9, 11, 0.06);
}

.company-cases article.wide {
  grid-column: 1 / -1;
}

.company-cases span {
  margin-bottom: 6px;
  color: var(--green-dark);
  font-size: clamp(0.7rem, 0.82vw, 0.78rem);
  font-weight: 1000;
  text-transform: uppercase;
}

.company-cases strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(1.55rem, 2.05vw, 2.45rem);
  line-height: 0.95;
  font-weight: 1000;
}

.company-cases p {
  margin-bottom: 0;
  color: #4b514e;
  font-size: clamp(0.76rem, 0.86vw, 0.86rem);
  font-weight: 850;
  line-height: 1.22;
}

.trustpilot-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.72fr 1fr auto;
  gap: 18px;
  align-items: center;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
}

.trustpilot-score strong {
  display: block;
  margin: 6px 0;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.9;
  font-weight: 1000;
}

.trustpilot-label {
  color: var(--green-dark);
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
}

.stars {
  color: var(--green);
  font-size: 1.45rem;
  letter-spacing: 0;
}

.trustpilot-score p {
  margin-bottom: 0;
  font-weight: 850;
}

.trustpilot-bars {
  display: grid;
  gap: 12px;
}

.trustpilot-bars span {
  display: grid;
  grid-template-columns: 86px 1fr 42px;
  gap: 12px;
  align-items: center;
  color: #303633;
  font-size: 0.9rem;
  font-weight: 850;
}

.trustpilot-bars i {
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: #e9eee9;
}

.trustpilot-bars em {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
}

.trustpilot-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  color: white;
  background: var(--ink);
  font-weight: 950;
  white-space: nowrap;
}

.resources {
  padding-top: 42px;
}

.resource-layout {
  display: grid;
  gap: 18px;
}

.guide-feature {
  display: grid;
  grid-template-columns: minmax(240px, 0.58fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  min-height: 500px;
  padding: clamp(18px, 3vw, 36px);
  border-radius: 28px;
  color: white;
  background:
    linear-gradient(115deg, rgba(4, 217, 36, 0.16), transparent 44%),
    var(--ink);
  box-shadow: var(--shadow);
}

.guide-feature img,
.resource-pair img {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.guide-feature img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  object-position: top center;
}

.guide-feature h3 {
  max-width: 720px;
  font-size: clamp(2.25rem, 4vw, 4.8rem);
  line-height: 0.94;
}

.guide-feature p,
.guide-feature h3 {
  color: white;
}

.guide-feature p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.75);
}

.guide-copy .button {
  margin-top: 8px;
}

.resource-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.resource-pair article {
  display: grid;
  grid-template-columns: minmax(130px, 0.36fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 18px;
}

.resource-pair img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.resource-pair p {
  margin-bottom: 0;
}

.podcast-section {
  width: 100%;
  padding-right: max(20px, calc((100vw - var(--max)) / 2));
  padding-left: max(20px, calc((100vw - var(--max)) / 2));
  color: white;
  background:
    linear-gradient(110deg, rgba(4, 217, 36, 0.16), transparent 46%),
    var(--ink);
}

.podcast-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
}

.podcast-copy h2,
.podcast-copy p {
  color: white;
}

.podcast-copy h2 {
  max-width: 760px;
  font-size: clamp(2.2rem, 3.9vw, 4.35rem);
}

.podcast-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.podcast-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.podcast-tabs a {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  color: white;
  font-weight: 950;
}

.podcast-tabs a:first-child {
  color: var(--ink);
  background: var(--green);
}

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

.episode-list article {
  padding: 26px;
  color: white;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.episode-list span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.episode-list h3 {
  margin-bottom: 0;
  color: white;
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
}

.bio-section {
  display: grid;
  grid-template-columns: minmax(420px, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
}

.bio-media {
  overflow: hidden;
  border-radius: 28px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.bio-media video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--ink);
}

.bio-copy p:not(.eyebrow) {
  max-width: 720px;
}

.bio-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.bio-points span {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  color: #303633;
  background: white;
  font-weight: 900;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 40px;
  padding: clamp(32px, 5vw, 58px);
  border-radius: 28px;
  color: white;
  background:
    linear-gradient(135deg, rgba(4, 217, 36, 0.25), transparent 52%),
    var(--ink);
}

.final-cta h2,
.final-cta p {
  color: white;
}

.final-cta h2 {
  max-width: 920px;
  font-size: clamp(2.35rem, 4vw, 4.5rem);
  line-height: 0.98;
}

.final-cta h2 span {
  white-space: nowrap;
}

.final-line-one {
  font-size: 0.82em;
}

.final-line-two {
  font-size: 0.92em;
}

.final-line-three {
  font-size: 1.06em;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero,
  .split-section,
  .method-section,
  .proof-section,
  .resource-layout,
  .podcast-panel,
  .bio-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 560px;
  }

  .stats-grid {
    grid-column: auto;
  }

  .audience-grid,
  .offer-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .offer-card.is-featured {
    transform: none;
  }

  .guide-feature,
  .resource-pair,
  .companies-proof,
  .trustpilot-panel {
    grid-template-columns: 1fr;
  }

  .final-cta .button {
    justify-self: start;
  }
}

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

  .site-header {
    margin-top: 10px;
    padding: 10px;
  }

  .brand {
    width: 142px;
  }

  .nav-cta {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.76rem;
  }

  .section {
    padding: 52px 0;
  }

  .hero-copy,
  .section-heading,
  .method-copy,
  .proof-copy,
  .guide-copy,
  .podcast-copy,
  .bio-copy,
  .final-cta {
    text-align: center;
  }

  h1 {
    font-size: clamp(2.15rem, 9.4vw, 3.05rem);
  }

  h2 {
    font-size: clamp(1.85rem, 8.6vw, 2.8rem);
  }

  .diagnostic-copy h2,
  .proof-copy h2,
  .podcast-copy h2 {
    font-size: clamp(1.9rem, 8.6vw, 2.75rem);
  }

  .hero-visual {
    min-height: auto;
  }

  .visual-main {
    width: 100%;
    margin-right: auto;
  }

  .floating-note {
    width: 100%;
    margin: 0 auto;
    padding: 14px;
    text-align: center;
  }

  .floating-note strong {
    font-size: 1rem;
  }

  .final-cta h2 {
    font-size: clamp(2rem, 8.6vw, 3rem);
  }

  .final-cta h2 span {
    white-space: normal;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    min-height: 52px;
    text-align: center;
  }

  .hero-actions,
  .hero-proof,
  .podcast-tabs,
  .bio-points {
    justify-content: center;
  }

  .trustpilot-bars span {
    grid-template-columns: 76px 1fr 38px;
    text-align: left;
  }

  .companies-showcase img {
    height: auto;
  }

  .company-cases {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .company-cases article.wide {
    grid-column: auto;
  }
}
