:root {
  --bg: #070a08;
  --bg-soft: #0b100d;
  --surface: #101713;
  --surface-2: #151f19;
  --surface-3: #1a2820;
  --text: #f4f8f5;
  --muted: #a0ada5;
  --faint: #6e7b73;
  --green: #43d17a;
  --green-bright: #83f0aa;
  --green-dark: #1e8d4a;
  --red: #ff6262;
  --amber: #f3bd5b;
  --line: rgba(255, 255, 255, 0.1);
  --line-green: rgba(67, 209, 122, 0.3);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 85% 8%, rgba(67, 209, 122, 0.09), transparent 25rem),
    radial-gradient(circle at 10% 40%, rgba(67, 209, 122, 0.04), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--green-bright);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 2rem), 820px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 10, 8, 0.88);
}

.site-header::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  backdrop-filter: blur(18px);
  content: "";
  pointer-events: none;
}

.nav-wrap {
  display: flex;
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

/* Header logo */
.brand-logo {
  display: block;
  width: 340px;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Footer logo */
.site-footer .brand-logo {
  width: 360px;
  height: auto;
  max-width: 100%;
}

@media (max-width: 980px) {
  .brand-logo {
    width: 200px;
    height: auto;
  }

  .site-footer .brand-logo {
    width: 260px;
    height: auto;
  }
}

.brand-mark {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line-green);
  border-radius: 10px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.08) 49%, rgba(255, 255, 255, 0.08) 51%, transparent 52%),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    var(--surface);
  background-size: auto, 100% 10px, auto;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  bottom: 8px;
  width: 5px;
  border-radius: 2px;
  content: "";
}

.brand-mark::before {
  left: 10px;
  height: 17px;
  background: var(--red);
  box-shadow: 10px -8px 0 var(--green), 20px -15px 0 var(--green);
}

.brand-mark::after {
  bottom: 7px;
  left: 12px;
  width: 26px;
  height: 2px;
  background: var(--green-bright);
  box-shadow: none;
  transform: rotate(-26deg);
  transform-origin: right;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-size: 0.98rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.brand-sub {
  margin-top: 0.28rem;
  color: var(--green);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.main-nav a {
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
  transition: background 180ms ease, color 180ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: rgba(67, 209, 122, 0.09);
  color: var(--text);
}

.main-nav .nav-cta {
  margin-left: 0.35rem;
  border: 1px solid var(--line-green);
  color: var(--green-bright);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  padding: clamp(1.2rem, 2vw, 1.5rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, var(--line-green), transparent);
  content: "";
  opacity: 0.35;
}


.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.15rem;
  color: var(--green-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 1px;
  background: var(--green);
  content: "";
}

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

h1,
h2,
h3,
h4 {
  line-height: 1.12;
}

h1 {
  max-width: 14ch;
  margin-bottom: 1.35rem;
  font-size: clamp(3rem, 7vw, 6.4rem);
  letter-spacing: -0.065em;
}

.hero h1 em {
  color: var(--green);
  font-style: normal;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.03rem, 2vw, 1.2rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid var(--green);
  border-radius: 10px;
  background: var(--green);
  color: #041009;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  background: var(--green-bright);
  border-color: var(--green-bright);
  transform: translateY(-2px);
}

.button.secondary {
  border-color: var(--line);
  background: transparent;
  color: var(--text);
}

.button.secondary:hover {
  border-color: var(--line-green);
  background: rgba(67, 209, 122, 0.07);
}

.button.small {
  min-height: 42px;
  padding: 0.62rem 0.95rem;
  font-size: 0.82rem;
}

.button.disabled,
.button:disabled {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--faint);
  cursor: not-allowed;
  transform: none;
}

.proof-line {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  margin-top: 2rem;
  color: var(--faint);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.proof-line span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.proof-line span::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  content: "";
  box-shadow: 0 0 0 4px rgba(67, 209, 122, 0.1);
}

.market-panel {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(150deg, #101813, #090d0b);
  background-size: 100% 48px, 48px 100%, auto;
  box-shadow: var(--shadow);
}

.rtm-visual {
  display: block;
  width: 100%;
  height: auto;
}

.rtm-visual text {
  font-family: var(--font);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.section-head.center p {
  margin-inline: auto;
}

.market-panel::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 35%, rgba(67, 209, 122, 0.07), transparent 70%);
  content: "";
}

.chart-line {
  position: absolute;
  right: -10%;
  bottom: 24%;
  width: 94%;
  height: 3px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 24px rgba(67, 209, 122, 0.45);
  transform: rotate(-19deg);
}

.chart-line::after {
  position: absolute;
  top: -7px;
  right: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 16px solid var(--green);
  content: "";
}

.candle {
  position: absolute;
  bottom: var(--bottom);
  left: var(--left);
  width: 9px;
  height: var(--height);
  border-radius: 2px;
  background: var(--color);
  box-shadow: 0 0 16px color-mix(in srgb, var(--color), transparent 55%);
}

.candle::before {
  position: absolute;
  top: -14px;
  bottom: -14px;
  left: 4px;
  width: 1px;
  background: var(--color);
  content: "";
}

.signal-card {
  position: absolute;
  z-index: 2;
  right: 1.2rem;
  bottom: 1.2rem;
  left: 1.2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--line-green);
  border-radius: 14px;
  background: rgba(8, 13, 10, 0.88);
  backdrop-filter: blur(12px);
}

.signal-card .label {
  color: var(--faint);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-card strong {
  display: block;
  margin-top: 0.3rem;
  font-size: 1.05rem;
}

.signal-score {
  color: var(--green-bright);
  font-size: 2rem;
  font-weight: 850;
  line-height: 1;
}

.section {
  padding: clamp(2.75rem, 5vw, 4.5rem) 0;
}

.section.compact {
  padding: clamp(2rem, 4vw, 3.25rem) 0;
}

.section.tint {
  background: rgba(255, 255, 255, 0.018);
}

.section.green-glow {
  background:
    radial-gradient(circle at 50% 100%, rgba(67, 209, 122, 0.11), transparent 35rem),
    rgba(255, 255, 255, 0.015);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(1.5rem, 3vw, 1.75rem);
}

.section-head.center {
  display: block;
  max-width: 920px !important;
  margin-inline: auto;
  text-align: center;
}

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

.section-head.center .eyebrow::after {
  width: 24px;
  height: 1px;
  background: var(--green);
  content: "";
}

.section-head h2,
.page-hero h1 {
  margin-bottom: 0.75rem;
  letter-spacing: -0.05em;
}

.section-head h2 {
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  max-width: 18ch;
}

.section-head.center h2 {
  max-width: 920px !important;
}

.page-hero h1 {
  font-size: clamp(2.3rem, 5vw, 4.4rem);
}

.section-head p {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--muted);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1rem;
}

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

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

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

.card {
  position: relative;
  overflow: hidden;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent), var(--surface);
  transition: border-color 180ms ease, transform 180ms ease;
}

.card:hover {
  border-color: var(--line-green);
  transform: translateY(-3px);
}

.card .number,
.step-number {
  display: inline-grid;
  width: 36px;
  height: 36px;
  margin-bottom: 1.2rem;
  place-items: center;
  border: 1px solid var(--line-green);
  border-radius: 10px;
  background: rgba(67, 209, 122, 0.08);
  color: var(--green-bright);
  font-size: 0.78rem;
  font-weight: 850;
}

.card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.25rem;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.25rem;
  color: var(--green-bright);
  font-size: 0.83rem;
  font-weight: 800;
}

.card-link::after {
  content: "\2192";
  transition: transform 180ms ease;
}

.card:hover .card-link::after {
  transform: translateX(4px);
}

.icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 1.2rem;
  place-items: center;
  border: 1px solid var(--line-green);
  border-radius: 12px;
  background: rgba(67, 209, 122, 0.08);
  color: var(--green-bright);
  font-size: 1.1rem;
  font-weight: 850;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.split.reverse .visual-block {
  order: 2;
}

.split h2,
.content-block h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.1rem, 4.5vw, 3.8rem);
  letter-spacing: -0.045em;
}

.split p,
.content-block > p {
  color: var(--muted);
}

.visual-block {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 65% 35%, rgba(67, 209, 122, 0.2), transparent 12rem),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    var(--surface);
  background-size: auto, 100% 38px, 38px 100%, auto;
}

.visual-block .mean-line {
  position: absolute;
  top: 49%;
  right: 8%;
  left: 8%;
  height: 2px;
  border-top: 2px dashed rgba(255, 255, 255, 0.38);
}

.visual-block .mean-line::after {
  position: absolute;
  right: 0;
  bottom: 0.5rem;
  color: var(--muted);
  content: "MEAN";
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.zone {
  position: absolute;
  right: 7%;
  left: 7%;
  height: 17%;
  border: 1px solid;
  border-radius: 10px;
}

.zone.high {
  top: 10%;
  border-color: rgba(255, 98, 98, 0.45);
  background: rgba(255, 98, 98, 0.1);
}

.zone.low {
  bottom: 10%;
  border-color: rgba(67, 209, 122, 0.45);
  background: rgba(67, 209, 122, 0.1);
}

.zone-label {
  position: absolute;
  top: 50%;
  left: 1rem;
  color: currentColor;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateY(-50%);
}

.zone.high .zone-label {
  color: var(--red);
}

.zone.low .zone-label {
  color: var(--green-bright);
}

.price-path {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 270px;
  height: 180px;
  border: 4px solid var(--green);
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(20deg);
  opacity: 0.9;
}

.check-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0 2rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.85rem;
  color: var(--muted);
}

