:root {
  --ink: #101725;
  --muted: #5b6473;
  --paper: #ffffff;
  --cloud: #f3f6fb;
  --blue: #0755c9;
  --blue-dark: #061b63;
  --cyan: #16b8f3;
  --red: #e11d2e;
  --yellow: #ffcf32;
  --green: #16a66a;
  --line: rgba(16, 23, 37, 0.12);
  --shadow: 0 24px 70px rgba(6, 27, 99, 0.22);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px max(20px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 17, 44, 0.9);
  color: #fff;
  backdrop-filter: blur(16px);
}

.brand img {
  width: clamp(210px, 20vw, 292px);
}

.topbar nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar nav a,
.topbar__cta {
  text-decoration: none;
}

.topbar nav a:hover {
  color: var(--yellow);
}

.topbar__cta {
  border-radius: 6px;
  background: var(--red);
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(225, 29, 46, 0.35);
}

.launch-bar {
  position: relative;
  z-index: 12;
  background: linear-gradient(90deg, var(--yellow), #fff06a 52%, var(--yellow));
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(16, 23, 37, 0.16);
}

.launch-bar__grid {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}

.launch-bar__grid > * {
  min-width: 0;
}

.launch-bar strong,
.launch-bar a {
  font-weight: 950;
  text-transform: uppercase;
}

.launch-bar strong {
  font-size: 15px;
}

.launch-bar span {
  color: rgba(16, 23, 37, 0.78);
  font-size: 14px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.launch-bar a {
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  text-decoration: none;
  font-size: 12px;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 660px;
  overflow: hidden;
  padding: 42px 0 48px;
  color: #fff;
  background: #07143a;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 12, 32, 0.98) 0%, rgba(5, 12, 32, 0.88) 36%, rgba(5, 12, 32, 0.44) 68%, rgba(5, 12, 32, 0.14) 100%),
    radial-gradient(circle at 78% 40%, rgba(255, 207, 50, 0.18), transparent 28%),
    radial-gradient(circle at 80% 70%, rgba(22, 184, 243, 0.18), transparent 34%);
}

.hero__art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.82;
  filter: saturate(1.06) contrast(1.03);
}

.hero__overlay {
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 86%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 392px;
  gap: 28px;
  align-items: center;
}

.hero__copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 4px;
  background: currentColor;
  content: "";
}

.eyebrow--blue {
  color: var(--blue);
}

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

h1 {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: clamp(36px, 5.2vw, 68px);
  line-height: 0.92;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  font-family: "Arial Black", "Avenir Next Condensed", "Franklin Gothic Medium", Arial, sans-serif;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  font-family: "Arial Black", "Avenir Next Condensed", "Franklin Gothic Medium", Arial, sans-serif;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.15;
}

.hero__lede {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 20px 0 22px;
}

.hero__proof > * {
  min-width: 0;
}

.hero__proof div {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.hero__proof strong,
.hero__proof span {
  display: block;
}

.hero__proof strong {
  color: var(--yellow);
  font-size: 28px;
  line-height: 1;
}

.hero__proof span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.3;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border: 0;
  border-radius: 6px;
  padding: 16px 24px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button--primary {
  color: #fff;
  background: linear-gradient(180deg, #ff3a43 0%, #d91124 100%);
  box-shadow: 0 18px 36px rgba(225, 29, 46, 0.34);
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.button--full {
  width: 100%;
}

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

.trust-strip span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.offer-card,
.checkout-panel {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.offer-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(244, 248, 255, 1) 100%);
}

.offer-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--red), var(--yellow), var(--cyan));
  content: "";
}

