:root {
  --navy: #0e2b49;
  --navy-2: #08213a;
  --ink: #162331;
  --muted: #657180;
  --paper: #f6f3ec;
  --paper-2: #ebe7dc;
  --surface: #fffdf7;
  --line: rgba(14, 43, 73, 0.14);
  --yellow: #ffe15a;
  --yellow-2: #f4c430;
  --green: #2f7d65;
  --shadow: 0 22px 60px rgba(14, 43, 73, 0.13);
  --max: 1160px;
  --font: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Instrument Sans", var(--font);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #f7fbff;
  background-color: #03111d;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.085) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.085) 1px, transparent 1px);
  background-size: 44px 44px;
  background-position: center top;
  font-family: var(--font);
  line-height: 1.5;
}

body::before {
  content: none;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0;
}

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

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

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

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: 0;
  line-height: 1;
}

h1 {
  max-width: 790px;
  font-size: clamp(3rem, 6.6vw, 6.2rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
  font-weight: 800;
  line-height: 1.1;
}

.top-strip {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(var(--max), calc(100% - 32px));
  margin: 16px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  color: var(--yellow);
  background:
    linear-gradient(90deg, rgba(255, 225, 90, 0.04), rgba(255, 255, 255, 0.08), rgba(255, 225, 90, 0.04));
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
  padding: 14px 18px;
}

.trust-row,
.button {
  display: inline-flex;
  align-items: center;
}

.hero,
.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.78fr);
  gap: 52px;
  align-items: center;
  min-height: calc(100svh - 70px);
  padding: 58px 0 64px;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-self: start;
  width: fit-content;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: var(--surface);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  padding: 7px 10px;
}

.lead {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  font-weight: 600;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.button {
  position: relative;
  overflow: hidden;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  max-width: 280px;
  min-height: 54px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 900;
  white-space: nowrap;
  padding: 14px 20px;
  isolation: isolate;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.28) 45%, transparent 62%);
  transform: translateX(-130%);
  transition: transform 0.65s ease;
}

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

.button:hover::before {
  transform: translateX(130%);
}

.button:hover svg {
  transform: translateX(3px);
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.section-cta .button {
  max-width: 340px;
}

.hero-actions .primary,
.section-cta .button,
.price-card .button.full,
.final-cta .button {
  animation: ctaPulse 2.8s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow:
      0 18px 42px rgba(244, 196, 48, 0.26),
      0 0 0 0 rgba(255, 225, 90, 0.28),
      0 0 0 1px rgba(255, 255, 255, 0.14) inset;
  }

  50% {
    box-shadow:
      0 22px 54px rgba(244, 196, 48, 0.36),
      0 0 0 7px rgba(255, 225, 90, 0),
      0 0 0 1px rgba(255, 255, 255, 0.18) inset;
  }
}

.button svg,
.trust-row svg,
.pain-grid svg,
.feature-grid svg {
  width: 19px;
  height: 19px;
  transition: transform 0.18s ease;
}

.primary {
  color: #03111d;
  border-color: rgba(255, 225, 90, 0.42);
  background: linear-gradient(180deg, #ffe86e, #f4c430);
  box-shadow:
    0 18px 42px rgba(244, 196, 48, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.14) inset;
}

.primary:hover {
  background: linear-gradient(180deg, #fff08a, #ffd23c);
  box-shadow:
    0 22px 54px rgba(244, 196, 48, 0.36),
    0 0 0 1px rgba(255, 255, 255, 0.18) inset;
}

.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.light {
  color: #03111d;
  border-color: rgba(255, 255, 255, 0.34);
  background: linear-gradient(180deg, #fff08a, var(--yellow));
  box-shadow:
    0 18px 44px rgba(255, 225, 90, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.full {
  width: min(100%, 360px);
  max-width: 360px;
  justify-self: start;
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 9px 12px;
}

.community-console {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.console-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
  background: rgba(3, 17, 29, 0.7);
  padding: 24px;
}

.console-header span,
.decision-card span,
.price-head span,
.price small,
.loss-board span,
.belief-panel span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.console-header strong {
  display: block;
  margin-top: 6px;
  font-size: 1.45rem;
  letter-spacing: 0;
}

.console-header img {
  width: 86px;
  border-radius: 14px;
  background: #ffe15a;
  padding: 8px;
}

.session-list {
  display: grid;
  gap: 0;
}

.session-list article {
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 24px;
}

.session-list time {
  width: fit-content;
  height: fit-content;
  border-radius: 12px;
  color: var(--navy);
  background: #fff0a8;
  font-weight: 900;
  padding: 8px 10px;
}

.session-list strong,
.session-list span,
.console-footer strong,
.console-footer span {
  display: block;
}

.session-list span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 700;
}

.decision-card {
  margin: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.075);
  padding: 20px;
}

.decision-card span {
  color: var(--yellow);
}

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

.decision-card li {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  padding-left: 22px;
}

.decision-card li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.console-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.console-footer div {
  padding: 20px 24px;
}

.console-footer div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.console-footer strong {
  color: #fff;
  font-family: var(--display);
  font-size: 2.35rem;
  line-height: 1;
}

.console-footer span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 800;
}

.section {
  padding: 88px 0;
  scroll-margin-top: 110px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  gap: 48px;
  align-items: start;
  margin-top: 22px;
}

.copy-stack {
  display: grid;
  gap: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.7;
}

.copy-stack strong {
  color: var(--yellow);
}

.pain-grid,
.feature-grid,
.pricing-grid {
  display: grid;
  gap: 16px;
}

.pain-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.pain-grid article,
.feature-grid article,
.price-card,
.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.052));
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.pain-grid article {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 96px;
  font-weight: 900;
  padding: 20px;
}