.check-list li::before {
  position: absolute;
  top: 0.15rem;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: rgba(67, 209, 122, 0.13);
  color: var(--green-bright);
  content: "\2713";
  font-size: 0.72rem;
  font-weight: 900;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.stat {
  padding: 1.4rem;
  background: var(--surface);
}

.stat strong {
  display: block;
  color: var(--green-bright);
  font-size: 1.45rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.82rem;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.steps::before {
  position: absolute;
  z-index: -1;
  top: 18px;
  right: 16%;
  left: 16%;
  height: 1px;
  background: var(--line-green);
  content: "";
}

.step {
  padding: 0 1rem;
  text-align: center;
}

.step-number {
  margin-inline: auto;
  background: var(--bg);
}

.step h3 {
  margin-bottom: 0.55rem;
}

.step p {
  color: var(--muted);
  font-size: 0.9rem;
}

.quote {
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--line-green);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(67, 209, 122, 0.1), transparent 45%),
    var(--surface);
}

.quote blockquote {
  max-width: 850px;
  margin: 0;
  font-size: clamp(1.5rem, 3.4vw, 2.65rem);
  font-weight: 720;
  letter-spacing: -0.035em;
  line-height: 1.3;
}

.quote cite {
  display: block;
  margin-top: 1.4rem;
  color: var(--green-bright);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid var(--line-green);
  border-radius: 24px;
  background:
    linear-gradient(120deg, rgba(67, 209, 122, 0.12), transparent 50%),
    var(--surface);
}

.cta-band h2 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
}

.cta-band p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
}

.signup {
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
}

.signup-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.signup h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

.signup p {
  margin-bottom: 0;
  color: var(--muted);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 50px;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-soft);
  color: var(--text);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--faint);
}

.form-stack {
  display: grid;
  gap: 1rem;
}

.form-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.form-note {
  margin: 0.65rem 0 0;
  color: var(--faint);
  font-size: 0.74rem;
}

.form-message {
  display: none;
  margin: 0.9rem 0 0;
  color: var(--green-bright);
  font-size: 0.84rem;
  font-weight: 700;
}

.form-message.show {
  display: block;
}

.page-hero {
  position: relative;
  padding: clamp(5rem, 9vw, 8rem) 0 clamp(3.5rem, 6vw, 5.5rem);
}

.page-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  content: "";
  opacity: 0.45;
}

.page-hero h1 {
  max-width: 19ch;
}

.page-hero p {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.03rem, 2vw, 1.18rem);
}

.page-hero-inner {
  display: flex;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.page-hero-inner > :first-child {
  flex: 1 1 0;
  min-width: 0;
}

.page-quote {
  flex: 0 0 clamp(220px, 28vw, 300px);
  margin: 0;
  padding: 1.4rem 1.6rem;
  border-left: 2px solid var(--line-green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(67, 209, 122, 0.04);
}

.page-quote p {
  margin: 0 0 0.75rem;
  color: var(--text);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-style: italic;
  line-height: 1.55;
  max-width: none;
}

.page-quote cite {
  display: block;
  color: var(--faint);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .page-hero-inner {
    flex-direction: column;
    gap: 1.8rem;
  }
  .page-quote {
    flex: none;
    width: 100%;
  }
}

.breadcrumbs {
  margin-bottom: 1.1rem;
  color: var(--faint);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: var(--green-bright);
}

.tag {
  display: inline-flex;
  padding: 0.3rem 0.58rem;
  border: 1px solid var(--line-green);
  border-radius: 999px;
  color: var(--green-bright);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tool-card,
.lesson-card,
.book-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.tool-card .tag,
.lesson-card .tag,
.book-card .tag {
  align-self: flex-start;
  margin-bottom: 1.1rem;
}

.tool-card .button,
.book-card .button {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.tool-card p,
.book-card p {
  margin-bottom: 1.4rem;
}

.lesson-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: auto;
  padding-top: 1rem;
  color: var(--faint);
  font-size: 0.75rem;
}

.featured-lesson {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
}

.featured-visual {
  position: relative;
  min-height: 420px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 70% 35%, rgba(67, 209, 122, 0.18), transparent 15rem),
    var(--bg-soft);
  background-size: 44px 44px, 44px 44px, auto, auto;
}

.featured-visual::before {
  position: absolute;
  top: 50%;
  right: 8%;
  left: 8%;
  height: 3px;
  border-radius: 50%;
  background: var(--green);
  content: "";
  transform: rotate(-12deg);
  box-shadow: 0 0 22px rgba(67, 209, 122, 0.4);
}

.featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem);
}

.featured-copy h2 {
  margin: 1rem 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.045em;
}

.featured-copy p {
  color: var(--muted);
}

.book-cover {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--line-green);
  box-shadow: 0 8px 40px rgba(67, 209, 122, 0.12), 14px 14px 0 rgba(67, 209, 122, 0.05);
  object-fit: contain;
}

.book-cover.future {
  border-style: dashed;
  color: var(--faint);
  box-shadow: none;
}

.book-cover-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 2 / 3;
  max-width: 280px;
  border-radius: 12px;
  border: 1px dashed rgba(67, 209, 122, 0.35);
  background: linear-gradient(145deg, rgba(67, 209, 122, 0.06) 0%, rgba(67, 209, 122, 0.02) 100%);
  box-shadow: 0 8px 40px rgba(67, 209, 122, 0.06), 14px 14px 0 rgba(67, 209, 122, 0.03);
}

.book-cover-placeholder-inner {
  text-align: center;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  padding: 1.5rem;
}

.books-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--green-bright);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.book-subhead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
}

.book-subheading,
.books-entry .book-subheading {
  margin: 0.65rem 0 1.25rem;
  color: #ffffff;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.35;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.01em;
}

.scorecard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin: 1.5rem 0;
}

.score {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  text-align: center;
}

.score strong {
  display: block;
  color: var(--green-bright);
  font-size: 1.25rem;
}

.score span {
  color: var(--faint);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: clamp(2rem, 7vw, 6rem);
}

.contact-side-stack {
  display: grid;
  align-content: start;
  gap: 1.25rem;
}

.contact-email-card {
  align-self: start;
}

.contact-email-card p {
  margin: 0 0 14px !important;
}

.contact-email-card p:last-child {
  margin-bottom: 0 !important;
}

.contact-list {
  display: grid;
  gap: 1rem;
}

.contact-item {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.contact-item h3 {
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.contact-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-mailerlite-card {
  align-self: start;
  min-width: 0;
  min-height: 0;
  height: auto;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-color: var(--line-green);
  background:
    radial-gradient(circle at top left, rgba(67, 209, 122, 0.1), transparent 42%),
    var(--surface);
}

.contact-mailerlite-card #mlb2-42690096.ml-form-embedContainer {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
}

.contact-mailerlite-card #mlb2-42690096.ml-form-embedContainer .ml-form-embedWrapper,
.contact-mailerlite-card #mlb2-42690096.ml-form-embedContainer .ml-form-embedWrapper.embedForm {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.contact-mailerlite-card #mlb2-42690096.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody,
.contact-mailerlite-card #mlb2-42690096.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody {
  padding: 0 !important;
}

.contact-mailerlite-card #mlb2-42690096.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedContent {
  margin-bottom: 1.35rem !important;
}

.contact-mailerlite-card #mlb2-42690096.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedContent h4 {
  margin: 0 0 0.65rem !important;
  color: #ffffff !important;
  font-family: inherit !important;
  font-size: clamp(1.45rem, 2.6vw, 2rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.12 !important;
}

.contact-mailerlite-card #mlb2-42690096.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedContent p {
  max-width: 54ch !important;
  color: var(--muted) !important;
  font-family: inherit !important;
  font-size: 0.96rem !important;
  line-height: 1.65 !important;
}

.contact-mailerlite-card #mlb2-42690096.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent,
.contact-mailerlite-card #mlb2-42690096.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow,
.contact-mailerlite-card #mlb2-42690096.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {
  margin-bottom: 0.9rem !important;
}

.contact-mailerlite-card #mlb2-42690096.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input,
.contact-mailerlite-card #mlb2-42690096.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow textarea {
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.96) !important;
  color: #07100b !important;
  font-family: inherit !important;
  font-size: 1rem !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35) !important;
}

.contact-mailerlite-card #mlb2-42690096.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input {
  min-height: 54px !important;
}

.contact-mailerlite-card #mlb2-42690096.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow textarea {
  min-height: 150px !important;
  resize: vertical !important;
}

.contact-mailerlite-card #mlb2-42690096.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::placeholder,
.contact-mailerlite-card #mlb2-42690096.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow textarea::placeholder {
  color: rgba(7, 16, 11, 0.55) !important;
}

.contact-mailerlite-card #mlb2-42690096.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions,
.contact-mailerlite-card #mlb2-42690096.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissionsContent,
.contact-mailerlite-card #mlb2-42690096.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissionsContent.privacy-policy {
  margin: 0 !important;
  padding: 0 !important;
}