.offer-card__ribbon {
  display: inline-flex;
  margin-bottom: 14px;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(22, 166, 106, 0.12);
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.offer-snapshot {
  display: grid;
  gap: 14px;
  margin-bottom: 16px;
  border: 1px solid rgba(7, 85, 201, 0.12);
  border-radius: 10px;
  padding: 16px;
  background:
    linear-gradient(180deg, #edf3ff 0%, #ffffff 100%);
  box-shadow: 0 16px 32px rgba(16, 23, 37, 0.12);
}

.offer-snapshot__top {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.offer-snapshot__seal {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 23, 37, 0.12);
}

.offer-snapshot__seal img {
  width: 56px;
}

.offer-snapshot__eyebrow,
.offer-snapshot__title {
  margin: 0;
}

.offer-snapshot__eyebrow {
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-snapshot__title {
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.3;
}

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

.offer-snapshot__grid span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.offer-card__kicker {
  margin-bottom: 8px;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  display: grid;
  gap: 4px;
  margin-bottom: 18px;
}

.price__was {
  color: var(--muted);
  font-size: 24px;
  font-weight: 900;
  text-decoration: line-through;
}

.price__now {
  color: var(--red);
  font-size: 74px;
  font-weight: 950;
  line-height: 0.9;
}

.price__term {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-card__copy {
  color: var(--muted);
  font-size: 15px;
}

.release-meter {
  margin-top: 16px;
}

.release-meter div {
  height: 12px;
  border-radius: 999px;
  background: #e7edf7;
  overflow: hidden;
}

.release-meter span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--yellow), var(--red));
}

.release-meter p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.micro-proof {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.micro-proof span::before {
  color: var(--green);
  content: "+ ";
}

.ticker {
  overflow: hidden;
  background: var(--yellow);
  color: var(--ink);
}

.ticker__track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.ticker span {
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.section {
  padding: 88px 0;
}

.split,
.facts__grid,
.inside__grid,
.final-offer__grid,
.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 54px;
  align-items: center;
}

.problem {
  background: #fff;
}

.copy-stack {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 20px;
  font-weight: 700;
}

.problem-certificate {
  display: block;
  width: 100%;
  max-width: 560px;
  border-radius: 6px;
  box-shadow: 0 18px 46px rgba(16, 23, 37, 0.16);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading .eyebrow {
  justify-content: center;
}

.benefits {
  background:
    linear-gradient(180deg, #061b63 0%, #083e9b 100%);
  color: #fff;
}

.bonus-wall {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.bonus-wall::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(225, 29, 46, 0.08) 48% 52%, transparent 52%),
    linear-gradient(45deg, transparent 0 48%, rgba(7, 85, 201, 0.08) 48% 52%, transparent 52%);
  background-size: 120px 120px;
  content: "";
}

.bonus-wall__headline {
  position: relative;
  max-width: 860px;
  margin-bottom: 36px;
}

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

.bonus-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(16, 23, 37, 0.1);
}

.bonus-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.bonus-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
}

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

.benefit-grid article {
  min-height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.benefit-grid p,
.inside p,
.final-offer p {
  color: rgba(255, 255, 255, 0.78);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
}

.facts {
  overflow: hidden;
  background: var(--cloud);
}

.facts__copy p {
  color: var(--muted);
  font-size: 18px;
}

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 26px;
}

.symptom-grid span,
.stack-list span {
  border-radius: 6px;
  background: #fff;
  padding: 13px 14px;
  font-weight: 950;
  box-shadow: 0 8px 24px rgba(16, 23, 37, 0.08);
}

.symptom-grid span::before,
.stack-list span::before,
.question-list li::before,
.checkout-panel li::before {
  color: var(--green);
  content: "+ ";
}

.facts__image {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 620px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 45% 46%, rgba(22, 184, 243, 0.24), transparent 36%),
    linear-gradient(180deg, #fff 0%, #dce8ff 100%);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.facts__image img {
  width: min(94%, 540px);
  object-fit: contain;
}

.callout {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 270px;
  border-radius: var(--radius);
  padding: 18px;
  background: var(--red);
  color: #fff;
  box-shadow: 0 20px 42px rgba(225, 29, 46, 0.28);
}

.callout strong,
.callout span {
  display: block;
}

.inside,
.final-offer {
  color: #fff;
  background:
    linear-gradient(rgba(5, 17, 44, 0.89), rgba(5, 17, 44, 0.89)),
    url("assets/idea-authority-bg.png") center / cover;
}

.cta-band {
  padding: 26px 0;
  background: var(--yellow);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band__inner div {
  display: grid;
  gap: 3px;
}

.cta-band__inner span {
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-band__inner strong {
  font-size: clamp(25px, 3.4vw, 42px);
  line-height: 1;
  text-transform: uppercase;
}

.video-shell {
  aspect-ratio: 16 / 9;
  border: 8px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: #000;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.video-shell iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.question-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.question-list li {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 850;
}

.value-stack {
  background: #101725;
  color: #fff;
}

.section-heading--dark .eyebrow {
  color: var(--yellow);
}

.stack-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stack-list span {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: none;
}

.board {
  background: #fff;
}

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

.board-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(16, 23, 37, 0.07);
}

.board-portrait {
  aspect-ratio: 1 / 1;
  margin: 0 0 16px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #11316b 0%, #08162f 100%);
  box-shadow: 0 18px 36px rgba(16, 23, 37, 0.14);
}

.board-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.board-grid h3 {
  font-size: 17px;
}

.board-grid p,
.faq p,
.footer p {
  color: var(--muted);
}

.checkout-panel {
  padding: 30px;
}

.checkout-panel__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.checkout-panel__header span {
  color: var(--muted);
  font-weight: 950;
  text-transform: uppercase;
}

.checkout-panel__header strong {
  color: var(--red);
  font-size: 58px;
  line-height: 0.9;
}

.checkout-panel ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.checkout-panel li {
  color: var(--ink);
  font-weight: 850;
}

.faq {
  background: var(--cloud);
}

.faq__grid {
  align-items: start;
}

.faq__intro {
  display: grid;
  justify-items: start;
}

.faq-certificate {
  display: block;
  width: min(100%, 390px);
  margin: 2px auto 22px;
  border-radius: 5px;
  box-shadow: 0 14px 32px rgba(16, 23, 37, 0.18);
}

.faq-certificate-copy {
  display: grid;
  gap: 2px;
  width: min(100%, 520px);
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.14;
  font-weight: 950;
  text-align: center;
}

.faq-certificate-copy em {
  font-style: italic;
}

.faq-certificate-copy b {
  color: #b16b0b;
  text-transform: uppercase;
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 950;
}

details p {
  margin: 14px 0 0;
}

.footer {
  padding: 34px 0 96px;
  background: #071126;
}

.footer__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 12px;
  background: rgba(5, 17, 44, 0.94);
  color: #fff;
  box-shadow: 0 18px 46px rgba(5, 17, 44, 0.35);
  backdrop-filter: blur(14px);
}

.sticky-cta span {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.sticky-cta a {
  border-radius: 6px;
  background: var(--red);
  padding: 10px 14px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.auth-page,
.member-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(7, 85, 201, 0.08), transparent 38%),
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

.auth-wrap,
.member-shell {
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
  padding: 72px 0;
}

.auth-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 38px;
  align-items: stretch;
}

.auth-panel--narrow {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.auth-copy,
.auth-form,
.member-hero,
.member-grid article,
.member-status {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(16, 23, 37, 0.08);
}

.auth-copy {
  padding: clamp(28px, 5vw, 54px);
}

.auth-copy h1,
.member-hero h1 {
  color: var(--ink);
  font-size: clamp(32px, 5vw, 58px);
}

.auth-copy p,
.member-hero p,
.member-grid p,
.member-status span {
  color: var(--muted);
}

.auth-price {
  display: inline-grid;
  gap: 4px;
  margin-top: 18px;
  border-left: 6px solid var(--red);
  padding: 12px 16px;
  background: var(--cloud);
}

.auth-price span,
.member-grid span {
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.auth-price strong {
  font-size: 34px;
  line-height: 1;
}

.auth-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.auth-form label {
  display: grid;
  gap: 8px;
  font-weight: 850;
}

.auth-form input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.auth-form input:focus {
  outline: 3px solid rgba(7, 85, 201, 0.16);
  border-color: var(--blue);
}

.auth-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.auth-note a {
  color: var(--blue);
  font-weight: 900;
}

.auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button--light {
  border-color: rgba(16, 23, 37, 0.18);
  color: var(--ink);
  background: #fff;
}

.notice {
  border-radius: 6px;
  margin: 0;
  padding: 12px 14px;
  font-weight: 800;
}

.notice--error {
  border: 1px solid rgba(225, 29, 46, 0.28);
  color: #9f101d;
  background: rgba(225, 29, 46, 0.08);
}

.notice--warning {
  border: 1px solid rgba(255, 207, 50, 0.48);
  color: #6d5608;
  background: rgba(255, 207, 50, 0.18);
}

.notice--success {
  border: 1px solid rgba(22, 166, 106, 0.28);
  color: #0d7649;
  background: rgba(22, 166, 106, 0.1);
}

.member-shell {
  display: grid;
  gap: 24px;
}

.member-hero {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 5vw, 54px);
  color: var(--ink);
}

.member-hero .eyebrow {
  color: var(--blue);
}

.member-hero p {
  max-width: 820px;
}

.member-section-heading {
  display: grid;
  gap: 4px;
  margin-bottom: 20px;
}

.member-section-heading h2,
.member-panel h2 {
  margin-bottom: 6px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
}

.member-section-heading p,
.member-panel p {
  color: var(--muted);
}

.member-section-heading--split {
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  gap: 28px;
  align-items: end;
}

.member-section-heading--split > p {
  margin-bottom: 8px;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.member-grid article {
  padding: 24px;
}

.member-grid span {
  color: var(--red);
}

.member-grid h2 {
  margin-top: 12px;
  font-size: 24px;
}

.member-status {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
}

.member-status strong,
.member-status span {
  overflow-wrap: anywhere;
}

.member-quickstart,
.member-credentials,
.member-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(16, 23, 37, 0.08);
}

.member-credentials,
.member-quickstart {
  padding: clamp(22px, 4vw, 36px);
}

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

.credential-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 18px;
  align-items: center;
  min-height: 118px;
  border: 1px solid rgba(16, 23, 37, 0.1);
  border-radius: var(--radius);
  padding: 22px;
  color: var(--ink);
  background: #fff;
  text-decoration: none;
}

.credential-action span {
  grid-column: 1 / -1;
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.credential-action strong {
  font-size: 20px;
  line-height: 1.2;
}

.credential-action em {
  border-radius: 6px;
  padding: 9px 12px;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.credential-action:hover strong {
  color: var(--red);
}

.member-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.member-card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.member-card {
  display: grid;
  gap: 10px;
  min-height: 220px;
  border: 1px solid rgba(16, 23, 37, 0.1);
  border-radius: var(--radius);
  padding: 22px;
  background: #fff;
}

.member-card span,
.resource-row span {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.member-card h3 {
  margin: 0;
  font-size: 20px;
}

.member-card p {
  margin: 0;
  color: var(--muted);
}

.member-card a {
  align-self: end;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
}

.member-card a:hover,
.resource-row:hover strong {
  color: var(--red);
}

.member-card--quiet {
  min-height: 198px;
  background: var(--cloud);
}

.member-panel {
  display: grid;
  gap: 20px;
  padding: clamp(22px, 4vw, 36px);
}

.member-training {
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  align-items: center;
}

.member-video {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #07143a;
  aspect-ratio: 16 / 9;
  box-shadow: 0 18px 44px rgba(6, 27, 99, 0.2);
}

.member-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.resource-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.resource-row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 76px;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  text-decoration: none;
}

.resource-row strong {
  font-size: 17px;
  line-height: 1.25;
}

.resource-row em {
  border-radius: 6px;
  padding: 9px 12px;
  color: var(--blue);
  background: rgba(7, 85, 201, 0.08);
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.resource-row--video em {
  color: #fff;
  background: var(--red);
}

.modal-open {
  overflow: hidden;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.video-modal[aria-hidden="false"] {
  display: flex;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 17, 44, 0.78);
  backdrop-filter: blur(8px);
}

.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1040px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: #07143a;
  box-shadow: 0 28px 90px rgba(5, 17, 44, 0.42);
}

.video-modal__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  color: #fff;
  background: #071126;
}

.video-modal__bar strong {
  font-size: 15px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.video-modal__bar button {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font: inherit;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
}

.video-modal__bar button:focus {
  outline: 3px solid rgba(255, 207, 50, 0.5);
  outline-offset: 2px;
}

.video-modal__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.member-benefits {
  grid-template-columns: minmax(0, 0.65fr) minmax(320px, 1fr);
  align-items: start;
}

.member-benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.member-benefit-list span {
  border: 1px solid rgba(16, 23, 37, 0.1);
  border-radius: 6px;
  padding: 12px 14px;
  background: var(--cloud);
  font-size: 14px;
  font-weight: 850;
}

@media (max-width: 980px) {
  .topbar nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid,
  .split,
  .facts__grid,
  .inside__grid,
  .final-offer__grid,
  .faq__grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 28px;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__grid > * {
    min-width: 0;
  }

  .offer-card {
    width: 100%;
    max-width: 100%;
  }

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

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

  .auth-panel,
  .member-grid,
  .member-section-heading--split,
  .member-training,
  .member-benefits {
    grid-template-columns: 1fr;
  }

  .member-card-grid,
  .member-card-grid--four,
  .member-card-grid--six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .credential-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .topbar {
    min-height: 68px;
    padding: 10px 14px;
  }

  .brand img {
    width: 172px;
  }

  .topbar__cta {
    display: none;
  }

  .hero {
    padding: 50px 0 46px;
  }

  .hero__copy {
    max-width: 100%;
  }

  .hero__art {
    object-position: 72% center;
    opacity: 0.34;
  }

  h1 {
    font-size: clamp(18px, 7.2vw, 28px);
  }

  h2 {
    font-size: clamp(30px, 10vw, 44px);
  }

  .launch-bar strong {
    font-size: 13px;
  }

  .launch-bar span {
    font-size: 13px;
  }

  .hero__lede {
    font-size: 16px;
  }

  .hero__actions,
  .hero__proof,
  .trust-strip {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .offer-card {
    padding: 28px 22px;
  }

  .offer-snapshot__top,
  .offer-snapshot__grid {
    grid-template-columns: 1fr;
  }

  .hero__proof strong {
    font-size: 28px;
  }

  .hero__proof span {
    font-size: 11px;
  }

  .price__now {
    font-size: 64px;
  }

  .section {
    padding: 64px 0;
  }

  .benefit-grid,
  .bonus-grid,
  .board-grid,
  .stack-list,
  .symptom-grid {
    grid-template-columns: 1fr;
  }

  .launch-bar__grid,
  .cta-band__inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .launch-bar a {
    text-align: center;
  }

  .benefit-grid article {
    min-height: 0;
  }

  .facts__image {
    min-height: 500px;
  }

  .callout {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
  }

  .sticky-cta {
    right: 10px;
    bottom: 10px;
    left: 10px;
    justify-content: space-between;
    gap: 10px;
  }

  .sticky-cta span {
    max-width: 58%;
    font-size: 11px;
  }

  .auth-wrap,
  .member-shell {
    width: min(100% - 28px, var(--max));
    padding: 42px 0;
  }

  .member-card-grid,
  .member-card-grid--four,
  .member-card-grid--six,
  .member-benefit-list {
    grid-template-columns: 1fr;
  }

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

  .resource-row {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
  }

  .resource-row em {
    width: fit-content;
  }

  .video-modal {
    padding: 10px;
  }

  .video-modal__bar {
    align-items: start;
  }
}
