:root {
  --bg: #0a060d;
  --bg-soft: #140c18;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
  --text: #f5efe7;
  --muted: #c7bdc8;
  --silver: #e7deea;
  --wine: #6f124a;
  --violet: #3f1a62;
  --glow: rgba(170, 105, 238, 0.18);
  --gold: #b4965a;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -10%, rgba(169, 122, 63, 0.14), transparent 22%),
    radial-gradient(circle at top, rgba(116, 32, 96, 0.26), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(89, 39, 125, 0.28), transparent 30%),
    linear-gradient(180deg, #050407 0%, #0f0913 40%, #08050a 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100px 100px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
  opacity: 0.25;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 231, 190, 0.07), transparent 16%),
    radial-gradient(circle at 80% 10%, rgba(164, 90, 199, 0.08), transparent 20%),
    radial-gradient(circle at 50% 65%, rgba(255, 255, 255, 0.03), transparent 28%);
  mix-blend-mode: screen;
  opacity: 0.55;
}

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

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

.fullwidth {
  width: 100%;
}

.relative {
  position: relative;
}

.site-shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.topbar {
  position: relative;
  z-index: 10;
  margin: 0 auto;
  padding: 28px 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand-mark {
  width: 32px;
  height: 32px;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  flex-wrap: wrap;
}

.topnav a:hover {
  color: var(--text);
}

.section {
  padding: 40px 0;
}

.hero {
  min-height: calc(100vh - 100px);
  display: block;
  position: relative;
  padding-top: 88px;
}

.eyebrow {
  margin: 0 0 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #edaf00;
  font-size: 0.8rem;
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(3.4rem, 8vw, 6.2rem);
  max-width: none;
}

h2 {
  font-size: clamp(2.3rem, 5vw, 4.1rem);
  max-width: none;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

p,
li,
summary {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
}

.hero-lead {
  margin: 24px 0 0;
  max-width: 62ch;
  font-size: 1.08rem;
}

.hero-copy {
  position: relative;
  max-width: 760px;
}

.hero-copy::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  left: -60px;
  top: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191, 157, 103, 0.18), transparent 65%);
  filter: blur(10px);
  z-index: -1;
}

.hero-copy-wide h1 {
  max-width: none;
}

.hero-copy-wide .hero-lead {
  max-width: 56ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--border);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: #120914;
  background: linear-gradient(135deg, #f3ebda, #c4b17f);
  border-color: rgba(255, 238, 196, 0.45);
}

.button-secondary,
.button-ghost {
  background: rgba(255, 255, 255, 0.04);
}

.button-secondary:hover,
.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.glass-card,
.product-card,
.compare-card,
.feature-card,
.offer-card,
.faq-list details,
.final-cta-box {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  box-shadow: none;
  color:#f8f5ef ;
}

.product-tag,
.offer-kicker,
.compare-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #f0dbac;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

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

.section-heading p {
  max-width: 70ch;
}

.problem-grid,
.case-section,
.ecosystem-section,
.journey-section,
.transformation-section,
.learn-section,
.offer-section,
.faq-section {
  position: relative;
}

.problem-cards,
.ecosystem-grid,
.learn-grid,
.offer-grid {
  display: grid;
  gap: 16px;
}

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

.value-card {
  padding: 24px;
  min-height: 280px;
}

.value-card h3 {
  margin-bottom: 12px;
}

.value-card-bonus {
  position: relative;
  overflow: hidden;
  grid-column: 1 / -1;
  min-height: auto;
  padding: 34px 28px;
  background:
    radial-gradient(circle at top left, rgba(196, 177, 127, 0.12), transparent 26%),
    radial-gradient(circle at 90% 50%, rgba(37, 211, 102, 0.10), transparent 24%),
    transparent;
}

.value-card-bonus h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.value-note {
  max-width: 76ch;
  margin-top: 28px;
}

.wa-bonus-content {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 28px;
  align-items: center;
}

.wa-bonus-content.wa-left {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 28px;
  align-items: center;
}

.wa-bonus-icon {
  width: 92px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.22);
  box-shadow: 0 0 40px rgba(37, 211, 102, 0.10);
}

.wa-bonus-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  opacity: 0.9;
  filter: saturate(0.85);
}