.contact-mailerlite-card #mlb2-42690096.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody p,
.contact-mailerlite-card #mlb2-42690096.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody span,
.contact-mailerlite-card #mlb2-42690096.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody label,
.contact-mailerlite-card #mlb2-42690096.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .label-description,
.contact-mailerlite-card #mlb2-42690096.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissionsContent p {
  color: rgba(255, 255, 255, 0.72) !important;
  font-family: inherit !important;
  font-size: 0.9rem !important;
  line-height: 1.55 !important;
}

.contact-mailerlite-card #mlb2-42690096.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissionsContent p {
  text-align: center !important;
}

.contact-mailerlite-card #mlb2-42690096.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .contact-form-disclaimer {
  margin: 12px 0 20px !important;
  color: rgba(255, 255, 255, 0.55) !important;
  font-family: inherit !important;
  font-size: 0.85rem !important;
  line-height: 1.5 !important;
}

.contact-mailerlite-card #mlb2-42690096.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions,
.contact-mailerlite-card #mlb2-42690096.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissionsContent,
.contact-mailerlite-card #mlb2-42690096.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissionsContent.privacy-policy {
  display: block !important;
}

.contact-mailerlite-card #mlb2-42690096.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions {
  margin-top: 14px !important;
}

.contact-mailerlite-card #mlb2-42690096.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissionsContent p {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 0.78rem !important;
  line-height: 1.45 !important;
}

.contact-mailerlite-card #mlb2-42690096.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit {
  margin: 0 !important;
}

.contact-mailerlite-card #mlb2-42690096.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.primary {
  min-height: 54px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #43d17a !important;
  color: #020604 !important;
  font-family: inherit !important;
  font-size: 0.98rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.01em !important;
  box-shadow: 0 14px 34px rgba(67, 209, 122, 0.24) !important;
}

.contact-mailerlite-card #mlb2-42690096.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.primary:hover {
  background: var(--green-2) !important;
}

.contact-mailerlite-card #mlb2-42690096.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody a,
.contact-mailerlite-card #mlb2-42690096.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissionsContent p a {
  color: var(--green-2) !important;
}

.contact-mailerlite-card #mlb2-42690096.ml-form-embedContainer .ml-form-successBody {
  border: 1px solid rgba(67, 209, 122, 0.24) !important;
  border-radius: 20px !important;
  padding: 1.5rem !important;
  background: rgba(67, 209, 122, 0.08) !important;
}

.contact-mailerlite-card #mlb2-42690096.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent {
  margin: 0 !important;
  text-align: center !important;
}

.contact-mailerlite-card #mlb2-42690096.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent h4 {
  margin: 0 0 0.5rem !important;
  color: #ffffff !important;
  font-family: inherit !important;
  font-size: 1.8rem !important;
  font-weight: 800 !important;
  text-align: center !important;
}

.contact-mailerlite-card #mlb2-42690096.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p {
  color: rgba(255, 255, 255, 0.76) !important;
  font-family: inherit !important;
  text-align: center !important;
}

.legal-copy h2 {
  margin-top: 3rem;
  margin-bottom: 0.8rem;
  font-size: 1.7rem;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
}

.notice {
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--amber);
  border-radius: 0 10px 10px 0;
  background: rgba(243, 189, 91, 0.08);
  color: #e8d7b5;
  font-size: 0.9rem;
}

.risk-reminder {
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line-green);
  border-left: 3px solid var(--green);
  border-radius: 12px;
  background: var(--surface);
}

.risk-reminder .eyebrow {
  margin-bottom: 0.6rem;
}

.risk-reminder h3 {
  margin: 0 0 0.85rem;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}

.risk-reminder p {
  margin: 0 0 0.6rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 820px;
}

.risk-reminder p:last-child {
  margin-bottom: 0;
}

.risk-reminder--full p {
  max-width: none;
}

.faq {
  display: grid;
  gap: 0.7rem;
}

.faq details {
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.faq summary {
  cursor: pointer;
  font-weight: 750;
}

.faq details p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050706;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(4, minmax(0, 0.75fr));
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding: clamp(2.25rem, 4.5vw, 3.5rem) 0 clamp(1.75rem, 3.5vw, 2.75rem);
}

.footer-about p {
  max-width: 350px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-title {
  margin-bottom: 1rem;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.84rem;
}

.footer-links a:hover {
  color: var(--green-bright);
}

.footer-note {
  color: var(--faint);
  font-size: 0.76rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 0.75rem;
}

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

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

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 1.25rem 1rem 2rem;
    background: rgba(7, 10, 8, 0.98);
    overflow-y: auto;
  }

  .menu-open .main-nav {
    display: grid;
    align-content: start;
    gap: 0.35rem;
  }

  .main-nav a {
    padding: 0.9rem 1rem;
    font-size: 1rem;
  }

  .main-nav .nav-cta {
    margin: 0.5rem 0 0;
    text-align: center;
  }

  .signup-grid {
    grid-template-columns: 1fr;
  }

  .market-panel {
    min-height: 390px;
  }

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

  .footer-grid {
    grid-template-columns: 1.5fr repeat(2, 1fr);
    align-items: start;
  }

  .footer-grid > :first-child {
    grid-row: span 2;
  }
}

