:root {
  color-scheme: light;
  --ink: #102019;
  --ink-soft: #35433d;
  --muted: #66716b;
  --paper: #f3f1e8;
  --paper-deep: #e8e4d7;
  --surface: #fffef8;
  --forest: #173f31;
  --forest-dark: #102a21;
  --forest-light: #2b684f;
  --brass: #d1a552;
  --brass-light: #f0d496;
  --line: rgba(16, 32, 25, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --shadow: 0 26px 80px rgba(9, 25, 18, 0.18);
  --shadow-soft: 0 16px 50px rgba(9, 25, 18, 0.1);
  --radius: 18px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", ui-sans-serif, system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--brass-light);
  color: var(--ink);
}

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

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible,
iframe:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  color: #fff;
}

.header-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  font-size: 1.04rem;
  font-weight: 620;
  letter-spacing: -0.02em;
}

.brand img {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  object-fit: cover;
}

.brand strong {
  font-weight: 900;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  font-weight: 690;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover {
  color: #fff;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-small {
  min-height: 44px;
  padding: 11px 18px;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.button-small:hover {
  border-color: #fff;
  background: #fff;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 860px;
  align-items: end;
  overflow: hidden;
  padding: 154px 0 78px;
  background: var(--forest-dark);
  color: #fff;
}

.hero-media,
.hero-shade,
.hero-media img {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(9, 28, 21, 0.96) 0%, rgba(9, 28, 21, 0.88) 42%, rgba(9, 28, 21, 0.18) 75%),
    linear-gradient(180deg, rgba(9, 28, 21, 0.26) 0%, rgba(9, 28, 21, 0.08) 45%, rgba(9, 28, 21, 0.74) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 16%;
  left: -130px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(209, 165, 82, 0.2);
  border-radius: 50%;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 780px) minmax(220px, 1fr);
  align-items: end;
  gap: 60px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--brass-light);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 0 6px rgba(209, 165, 82, 0.13);
}

.eyebrow-dark {
  color: var(--forest-light);
}

.hero h1 {
  max-width: 810px;
  margin-bottom: 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.6rem, 7.2vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.91;
}

.hero h1 em,
.framework-heading h2 em {
  color: var(--brass-light);
  font-weight: 400;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.hero-actions .button {
  border-color: var(--brass);
  background: var(--brass);
  color: var(--ink);
}

.hero-actions .button:hover {
  border-color: #fff;
  background: #fff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 4px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  font-weight: 800;
  transition: border-color 160ms ease, color 160ms ease;
}

.text-link:hover {
  border-color: var(--brass);
  color: #fff;
}

.text-link-dark {
  border-bottom-color: rgba(16, 32, 25, 0.3);
  color: var(--forest);
}

.text-link-dark:hover {
  border-color: var(--forest);
  color: var(--ink);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 24px;
  margin: 28px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.87rem;
  list-style: none;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-list li span {
  color: var(--brass-light);
  font-weight: 900;
}

.hero-note {
  justify-self: end;
  width: min(300px, 100%);
  margin-bottom: 6px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(9, 28, 21, 0.5);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.note-index {
  display: block;
  margin-bottom: 46px;
  color: var(--brass-light);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hero-note p {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.18;
}

.note-line {
  height: 1px;
  margin-bottom: 16px;
  background: linear-gradient(90deg, var(--brass), rgba(209, 165, 82, 0));
}

.hero-note small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.benefit-bar {
  background: var(--forest);
  color: #fff;
}

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

.benefit-grid > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 30px 30px;
  border-right: 1px solid var(--line-light);
}

.benefit-grid > div:first-child {
  padding-left: 0;
}

.benefit-grid > div:last-child {
  border-right: 0;
  padding-right: 0;
}

.benefit-number {
  color: var(--brass);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.benefit-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
  line-height: 1.45;
}

.benefit-grid strong {
  color: #fff;
  font-size: 0.98rem;
}

.section {
  padding: 112px 0;
}

.section-heading h2,
.preview-copy h2,
.newsletter-copy h2,
.faq-heading h2,
.final-cta h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.2vw, 5.1rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.97;
}

.intro-section {
  background: var(--surface);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.72fr);
  align-items: end;
  gap: 96px;
}

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

.intro-copy p:last-child {
  margin-bottom: 0;
}

.intro-copy .intro-lead {
  margin-bottom: 18px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  line-height: 1.25;
}

.preview-section {
  background:
    radial-gradient(circle at 0 100%, rgba(209, 165, 82, 0.14), transparent 32%),
    var(--paper);
}

.preview-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(480px, 1.2fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.preview-copy h2 {
  margin-bottom: 24px;
}

.preview-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.05rem;
}

.newsletter-preview {
  position: relative;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.newsletter-preview::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 24px;
  right: -22px;
  bottom: -22px;
  left: 24px;
  border: 1px solid rgba(23, 63, 49, 0.18);
  background: var(--paper-deep);
}

.preview-topline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 46px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--forest-light);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.preview-question {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.newsletter-preview blockquote {
  margin-bottom: 38px;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  line-height: 1.08;
}

.newsletter-preview ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.newsletter-preview li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.newsletter-preview li > span {
  color: var(--brass);
  font-size: 0.74rem;
  font-weight: 900;
}

.newsletter-preview li strong,
.newsletter-preview li p {
  display: block;
}

.newsletter-preview li p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.preview-disclaimer {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.topics-section {
  background: var(--surface);
}

.topics-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 54px;
}

.topics-heading > p {
  margin-bottom: 3px;
  color: var(--muted);
}

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

.topic-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.topic-card::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(23, 63, 49, 0.12);
  border-radius: 50%;
}