.case-preview {
  display: block;
  max-width: 760px;
}

.case-page {
  background: #f8f5ef;
  color: #17212f;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.case-accent {
  height: 22px;
  background: #eb7229;
}

.case-body {
  padding: 38px 34px 44px;
}

.case-kicker {
  margin: 0 0 8px;
  color: #eb7229;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.case-source {
  margin: 0 0 12px;
  color: rgba(245, 239, 231, 0.82);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.case-source-outside {
  margin-bottom: 14px;
  display: block;
  width: 100%;
}

.case-page h3 {
  margin-bottom: 28px;
  color: #eb7229;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  line-height: 1.05;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  text-transform: uppercase;
}

.case-block {
  margin-top: 28px;
}

.case-block h4 {
  margin: 0 0 12px;
  color: #2f66b1;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.case-block p,
.case-block li,
.case-block blockquote {
  color: #17212f;
  font-size: 1rem;
  line-height: 1.6;
}

.case-block ul {
  margin: 10px 0 0 18px;
  padding: 0;
}

.case-line {
  margin-top: 10px;
  font-weight: 500;
}

.case-bullets-accent li::marker {
  color: #3d8b2f;
}

.case-block blockquote {
  margin: 10px 0 0;
  padding-left: 16px;
  border-left: 2px solid rgba(47, 102, 177, 0.25);
  font-style: italic;
}

.case-block-final {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(23, 33, 47, 0.12);
}

.case-preview-secondary {
  margin-top: 28px;
}

.cheat-page {
  background: #f7f3ee;
}

.cheat-header {
  padding: 28px 34px;
  background: #171b20;
}

.cheat-header-kicker {
  margin: 0;
  color: #f5efe7;
  font-size: 1.65rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.cheat-page h3 {
  margin-bottom: 24px;
  color: #171b20;
}

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

.cheat-card {
  padding: 16px 20px;
  border: 1px solid #2b6aa8;
  border-radius: 18px;
}

.cheat-card h4 {
  margin: 0 0 8px;
  color: #171b20;
  font-size: 1.35rem;
  font-weight: 700;
}

.cheat-card p {
  margin: 4px 0;
  color: #171b20;
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 999px;
  vertical-align: middle;
}

.dot-warn {
  background: #f0b320;
}

.dot-good {
  background: #2ca45c;
}

.problem-cards {
  grid-template-columns: repeat(4, 1fr);
}

.glass-card,
.feature-card,
.offer-card {
  padding: 24px 0;
  border-left: 0;
  border-right: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  border-radius: 0;
}

.card-index {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: var(--silver);
  margin-bottom: 18px;
}

.ecosystem-grid {
  grid-template-columns: repeat(2, 1fr);
}

.product-card {
  padding: 28px 0;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  align-items: center;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background: transparent;
}

.product-card img {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.product-card-main {
  grid-column: span 2;
  background:
    radial-gradient(circle at 10% 20%, rgba(196, 177, 127, 0.08), transparent 24%);
}

.product-line {
  margin: 0 0 10px;
  color: var(--text);
  font-weight: 600;
}

.spotlight {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: center;
}

.spotlight-media {
  padding: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    radial-gradient(circle at center, rgba(130, 87, 173, 0.18), transparent 35%),
    transparent;
}

.spotlight-media img {
  max-width: 360px;
  margin: 0 auto;
}

.check-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.check-item {
  padding: 14px 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--silver);
  line-height: 1.6;
}

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

.compare-card {
  padding: 28px 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background: transparent;
}

.compare-card ul,
.offer-list {
  margin: 0;
  padding-left: 18px;
}

.compare-card.accent,
.offer-card.featured {
  background:
    radial-gradient(circle at top, rgba(155, 84, 213, 0.16), transparent 36%),
    transparent;
}

.excerpt-grid {
  display: grid;
  gap: 24px;
}

.excerpt-card {
  padding: 0 0 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.excerpt-card:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.excerpt-label {
  margin: 0 0 12px;
  color: #f0dbac;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.excerpt-card h3 {
  max-width: 26ch;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.2;
  margin-bottom: 14px;
}

.excerpt-card p:last-child {
  max-width: 72ch;
}

.journey-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.journey-step {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
}

.journey-number {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.learn-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card {
  min-height: 0;
}

.offer-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.offer-description {
  margin-top: 12px;
}

.bundle-note {
  margin: 18px 0 24px;
  color: var(--silver);
}

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

.faq-list details {
  padding: 20px 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background: transparent;
}

.faq-list summary {
  color: #b79567;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

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

.faq-list p {
  margin: 14px 0 0;
}

.final-cta-box {
  padding: 46px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(179, 146, 97, 0.22), transparent 26%),
    transparent;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
}

.final-cta-box h2 {
  margin: 0 auto;
}

.final-cta-box p {
  max-width: 68ch;
  margin: 18px auto 0;
}

.final-cta-box .cta-row {
  justify-content: center;
}

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

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

@media (max-width: 1100px) {
  .hero,
  .spotlight,
  .offer-grid,
  .product-card,
  .problem-cards,
  .learn-grid,
  .journey-flow {
    grid-template-columns: 1fr 1fr;
  }

  .case-preview {
    max-width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .ecosystem-grid,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .product-card-main {
    grid-column: span 1;
  }
}

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

  .topbar {
    padding: 22px 0 10px;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 14px;
  }

  .topnav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
  }

  .topnav a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero,
  .spotlight,
  .problem-cards,
  .learn-grid,
  .check-grid,
  .offer-grid,
  .journey-flow {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 30px 0;
  }

  h1 {
    font-size: clamp(2.7rem, 12vw, 4.4rem);
    
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-lead,
  .section-heading p,
  .excerpt-card p:last-child,
  .final-cta-box p {
    max-width: 100%;
  }

  .product-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }

  .product-card img {
    max-width: 220px;
  }

  .case-body {
    padding: 26px 22px 30px;
  }

  .case-page h3 {
    font-size: 1.9rem;
  }

  .cheat-header {
    padding: 22px;
  }

  .cheat-header-kicker {
    font-size: 1.35rem;
  }

  .cheat-card {
    padding: 14px 16px;
    border-radius: 14px;
  }

  .cheat-card h4 {
    font-size: 1.15rem;
  }

  .spotlight {
    gap: 28px;
  }

  .spotlight-media {
    padding: 24px;
  }

  .compare-card,
  .glass-card,
  .feature-card,
  .offer-card,
  .faq-list details,
  .final-cta-box {
    padding: 22px 0;
  }

  .journey-step {
    padding: 20px 0;
  }

  .offer-list,
  .compare-card ul {
    padding-left: 16px;
  }

  .cta-row {
    width: 100%;
  }

  .cta-row .button {
    width: 100%;
  }

}

@media (max-width: 1100px) {
  .value-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-card-bonus {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .value-cards {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: auto;
  }

  .value-card,
  .value-card-bonus {
    padding: 22px 0;
  }
}

@media (max-width: 820px) {
  .wa-bonus-content {
    grid-template-columns: 1fr;
  }

  .wa-bonus-content.wa-left {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .wa-bonus-icon {
    width: 76px;
    height: 76px;
  }

  .wa-bonus-icon img {
    width: 42px;
    height: 42px;
  }
}


/* Social links */
.topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.social-links,
.social-pill-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-link,
.social-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.02);
  color: rgba(245, 239, 231, 0.82);
  transition:
    transform 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 999px;
}

.social-link svg,
.social-pill svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-link:hover,
.social-pill:hover {
  transform: translateY(-2px);
  color: #f3ebda;
  border-color: rgba(196, 177, 127, 0.42);
  background:
    radial-gradient(circle at 50% 0%, rgba(196, 177, 127, 0.18), transparent 58%),
    rgba(255, 255, 255, 0.055);
}

.social-follow {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.final-cta-box .social-follow p {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 0.92rem;
  color: rgba(199, 189, 200, 0.82);
}

.social-pill-row {
  justify-content: center;
  flex-wrap: wrap;
}

.social-pill {
  min-height: 44px;
  padding: 0 16px;
  gap: 9px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
}

@media (max-width: 820px) {
  .topbar-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .social-links-header {
    justify-content: flex-start;
  }

  .social-link {
    width: 42px;
    height: 42px;
  }

  .social-pill-row {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .social-pill {
    width: 100%;
  }
}