@media (max-width: 760px) {
  .section-head {
    display: block;
  }

  .section-head.center,
  .section-head p,
  .page-hero h1,
  .page-hero p {
    max-width: 100% !important;
  }

  .section-head .button {
    margin-top: 1.25rem;
  }

  .grid-2,
  .grid-3,
  .split,
  .featured-lesson,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split.reverse .visual-block {
    order: initial;
  }

  .featured-visual {
    min-height: 300px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .steps::before {
    display: none;
  }

  .cta-band {
    grid-template-columns: 1fr;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

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

  .footer-grid > :first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 520px) {
  .container,
  .narrow {
    width: min(calc(100% - 1.25rem), var(--max));
  }

  .brand-copy {
    display: none;
  }

  .nav-wrap {
    min-height: 60px;
  }

  .main-nav {
    top: 60px;
  }

  .hero {
    padding-top: 4rem;
  }

  h1 {
    font-size: clamp(2.7rem, 15vw, 4.2rem);
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .market-panel {
    min-height: 330px;
  }

  .signal-card {
    grid-template-columns: 1fr;
  }

  .visual-block {
    min-height: 310px;
  }

  .scorecard {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > * {
    grid-column: auto !important;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin-top: 0.35rem;
  }
}

/* ─── Article / Blog Post ─────────────────────────────────────────── */

.article-wrap {
  width: min(calc(100% - 2rem), 1120px);
  margin-inline: auto;
}

.article-prose {
  width: 100%;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 2rem;
  color: var(--faint);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

.article-back:hover {
  color: var(--green-bright);
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.4rem;
}

.article-tags .tag {
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--line-green);
  border-radius: 999px;
  background: rgba(67, 209, 122, 0.06);
  color: var(--green-bright);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-title {
  max-width: none;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.article-intro {
  max-width: none;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2rem;
}

.key-idea {
  margin: 2.5rem 0;
  padding: 1.6rem 1.8rem;
  border: 1px solid var(--line-green);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(67, 209, 122, 0.08) 0%, rgba(67, 209, 122, 0.02) 100%);
}

.key-idea-label {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--green-bright);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.key-idea p {
  margin: 0;
  color: var(--text);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-style: italic;
  line-height: 1.6;
}

.article-body {
  color: var(--muted);
  font-size: clamp(0.98rem, 1.8vw, 1.07rem);
  line-height: 1.8;
}

.article-body p {
  margin: 0 0 1.4rem;
}

.article-body h2 {
  margin: 2.5rem 0 1rem;
  color: var(--text);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.article-body strong {
  color: var(--text);
  font-weight: 700;
}

.article-disclaimer {
  margin: 2.5rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 0.78rem;
  line-height: 1.6;
}

.article-cta {
  margin: 3.5rem 0 0;
  padding: 2.4rem clamp(1.4rem, 4vw, 2.4rem);
  border: 1px solid var(--line-green);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(67, 209, 122, 0.09) 0%, rgba(67, 209, 122, 0.02) 100%);
  box-shadow: 0 8px 48px rgba(67, 209, 122, 0.07);
}

.article-cta h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
}

.article-cta p {
  margin: 0 0 1.6rem;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.8vw, 1.04rem);
  line-height: 1.65;
}

.article-cta .button-row {
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* Category jump cards */
.cat-jump { display: block; text-decoration: none; padding: clamp(1.4rem, 3vw, 2rem); border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; }
.cat-jump:hover { border-color: var(--line-green); box-shadow: 0 8px 32px rgba(67, 209, 122, 0.1); transform: translateY(-2px); }
.cat-jump .tag { display: inline-block; margin-bottom: 0.75rem; }
.cat-jump h3 { margin: 0 0 0.5rem; font-size: clamp(1.05rem, 2vw, 1.2rem); color: var(--text); }
.cat-jump p { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.55; }
.cat-jump .cat-arrow { display: block; margin-top: 1rem; color: var(--green); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em; }

/* Category section header with View all */
.section-tight { padding-bottom: 0; }
.category-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.category-head > div { min-width: 0; }
.category-head h2 { margin: 0; font-size: clamp(1.3rem, 2.5vw, 1.6rem); letter-spacing: -0.02em; }
.category-head .eyebrow { margin-bottom: 0.35rem; }
.view-all { color: var(--green); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-decoration: none; text-transform: uppercase; white-space: nowrap; transition: color 0.2s; padding-bottom: 0.15rem; }
.view-all:hover { color: var(--green-bright); }

/* Lightweight category nav (lessons.html hero) */
.cat-nav { margin-top: 2rem; }
.cat-nav-label { margin: 0 0 0.75rem; color: var(--faint); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.cat-nav-hint { font-size: 0.68rem; font-weight: 400; letter-spacing: 0; text-transform: none; color: var(--faint); opacity: 0.7; }
.cat-nav-links { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.cat-nav-link { display: flex; align-items: center; gap: 0.6rem; padding: 0.55rem 0.9rem 0.55rem 0.55rem; border: 1px solid var(--line); border-radius: 999px; text-decoration: none; transition: border-color 0.2s, background 0.2s; }
.cat-nav-link:hover { border-color: var(--line-green); background: rgba(67, 209, 122, 0.04); }
.cat-nav-link .tag { margin: 0; }
.cat-nav-desc { color: var(--faint); font-size: 0.78rem; line-height: 1; }
@media (max-width: 600px) { .cat-nav-links { flex-direction: column; } .cat-nav-link { border-radius: var(--radius-sm); } }

/* Library section header — compact, not hero-scale */
.library-head { margin-bottom: 1.5rem; }
.library-head h2 { font-size: clamp(1.15rem, 2.2vw, 1.4rem); letter-spacing: -0.01em; line-height: 1.25; margin: 0.3rem 0 0.6rem; max-width: 40ch; }
.library-head p { color: var(--muted); font-size: clamp(0.88rem, 1.6vw, 0.96rem); line-height: 1.6; margin: 0; max-width: 60ch; }
.library-head .eyebrow { margin-bottom: 0.2rem; }

/* Centered variant for library-head */
.library-head.center { text-align: center; }
.library-head.center h2 { max-width: none; margin-inline: auto; }
.library-head.center p { margin-inline: auto; }

/* Centered cat-nav */
.cat-nav-center { align-items: center; }
.cat-nav-center .cat-nav-label { text-align: center; }
.cat-nav-center .cat-nav-links { justify-content: center; }

/* Lessons page: slightly smaller h2 to fit one line on desktop */
.section-head-lessons h2 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
}

/* Category link cards: tag on top, descriptor below, border wraps both */
.cat-nav-link {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  min-width: 160px;
}
.cat-nav-link .tag {
  margin: 0;
}
.cat-nav-desc {
  display: block;
  font-size: 0.72rem;
  color: var(--faint);
  line-height: 1.4;
}
.cat-nav-center .cat-nav-links {
  align-items: stretch;
}

/* Center content inside category filter boxes */
.cat-nav-link {
  align-items: center;
  text-align: center;
}

/* Tighten top gap between lesson grid and CTA on Learn page */
.section-cta-lessons {
  padding-top: clamp(1.1rem, 2.25vw, 1.875rem);
}

/* ── Nav dropdown ── */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.55rem 0.7rem;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
  white-space: nowrap;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active {
  background: rgba(67, 209, 122, 0.09);
  color: var(--text);
}

.nav-dd-arrow {
  font-size: 0.6em;
  opacity: 0.6;
  transition: transform 200ms ease;
}

.nav-dropdown.open .nav-dd-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 160px;
  padding: 0.4rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(7, 10, 8, 0.97);
  backdrop-filter: blur(18px);
  z-index: 200;
}

.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 7px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a[aria-current="page"] {
  background: rgba(67, 209, 122, 0.09);
  color: var(--text);
}

/* Mobile nav: dropdown inline, not absolute */
@media (max-width: 980px) {
  .nav-dropdown {
    display: contents;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.9rem 1rem;
    font-size: 1rem;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    min-width: unset;
    border: none;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    padding: 0 0 0 1rem;
    z-index: auto;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: grid;
    gap: 0.1rem;
  }

  .nav-dropdown-menu a {
    padding: 0.7rem 1rem;
    font-size: 1rem;
  }
}

/* Green highlighted feature card — used only on the homepage value center card */
.card.card-green-highlight {
  border-color: rgba(67, 209, 122, 0.5);
  background: linear-gradient(145deg, rgba(67, 209, 122, 0.18) 0%, rgba(67, 209, 122, 0.07) 100%), var(--surface);
}

.card.card-green-highlight h3 {
  color: var(--green-bright);
}

.card.card-green-highlight p {
  color: var(--muted);
}

.card.card-green-highlight:hover {
  border-color: var(--green);
  transform: translateY(-3px);
}

/* Subtle uppercase section label — used in callout cards (not a pill) */
.section-label {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* Anchor sections: offset scroll target below sticky header */
.anchor-section {
  scroll-margin-top: 84px;
}

/* Lessons grid section: halve bottom padding so gap to CTA is controlled from one side */
.section-lessons-grid {
  padding-bottom: clamp(1.7rem, 3vw, 2.75rem);
}

/* CTA on lessons page: remove top padding entirely — gap comes from grid section above */
.section-cta-lessons {
  padding-top: 0;
}

/* Books page book subheadings - final override */
.books-entry h3.book-subheading,
.split.books-entry h3.book-subheading,
h3.book-subheading {
  display: block !important;
  margin: 0.65rem 0 1.25rem !important;
  color: #ffffff !important;
  font-size: clamp(1.3rem, 2.1vw, 1.7rem) !important;
  line-height: 1.32 !important;
  font-weight: 800 !important;
  font-style: italic !important;
  letter-spacing: -0.015em !important;
}

/* system.html — module stack preview (hero right side) */
.module-stack {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.2rem;
  border: 1px solid var(--line-green);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(67, 209, 122, 0.05), transparent), var(--surface);
}

.module-stack-label {
  margin: 0 0 0.5rem;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.module-stack-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
}

.module-stack-item::before {
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

/* system.html — module grid cards */
.module-card {
  padding: 1.4rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,0.03), transparent), var(--surface);
  transition: border-color 180ms ease;
}

.module-card:hover {
  border-color: var(--line-green);
}

.module-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 750;
  color: var(--text);
}

.module-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* system.html — waitlist section */
.waitlist-box {
  max-width: 640px;
  margin-inline: auto;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid var(--line-green);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(67, 209, 122, 0.05), transparent), var(--surface);
  text-align: center;
}

.waitlist-box h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.waitlist-box p {
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.waitlist-note {
  margin-top: 1rem;
  color: var(--faint);
  font-size: 0.8rem;
}

.system-waitlist-cta {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  align-items: center;
}

.system-waitlist-cta > div:first-child p + p {
  margin-top: 1rem;
}

.system-waitlist-cta > div:first-child strong {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.system-waitlist-form-panel {
  align-self: center;
  min-width: 0;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(2, 6, 4, 0.64), rgba(2, 6, 4, 0.4));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.system-waitlist-form-panel #mlb2-42688950.ml-form-embedContainer {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
}

.system-waitlist-form-panel #mlb2-42688950.ml-form-embedContainer .ml-form-embedWrapper,
.system-waitlist-form-panel #mlb2-42688950.ml-form-embedContainer .ml-form-embedWrapper.embedForm {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.system-waitlist-form-panel #mlb2-42688950.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody,
.system-waitlist-form-panel #mlb2-42688950.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody {
  padding: 0 !important;
}

.system-waitlist-form-panel #mlb2-42688950.ml-form-embedContainer .ml-form-embedWrapper .row-form .ml-form-embedContent,
.system-waitlist-form-panel #mlb2-42688950.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody.row-form .ml-form-embedContent {
  display: none !important;
}

.system-waitlist-form-panel #mlb2-42688950.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent,
.system-waitlist-form-panel #mlb2-42688950.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow,
.system-waitlist-form-panel #mlb2-42688950.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {
  margin-bottom: 0.9rem !important;
}

.system-waitlist-form-panel #mlb2-42688950.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input {
  min-height: 54px !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.96) !important;
  color: #07100b !important;
  font-family: inherit !important;
  font-size: 1rem !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35) !important;
}

.system-waitlist-form-panel #mlb2-42688950.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::placeholder {
  color: rgba(7, 16, 11, 0.55) !important;
}

.system-waitlist-form-panel #mlb2-42688950.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions,
.system-waitlist-form-panel #mlb2-42688950.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissionsContent,
.system-waitlist-form-panel #mlb2-42688950.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissionsContent.privacy-policy {
  margin: 0 !important;
  padding: 0 !important;
}

.system-waitlist-form-panel #mlb2-42688950.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody p,
.system-waitlist-form-panel #mlb2-42688950.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody span,
.system-waitlist-form-panel #mlb2-42688950.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody label,
.system-waitlist-form-panel #mlb2-42688950.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .label-description,
.system-waitlist-form-panel #mlb2-42688950.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissionsContent p {
  color: rgba(255, 255, 255, 0.72) !important;
  font-family: inherit !important;
  font-size: 0.9rem !important;
  line-height: 1.55 !important;
}

.system-waitlist-form-panel #mlb2-42688950.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissionsContent p {
  text-align: center !important;
}

.system-waitlist-form-panel #mlb2-42688950.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit {
  margin: 1rem 0 0 !important;
}

.system-waitlist-form-panel #mlb2-42688950.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.primary {
  min-height: 54px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #43d17a !important;
  color: #020604 !important;
  font-family: inherit !important;
  font-size: 0.98rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.01em !important;
  box-shadow: 0 14px 34px rgba(67, 209, 122, 0.24) !important;
}