.pain-grid svg {
  color: var(--green);
  flex: 0 0 auto;
}

.argument-band {
  width: 100%;
  max-width: none;
  color: #fff;
  background: rgba(3, 17, 29, 0.72);
  padding-inline: max(16px, calc((100vw - var(--max)) / 2));
}

.wide-copy {
  max-width: 920px;
}

.wide-copy .eyebrow {
  color: var(--yellow);
  border-color: rgba(255, 225, 90, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.wide-copy h2 {
  margin-top: 20px;
}

.loss-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.loss-board div {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  padding: 26px;
}

.loss-board strong {
  display: block;
  margin-top: 12px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.belief-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.85fr);
  gap: 18px;
}

.belief-panel,
.timeline {
  border-radius: 22px;
  padding: 32px;
}

.belief-panel {
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 225, 90, 0.14), transparent 38%),
    rgba(3, 17, 29, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.belief-panel span {
  color: var(--yellow);
}

.belief-panel h2 {
  margin-top: 16px;
}

.belief-panel p {
  margin-top: 18px;
  color: #d7e0e7;
  font-size: 1.2rem;
  font-weight: 700;
}

.timeline {
  display: grid;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
}

.timeline div {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.075);
  padding: 18px;
}

.timeline b,
.timeline span {
  display: block;
}

.timeline b {
  color: var(--yellow);
}

.timeline span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 700;
}

.section-head {
  display: grid;
  gap: 18px;
  max-width: 860px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}

.section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.7;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid article {
  min-height: 260px;
  padding: 26px;
}

.feature-grid svg {
  color: var(--green);
  margin-bottom: 22px;
}

.feature-grid p,
.price-card p,
.faq-list p {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 600;
  line-height: 1.65;
}

.feature-grid p {
  margin-top: 14px;
}

.feedback-section {
  padding-bottom: 80px;
}

.feedback-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 42px;
  align-items: start;
  align-content: start;
  min-height: 320vh;
}

.feedback-copy {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 225, 90, 0.14), transparent 36%),
    rgba(3, 17, 29, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.2);
  padding: 28px;
}

.feedback-copy > span,
.feedback-phone-shot figcaption {
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feedback-copy h3 {
  max-width: 420px;
}

.feedback-copy p {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 650;
  line-height: 1.65;
}

.feedback-markers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.feedback-markers small {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.075);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 8px 10px;
}

.feedback-reel-wrap {
  position: sticky;
  top: 32px;
  display: grid;
  justify-items: center;
}

.feedback-reel-window {
  position: relative;
  width: min(100%, 520px);
  height: min(820px, calc(100svh - 64px));
  min-height: 620px;
  overflow: hidden;
}

.feedback-reel-window::before,
.feedback-reel-window::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  z-index: 2;
  height: 48px;
  pointer-events: none;
}

