:root {
  --primary: #8a40ea;
  --deep: #4b1d8f;
  --tint: #f4eefe;
  --white: #ffffff;
  --text: #161122;
  --muted: #6b6577;
  --gradient: linear-gradient(135deg, #8a40ea 0%, #b47cf0 100%);
  --shadow: 0 22px 70px rgba(75, 29, 143, 0.14);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

body,
button,
input {
  font-family: "Poppins", Arial, sans-serif;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(22, 17, 34, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 800;
}

.brand-logo-img {
  display: block;
  width: 54px;
  height: 54px;
  border-radius: 12px;
  object-fit: contain;
  object-position: center;
  box-shadow: 0 12px 30px rgba(138, 64, 234, 0.18);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.6vw, 24px);
  flex: 1;
}

.site-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 13px;
  background: var(--tint);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--deep);
}

.container {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.narrow {
  width: min(820px, calc(100% - 36px));
  text-align: center;
}

.section {
  padding: clamp(72px, 9vw, 118px) 0;
}

.section-soft {
  background: #fbf9ff;
}

.section-tint {
  background: var(--tint);
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 10%, rgba(180, 124, 240, 0.34), transparent 28%),
    linear-gradient(135deg, #211035 0%, var(--deep) 54%, #7b38cf 100%);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 130px 0 38px;
}

.glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.35;
  background: var(--gradient);
  pointer-events: none;
}

.glow-one {
  top: 90px;
  right: 8%;
}

.glow-two {
  bottom: 80px;
  left: -120px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: #eadcff;
}

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

h1,
h2 {
  font-family: "Plus Jakarta Sans", "Poppins", Arial, sans-serif;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  font-family: "Plus Jakarta Sans", "Poppins", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.18;
}

.hero-subhead,
.lead {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
}

.section-dark .hero-subhead,
.section-dark .lead {
  color: rgba(255, 255, 255, 0.84);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--gradient);
  box-shadow: 0 16px 36px rgba(138, 64, 234, 0.3);
}

.btn-secondary {
  color: var(--primary);
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(138, 64, 234, 0.18), 0 12px 26px rgba(75, 29, 143, 0.08);
}

.btn-white {
  color: var(--deep);
  background: var(--white);
  box-shadow: 0 16px 36px rgba(22, 17, 34, 0.18);
}

.btn-large {
  min-height: 58px;
  padding: 17px 26px;
}

.btn-small {
  min-height: 44px;
  padding: 11px 18px;
}

.cta-stack p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.media-caption {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.embed-frame {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18), 0 30px 90px rgba(138, 64, 234, 0.38);
}

.canva-frame {
  aspect-ratio: 16 / 10;
}

.embed-frame iframe,
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.trust-strip {
  position: relative;
  z-index: 1;
  margin-top: 48px;
  padding: 22px 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  text-align: center;
}

.trust-strip p {
  margin: 0;
  font-size: clamp(17px, 2.5vw, 24px);
  font-weight: 500;
}

.number-emphasis {
  position: relative;
  display: inline-block;
  color: var(--white);
  font-weight: 800;
}

.number-emphasis::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 4px;
  border-radius: 99px;
  background: #ff3b4f;
}

.trust-section {
  padding: 54px 0;
}

.section-kicker {
  color: var(--muted);
  text-align: center;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-items: center;
}

.logo-card {
  display: grid;
  place-items: center;
  min-height: 96px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(75, 29, 143, 0.08);
}

.logo-card img {
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.logo-card:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.04);
}

.sub-line {
  color: var(--muted);
  font-weight: 700;
}

.card-grid,
.outcome-grid,
.pricing-grid,
.case-grid,
.founder-grid,
.video-grid {
  display: grid;
  gap: 22px;
}

.four {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
}

.pain-card,
.outcome,
.price-card,
.case-card,
.founder-card,
.video-card,
.step,
details {
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pain-card:hover,
.outcome:hover,
.price-card:hover,
.case-card:hover,
.founder-card:hover,
.video-card:hover,
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 80px rgba(75, 29, 143, 0.18);
}

.pain-card {
  padding: 28px;
}

.pain-card p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.icon-dot,
.outcome span {
  display: inline-block;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background: var(--gradient);
  box-shadow: 0 12px 24px rgba(138, 64, 234, 0.22);
}

.closing-line {
  margin: 36px 0 0;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  line-height: 1.35;
}

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

.outcome-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
}

