:root {
  --bg: #220012;
  --bg-deep: #15000c;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --text: #f9f4ef;
  --muted: #d6c6bf;
  --gold: #dca15b;
  --gold-soft: #f2c58f;
  --line: rgba(255, 255, 255, 0.12);
  --success: #d3f5c5;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
  --container-narrow: 860px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: radial-gradient(circle at top, #4b0530 0%, var(--bg) 38%, var(--bg-deep) 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-bg,
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

.site-bg {
  background:
    radial-gradient(circle at 15% 20%, rgba(220, 161, 91, 0.16), transparent 18%),
    radial-gradient(circle at 80% 12%, rgba(220, 161, 91, 0.12), transparent 14%),
    radial-gradient(circle at 50% 72%, rgba(255, 255, 255, 0.05), transparent 24%);
}

.noise {
  z-index: -1;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255,255,255,0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.6) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: soft-light;
}

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

.narrow {
  width: min(var(--container-narrow), 100%);
}

.section {
  padding: 104px 0;
  position: relative;
}

.section-head {
  max-width: 780px;
  margin-bottom: 40px;
}

.section-tag,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(220, 161, 91, 0.28);
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.section-tag {
  margin-bottom: 18px;
}

h1,
h2,
h3 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  max-width: 13ch;
}

.hero-copy {
  max-width: 720px;
}

.hero-copy h1 {
  font-size: clamp(2.3rem, 4.1vw, 4.5rem) !important;
  max-width: 22ch;
  line-height: 0.92;
  margin-top: 22px;
  margin-bottom: 22px;
}

h1 span,
h2 span {
  color: var(--gold-soft);
}

h2 {
  font-size: clamp(2.2rem, 4.8vw, 4rem);
}

h3 {
  font-size: clamp(1.4rem, 2.1vw, 1.9rem);
}

p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.02rem;
}

.lead {
  font-size: 1.12rem;
  max-width: 60ch;
}

strong {
  color: var(--text);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(18, 0, 8, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.topbar-copy {
  font-size: 0.96rem;
  color: var(--muted);
}

.topbar-copy span {
  color: var(--gold-soft);
  font-weight: 700;
}

.hero {
  padding-top: 72px;
}

.system-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
}

.hero-actions,
.center-action,
.center-cta {
  margin-top: 28px;
}

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

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.24) 48%, transparent 76%);
  transform: translateX(-140%);
  transition: transform 0.8s ease;
}

.btn:hover::after {
  transform: translateX(140%);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: #2b1407;
  box-shadow: 0 16px 36px rgba(220, 161, 91, 0.25);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
}

.btn-block {
  width: 100%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.book-stage {
  position: relative;
  height: 100%;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 10px;
}

.book-card {
  position: relative;
  width: min(430px, 86%);
  padding: 24px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  transform: rotate(-4deg);
}

.book-glow {
  position: absolute;
  inset: 12% -8% auto;
  height: 58%;
  background: radial-gradient(circle, rgba(220, 161, 91, 0.35), transparent 70%);
  filter: blur(22px);
  z-index: 0;
}

.book-cover {
  position: relative;
  z-index: 1;
  min-height: 520px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
          radial-gradient(circle at top, rgba(220, 161, 91, 0.14), transparent 30%),
          linear-gradient(160deg, rgba(82, 4, 47, 0.9), rgba(26, 0, 13, 0.92));
}

.hero-book-image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 16px;
}

.author-image-wrap {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.author-image {
  width: 100%;
  display: block;
  border-radius: 22px;
}

.placeholder-image {
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 34px;
  border: 1px dashed rgba(220, 161, 91, 0.5);
  background:
    radial-gradient(circle at top, rgba(220, 161, 91, 0.14), transparent 30%),
    linear-gradient(160deg, rgba(82, 4, 47, 0.9), rgba(26, 0, 13, 0.92));
  color: var(--text);
  text-align: center;
}

.placeholder-image.large {
  min-height: 420px;
}

.placeholder-label {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  color: var(--gold-soft);
}

.placeholder-note {
  font-size: 0.96rem;
  color: var(--muted);
  max-width: 26ch;
}

.book-badge {
  position: absolute;
  left: -12px;
  bottom: -10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: #2b1407;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(220, 161, 91, 0.3);
  z-index: 3;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(14px);
  opacity: 0.85;
}

.orb-one {
  width: 230px;
  height: 230px;
  background: rgba(220, 161, 91, 0.16);
  top: 6%;
  left: 4%;
}

.orb-two {
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.08);
  bottom: 6%;
  right: 0;
}