.feedback-reel-window::before {
  top: 0;
  background: linear-gradient(#03111d, rgba(3, 17, 29, 0));
}

.feedback-reel-window::after {
  bottom: 0;
  background: linear-gradient(rgba(3, 17, 29, 0), #03111d);
}

.feedback-phone-track {
  display: grid;
  justify-items: center;
  gap: 28px;
  padding: 8px 0 34px;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.feedback-phone-shot {
  margin: 0;
  width: min(100%, 390px);
  filter: drop-shadow(0 28px 54px rgba(0, 0, 0, 0.34));
}

.feedback-phone-shot figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.feedback-phone-shot img {
  display: block;
  width: 100%;
}

.practice-section {
  padding-top: 40px;
}

.question-stack {
  display: grid;
  max-width: 860px;
  gap: 12px;
  margin: 0 auto;
}

.question-stack div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(16px);
  padding: 18px 22px;
}

.question-stack span {
  color: rgba(255, 255, 255, 0.66);
  font-weight: 800;
}

.question-stack strong {
  color: var(--yellow);
  font-size: 1.1rem;
}

.value-section {
  padding-top: 44px;
}

.value-stack {
  display: grid;
  max-width: 820px;
  gap: 10px;
  margin: 0 auto;
}

.value-stack div,
.value-total {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.14);
}

.value-stack div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
}

.value-stack span,
.value-total span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.value-stack strong {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
  white-space: nowrap;
}

.value-stack strong::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  top: 50%;
  height: 2px;
  border-radius: 999px;
  background: #ff4d4d;
  transform: translateY(-50%);
}

.value-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(820px, 100%);
  gap: 20px;
  margin: 16px auto 0;
  border-color: rgba(255, 225, 90, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 225, 90, 0.14), rgba(255, 255, 255, 0.06));
  padding: 22px;
}

.value-total > span {
  color: var(--yellow);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.value-price {
  display: grid;
  justify-items: end;
  gap: 4px;
}

.value-price .price-from {
  margin-bottom: 0;
}

.value-total strong,
.value-price strong {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 0.95;
  white-space: nowrap;
}

.value-total strong span,
.value-price strong span {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font);
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
}

.pricing-section {
  padding-top: 48px;
}

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

.price-card {
  position: relative;
  display: grid;
  gap: 22px;
  padding: 30px;
}

.price-card .button.full {
  width: min(100%, 360px);
}

.price-card.featured {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 225, 90, 0.16), transparent 40%),
    rgba(3, 17, 29, 0.76);
  box-shadow: 0 28px 74px rgba(14, 43, 73, 0.24);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--yellow);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 8px 11px;
}

.price-head span,
.price small {
  color: rgba(255, 255, 255, 0.58);
}

.featured .price-head span,
.featured p,
.featured li,
.featured .price small {
  color: #d7e6ee;
}

.featured .primary {
  color: #03111d;
  border-color: rgba(255, 225, 90, 0.48);
  background: linear-gradient(180deg, #fff08a, var(--yellow));
}

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

.price-card li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
  line-height: 1.45;
}

.price-card li::before {
  content: "\2713";
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-top: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  color: #03111d;
  background: #53d596;
  box-shadow: 0 8px 18px rgba(83, 213, 150, 0.18);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.featured li::before {
  background: var(--yellow);
  box-shadow: 0 8px 18px rgba(255, 225, 90, 0.18);
}

.price strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(3.2rem, 5vw, 4.6rem);
  line-height: 0.95;
}

.price-from {
  position: relative;
  display: inline-block;
  width: fit-content;
  margin-bottom: 4px;
  white-space: nowrap;
}

.price-from span {
  display: inline-block;
  color: rgba(255, 255, 255, 0.74);
}

.price-from::after {
  content: "";
  position: absolute;
  left: -3px;
  right: -3px;
  top: 50%;
  height: 2px;
  border-radius: 999px;
  background: #ff4d4d;
  transform: translateY(-50%);
}

.featured .price strong {
  color: #fff;
}

.price strong span {
  font-family: var(--font);
  font-size: 1rem;
}

.discord-section {
  padding-top: 58px;
}

.discord-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: 30px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 0%, rgba(88, 101, 242, 0.22), transparent 36%),
    rgba(3, 17, 29, 0.78);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.22);
  padding: 32px;
}

.discord-copy {
  display: grid;
  gap: 18px;
}

.discord-copy .eyebrow {
  color: #fff;
  border-color: rgba(88, 101, 242, 0.38);
  background: rgba(88, 101, 242, 0.28);
}

.discord-copy > p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 650;
  line-height: 1.65;
}

.discord-points {
  display: grid;
  gap: 10px;
}

.discord-points div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.075);
  padding: 14px;
}

.discord-points svg {
  width: 20px;
  height: 20px;
  color: #9aa6ff;
}

.discord-points span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  line-height: 1.45;
}

.discord-preview {
  display: grid;
  justify-items: center;
}

.discord-preview img {
  width: min(100%, 372px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
}

.team-section {
  padding-top: 58px;
}

.team-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.82fr);
  gap: 34px;
  align-items: center;
}

.team-photo {
  overflow: hidden;
  min-height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.24);
}