.outcome {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px;
  font-weight: 800;
}

.tools-section {
  background: var(--white);
  padding-bottom: clamp(44px, 5vw, 68px);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 30px;
}

#process {
  padding-top: clamp(44px, 5vw, 68px);
}

.tool-card {
  display: grid;
  place-items: center;
  gap: 12px;
  min-height: 104px;
  padding: 22px;
  border: 1px solid rgba(138, 64, 234, 0.14);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #f8f1ff 100%);
  box-shadow: 0 14px 36px rgba(75, 29, 143, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.tool-card:hover {
  transform: translateY(-3px);
  border-color: rgba(138, 64, 234, 0.28);
  box-shadow: 0 22px 54px rgba(75, 29, 143, 0.14);
}

.tool-card img {
  max-width: 100%;
  max-height: 54px;
  border-radius: 10px;
  object-fit: contain;
}

.tool-card span {
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 36px;
}

.step {
  position: relative;
  padding: 28px;
}

.step span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: var(--primary);
  font-weight: 800;
}

.step p,
.founder-card p,
.case-card p {
  color: var(--muted);
  line-height: 1.65;
}

.center {
  text-align: center;
}

.video-grid {
  grid-template-columns: repeat(6, 1fr);
  margin-top: 36px;
}

.video-card {
  grid-column: span 2;
  overflow: hidden;
}

.video-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.video-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #11091c;
}

.video-card p {
  margin: 0;
  padding: 20px;
  font-weight: 800;
  line-height: 1.45;
}

.case-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 30px;
}

.case-card {
  padding: clamp(28px, 4vw, 42px);
}

#case-studies {
  padding-bottom: clamp(42px, 5vw, 64px);
}

.pricing-section {
  padding-top: clamp(42px, 5vw, 64px);
}

.stat-line {
  margin-bottom: 10px;
  color: var(--deep);
  font-size: clamp(28px, 4.2vw, 46px);
  font-weight: 800;
  line-height: 1.08;
}

.case-card p {
  margin: 22px 0;
  font-size: 17px;
}

.pricing-toggle {
  display: flex;
  width: fit-content;
  margin: 28px auto 34px;
  padding: 6px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(75, 29, 143, 0.12);
}

.toggle-btn {
  border: 0;
  border-radius: 14px;
  padding: 13px 18px;
  color: var(--muted);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.toggle-btn.active {
  color: var(--white);
  background: var(--gradient);
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 30px;
}

.price-card.popular {
  box-shadow: 0 0 0 2px var(--primary), 0 30px 80px rgba(138, 64, 234, 0.2);
}

.badge {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--white);
  background: var(--gradient);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.price {
  margin: 8px 0 0;
  color: var(--deep);
  font-size: 42px;
  font-weight: 800;
}

.per {
  color: var(--muted);
}

.tier-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 24px;
}

.tier-metrics div {
  min-height: 82px;
  padding: 13px;
  border: 1px solid rgba(138, 64, 234, 0.11);
  border-radius: 14px;
  background: #fbf8ff;
}

.tier-metrics strong {
  display: block;
  color: var(--deep);
  font-family: "Plus Jakarta Sans", "Poppins", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.05;
}

.tier-metrics span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.feature-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 22px 0 28px;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 25px;
  color: var(--muted);
  font-size: 14px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 11px;
  height: 7px;
  border-left: 3px solid var(--primary);
  border-bottom: 3px solid var(--primary);
  transform: rotate(-45deg);
}

.pricing-note {
  margin: 24px auto 30px;
  color: var(--muted);
  text-align: center;
  font-weight: 600;
}

.ppm-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 28px;
  align-items: center;
  padding: clamp(26px, 4vw, 38px);
  border-radius: 22px;
  color: var(--white);
  background: var(--gradient);
  box-shadow: 0 28px 70px rgba(138, 64, 234, 0.26);
}

.ppm-card h3,
.ppm-card p,
.ppm-card span {
  margin: 0;
}

.ppm-card p {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
}

.ppm-card span {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.6;
}

.ppm-card .btn {
  grid-column: 2;
  grid-row: 1 / span 3;
}

.guarantee,
.final-cta {
  text-align: center;
}

.guarantee h2,
.final-cta h2 {
  color: var(--white);
}

.founder-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 36px;
}

.founder-card {
  padding: clamp(28px, 4vw, 40px);
}

.founder-card img {
  width: 132px;
  height: 132px;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(75, 29, 143, 0.16);
}