.system-waitlist-form-panel #mlb2-42688950.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.primary:hover {
  background: var(--green-2) !important;
}

.system-waitlist-form-panel #mlb2-42688950.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody a,
.system-waitlist-form-panel #mlb2-42688950.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissionsContent p a {
  color: var(--green-2) !important;
}

.system-waitlist-form-panel #mlb2-42688950.ml-form-embedContainer .ml-form-successBody {
  border: 1px solid rgba(67, 209, 122, 0.24) !important;
  border-radius: 20px !important;
  padding: 1.5rem !important;
  background: rgba(67, 209, 122, 0.08) !important;
}

.system-waitlist-form-panel #mlb2-42688950.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent {
  margin: 0 !important;
  text-align: center !important;
}

.system-waitlist-form-panel #mlb2-42688950.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent h4 {
  margin: 0 0 0.5rem !important;
  color: #ffffff !important;
  font-family: inherit !important;
  font-size: 1.8rem !important;
  font-weight: 800 !important;
  text-align: center !important;
}

.system-waitlist-form-panel #mlb2-42688950.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p {
  color: rgba(255, 255, 255, 0.76) !important;
  font-family: inherit !important;
  text-align: center !important;
}

@media (max-width: 960px) {
  .system-waitlist-cta {
    grid-template-columns: 1fr;
  }
}

/* system.html — module stack 2-column grid */
.module-stack-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

@media (max-width: 540px) {
  .module-stack-grid {
    grid-template-columns: 1fr;
  }
}

/* system.html — Context Stack preview section */
.stack-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.stack-preview-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,0.03), transparent), var(--surface);
  overflow: hidden;
  transition: border-color 180ms ease;
}

.stack-preview-card:hover {
  border-color: var(--line-green);
}

.stack-preview-image-wrap {
  height: 420px;
  overflow: hidden;
  border-bottom: 1px solid rgba(67, 209, 122, 0.18);
  background: rgba(0, 0, 0, 0.25);
}

.stack-preview-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.stack-preview-copy {
  padding: 1.25rem 1.4rem 1.5rem;
  flex: 1;
}

.stack-preview-copy h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 750;
  color: var(--text);
  line-height: 1.25;
}

.stack-preview-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .stack-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stack-preview-image-wrap {
    height: 360px;
  }
}

@media (max-width: 540px) {
  .stack-preview-grid {
    grid-template-columns: 1fr;
  }

  .stack-preview-image-wrap {
    height: 320px;
  }
}

/* system.html — stack group dividers in module preview section */
.stack-group {
  margin-bottom: 3rem;
}

.stack-group:last-child {
  margin-bottom: 0;
}

.stack-group-header {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.stack-group-header .section-label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.stack-group-header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* system.html — constrain hero module stack to match page-quote column width behavior */
.page-hero-inner .module-stack {
  flex: 0 0 clamp(320px, 40vw, 480px);
  max-width: 480px;
  min-width: 0;
  width: 100%;
}

@media (max-width: 700px) {
  .page-hero-inner .module-stack {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
}

/* system.html — three stack bundle cards */
.stack-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.stack-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.75rem;
  border: 1px solid var(--line-green);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(67, 209, 122, 0.04), transparent), var(--surface);
}

.stack-card-count {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.stack-card-name {
  margin: 0 0 0.75rem;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}

.stack-card-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.stack-card-top {
  flex: 1;
}

.stack-card-chips {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.stack-chip {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-2);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
}

.stack-card-note {
  margin: 0;
  color: var(--faint);
  font-size: 0.8rem;
  font-style: italic;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .stack-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .stack-card-grid {
    grid-template-columns: 1fr;
  }

  .stack-chip {
    white-space: normal;
  }
}

/* context-stack.html — hero right-side snapshot card */
.context-snapshot {
  flex: 0 0 clamp(260px, 30vw, 340px);
  padding: 1.5rem 1.6rem;
  border: 1px solid var(--line-green);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(67, 209, 122, 0.05), transparent), var(--surface);
}

.context-snapshot .eyebrow {
  margin-bottom: 0.85rem;
}

.context-snapshot-heading {
  margin: 0 0 1.1rem;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
}

.context-snapshot-rows {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.context-snapshot-rows li {
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
}

.context-snapshot-rows li strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.context-snapshot-rows li span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}

.context-snapshot-note {
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--faint);
  line-height: 1.55;
}

@media (max-width: 700px) {
  .context-snapshot {
    flex: none;
    width: 100%;
  }
}

/* context-stack.html — full-image module feature blocks */
.module-feature-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.visual-block.module-visual {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.context-bundle-wrap {
  border: 1px solid var(--line-green);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.context-bundle-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* Free Tools — form placeholder */
.free-tools-form-wrap {
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
}

.free-tools-form-placeholder {
  border: 1px dashed var(--line-green);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 2.5rem 2rem;
  text-align: center;
  color: var(--faint);
  font-size: 0.9rem;
}

.free-tools-form-placeholder-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 0.5rem;
}

.free-tools-form-placeholder p {
  margin: 0;
  color: var(--muted);
}

/* Free Tools — hero Starter Kit mockup */
.free-tools-page-hero .page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: clamp(2.5rem, 5vw, 4.5rem);
}

.free-tools-hero-copy {
  min-width: 0;
}

.free-tools-hero-benefits {
  max-width: 520px;
  margin: 1.4rem 0 0;
}

.free-tools-hero-benefits li {
  color: var(--text);
}

.starter-kit-optin-section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(67, 209, 122, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(7, 13, 10, 0.92), rgba(3, 6, 5, 0.96));
}

.starter-kit-optin-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 3rem);
  border: 1px solid rgba(67, 209, 122, 0.35);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(67, 209, 122, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(10, 22, 16, 0.96), rgba(4, 8, 6, 0.98));
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.42),
    0 0 46px rgba(67, 209, 122, 0.1);
}

.starter-kit-optin-content {
  max-width: 650px;
}

.starter-kit-optin-content h2 {
  max-width: 620px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.25rem, 4.8vw, 4.25rem);
  line-height: 0.98;
}

.starter-kit-optin-content p:not(.eyebrow) {
  max-width: 580px;
  margin-top: 1.15rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
}

.starter-kit-optin-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1rem;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

.starter-kit-optin-list li {
  position: relative;
  padding-left: 1.65rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.starter-kit-optin-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #43d17a;
  box-shadow: 0 0 18px rgba(67, 209, 122, 0.45);
}

.starter-kit-optin-form {
  min-width: 0;
  padding: clamp(1.35rem, 3vw, 1.85rem);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(2, 6, 4, 0.62), rgba(2, 6, 4, 0.38));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.starter-kit-optin-form #mlb2-42687792.ml-form-embedContainer {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
}

.starter-kit-optin-form #mlb2-42687792.ml-form-embedContainer .ml-form-embedWrapper,
.starter-kit-optin-form #mlb2-42687792.ml-form-embedContainer .ml-form-embedWrapper.embedForm {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.starter-kit-optin-form #mlb2-42687792.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody,
.starter-kit-optin-form #mlb2-42687792.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody {
  padding: 0 !important;
}

.starter-kit-optin-form #mlb2-42687792.ml-form-embedContainer .ml-form-embedWrapper .row-form .ml-form-embedContent,
.starter-kit-optin-form #mlb2-42687792.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody.row-form .ml-form-embedContent {
  display: none !important;
}

.starter-kit-optin-form #mlb2-42687792.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent,
.starter-kit-optin-form #mlb2-42687792.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow,
.starter-kit-optin-form #mlb2-42687792.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {
  margin-bottom: 0.9rem !important;
}

.starter-kit-optin-form #mlb2-42687792.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input {
  min-height: 54px !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.96) !important;
  color: #07100b !important;
  font-family: inherit !important;
  font-size: 1rem !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35) !important;
}

.starter-kit-optin-form #mlb2-42687792.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::placeholder {
  color: rgba(7, 16, 11, 0.55) !important;
}

.starter-kit-optin-form #mlb2-42687792.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions,
.starter-kit-optin-form #mlb2-42687792.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissionsContent,
.starter-kit-optin-form #mlb2-42687792.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissionsContent.privacy-policy {
  margin: 0 !important;
  padding: 0 !important;
}

.starter-kit-optin-form #mlb2-42687792.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody p,
.starter-kit-optin-form #mlb2-42687792.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody span,
.starter-kit-optin-form #mlb2-42687792.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody label,
.starter-kit-optin-form #mlb2-42687792.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .label-description,
.starter-kit-optin-form #mlb2-42687792.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissionsContent p {
  color: rgba(255, 255, 255, 0.72) !important;
  font-family: inherit !important;
  font-size: 0.9rem !important;
  line-height: 1.55 !important;
}

.starter-kit-optin-form #mlb2-42687792.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissionsContent p {
  text-align: center !important;
}

.starter-kit-optin-form #mlb2-42687792.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit {
  margin: 1rem 0 0 !important;
}

.starter-kit-optin-form #mlb2-42687792.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.primary {
  min-height: 54px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #43d17a !important;
  color: #020604 !important;
  font-family: inherit !important;
  font-size: 0.98rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.01em !important;
  box-shadow: 0 14px 34px rgba(67, 209, 122, 0.24) !important;
}

.starter-kit-optin-form #mlb2-42687792.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.primary:hover {
  background: var(--green-2) !important;
}