.team-photo img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.team-copy {
  display: grid;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 225, 90, 0.13), transparent 36%),
    rgba(3, 17, 29, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.2);
  padding: 30px;
}

.team-copy .copy-stack {
  font-size: 1rem;
}

.guarantee-section {
  padding-top: 48px;
}

.guarantee-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.86fr);
  gap: 26px;
  align-items: start;
  border: 1px solid rgba(255, 225, 90, 0.22);
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 225, 90, 0.16), transparent 34%),
    rgba(3, 17, 29, 0.78);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.22);
  padding: 34px;
}

.guarantee-copy {
  display: grid;
  gap: 18px;
}

.guarantee-copy .eyebrow {
  color: var(--yellow);
  border-color: rgba(255, 225, 90, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.guarantee-copy p:not(.eyebrow),
.guarantee-note p {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 650;
  line-height: 1.65;
}

.guarantee-steps {
  display: grid;
  gap: 10px;
}

.guarantee-steps div,
.guarantee-note {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(16px);
}

.guarantee-steps div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
}

.guarantee-steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--navy);
  background: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
}

.guarantee-steps strong,
.guarantee-note strong {
  color: #fff;
  font-weight: 900;
  line-height: 1.25;
}

.guarantee-note {
  grid-column: 1 / -1;
  padding: 22px;
}

.guarantee-action {
  grid-column: 1 / -1;
  margin-top: 0;
}

.guarantee-note p {
  margin-top: 8px;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 1fr);
  gap: 48px;
}

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

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  color: #fff;
  font-weight: 900;
}

.faq-list p {
  margin-top: 12px;
}

.final-cta {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 56px;
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 225, 90, 0.14), transparent 36%),
    rgba(3, 17, 29, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 42px;
}

.final-cta span {
  color: var(--yellow);
  font-weight: 900;
}