.mini-fact {
  position: absolute;
  max-width: 180px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.mini-fact-left {
  top: -75px;
  left: 0;
}

.mini-fact-right {
  right: -20px;
  bottom: 88px;
}

.mini-fact-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-soft);
}

.mini-fact-text {
  display: block;
  font-size: 0.94rem;
  color: var(--muted);
}

.benefits-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.benefit-card,
.testimonial-card,
.step-card,
.visual-card,
.offer-shell,
.faq-item,
.offer-side {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.benefit-card,
.testimonial-card,
.step-card,
.visual-card,
.offer-side {
  border-radius: var(--radius-lg);
}

.benefit-card,
.testimonial-card,
.visual-card,
.offer-side {
  padding: 28px;
}

.benefit-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(220, 161, 91, 0.18);
  color: var(--gold-soft);
  margin-bottom: 18px;
  font-size: 1.2rem;
}

.system-steps {
  display: grid;
  gap: 18px;
  margin: 30px 0;
}

.step-card {
  padding: 24px 24px 22px;
}

.step-number {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--gold-soft);
  letter-spacing: 0.12em;
}

.visual-card {
  padding: 22px;
}

.feature-list,
.offer-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}

.feature-list li,
.offer-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
}

.feature-list span,
.offer-list span {
  color: var(--success);
  font-weight: 800;
}

.section-subtext {
  max-width: 66ch;
}

.testimonial-stars {
  color: var(--gold-soft);
  margin-bottom: 14px;
  letter-spacing: 0.15em;
}

.testimonial-meta {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.offer-shell {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 28px;
  padding: 28px;
  border-radius: 30px;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: end;
  margin: 28px 0 10px;
}

.price-old {
  color: rgba(255,255,255,0.5);
  text-decoration: line-through;
  font-size: 1.25rem;
}

.price-current {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1;
  color: var(--gold-soft);
}

.price-note,
.purchase-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.offer-side {
  display: grid;
  align-content: start;
  gap: 18px;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.countdown.compact {
  width: min(390px, 100%);
}

.time-box {
  display: grid;
  place-items: center;
  min-height: 82px;
  padding: 8px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255, 255, 255, 0.05);
}

.time-box span {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--gold-soft);
  line-height: 1;
}

.time-box small {
  margin-top: 8px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
}

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

.faq-item {
  border-radius: 18px;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 22px 54px 22px 24px;
  font-weight: 700;
  color: var(--text);
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--gold-soft);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-content {
  padding: 0 24px 22px;
  color: var(--muted);
}

.footer {
  padding: 24px 0 44px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-brand,
.footer-nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-nav {
  display: flex;
  gap: 18px;
}

.floating {
  animation: floating 6s ease-in-out infinite;
}

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

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

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.center-cta {
  display: inline-flex;
}

@keyframes floating {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-12px) rotate(-3deg); }
}

@media (max-width: 1080px) {
  .hero-grid,
  .system-grid,
  .offer-shell {
    grid-template-columns: 1fr;
  }

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

  .book-stage {
    min-height: 560px;
  }

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

@media (max-width: 760px) {
  .section {
    padding: 78px 0;
  }

  .topbar-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .benefits-grid,
  .testimonial-grid,
  .countdown {
    grid-template-columns: 1fr;
  }

  .book-card {
    position: relative;
    width: min(430px, 86%);
    padding: 24px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
    transform: rotate(-4deg);
    overflow: visible;
  }

  .floating {
    animation: none;
  }

  .book-stage {
    min-height: auto;
    padding-top: 28px;
  }

  .mini-fact {
    position: static;
    margin-top: 14px;
    max-width: none;
  }

  .offer-shell,
  .benefit-card,
  .testimonial-card,
  .visual-card,
  .offer-side {
    padding: 22px;
  }

  .faq-item summary {
    font-size: 1rem;
    line-height: 1.4;
  }
}


.soft-lead {
  opacity: 0.92;
}

.purchase-switcher {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 540px);
  margin: 28px 0 16px;
  padding: 8px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.switcher-btn {
  min-height: 54px;
  padding: 0 18px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

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

.switcher-btn.active {
  background: rgba(220, 161, 91, 0.16);
  color: var(--text);
}

.product-panel {
  display: none;
}

.product-panel.active {
  display: block;
}

.selection-card,
.checkout-summary,
.legal-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.selection-card {
  margin-top: 10px;
}

.select-label {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-weight: 700;
}

.custom-select {
  position: relative;
}

.custom-select::after {
  content: "▾";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-soft);
  pointer-events: none;
  font-size: 1rem;
}

.custom-select select {
  width: 100%;
  min-height: 58px;
  padding: 0 48px 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(14, 2, 9, 0.75);
  color: var(--text);
  font: inherit;
  appearance: none;
  outline: none;
}

.custom-select select:focus {
  border-color: rgba(220, 161, 91, 0.55);
  box-shadow: 0 0 0 4px rgba(220, 161, 91, 0.12);
}

.inline-note,
.summary-copy,
.cookie-meta {
  margin-top: 12px;
  font-size: 0.95rem;
}

.compact-list {
  margin-top: 20px;
}

.summary-kicker,
.cookie-mini-tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(220, 161, 91, 0.24);
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.85rem;
  font-weight: 700;
}