.starter-kit-optin-form #mlb2-42687792.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody a,
.starter-kit-optin-form #mlb2-42687792.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissionsContent p a {
  color: var(--green-2) !important;
}

.starter-kit-optin-form #mlb2-42687792.ml-form-embedContainer .ml-form-successBody {
  border: 1px solid rgba(67, 209, 122, 0.24) !important;
  border-radius: 20px !important;
  padding: 1.5rem !important;
  background: rgba(67, 209, 122, 0.08) !important;
}

.starter-kit-optin-form #mlb2-42687792.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent {
  margin: 0 !important;
  text-align: center !important;
}

.starter-kit-optin-form #mlb2-42687792.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent h4 {
  margin: 0 0 0.5rem !important;
  color: #ffffff !important;
  font-family: inherit !important;
  font-size: 1.8rem !important;
  font-weight: 800 !important;
  text-align: center !important;
}

.starter-kit-optin-form #mlb2-42687792.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p {
  color: rgba(255, 255, 255, 0.76) !important;
  font-family: inherit !important;
  text-align: center !important;
}

@media (max-width: 960px) {
  .starter-kit-optin-card {
    grid-template-columns: 1fr;
  }

  .starter-kit-optin-content,
  .starter-kit-optin-content h2,
  .starter-kit-optin-content p:not(.eyebrow) {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .starter-kit-optin-card {
    padding: 1.25rem;
    border-radius: 24px;
  }

  .starter-kit-optin-list {
    grid-template-columns: 1fr;
  }

  .starter-kit-optin-form {
    padding: 1rem;
  }
}

#inside-the-kit .kit-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

#inside-the-kit .card {
  align-items: center;
  text-align: center;
}

#inside-the-kit .card .check-list {
  width: fit-content;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

#inside-the-kit .card .check-list li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 0.55rem;
  align-items: start;
  padding-left: 0;
}

#inside-the-kit .card .check-list li::before {
  position: static;
  margin-top: 0.15rem;
}

@media (max-width: 1000px) {
  #inside-the-kit .kit-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  #inside-the-kit .kit-card-grid {
    grid-template-columns: 1fr;
  }
}

#more-free-tools .tool-card {
  align-items: center;
  text-align: center;
}

#more-free-tools .tool-card .tag,
#more-free-tools .tool-card .button {
  align-self: center;
}

.free-tools-final-cta > div:first-child {
  max-width: 650px;
}

.free-tools-final-cta > div:first-child h2,
.free-tools-final-cta > div:first-child p {
  max-width: 100%;
}

.free-tools-final-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  min-width: min(420px, 38vw);
  max-width: 460px;
}

.free-tools-final-actions .button {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.free-tools-final-actions-primary,
.free-tools-final-actions-wide {
  grid-column: 1 / -1;
}

@media (max-width: 760px) {
  .free-tools-final-actions {
    grid-template-columns: 1fr;
    min-width: 0;
    max-width: none;
  }
}

.free-tools-hero-mockup {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
}

.free-tools-hero-mockup img {
  display: block;
  width: 100%;
  max-width: 460px;
  height: auto;
  border: 1px solid var(--line-green);
  border-radius: var(--radius);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.45),
    0 0 42px rgba(67, 209, 122, 0.12);
}

@media (max-width: 900px) {
  .free-tools-page-hero .page-hero-inner {
    grid-template-columns: 1fr;
    row-gap: 2.5rem;
    align-items: start;
  }

  .free-tools-hero-mockup {
    width: 100%;
    max-width: 480px;
    margin-inline: auto;
  }
}

/* Macro Playbook landing page and approved entry points */
.macro-playbook-page {
  --macro-section-y: 56px;
}

.macro-playbook-page .macro-playbook-hero,
.macro-playbook-page #inside-the-playbook,
.macro-playbook-page .macro-playbook-use-section,
.macro-playbook-page .macro-playbook-optin-section,
.macro-playbook-page .macro-playbook-final-section,
.macro-playbook-page .macro-playbook-risk-section {
  padding-top: var(--macro-section-y);
  padding-bottom: var(--macro-section-y);
}

.macro-playbook-hero-inner {
  display: flex;
  gap: clamp(3rem, 5vw, 4rem);
  align-items: center;
}

.macro-playbook-hero-copy {
  flex: 1 1 55%;
  min-width: 0;
}

.macro-playbook-hero-copy h1 {
  max-width: none;
  font-size: clamp(2.15rem, 6.8vw, 5rem);
  line-height: 0.98;
}

.macro-playbook-hero-copy h1 span {
  white-space: nowrap;
}

.macro-playbook-hero-copy > p:not(.eyebrow) {
  max-width: 650px;
}

.macro-playbook-benefits {
  margin: 1.5rem 0 2rem;
}

.macro-playbook-benefits li {
  color: var(--text);
}

.page-hero-inner .macro-playbook-hero-card {
  flex: 0 0 clamp(390px, 41vw, 480px);
  display: block;
  width: 100%;
  max-width: 480px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-green);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 5%, rgba(67, 209, 122, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(67, 209, 122, 0.06), transparent 55%),
    var(--surface);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.38),
    0 0 34px rgba(67, 209, 122, 0.08);
}

.macro-playbook-hero-card-image {
  height: clamp(230px, 24vw, 300px);
  overflow: hidden;
  border-bottom: 1px solid rgba(67, 209, 122, 0.22);
  background: #020604;
}

.macro-playbook-hero-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 39%;
}

.macro-playbook-hero-card-content {
  padding: 1.25rem 1.35rem 1.35rem;
}

.macro-playbook-hero-card-content .module-stack-label {
  margin-bottom: 0.8rem;
}

.macro-playbook-hero-card-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
  gap: 0.45rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.macro-playbook-hero-card-list li {
  position: relative;
  min-height: 34px;
  padding: 0.42rem 0 0.42rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.35;
}

.macro-playbook-hero-card-list li::before {
  position: absolute;
  top: 50%;
  left: 0.2rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  content: "";
  box-shadow: 0 0 10px rgba(67, 209, 122, 0.35);
  transform: translateY(-50%);
}

.macro-playbook-optin-section {
  scroll-margin-top: 110px;
  background:
    radial-gradient(circle at 50% 0%, rgba(67, 209, 122, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(7, 13, 10, 0.92), rgba(3, 6, 5, 0.96));
}

.macro-playbook-optin-card {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border: 1px solid rgba(67, 209, 122, 0.35);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(67, 209, 122, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(10, 22, 16, 0.96), rgba(4, 8, 6, 0.98));
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.42),
    0 0 46px rgba(67, 209, 122, 0.1);
}

.macro-playbook-optin-content {
  max-width: 640px;
}

.macro-playbook-optin-content h2 {
  max-width: 610px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.25rem, 4.8vw, 4.25rem);
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.macro-playbook-optin-content > p:not(.eyebrow) {
  max-width: 580px;
  margin-top: 1.15rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
}

.macro-playbook-download-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.macro-playbook-download-list li {
  position: relative;
  padding: 0.72rem 0.75rem 0.72rem 2rem;
  border: 1px solid rgba(67, 209, 122, 0.17);
  border-radius: 10px;
  background: rgba(67, 209, 122, 0.045);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.84rem;
  font-weight: 700;
}

.macro-playbook-download-list li::before {
  position: absolute;
  top: 50%;
  left: 0.75rem;
  color: var(--green-bright);
  content: "\2713";
  font-size: 0.78rem;
  font-weight: 900;
  transform: translateY(-50%);
}

.macro-playbook-optin-content .macro-playbook-education-note {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(67, 209, 122, 0.2);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
  line-height: 1.6;
}

.macro-playbook-optin-form {
  min-width: 0;
  padding: 0;
}

.macro-playbook-optin-form #mlb2-42774232.ml-form-embedContainer {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.macro-playbook-optin-form #mlb2-42774232.ml-form-embedContainer .ml-form-embedWrapper,
.macro-playbook-optin-form #mlb2-42774232.ml-form-embedContainer .ml-form-embedWrapper.embedForm {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: clamp(1.35rem, 3vw, 1.85rem) !important;
  border: 1px solid rgba(67, 209, 122, 0.3) !important;
  border-radius: 24px !important;
  background:
    radial-gradient(circle at top right, rgba(67, 209, 122, 0.1), transparent 36%),
    linear-gradient(180deg, rgba(8, 18, 13, 0.98), rgba(3, 9, 6, 0.98)) !important;
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(67, 209, 122, 0.07) !important;
}

.macro-playbook-optin-form #mlb2-42774232.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody,
.macro-playbook-optin-form #mlb2-42774232.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBodyDefault,
.macro-playbook-optin-form #mlb2-42774232.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody,
.macro-playbook-optin-form #mlb2-42774232.ml-form-embedContainer .row-form,
.macro-playbook-optin-form #mlb2-42774232.ml-form-embedContainer .row-success {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.macro-playbook-optin-form #mlb2-42774232 .ml-form-embedContent {
  display: none !important;
}

.macro-playbook-optin-form #mlb2-42774232.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent,
.macro-playbook-optin-form #mlb2-42774232.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow,
.macro-playbook-optin-form #mlb2-42774232.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {
  margin-bottom: 0.9rem !important;
}

.macro-playbook-optin-form #mlb2-42774232.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input {
  min-height: 54px !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.96) !important;
  color: #07100b !important;
  font-family: inherit !important;
  font-size: 1rem !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35) !important;
}

