:root {
  --black: #040208;
  --black-soft: #09060f;
  --panel: #0e0917;
  --panel-warm: #130b1c;
  --white: #f8f5fb;
  --muted: #aaa3b3;
  --gold: #9c63ff;
  --gold-light: #d8bdff;
  --gold-deep: #6230ae;
  --true-gold: #d4a653;
  --line: rgba(156, 99, 255, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 13%, rgba(117, 56, 203, 0.1), transparent 24rem),
    var(--black);
}

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

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

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

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

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

.eyebrow {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

h1,
h2 {
  text-wrap: balance;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(2.15rem, 4.6vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h2 span {
  background: linear-gradient(110deg, #6f38c5, var(--gold-light), #8e55ed);
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.75;
}

.hero {
  position: relative;
  min-height: 92svh;
  padding: 34px 0 54px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 1, 10, 0.46) 0%, rgba(4, 1, 9, 0.72) 62%, var(--black) 100%),
    radial-gradient(circle at 50% 40%, rgba(139, 77, 235, 0.2), transparent 28rem),
    url("/assets/hero-collage.webp") center / cover no-repeat;
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 1, 9, 0.62), transparent 30%, transparent 70%, rgba(4, 1, 9, 0.62)),
    radial-gradient(circle at 50% 34%, transparent 0%, rgba(4, 1, 9, 0.48) 74%);
  content: "";
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: calc(92svh - 88px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.brand {
  width: clamp(205px, 22vw, 300px);
  margin-bottom: 22px;
  filter: drop-shadow(0 0 28px rgba(212, 166, 83, 0.12));
}

.hero-eyebrow {
  margin-bottom: 24px;
  color: rgba(216, 189, 255, 0.78);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
}

.hero h1 {
  max-width: 780px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.65rem, 5.2vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 span {
  background: linear-gradient(110deg, #773ad2 8%, #ddc4ff 48%, #9a5bf3 92%);
  background-clip: text;
  color: transparent;
}

.gold-rule {
  width: 150px;
  height: 1px;
  margin: 32px auto 27px;
  background: linear-gradient(90deg, transparent, rgba(212, 166, 83, 0.8), transparent);
}

.hero-copy {
  max-width: 620px;
  margin: 0 auto 30px;
  color: #c9c1d0;
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  line-height: 1.6;
}

.cta-button {
  display: inline-flex;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  padding: 20px 44px;
  border: 1px solid rgba(220, 197, 255, 0.52);
  border-radius: 999px;
  background: linear-gradient(105deg, #6430ae, #9f66f2 50%, #7139bd);
  box-shadow:
    0 14px 50px rgba(105, 45, 181, 0.28),
    inset 0 1px 0 rgba(238, 224, 255, 0.42);
  color: #fff;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  line-height: 1.35;
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.cta-button:hover {
  box-shadow:
    0 18px 65px rgba(132, 68, 218, 0.44),
    inset 0 1px 0 rgba(242, 230, 255, 0.5);
  transform: translateY(-2px);
}

.cta-button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 5px;
}

.proof {
  display: flex;
  margin-top: 28px;
  align-items: center;
  gap: 15px;
}

.proof p {
  margin: 0;
  color: #aaa49c;
  font-size: 0.88rem;
  text-align: left;
}

.proof p strong {
  color: var(--white);
}

.proof-avatars {
  display: flex;
  padding-left: 8px;
}

.proof-avatars img,
.proof-avatars span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-left: -8px;
  place-items: center;
  border: 2px solid #0b0611;
  border-radius: 50%;
  box-shadow: 0 7px 22px rgba(0, 0, 0, 0.34);
}

.proof-avatars img {
  background: #120a19;
  object-fit: cover;
}

.proof-avatars span {
  background:
    radial-gradient(circle at 35% 28%, #c7a7f7, #53317c 48%, #100b16 80%);
  color: #f8efff;
  font-size: 0.67rem;
  font-weight: 800;
}

.intro {
  background:
    radial-gradient(circle at 50% 50%, rgba(212, 166, 83, 0.09), transparent 32rem),
    linear-gradient(180deg, var(--black), #090704, var(--black));
}

.intro .lead {
  max-width: 660px;
}

.intro .eyebrow,
.offer .eyebrow {
  color: var(--true-gold);
}

.intro h2 span,
.offer h2 span {
  background: linear-gradient(110deg, #bd8736, #f1cd79 48%, #c58b37);
  background-clip: text;
  color: transparent;
}

.intro .cta-button,
.offer .cta-button {
  border-color: rgba(245, 210, 132, 0.56);
  background: linear-gradient(105deg, #b77926, #edc875 50%, #bd7d29);
  box-shadow:
    0 14px 50px rgba(188, 124, 37, 0.22),
    inset 0 1px 0 rgba(255, 242, 202, 0.55);
  color: #130d05;
}

.intro .cta-button:hover,
.offer .cta-button:hover {
  box-shadow:
    0 18px 65px rgba(199, 140, 49, 0.34),
    inset 0 1px 0 rgba(255, 245, 215, 0.62);
}

.video-shell {
  position: relative;
  margin: 54px auto 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 34px;
  background: #100a17;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.65),
    0 0 70px rgba(128, 62, 210, 0.12);
}

.intro-video {
  max-width: 760px;
  aspect-ratio: 16 / 9;
  background: #050403;
}

.intro-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-video::after {
  display: none;
}

.video-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-shell::after,
.testimonial-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.35));
  content: "";
  pointer-events: none;
}

.play-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 1px solid rgba(255, 236, 185, 0.65);
  border-radius: 50%;
  background: linear-gradient(130deg, #bd7d28, #f1cd70, #bf7b25);
  box-shadow: 0 0 45px rgba(230, 177, 79, 0.28);
  color: #fff;
  transform: translate(-50%, -50%);
}

.play-button span {
  margin-left: 5px;
  font-size: 1.55rem;
}

.video-pending {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 99px;
  background: rgba(0, 0, 0, 0.65);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.micro-copy {
  margin: 24px 0 0;
  color: #817c75;
  font-size: 0.95rem;
}

.point {
  padding-bottom: 68px;
}

.point::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 80px;
  background: linear-gradient(var(--line), transparent);
  content: "";
}

.pillar-list {
  display: grid;
  margin-top: 58px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.pillar-card {
  position: relative;
  min-height: 300px;
  padding: 42px 40px 32px;
  text-align: center;
}

.pillar-card::before {
  display: none;
}

.pillar-card + .pillar-card {
  border-left: 1px solid rgba(212, 166, 83, 0.16);
}

.pillar-icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;
  place-items: center;
  border: 1px solid rgba(173, 116, 255, 0.4);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(151, 88, 238, 0.2), transparent 65%);
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 2.35rem;
  text-shadow: 0 0 25px rgba(181, 128, 255, 0.5);
}

.pillar-card h3 {
  margin-bottom: 28px;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  letter-spacing: -0.03em;
}

.ornament {
  display: flex;
  width: 130px;
  margin: 0 auto 25px;
  align-items: center;
  color: var(--gold);
  gap: 10px;
}

.ornament::before,
.ornament::after {
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-deep));
  content: "";
}

.ornament::after {
  background: linear-gradient(90deg, var(--gold-deep), transparent);
}

.pillar-card > p {
  max-width: 330px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

.pillar-card strong {
  display: block;
  margin-top: 30px;
  color: var(--true-gold);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
}

.offer {
  background:
    radial-gradient(circle at 50% 16%, rgba(212, 166, 83, 0.1), transparent 34rem),
    linear-gradient(180deg, #050403, #090704 52%, var(--black));
}

.offer .lead {
  max-width: 740px;
}

.member-showcase {
  width: min(1040px, calc(100% - 40px));
  margin-top: 58px;
  padding: clamp(32px, 5vw, 58px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 52px;
  background:
    radial-gradient(circle at 50% 18%, rgba(212, 166, 83, 0.075), transparent 31rem),
    linear-gradient(180deg, #0b0a0a, #060606 72%);
  box-shadow:
    0 42px 110px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.members-showcase-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(212, 166, 83, 0.15);
  border-radius: 32px;
  background: #020202;
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.5),
    0 0 45px rgba(212, 166, 83, 0.07);
}

.members-showcase-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
}

.benefits-title {
  margin: 48px auto 42px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  text-align: center;
}

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

.benefit-card {
  display: flex;
  min-height: 178px;
  padding: 32px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: rgba(13, 8, 19, 0.78);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.25);
  gap: 25px;
}

.benefit-icon {
  display: grid;
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  place-items: center;
  border: 1px solid var(--gold-deep);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.55rem;
}

.benefit-card h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.price-block {
  margin-top: 92px;
  padding: 70px 38px;
  border: 1px solid rgba(156, 99, 255, 0.28);
  border-radius: 44px;
  background:
    radial-gradient(circle at 50% 20%, rgba(151, 90, 235, 0.14), transparent 24rem),
    #0a0610;
}

.installment {
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 1;
}

.cash {
  margin: 22px 0 0;
  color: #c1bcb5;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.access-copy {
  margin: 24px 0 34px;
  color: #77736d;
  font-size: 1.1rem;
}

.checkout-placeholder {
  width: min(100%, 660px);
}

.safe-row {
  display: flex;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
  color: #aaa49d;
  font-size: 0.92rem;
  gap: 18px 32px;
}

.safe-row span::first-letter {
  color: var(--gold);
}

.journey-section {
  background:
    linear-gradient(180deg, var(--black), rgba(8, 4, 14, 0.9), var(--black)),
    url("/assets/tree.webp") center 15% / cover fixed;
}

.journey-section::before {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  content: "";
}

.journey-section > * {
  position: relative;
  z-index: 1;
}

.journey {
  position: relative;
  display: grid;
  max-width: 920px;
  margin-top: 68px;
  gap: 0;
}

.journey::before {
  position: absolute;
  top: 25px;
  bottom: 25px;
  left: 48px;
  width: 1px;
  background: linear-gradient(transparent, var(--gold-deep) 8%, var(--gold-deep) 92%, transparent);
  content: "";
}

.journey-step {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr;
  min-height: 230px;
  padding: 20px 0 42px;
  gap: 34px;
}

.journey-number {
  z-index: 1;
  display: grid;
  width: 64px;
  height: 64px;
  margin-left: 16px;
  place-items: center;
  border: 1px solid var(--gold-deep);
  border-radius: 50%;
  background: #0a0610;
  color: var(--gold);
  font-family: Georgia, serif;
}

.journey-step h3 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.journey-step .journey-subtitle {
  margin: 0 0 20px;
  color: var(--true-gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.45;
  text-transform: uppercase;
}

.journey-step .journey-copy {
  max-width: 740px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  line-height: 1.82;
}

.testimonials {
  background:
    radial-gradient(circle at 50% 40%, rgba(115, 52, 200, 0.11), transparent 34rem),
    linear-gradient(180deg, #06030b, #0a0611, var(--black));
}

.testimonial-grid {
  display: grid;
  max-width: 1120px;
  margin-top: 68px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background: #0d0913;
}

.testimonial-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.testimonial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.12) saturate(1.04);
}

.testimonial-media video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  background: #050505;
  object-fit: cover;
}

.testimonial-media video.portrait {
  background: #050308;
  object-fit: contain;
}

.testimonial-media:has(video)::after {
  display: none;
}

.testimonial-media .play-button {
  width: 72px;
  height: 72px;
}

.testimonial-copy {
  padding: 30px;
}

.testimonial-copy h3 {
  margin-bottom: 14px;
  font-size: 1.55rem;
}

.testimonial-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.testimonial-copy small {
  display: block;
  margin-top: 20px;
  color: var(--gold-deep);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.founder {
  padding-bottom: 120px;
  background:
    radial-gradient(circle at 80% 18%, rgba(116, 54, 190, 0.18), transparent 28rem),
    linear-gradient(180deg, #120a1a, #09050d 65%, var(--black));
}

.founder-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(36px, 7vw, 92px);
}

.founder-intro h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.founder-intro .lead {
  text-align: left;
}

.founder-intro > img {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 42px;
  object-fit: cover;
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.5);
}

.founder-bio {
  display: grid;
  margin-top: 88px;
  grid-template-columns: 1.35fr 0.65fr;
  gap: clamp(45px, 8vw, 100px);
}

.founder-bio > div > p:not(.eyebrow) {
  margin: 0 0 1.2em;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.founder-bio > div > p:not(.eyebrow):last-child {
  margin-bottom: 0;
}

.stats {
  margin: 0;
  padding: 0;
  list-style: none;
}

.stats li {
  display: flex;
  padding: 18px 0;
  flex-direction: column;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  gap: 5px;
}

.stats strong {
  color: var(--gold-light);
  font-size: 1.7rem;
}

.stats span {
  color: var(--muted);
}

.final {
  background:
    radial-gradient(circle at 50% 50%, rgba(142, 78, 224, 0.13), transparent 26rem),
    #050507;
}

.final .lead {
  max-width: 640px;
}

.final .cta-button {
  margin-top: 44px;
}

.faq {
  background: #060609;
}

.faq > .container {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 9vw, 120px);
}

.faq-heading {
  position: sticky;
  top: 48px;
  align-self: start;
}

.faq-heading h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.faq-heading .lead {
  text-align: left;
}

.faq-list details {
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.faq-list summary {
  position: relative;
  padding-right: 48px;
  cursor: pointer;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: -7px;
  right: 4px;
  color: var(--gold);
  content: "+";
  font-size: 2.2rem;
  font-weight: 400;
}

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

.faq-list details p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

footer {
  display: flex;
  min-height: 460px;
  padding: 80px 20px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background: #050508;
  color: #77747a;
  text-align: center;
}

footer img {
  width: min(300px, 76vw);
  margin-bottom: 46px;
  filter: drop-shadow(0 0 32px rgba(212, 166, 83, 0.1));
  opacity: 0.74;
}

footer p {
  max-width: 750px;
  margin: 0 0 18px;
  line-height: 1.7;
}

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

  .container,
  .narrow {
    width: min(100% - 32px, 680px);
  }

  .hero {
    min-height: auto;
    padding: 86px 0 72px;
    background:
      linear-gradient(180deg, rgba(5, 1, 10, 0.46) 0%, rgba(4, 1, 9, 0.72) 62%, var(--black) 100%),
      radial-gradient(circle at 50% 40%, rgba(139, 77, 235, 0.2), transparent 28rem),
      url("/assets/hero-collage-mobile.webp") center / cover no-repeat;
  }

  .journey-section {
    background-attachment: scroll;
  }

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

  .brand {
    width: 188px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 8.8vw, 3.35rem);
  }

  .gold-rule {
    margin: 35px auto 28px;
  }

  .hero-copy {
    max-width: 560px;
    font-size: 0.98rem;
  }

  .proof {
    flex-direction: column;
  }

  .proof p {
    text-align: center;
  }

  .pillar-card {
    min-height: auto;
    padding: 46px 12px 42px;
    border-left: 0;
  }

  .pillar-card strong {
    line-height: 1.7;
  }

  .pillar-card + .pillar-card {
    border-left: 0;
    border-top: 1px solid rgba(212, 166, 83, 0.16);
  }

  .benefits-grid,
  .pillar-list,
  .testimonial-grid,
  .founder-intro,
  .founder-bio,
  .faq > .container {
    grid-template-columns: 1fr;
  }

  .member-showcase {
    width: min(100% - 24px, 680px);
    padding: clamp(24px, 6vw, 38px);
    border-radius: 40px;
  }

  .members-showcase-visual {
    border-radius: 26px;
  }

  .benefit-card {
    min-height: 150px;
    padding: 27px 23px;
  }

  .price-block {
    margin-top: 66px;
    padding: 58px 20px;
    border-radius: 34px;
  }

  .installment {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .journey-section {
    background-attachment: scroll;
  }

  .journey {
    margin-top: 60px;
  }

  .journey::before {
    left: 29px;
  }

  .journey-step {
    grid-template-columns: 62px 1fr;
    min-height: 310px;
    gap: 18px;
  }

  .journey-number {
    width: 54px;
    height: 54px;
    margin-left: 2px;
  }

  .testimonial-grid {
    max-width: 620px;
  }

  .testimonial-card {
    border-radius: 28px;
  }

  .founder-intro {
    gap: 44px;
  }

  .founder-intro > div {
    text-align: center;
  }

  .founder-intro .lead {
    text-align: center;
  }

  .founder-intro > img {
    border-radius: 32px;
  }

  .founder-bio {
    margin-top: 58px;
  }

  .faq-heading {
    position: static;
    text-align: center;
  }

  .faq-heading .lead {
    text-align: center;
  }
}

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

  .eyebrow {
    margin-bottom: 17px;
    font-size: 0.61rem;
    letter-spacing: 0.26em;
  }

  h2 {
    margin-bottom: 22px;
    font-size: 1.9rem;
    line-height: 1.07;
  }

  .lead {
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .hero {
    min-height: auto;
    padding: 74px 0 58px;
  }

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

  .hero h1 {
    max-width: 340px;
    font-size: clamp(2.02rem, 9.9vw, 2.72rem);
    line-height: 1.02;
  }

  .hero-eyebrow {
    max-width: 275px;
    margin-bottom: 20px;
    font-size: 0.56rem;
    line-height: 1.6;
  }

  .brand {
    width: 174px;
    margin-bottom: 18px;
  }

  .gold-rule {
    margin: 26px auto 22px;
  }

  .hero-copy {
    max-width: 330px;
    margin-bottom: 26px;
    font-size: 0.91rem;
    line-height: 1.55;
  }

  .cta-button {
    width: 100%;
    min-height: 60px;
    padding: 16px 20px;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
  }

  .proof {
    margin-top: 24px;
  }

  .proof p {
    font-size: 0.8rem;
  }

  .intro h2 {
    font-size: 1.74rem;
  }

  .video-shell {
    margin-top: 34px;
    border-radius: 22px;
  }

  .play-button {
    width: 78px;
    height: 78px;
  }

  .video-pending {
    right: 10px;
    bottom: 10px;
    font-size: 0.5rem;
  }

  .pillar-list {
    margin-top: 44px;
  }

  .pillar-card {
    padding: 40px 8px 38px;
  }

  .pillar-card h3 {
    font-size: 1.35rem;
  }

  .pillar-card > p {
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .ornament {
    width: 150px;
  }

  .member-showcase {
    width: calc(100% - 24px);
    margin-top: 42px;
    padding: 28px 14px 30px;
    border-radius: 34px;
  }

  .members-showcase-visual {
    border-radius: 22px;
  }

  .benefits-title {
    margin: 34px auto 30px;
    font-size: 1.72rem;
  }

  .benefit-card {
    gap: 18px;
  }

  .benefit-icon {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }

  .benefit-card h3 {
    font-size: 1.08rem;
  }

  .benefit-card p {
    font-size: 0.89rem;
  }

  .safe-row {
    flex-direction: column;
    gap: 12px;
  }

  .journey-step {
    min-height: 275px;
  }

  .journey-step h3 {
    font-size: 1.55rem;
  }

  .journey-step .journey-subtitle {
    margin-bottom: 16px;
    font-size: 0.61rem;
    letter-spacing: 0.15em;
  }

  .journey-step .journey-copy {
    font-size: 0.91rem;
    line-height: 1.62;
  }

  .testimonial-copy {
    padding: 24px 22px 27px;
  }

  .testimonial-copy h3 {
    font-size: 1.35rem;
  }

  .testimonial-copy p {
    font-size: 0.91rem;
  }

  .installment {
    font-size: 2.75rem;
  }

  .cash {
    font-size: 1.3rem;
  }

  .price-block {
    padding: 48px 18px;
  }

  .founder-bio > div > p:last-child {
    font-size: 0.93rem;
    line-height: 1.67;
  }

  footer {
    min-height: 430px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