.final-cta h2 {
  max-width: 820px;
  margin-top: 10px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
  padding: 28px 0 38px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 800;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.footer-brand img {
  width: 34px;
  height: 34px;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .belief-section,
  .discord-layout,
  .team-layout,
  .guarantee-panel,
  .faq-section {
    grid-template-columns: 1fr;
  }

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

  .feedback-layout {
    grid-template-columns: 1fr;
    min-height: 330vh;
  }

  .feedback-copy {
    position: relative;
    top: auto;
  }

  .pricing-grid,
  .loss-board {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .top-strip {
    width: calc(100% - 20px);
    margin-top: 10px;
    border-radius: 14px;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    line-height: 1.35;
    padding: 10px 12px;
  }

  .hero,
  .section,
  .final-cta,
  .site-footer {
    width: calc(100% - 28px);
  }

  .hero {
    min-height: auto;
    gap: 28px;
    padding-top: 34px;
    padding-bottom: 42px;
  }

  h1 {
    font-size: clamp(2.42rem, 11vw, 3.05rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(1.82rem, 8vw, 2.3rem);
    line-height: 1;
  }

  h3 {
    font-size: 1.08rem;
  }

  .lead {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .hero-copy {
    gap: 16px;
  }

  .hero-actions,
  .button {
    width: fit-content;
    max-width: 100%;
  }

  .button {
    min-height: 50px;
    border-radius: 13px;
    font-size: 0.9rem;
    white-space: nowrap;
    padding: 13px 16px;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .trust-row span {
    width: 100%;
    border-radius: 14px;
    font-size: 0.86rem;
  }

  .console-header,
  .session-list article,
  .console-footer {
    grid-template-columns: 1fr;
  }

  .console-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 18px;
  }

  .console-header img {
    width: 72px;
  }

  .console-header strong {
    font-size: 1.2rem;
  }

  .session-list article {
    gap: 10px;
    padding: 16px 18px;
  }

  .session-list time {
    font-size: 0.82rem;
  }

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

  .decision-card li,
  .session-list span {
    font-size: 0.9rem;
  }

  .console-footer div {
    padding: 16px 18px;
  }

  .console-footer strong {
    font-size: 1.9rem;
  }

  .console-footer div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

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

  .section {
    padding: 56px 0;
  }

  .split {
    gap: 22px;
  }

  .copy-stack {
    gap: 14px;
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .pain-grid {
    gap: 10px;
    margin-top: 24px;
  }

  .pain-grid article {
    min-height: auto;
    border-radius: 15px;
    padding: 15px;
  }

  .loss-board {
    gap: 10px;
    margin-top: 24px;
  }

  .loss-board div,
  .feature-grid article,
  .discord-layout,
  .team-copy,
  .guarantee-panel,
  .faq-list details {
    border-radius: 16px;
    padding: 18px;
  }

  .team-layout {
    gap: 18px;
  }

  .team-photo,
  .team-photo img {
    min-height: 320px;
  }

  .feedback-layout {
    gap: 14px;
  }

  .feedback-copy {
    border-radius: 18px;
    padding: 18px;
  }

  .feedback-copy p {
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .feedback-markers small {
    font-size: 0.72rem;
    padding: 7px 9px;
  }

  .feedback-layout {
    min-height: 340vh;
  }

  .feedback-reel-wrap {
    top: 6px;
  }

  .feedback-reel-window {
    width: min(100%, 360px);
    height: min(680px, calc(100svh - 28px));
    min-height: 520px;
  }

  .feedback-phone-track {
    gap: 18px;
    padding: 0 0 24px;
  }

  .feedback-phone-shot {
    width: min(100%, 328px);
  }

  .loss-board strong {
    font-size: 1.08rem;
  }

  .question-stack div,
  .value-stack div,
  .value-total,
  .final-cta,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-card,
  .belief-panel,
  .timeline,
  .final-cta {
    padding: 18px;
    border-radius: 20px;
  }

  .belief-section,
  .pricing-grid,
  .discord-layout,
  .team-layout,
  .guarantee-panel,
  .faq-section {
    gap: 12px;
  }

  .belief-panel p,
  .section-head p:not(.eyebrow),
  .feature-grid p,
  .price-card p,
  .discord-copy > p:not(.eyebrow),
  .team-copy .copy-stack,
  .guarantee-copy p:not(.eyebrow),
  .guarantee-note p,
  .faq-list p {
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .guarantee-steps div {
    grid-template-columns: 36px 1fr;
    padding: 12px;
  }

  .discord-points div {
    grid-template-columns: 32px 1fr;
    padding: 12px;
  }

  .discord-preview img {
    border-radius: 16px;
  }

  .guarantee-steps span {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .guarantee-note {
    padding: 16px;
  }

  .timeline {
    gap: 10px;
  }

  .timeline div {
    padding: 15px;
  }

  .question-stack {
    gap: 10px;
  }

  .value-stack {
    gap: 9px;
  }

  .value-stack div {
    gap: 6px;
    padding: 14px 15px;
  }

  .value-stack span {
    font-size: 0.92rem;
  }

  .value-stack strong {
    font-size: 1rem;
  }

  .value-total {
    gap: 8px;
    padding: 18px;
  }

  .value-total strong {
    font-size: 2.75rem;
  }

  .question-stack div {
    gap: 8px;
    border-radius: 15px;
    padding: 15px;
  }

  .question-stack strong,
  .question-stack span {
    font-size: 0.92rem;
  }

  .price-card {
    gap: 15px;
  }

  .price-card li {
    font-size: 0.9rem;
    gap: 9px;
  }

  .price strong {
    font-size: 2.75rem;
  }

  .price-from span {
    white-space: nowrap;
  }

  .price-card .button.full {
    width: min(100%, 300px);
    justify-self: center;
  }

  .final-cta {
    margin-bottom: 34px;
  }

  .site-footer {
    padding-bottom: 28px;
  }

  .footer-brand {
    width: 100%;
    justify-content: center;
    gap: 7px;
  }

  .footer-brand img {
    width: 24px;
    height: 24px;
  }

  .footer-brand span {
    font-size: clamp(0.58rem, 2.45vw, 0.78rem);
    white-space: nowrap;
  }
}

@media (max-width: 390px) {
  .hero,
  .section,
  .final-cta,
  .site-footer {
    width: calc(100% - 22px);
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .lead,
  .copy-stack,
  .section-head p:not(.eyebrow) {
    font-size: 0.9rem;
  }

  .trust-row span,
  .pain-grid article,
  .feature-grid article,
  .value-stack div,
  .question-stack div,
  .price-card li {
    font-size: 0.84rem;
  }

  .team-photo,
  .team-photo img {
    min-height: 260px;
  }

  .price-card .button.full {
    width: 100%;
    max-width: 290px;
    font-size: 0.8rem;
    white-space: normal;
  }

  .feedback-reel-window {
    width: min(100%, 326px);
    height: min(610px, calc(100svh - 24px));
    min-height: 480px;
  }

  .feedback-phone-shot {
    width: min(100%, 300px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-actions .primary,
  .section-cta .button,
  .price-card .button.full,
  .final-cta .button {
    animation: none;
  }

  .button,
  .button::before,
  .button svg {
    transition: none;
  }
}