.macro-playbook-optin-form #mlb2-42774232.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody form,
.macro-playbook-optin-form #mlb2-42774232.ml-form-embedContainer .ml-form-embedWrapper .row-form,
.macro-playbook-optin-form #mlb2-42774232.ml-form-embedContainer .ml-form-align-center,
.macro-playbook-optin-form #mlb2-42774232.ml-form-embedContainer .ml-form-formContent {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.macro-playbook-optin-form #mlb2-42774232.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::placeholder {
  color: rgba(7, 16, 11, 0.55) !important;
}

.macro-playbook-optin-form #mlb2-42774232.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions,
.macro-playbook-optin-form #mlb2-42774232.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissionsContent,
.macro-playbook-optin-form #mlb2-42774232.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissionsContent.privacy-policy {
  margin: 0 !important;
  padding: 0 !important;
}

.macro-playbook-optin-form #mlb2-42774232.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody p,
.macro-playbook-optin-form #mlb2-42774232.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody span,
.macro-playbook-optin-form #mlb2-42774232.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody label,
.macro-playbook-optin-form #mlb2-42774232.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .label-description,
.macro-playbook-optin-form #mlb2-42774232.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissionsContent p {
  color: rgba(255, 255, 255, 0.72) !important;
  font-family: inherit !important;
  font-size: 0.9rem !important;
  line-height: 1.55 !important;
}

.macro-playbook-optin-form #mlb2-42774232.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissionsContent p {
  text-align: center !important;
}

.macro-playbook-optin-form #mlb2-42774232.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit {
  margin: 1rem 0 0 !important;
}

.macro-playbook-optin-form #mlb2-42774232.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.primary {
  min-height: 54px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #43d17a !important;
  color: #020604 !important;
  font-family: inherit !important;
  font-size: 0.98rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.01em !important;
  box-shadow: 0 14px 34px rgba(67, 209, 122, 0.24) !important;
}

.macro-playbook-optin-form #mlb2-42774232.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.primary:hover {
  background: #83f0aa !important;
}

.macro-playbook-optin-form #mlb2-42774232.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody a,
.macro-playbook-optin-form #mlb2-42774232.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissionsContent p a {
  color: #83f0aa !important;
}

.macro-playbook-optin-form #mlb2-42774232.ml-form-embedContainer .ml-form-successBody {
  border: 1px solid rgba(67, 209, 122, 0.24) !important;
  border-radius: 20px !important;
  padding: 1.5rem !important;
  background: rgba(67, 209, 122, 0.08) !important;
}

.macro-playbook-optin-form #mlb2-42774232.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent {
  margin: 0 !important;
  text-align: center !important;
}

.macro-playbook-optin-form #mlb2-42774232.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent h4 {
  margin: 0 0 0.5rem !important;
  color: #ffffff !important;
  font-family: inherit !important;
  font-size: 1.8rem !important;
  font-weight: 800 !important;
  text-align: center !important;
}

.macro-playbook-optin-form #mlb2-42774232.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p {
  color: rgba(255, 255, 255, 0.76) !important;
  font-family: inherit !important;
  text-align: center !important;
}

.macro-playbook-section-head {
  max-width: 820px;
}

.macro-playbook-section-head h2 {
  font-size: clamp(2.15rem, 4.3vw, 3.8rem);
}

.macro-playbook-card-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.macro-playbook-card-grid .card {
  display: flex;
  min-height: 225px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 1.35rem;
  text-align: center;
}

.macro-playbook-card-grid .card .number {
  width: 32px;
  height: 32px;
  margin-bottom: 0.9rem;
  margin-inline: auto;
}

.macro-playbook-card-grid .card h3 {
  font-size: 1.08rem;
}

.macro-playbook-card-grid .card p {
  font-size: 0.88rem;
  line-height: 1.55;
}

.macro-playbook-use-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.macro-playbook-use-card {
  min-height: 185px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(67, 209, 122, 0.045), transparent 55%),
    var(--surface);
  text-align: center;
}

.macro-playbook-use-card .step-number {
  margin-inline: auto;
  margin-bottom: 0.9rem;
}

.macro-playbook-use-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.08rem;
}

.macro-playbook-use-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.macro-playbook-final-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  width: min(100%, 430px);
}

.macro-playbook-final-actions .button {
  width: 100%;
  min-width: 0;
  padding-inline: 0.9rem;
  text-align: center;
}

.macro-playbook-final-cta {
  padding: clamp(1.65rem, 3.5vw, 2.5rem);
}

.macro-playbook-final-cta h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.8rem);
}

.macro-playbook-risk-reminder {
  padding: 1.25rem 1.5rem;
}

.macro-playbook-risk-reminder .eyebrow {
  margin-bottom: 0.4rem;
}

.macro-playbook-risk-reminder p {
  font-size: 0.84rem;
  line-height: 1.55;
}

.macro-playbook-entry-section {
  padding-top: clamp(2.8rem, 5vw, 4.5rem);
  padding-bottom: clamp(1.8rem, 3.5vw, 3rem);
}

.macro-playbook-entry-eyebrow {
  display: flex;
  width: fit-content;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.macro-playbook-entry-eyebrow::after {
  width: 24px;
  height: 1px;
  background: var(--green);
  content: "";
}

.macro-playbook-image-link {
  display: block;
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(67, 209, 122, 0.3);
  border-radius: 24px;
  background: var(--surface);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.38),
    0 0 38px rgba(67, 209, 122, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.macro-playbook-image-link:hover {
  border-color: rgba(131, 240, 170, 0.62);
  box-shadow:
    0 28px 78px rgba(0, 0, 0, 0.44),
    0 0 46px rgba(67, 209, 122, 0.14);
  transform: translateY(-3px);
}

.macro-playbook-image-link img {
  display: block;
  width: 100%;
  height: auto;
}

.macro-playbook-entry-section + #more-free-tools {
  padding-top: clamp(2.2rem, 4vw, 3.5rem);
}

.macro-playbook-system-entry .cta-band {
  border-color: rgba(67, 209, 122, 0.22);
  background:
    linear-gradient(120deg, rgba(67, 209, 122, 0.075), transparent 50%),
    var(--surface);
}

.macro-playbook-system-entry .cta-band h2 {
  font-size: clamp(1.75rem, 3.3vw, 2.7rem);
}

.macro-playbook-system-entry .button {
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 960px) {
  .macro-playbook-optin-card {
    grid-template-columns: 1fr;
  }

  .macro-playbook-optin-content,
  .macro-playbook-optin-content h2,
  .macro-playbook-optin-content > p:not(.eyebrow) {
    max-width: none;
  }

  .macro-playbook-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .macro-playbook-hero-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
  }

  .page-hero-inner .macro-playbook-hero-card {
    flex: none;
    width: 100%;
    max-width: none;
  }

  .macro-playbook-use-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .macro-playbook-page {
    --macro-section-y: 40px;
  }
}

@media (max-width: 640px) {
  .macro-playbook-hero-inner {
    gap: 2rem;
  }

  .page-hero-inner .macro-playbook-hero-card {
    max-width: 540px;
    margin-inline: auto;
  }

  .macro-playbook-hero-card-image {
    height: clamp(230px, 60vw, 340px);
  }

  .macro-playbook-hero-card-list {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    grid-template-rows: none;
  }

  .macro-playbook-optin-card {
    padding: 1.25rem;
    border-radius: 24px;
  }

  .macro-playbook-entry-section {
    padding-top: 2.5rem;
    padding-bottom: 1.5rem;
  }

  .macro-playbook-image-link {
    border-radius: 16px;
  }

  .macro-playbook-optin-form {
    padding: 0;
  }

  .macro-playbook-download-list,
  .macro-playbook-card-grid {
    grid-template-columns: 1fr;
  }

  .macro-playbook-card-grid .card,
  .macro-playbook-use-card {
    min-height: 0;
  }

  .macro-playbook-final-actions {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: none;
  }

  .macro-playbook-system-entry .button {
    width: 100%;
    white-space: normal;
  }
}

/* Free Tools Toolkit — access + unlocked pages */
.toolkit-access-hero {
  max-width: 760px;
}

.toolkit-access-hero p {
  margin-top: 1rem;
}

.toolkit-bookmark-note {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.toolkit-access-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.toolkit-access-list-card h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
}

.toolkit-access-form-card {
  min-width: 0;
  padding: clamp(1.35rem, 3vw, 1.85rem);
  border: 1px solid rgba(67, 209, 122, 0.35);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(67, 209, 122, 0.14), transparent 40%),
    linear-gradient(180deg, rgba(10, 22, 16, 0.96), rgba(4, 8, 6, 0.98));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.toolkit-access-disclaimer {
  margin: 1rem 0 0;
  color: var(--faint);
  font-size: 0.8rem;
  line-height: 1.55;
  text-align: center;
}

.toolkit-access-form #mlb2-42845622.ml-form-embedContainer {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
}

.toolkit-access-form #mlb2-42845622.ml-form-embedContainer .ml-form-embedWrapper,
.toolkit-access-form #mlb2-42845622.ml-form-embedContainer .ml-form-embedWrapper.embedForm {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.toolkit-access-form #mlb2-42845622.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody,
.toolkit-access-form #mlb2-42845622.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody {
  padding: 0 !important;
}