.topic-card-featured {
  border-color: var(--forest);
  background: var(--forest);
  color: #fff;
}

.topic-card-featured::after {
  border-color: rgba(255, 255, 255, 0.15);
}

.topic-number {
  float: right;
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 900;
}

.topic-label {
  margin-bottom: 72px;
  color: var(--forest-light);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.topic-card-featured .topic-label {
  color: var(--brass-light);
}

.topic-card h3 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.topic-card > p:not(.topic-label) {
  color: var(--muted);
}

.topic-card-featured > p:not(.topic-label) {
  color: rgba(255, 255, 255, 0.65);
}

.topic-card ul {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 30px;
  margin: 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  list-style: none;
}

.topic-card li {
  padding: 8px 0;
  border-top: 1px solid var(--line);
}

.topic-card-featured ul {
  color: rgba(255, 255, 255, 0.72);
}

.topic-card-featured li {
  border-color: rgba(255, 255, 255, 0.14);
}

.framework-section {
  padding: 110px 0;
  background: var(--forest-dark);
  color: #fff;
}

.framework-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1.18fr);
  align-items: end;
  gap: 110px;
}

.framework-heading h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 7.4vw, 7.4rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.82;
}

.framework-steps > div {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.framework-steps > div:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.framework-steps span {
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 900;
}

.framework-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.framework-steps strong {
  color: #fff;
}

.newsletter-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 116px 0;
  background: var(--forest);
  color: #fff;
}

.newsletter-glow {
  position: absolute;
  z-index: -1;
  top: -240px;
  left: -200px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(209, 165, 82, 0.19);
  border-radius: 50%;
  box-shadow: 0 0 140px rgba(209, 165, 82, 0.08) inset;
}

.newsletter-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(410px, 0.78fr);
  align-items: center;
  gap: clamp(62px, 8vw, 118px);
}

.newsletter-copy h2 {
  margin-bottom: 24px;
}

.newsletter-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.69);
  font-size: 1.05rem;
}

.newsletter-benefits {
  display: grid;
  gap: 0;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.newsletter-benefits li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.newsletter-benefits li > span {
  color: var(--brass);
  font-size: 0.74rem;
  font-weight: 900;
}

.newsletter-benefits strong,
.newsletter-benefits small {
  display: block;
}

.newsletter-benefits small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.53);
  font-size: 0.84rem;
}