.founder-card h3 {
  margin: 20px 0 4px;
}

.location {
  color: var(--primary) !important;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 14px;
  width: min(920px, calc(100% - 36px));
}

details {
  padding: 0;
  overflow: hidden;
}

summary {
  position: relative;
  padding: 22px 58px 22px 24px;
  font-weight: 800;
  cursor: pointer;
}

summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  color: var(--primary);
  font-size: 24px;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.65;
}

.site-footer {
  padding: 52px 0 26px;
  color: rgba(255, 255, 255, 0.76);
  background: #130b20;
}

.footer-simple {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-brand {
  color: var(--white);
}

.site-footer p {
  max-width: 430px;
  margin: 16px 0 0;
  line-height: 1.6;
}

.copyright {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.case-body {
  background: #fbf9ff;
}

.case-hero {
  padding: 130px 0 78px;
}

.case-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}

.case-hero h1 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(40px, 5.4vw, 72px);
}

.case-hero p {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.case-hero-img,
.proof-img {
  display: block;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 28px 90px rgba(22, 17, 34, 0.28);
}

.case-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.case-stat {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
}

.case-stat strong {
  display: block;
  font-family: "Plus Jakarta Sans", "Poppins", Arial, sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
}

.case-stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.case-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
}

.case-story,
.case-sidebar,
.proof-panel {
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.case-story {
  padding: clamp(28px, 4vw, 46px);
}

.case-story h2 {
  font-size: clamp(28px, 3.4vw, 42px);
}

.case-story h3 {
  margin: 34px 0 12px;
}

.case-story p,
.case-story li,
.proof-panel p,
.case-sidebar li {
  color: var(--muted);
  line-height: 1.75;
}

.case-story ul,
.case-sidebar ul {
  display: grid;
  gap: 12px;
  padding-left: 20px;
}

.case-sidebar {
  position: sticky;
  top: 100px;
  padding: 26px;
}

.case-sidebar h3 {
  margin-bottom: 16px;
}

.proof-panel {
  padding: clamp(22px, 3vw, 32px);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 34px;
}

.proof-panel h3 {
  margin: 20px 0 8px;
}

.case-cta {
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .case-hero-grid,
  .case-content {
    grid-template-columns: 1fr;
  }

  .footer-simple {
    flex-direction: column;
    align-items: flex-start;
  }

  .four,
  .outcome-grid,
  .timeline,
  .pricing-grid,
  .video-grid,
  .case-stat-grid,
  .proof-grid,
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-card,
  .video-card:nth-child(4),
  .video-card:nth-child(5) {
    grid-column: auto;
  }

  .logo-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    display: none;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 20px 60px rgba(22, 17, 34, 0.16);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 14px;
    border-radius: 12px;
  }

  .site-nav a:hover {
    background: var(--tint);
  }

  .menu-toggle {
    display: block;
    order: 2;
  }

  .site-header > .btn {
    order: 3;
  }

  .case-sidebar {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand-logo-img {
    width: 46px;
    height: 46px;
  }

  .btn-small {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .hero {
    padding-top: 112px;
  }

  .four,
  .outcome-grid,
  .timeline,
  .pricing-grid,
  .video-grid,
  .case-grid,
  .founder-grid,
  .logo-row,
  .case-stat-grid,
  .proof-grid,
  .tools-grid {
    grid-template-columns: 1fr;
  }

  .pricing-toggle {
    width: 100%;
    flex-direction: column;
  }

  .ppm-card {
    grid-template-columns: 1fr;
  }

  .ppm-card .btn {
    grid-column: auto;
    grid-row: auto;
  }

  .logo-card {
    min-height: 78px;
  }

  .tools-section {
    padding-bottom: 44px;
  }

  #process {
    padding-top: 44px;
  }

  .tools-grid {
    margin-top: 24px;
  }

  .canva-frame {
    aspect-ratio: 4 / 3;
  }

  h1 {
    font-size: 32px;
    line-height: 1.12;
    overflow-wrap: break-word;
  }

  .hero-subhead,
  .lead {
    font-size: 16px;
  }

  .hero-copy,
  .hero-media,
  .trust-strip {
    min-width: 0;
  }
}

@media (max-width: 420px) {
  .site-header {
    gap: 10px;
  }

  .brand-logo-img {
    width: 42px;
    height: 42px;
  }

  h1 {
    font-size: 29px;
  }

  .btn-large {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}