.toolkit-access-form #mlb2-42845622.ml-form-embedContainer .ml-form-embedWrapper .row-form .ml-form-embedContent,
.toolkit-access-form #mlb2-42845622.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody.row-form .ml-form-embedContent {
  margin: 0 0 1.25rem !important;
}

.toolkit-access-form #mlb2-42845622.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent h4 {
  color: #ffffff !important;
  font-family: inherit !important;
  font-size: 1.5rem !important;
  font-weight: 800 !important;
}

.toolkit-access-form #mlb2-42845622.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p {
  color: rgba(255, 255, 255, 0.74) !important;
  font-family: inherit !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
}

.toolkit-access-form #mlb2-42845622.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent,
.toolkit-access-form #mlb2-42845622.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow,
.toolkit-access-form #mlb2-42845622.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow {
  margin-bottom: 0.9rem !important;
}

.toolkit-access-form #mlb2-42845622.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input {
  min-height: 54px !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.96) !important;
  color: #07100b !important;
  font-family: inherit !important;
  font-size: 1rem !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35) !important;
}

.toolkit-access-form #mlb2-42845622.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::placeholder {
  color: rgba(7, 16, 11, 0.55) !important;
}

.toolkit-access-form #mlb2-42845622.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions,
.toolkit-access-form #mlb2-42845622.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissionsContent,
.toolkit-access-form #mlb2-42845622.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissionsContent.privacy-policy {
  margin: 0 !important;
  padding: 0 !important;
}

.toolkit-access-form #mlb2-42845622.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody p,
.toolkit-access-form #mlb2-42845622.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody span,
.toolkit-access-form #mlb2-42845622.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody label,
.toolkit-access-form #mlb2-42845622.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .label-description,
.toolkit-access-form #mlb2-42845622.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissionsContent p {
  color: rgba(255, 255, 255, 0.72) !important;
  font-family: inherit !important;
  font-size: 0.9rem !important;
  line-height: 1.55 !important;
}

.toolkit-access-form #mlb2-42845622.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissionsContent p {
  text-align: left !important;
}

.toolkit-access-form #mlb2-42845622.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit {
  margin: 1rem 0 0 !important;
}

.toolkit-access-form #mlb2-42845622.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button {
  min-height: 54px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #43d17a !important;
  color: #020604 !important;
  font-family: inherit !important;
  font-size: 0.98rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.01em !important;
  box-shadow: 0 14px 34px rgba(67, 209, 122, 0.24) !important;
}

.toolkit-access-form #mlb2-42845622.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button:hover {
  background: var(--green-2) !important;
}

.toolkit-access-form #mlb2-42845622.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody a,
.toolkit-access-form #mlb2-42845622.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissionsContent p a {
  color: var(--green-2) !important;
}

.toolkit-access-form #mlb2-42845622.ml-form-embedContainer .ml-form-successBody {
  border: 1px solid rgba(67, 209, 122, 0.24) !important;
  border-radius: 20px !important;
  padding: 1.5rem !important;
}

.toolkit-access-form #mlb2-42845622.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent {
  margin: 0 !important;
  text-align: center !important;
}

.toolkit-access-form #mlb2-42845622.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent h4 {
  margin: 0 0 0.5rem !important;
  color: #ffffff !important;
  font-family: inherit !important;
  font-size: 1.6rem !important;
  font-weight: 800 !important;
  text-align: center !important;
}

.toolkit-access-form #mlb2-42845622.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p {
  color: rgba(255, 255, 255, 0.76) !important;
  font-family: inherit !important;
  text-align: center !important;
}

@media (max-width: 960px) {
  .toolkit-access-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .toolkit-access-form-card {
    padding: 1.25rem;
    border-radius: 20px;
  }
}

@media (min-width: 761px) {
  #more-free-tools .tool-card--center-last {
    grid-column: 2;
  }
}

.toolkit-access-tool-list {
  row-gap: 0.7rem;
}

@media (min-width: 700px) {
  .toolkit-access-tool-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(5, auto);
    grid-auto-flow: column;
    column-gap: 1.75rem;
    row-gap: 0.75rem;
  }
}

/* Market Calendar — bottom CTA button group */
.market-calendar-final-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  min-width: min(420px, 38vw);
  max-width: 460px;
}

.market-calendar-final-actions .button {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.market-calendar-final-actions-primary {
  grid-column: 1 / -1;
}

@media (max-width: 760px) {
  .market-calendar-final-actions {
    grid-template-columns: 1fr;
    min-width: 0;
    max-width: none;
  }
}

/* Homepage — "What you will learn" heading, targeted only */
.home-learn-head h2,
.home-learn-section .section-head h2 {
  font-size: clamp(3rem, 5.2vw, 4.65rem);
}

@media (max-width: 760px) {
  .home-learn-head h2,
  .home-learn-section .section-head h2 {
    font-size: clamp(2.3rem, 5vw, 4.4rem);
  }
}

/* Start Here — "Fix the Problem" heading, targeted only */
.start-problem-head h2 {
  font-size: clamp(2rem, 4.4vw, 3.8rem);
}

/* Trading the Chop — targeted two-line section headings */
.split .chop-problem-heading {
  font-size: clamp(1.6rem, 3.1vw, 2.4rem);
}

/* Having Unclear Risk — targeted problem-page headings */
.split .unclear-risk-section-heading {
  font-size: clamp(1.7rem, 3.2vw, 2.55rem);
}

.section-head .unclear-risk-filter-heading {
  max-width: none;
  font-size: clamp(1.9rem, 3.3vw, 2.8rem);
}

@media (min-width: 901px) {
  .section-head .unclear-risk-filter-heading {
    white-space: nowrap;
  }
}

/* Trading Too Much — targeted two-line section headings */
.split .overtrading-problem-heading {
  font-size: clamp(1.6rem, 3.1vw, 2.4rem);
}

@media (max-width: 760px) {
  .start-problem-head h2 {
    font-size: clamp(2rem, 4.4vw, 2.6rem);
  }
}

/* Free Tools — lower-page spacing cleanup, page-specific only */
.starter-kit-optin-section {
  padding: clamp(2.75rem, 5.5vw, 4.5rem) 0;
}

.free-tools-bottom-cta,
.free-tools-bottom-risk {
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}

/* Lessons — hero heading, targeted only */
.lessons-hero-title {
  max-width: 36ch;
  font-size: clamp(2.1rem, 4.4vw, 3.8rem);
}

@media (max-width: 760px) {
  .lessons-hero-title {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }
}

/* System — "TradingView Modules" heading, targeted only */
.system-modules-head h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
}

@media (max-width: 760px) {
  .system-modules-head h2 {
    font-size: clamp(1.9rem, 6vw, 2.4rem);
  }
}

/* About — "Why this exists" heading, targeted only */
.about-why-head h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
}

/* About — "The core idea" heading, targeted only */
.about-core-head h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
}

@media (max-width: 760px) {
  .about-why-head h2,
  .about-core-head h2 {
    font-size: clamp(1.9rem, 6vw, 2.4rem);
  }
}

/* About page — tightened, page-specific section spacing */
.about-page .section {
  padding: clamp(2.25rem, 4.5vw, 3.5rem) 0;
}

/* Contact — hero heading, targeted only */
.contact-hero-title {
  max-width: 30ch;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

/* Contact — reduce gap between form section and resource cards */
.contact-form-section {
  padding-bottom: clamp(1.375rem, 2.5vw, 2.25rem);
}

.contact-resources-section {
  padding-top: clamp(1.375rem, 2.5vw, 2.25rem);
}

/* Legal pages — widen content area, targeted only (legal.html, privacy.html, terms.html) */
.narrow.legal-copy {
  width: min(calc(100% - 2rem), 1100px);
}

/* About RTM — bottom CTA button group */
.about-rtm-final-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  min-width: min(420px, 38vw);
  max-width: 460px;
}

.about-rtm-final-actions .button {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.about-rtm-final-actions-primary {
  grid-column: 1 / -1;
}

@media (max-width: 760px) {
  .about-rtm-final-actions {
    grid-template-columns: 1fr;
    min-width: 0;
    max-width: none;
  }
}

/* Footer — social icon row */
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1rem;
}

.footer-social-link {
  display: inline-flex;
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.88);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.footer-social-link svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  border-color: rgba(67, 209, 122, 0.45);
  background: rgba(67, 209, 122, 0.08);
  color: var(--green);
}

.footer-social-link:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

/* About RTM — educational visual sections (reversion-to-mean + bell curve) */
.rtm-visual-section,
.bell-curve-section {
  padding-top: clamp(2.75rem, 5vw, 4.5rem);
  padding-bottom: clamp(2.75rem, 5vw, 4.5rem);
}

/* About RTM — alternating two-column visual sections */
.about-rtm-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-rtm-split--image-left {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.about-rtm-split .section-head {
  display: block;
  max-width: none;
  margin-bottom: 0;
  text-align: left;
  margin-inline: 0;
}

.about-rtm-split .section-head h2,
.about-rtm-split .section-head p {
  max-width: none;
}

.about-rtm-visual-image-wrap {
  width: 100%;
  margin: 0;
}

.about-rtm-visual-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.25rem;
}

@media (max-width: 900px) {
  .about-rtm-split,
  .about-rtm-split--image-left {
    grid-template-columns: 1fr;
  }
}