.signup-shell {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.signup-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  background: var(--forest-dark);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.signup-topline span:last-child {
  color: var(--brass-light);
}

.form-frame-wrap {
  min-height: 760px;
  background: #fff;
}

.signup-frame {
  display: block;
  width: 100%;
  min-height: 760px;
  border: 0;
  background: #fff;
}

.faq-section {
  background: var(--surface);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(460px, 1.1fr);
  align-items: start;
  gap: clamp(60px, 10vw, 150px);
}

.faq-heading {
  position: sticky;
  top: 44px;
}

.faq-heading h2 {
  margin-bottom: 22px;
}

.faq-heading > p:not(.eyebrow) {
  color: var(--muted);
}

.faq-heading a {
  color: var(--forest-light);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 850;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 4px;
  color: var(--forest-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1;
}

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

.faq-list details p {
  max-width: 680px;
  margin: -4px 0 24px;
  padding-right: 48px;
  color: var(--muted);
}

.final-cta {
  padding: 76px 0;
  background: var(--brass);
  color: var(--ink);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.final-cta .eyebrow {
  color: var(--forest);
}

.final-cta h2 {
  max-width: 820px;
  font-size: clamp(2.8rem, 4.9vw, 4.9rem);
}

.button-light {
  flex: 0 0 auto;
  border-color: var(--forest-dark);
  background: var(--forest-dark);
}

.button-light:hover {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.site-footer {
  padding: 42px 0 28px;
  background: var(--forest-dark);
  color: #fff;
}

.footer-main,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-footer img {
  border-color: rgba(255, 255, 255, 0.2);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  font-weight: 750;
}

.footer-links a:hover {
  color: var(--brass-light);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1040px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-note {
    display: none;
  }

  .intro-grid,
  .preview-grid,
  .newsletter-grid,
  .faq-grid {
    gap: 60px;
  }

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

  .topic-card {
    min-height: 360px;
  }

  .framework-grid {
    gap: 70px;
  }
}

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

  .benefit-grid,
  .intro-grid,
  .preview-grid,
  .topics-heading,
  .framework-grid,
  .newsletter-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid > div {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .benefit-grid > div:last-child {
    border-bottom: 0;
  }

  .intro-grid,
  .topics-heading {
    gap: 32px;
  }

  .newsletter-preview::before {
    right: -10px;
    bottom: -10px;
  }

  .framework-grid {
    gap: 48px;
  }

  .faq-heading {
    position: static;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 72px;
  }

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

  .header-inner {
    min-height: 72px;
  }

  .brand {
    font-size: 0.92rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .button-small {
    min-height: 40px;
    padding: 9px 14px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: 760px;
    padding: 118px 0 50px;
  }

  .hero-media img {
    object-position: 60% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(9, 28, 21, 0.94), rgba(9, 28, 21, 0.72)),
      linear-gradient(180deg, rgba(9, 28, 21, 0.2), rgba(9, 28, 21, 0.86));
  }

  .hero h1 {
    font-size: clamp(3.3rem, 16.5vw, 5rem);
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .trust-list {
    align-items: flex-start;
    flex-direction: column;
  }

  .section,
  .framework-section,
  .newsletter-section {
    padding: 76px 0;
  }

  .section-heading h2,
  .preview-copy h2,
  .newsletter-copy h2,
  .faq-heading h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .preview-grid,
  .newsletter-grid,
  .faq-grid {
    gap: 46px;
  }

  .newsletter-preview {
    padding: 25px 22px;
  }

  .preview-topline {
    margin-bottom: 34px;
    font-size: 0.61rem;
  }

  .newsletter-preview li {
    grid-template-columns: 34px 1fr;
  }

  .topic-card {
    min-height: 400px;
    padding: 24px;
  }

  .topic-card ul {
    right: 24px;
    bottom: 22px;
    left: 24px;
  }

  .framework-heading h2 {
    font-size: clamp(4rem, 21vw, 6.5rem);
  }

  .framework-steps > div {
    grid-template-columns: 36px 1fr;
  }

  .signup-shell {
    margin-inline: -5px;
  }

  .form-frame-wrap,
  .signup-frame {
    min-height: 850px;
  }

  .final-cta {
    padding: 62px 0;
  }

  .final-cta h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .final-cta .button {
    width: 100%;
  }

  .footer-main,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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

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