.summary-price {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
  font-weight: 800;
  color: var(--gold-soft);
  margin: 12px 0 14px;
}

.purchase-button.is-disabled,
.purchase-button[aria-disabled="true"] {
  opacity: 0.55;
  pointer-events: auto;
}

.footer-link-button {
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
}

.footer-link-button:hover,
.footer-nav a:hover,
.footer-brand:hover {
  color: var(--text);
}

.legal-page {
  min-height: calc(100vh - 140px);
}

.legal-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 999;
}

.cookie-banner-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: center;
  padding: 24px;
  border-radius: 24px;
  background: rgba(18, 0, 8, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.cookie-banner h3,
.cookie-dialog h3,
.cookie-group h4 {
  margin-bottom: 10px;
}

.cookie-banner p,
.cookie-dialog p,
.cookie-group p {
  margin-bottom: 0;
}

.cookie-actions-bar,
.cookie-actions-modal {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-actions-bar .btn,
.cookie-actions-modal .btn {
  min-width: 178px;
}

.cookie-modal[hidden],
.cookie-banner[hidden] {
  display: none !important;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.cookie-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 2, 4, 0.72);
  backdrop-filter: blur(8px);
}

.cookie-dialog {
  position: relative;
  width: min(860px, calc(100% - 32px));
  margin: 6vh auto;
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(49, 4, 30, 0.98), rgba(16, 0, 9, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
}

.cookie-dialog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.cookie-close {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-groups {
  display: grid;
  gap: 14px;
  margin: 26px 0;
}

.cookie-group {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-group.locked {
  opacity: 0.96;
}

.cookie-toggle {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.cookie-toggle-track {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 68px;
  height: 38px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  transition: background 0.25s ease;
}

.cookie-toggle-thumb {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  transform: translateX(0);
  transition: transform 0.25s ease;
}

.cookie-toggle.is-active .cookie-toggle-track,
.cookie-toggle[aria-checked="true"] .cookie-toggle-track {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
}

.cookie-toggle.is-active .cookie-toggle-thumb,
.cookie-toggle[aria-checked="true"] .cookie-toggle-thumb {
  transform: translateX(30px);
}

.cookie-toggle.is-locked {
  cursor: not-allowed;
}

.cookie-modal-open {
  overflow: hidden;
}

@media (max-width: 920px) {
  .cookie-banner-card {
    grid-template-columns: 1fr;
  }

  .cookie-actions-bar {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .purchase-switcher {
    grid-template-columns: 1fr;
  }

  .cookie-actions-bar .btn,
  .cookie-actions-modal .btn {
    min-width: 0;
    width: 100%;
  }

  .cookie-group {
    grid-template-columns: 1fr;
  }

  .cookie-dialog {
    margin: 20px auto;
    padding: 22px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
  }

  .legal-actions {
    flex-direction: column;
  }
}
.social-proof {
  position: relative;
  overflow: hidden;
}

.social-proof::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
          radial-gradient(circle at 15% 20%, rgba(220, 161, 91, 0.08), transparent 26%),
          radial-gradient(circle at 85% 18%, rgba(183, 74, 255, 0.10), transparent 24%),
          radial-gradient(circle at 70% 78%, rgba(255, 255, 255, 0.04), transparent 20%);
  pointer-events: none;
}

.section-head-left {
  max-width: 860px;
  margin: 0 0 34px 0;
  text-align: left;
}

.social-proof .section-tag {
  margin-bottom: 14px;
}

.social-proof h2 {
  margin-bottom: 16px;
}

.social-proof-subtext {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
}

.social-proof-layout {
  display: grid;
  gap: 28px;
}

.proof-feature-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  padding: 34px;
  border-radius: 30px;
  background:
          linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.proof-feature-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(22px);
  pointer-events: none;
}

.proof-feature-glow-one {
  width: 220px;
  height: 220px;
  right: -40px;
  top: -30px;
  background: rgba(220, 161, 91, 0.12);
}

.proof-feature-glow-two {
  width: 180px;
  height: 180px;
  left: -30px;
  bottom: -40px;
  background: rgba(157, 78, 221, 0.14);
}

.proof-feature-copy {
  position: relative;
  z-index: 2;
  align-self: center;
}

.proof-kicker {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(220, 161, 91, 0.10);
  border: 1px solid rgba(220, 161, 91, 0.22);
}

.proof-feature-copy h3 {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.02;
}

.proof-feature-copy p {
  margin: 0;
  color: rgba(255,255,255,0.84);
  line-height: 1.75;
  max-width: 48ch;
}

.proof-collage {
  position: relative;
  min-height: 580px;
}

.proof-shot {
  position: absolute;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.proof-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.proof-shot-a {
  width: 32%;
  height: 290px;
  left: 0;
  top: 28px;
  transform: rotate(-6deg);
  z-index: 3;
}

.proof-shot-b {
  width: 32%;
  height: 250px;
  right: 8%;
  top: 0;
  transform: rotate(7deg);
  z-index: 4;
}

.proof-shot-c {
  width: 34%;
  height: 270px;
  right: 0;
  top: 235px;
  transform: rotate(-4deg);
  z-index: 2;
}

.proof-shot-d {
  width: 28%;
  height: 300px;
  left: 24%;
  top: 170px;
  transform: rotate(4deg);
  z-index: 5;
}

.proof-shot-e {
  width: 30%;
  height: 255px;
  left: 8%;
  bottom: 0;
  transform: rotate(-2deg);
  z-index: 1;
}

.testimonial-grid-refined {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.testimonial-card-soft {
  padding: 24px;
  border-radius: 24px;
  background:
          linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 50px rgba(0,0,0,0.16);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.testimonial-card-soft:hover {
  transform: translateY(-4px);
  border-color: rgba(220, 161, 91, 0.24);
  box-shadow: 0 24px 60px rgba(0,0,0,0.20);
}

.testimonial-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}

.testimonial-channel {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.82);
  font-size: 0.84rem;
  font-weight: 700;
}

.testimonial-handle {
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 700;
}

.testimonial-card-soft p {
  margin: 0;
  color: rgba(255,255,255,0.92);
  line-height: 1.72;
  font-size: 1rem;
}

.testimonial-card-soft .testimonial-extra {
  margin-top: 12px;
  color: rgba(255,255,255,0.74);
}

.testimonial-card-wide {
  grid-column: span 2;
}

.social-proof-closing {
  margin-top: 26px;
}

.social-proof-closing-card {
  padding: 28px 30px;
  border-radius: 26px;
  text-align: center;
  background:
          linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

.social-proof-closing-card p {
  margin: 0 auto 20px;
  max-width: 60ch;
  color: rgba(255,255,255,0.84);
  line-height: 1.75;
}

@media (max-width: 1180px) {
  .proof-feature-card {
    grid-template-columns: 1fr;
  }

  .proof-collage {
    min-height: 520px;
  }
}

@media (max-width: 1024px) {
  .testimonial-grid-refined {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-card-wide {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .proof-feature-card {
    padding: 24px;
    border-radius: 24px;
  }

  .proof-collage {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .proof-shot {
    position: relative;
    width: 100%;
    height: 220px;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none !important;
  }

  .testimonial-grid-refined {
    grid-template-columns: 1fr;
  }

  .testimonial-card-wide {
    grid-column: span 1;
  }

  .social-proof-closing-card {
    padding: 22px 20px;
    border-radius: 22px;
  }
}
