:root {
  --ink: #14130f;
  --muted: #6f6a60;
  --faint: #a5a096;
  --line: #ded8cb;
  --paper: #f7f4ec;
  --letter-wash: #ebe5d7;
  --white: #ffffff;
  --gold: #c9a642;
  --accent: var(--gold);
  --gold-dark: #a88427;
  --blue-muted: #647386;
  --max: 1260px;
  --form: 1060px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

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

body.landing-page::before {
  content: none;
}

.intake-body {
  background:
    radial-gradient(circle at 50% 8%, rgba(201, 166, 66, 0.14), transparent 28%),
    linear-gradient(180deg, #f8f7f3, #eee9df);
}

.legal-body {
  background:
    radial-gradient(circle at 50% 12%, rgba(201, 166, 66, 0.12), transparent 32%),
    linear-gradient(180deg, #f8f7f3, #f0ebe1);
}

.paid-page {
  background:
    radial-gradient(circle at 18% 8%, rgba(201, 166, 66, 0.13), transparent 24%),
    linear-gradient(180deg, #f8f7f3, #eee9df 62%, #f6f2ea);
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(28px, 4vw, 52px) clamp(18px, 3vw, 46px);
}

.landing-page .site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  max-width: none;
  background: transparent;
  padding-top: clamp(20px, 2.5vw, 32px);
  padding-right: clamp(18px, 3vw, 46px);
  padding-bottom: clamp(18px, 2.5vw, 30px);
  padding-left: clamp(18px, 3vw, 46px);
}

.intake-body .site-header {
  background: transparent;
  padding-top: clamp(20px, 2.5vw, 32px);
  padding-right: clamp(18px, 3vw, 46px);
  padding-bottom: clamp(18px, 2.5vw, 30px);
  padding-left: clamp(18px, 3vw, 46px);
}

.paid-header {
  background: transparent;
  padding-top: clamp(20px, 2.5vw, 32px);
  padding-right: clamp(18px, 3vw, 46px);
  padding-bottom: clamp(18px, 2.5vw, 30px);
  padding-left: clamp(18px, 3vw, 46px);
}

.home-page .paid-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  background: transparent;
}

.home-page .paid-nav a {
  color: var(--blue-muted);
}

.home-page .paid-nav a[aria-current="page"],
.home-page .paid-nav a:hover {
  color: var(--ink);
}

.paid-page .paid-nav .nav-button,
.paid-page .paid-nav .nav-button:hover {
  color: var(--white);
  font-size: clamp(0.92rem, 1.05vw, 1.02rem);
  font-weight: 700;
}

.brand {
  color: var(--ink);
  font-family: Didot, "Bodoni 72", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 1.42vw, 1.58rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.brand-name {
  color: var(--accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 50px);
}

.site-nav a,
.footer-links a,
.label,
legend,
.intake-heading p,
.legal {
  color: var(--faint);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--ink);
}

.site-nav .nav-button {
  min-height: 44px;
  padding: 0 22px;
  color: var(--white);
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
}

.site-nav .nav-button:hover {
  color: var(--white);
}

.landing-page .site-nav a {
  color: var(--blue-muted);
}

.landing-page .site-nav a:hover {
  color: var(--gold);
}

.landing-page .site-nav .nav-button,
.landing-page .site-nav .nav-button:hover,
.site-nav .nav-button,
.site-nav .nav-button:hover {
  color: var(--white);
}

.nav-toggle {
  display: none;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  font: inherit;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(650px, 90vh, 860px);
  overflow: hidden;
  padding: clamp(130px, 12vw, 178px) clamp(30px, 9vw, 132px) clamp(88px, 9vw, 124px);
  background:
    linear-gradient(90deg, rgba(248, 246, 239, 0.84), rgba(248, 246, 239, 0.68) 48%, rgba(232, 226, 215, 0.24)),
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.12) 36%, rgba(255, 255, 255, 0) 62%),
    url("assets/future-city-hero-v3.png") center / cover no-repeat,
    linear-gradient(180deg, #f7f6f2, #e4e3de);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.58;
  background:
    linear-gradient(180deg, rgba(248, 247, 243, 0.08), rgba(248, 247, 243, 0.46)),
    radial-gradient(ellipse at 50% 48%, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.05) 44%, rgba(255, 255, 255, 0) 68%);
  pointer-events: none;
}

.hero::after {
  content: none;
  position: absolute;
  right: -10vw;
  bottom: -20vw;
  width: 72vw;
  height: 54vw;
  border: clamp(24px, 4vw, 58px) solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  transform: rotate(-28deg);
  box-shadow: 0 0 80px rgba(201, 161, 58, 0.12);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 860px;
  text-align: center;
}

.hero h1 {
  max-width: 760px;
  margin: 24px auto 0;
  font-family: Didot, "Bodoni 72", Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 7.1vw, 7.6rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
}

.hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero-copy > p {
  max-width: 760px;
  margin: 30px auto 0;
  color: #615f59;
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: clamp(1.08rem, 1.35vw, 1.22rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
}

.hero .label {
  width: 100%;
  margin: 0 auto;
  color: var(--blue-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-align: center;
}

.price-note {
  margin-top: 8px !important;
  color: #565f67 !important;
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 400 !important;
}

.method-section {
  padding: clamp(78px, 10vw, 132px) clamp(30px, 9vw, 132px);
  background: #f8f7f3;
}

.method-heading {
  max-width: 680px;
  margin-bottom: clamp(72px, 10vw, 132px);
}

.method-heading h2 {
  margin: 18px 0 0;
  font-family: Didot, "Bodoni 72", Georgia, "Times New Roman", serif;
  font-size: clamp(2.9rem, 4.6vw, 5rem);
  font-weight: 400;
  line-height: 1.02;
}

.method-heading h2 em {
  color: var(--gold);
  font-style: italic;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(46px, 8vw, 118px);
  max-width: var(--max);
  margin: 0 auto;
}

.method-grid article {
  display: block;
  max-width: 360px;
  padding: 0;
}

.method-grid h2,
.intake-heading h2,
.page-hero h1,
.stack-item h2,
.faq-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  font-weight: 500;
  line-height: 1.05;
}

.method-grid h2 {
  font-family: Didot, "Bodoni 72", Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.55rem, 2.15vw, 2.25rem);
  line-height: 1.25;
}

.step-number {
  margin: 0 0 22px;
  color: #e7dfcf;
  font-family: Didot, "Bodoni 72", Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 7.2vw, 7rem);
  line-height: 1;
}

.method-grid .label,
.stack-status {
  margin: 0 0 4px;
}

.method-grid p:not(.label):not(.step-number),
.page-hero p,
.subscribe-heading p,
.stack-item p,
.stack-item li,
.faq-section p,
.form-note {
  color: #565f67;
  font-size: clamp(0.98rem, 1.12vw, 1.08rem);
}

.method-grid article > p:not(.step-number) {
  margin-top: 18px;
  color: #565f67;
  line-height: 1.58;
}

.tone-section {
  background: #f8f7f3;
}

.tone-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  align-items: end;
  gap: clamp(28px, 6vw, 92px);
  max-width: var(--max);
  margin: 0 auto clamp(34px, 5vw, 62px);
  padding-bottom: clamp(26px, 4vw, 44px);
  border-bottom: 1px solid var(--line);
}

.tone-section-heading .method-heading {
  max-width: 760px;
  margin: 0;
}

.tone-section-heading > p {
  margin: 0;
  color: #565f67;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 1.14vw, 1.1rem);
  line-height: 1.58;
}

.tone-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}

.tone-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  padding: clamp(22px, 2.8vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 18px 48px rgba(65, 58, 45, 0.05);
}

.tone-card h3 {
  margin: 0;
  font-family: Didot, "Bodoni 72", Georgia, "Times New Roman", serif;
  font-size: clamp(1.38rem, 1.75vw, 1.9rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.18;
}

.tone-card p {
  margin: 0;
  color: #565f67;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.94rem, 1.02vw, 1rem);
  line-height: 1.55;
}

.tone-card .tone-card-kicker {
  color: #77736c;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.tone-card .tone-sample {
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: #565f67;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.94rem, 1.02vw, 1rem);
  line-height: 1.55;
}

.tone-card .tone-sample strong {
  color: var(--ink);
  font-weight: 800;
}

.tone-card .tone-sample em {
  color: var(--ink);
  font-style: italic;
}

.home-method-section {
  background: #f8f7f3;
}

.home-page .home-method-section {
  padding-top: clamp(44px, 6vw, 76px);
  padding-bottom: clamp(44px, 6vw, 76px);
}

.home-page .method-heading {
  margin-bottom: clamp(28px, 4vw, 50px);
}

.home-method-section .method-heading > p:not(.label) {
  max-width: 620px;
  margin: 24px 0 0;
  color: #565f67;
  font-size: clamp(1.05rem, 1.22vw, 1.18rem);
  line-height: 1.58;
}

.home-copy-grid,
.home-pricing-grid {
  grid-template-columns: minmax(0, 760px);
  max-width: 860px;
  margin: 0;
}

.home-copy-grid article,
.home-pricing-grid article {
  max-width: none;
}

.home-copy-grid p {
  margin: 0;
  color: #565f67;
  font-size: clamp(1.02rem, 1.18vw, 1.14rem);
  line-height: 1.62;
}

.home-copy-grid p + p {
  margin-top: 18px;
}

.home-page .home-before-after-section .method-heading {
  margin-bottom: clamp(14px, 2.4vw, 26px);
}

.before-after-label {
  color: var(--ink);
  font-family: Didot, "Bodoni 72", Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.15vw, 2.25rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.25;
}

.home-copy-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 18px clamp(28px, 4.4vw, 58px);
  padding: 0;
  color: #565f67;
  font-size: clamp(1.02rem, 1.18vw, 1.14rem);
  line-height: 1.55;
  list-style: none;
}

.home-copy-list li {
  position: relative;
  padding-left: 34px;
}

.home-copy-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.home-copy-list strong {
  color: var(--ink);
  font-weight: 700;
}

.home-pricing-grid ul {
  display: grid;
  gap: 14px;
  margin: 24px 0 0 clamp(28px, 4.4vw, 58px);
  padding: 0;
  list-style: none;
}

.home-pricing-grid li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  color: #565f67;
  font-size: clamp(1rem, 1.14vw, 1.1rem);
  line-height: 1.55;
}

.home-pricing-grid .feature-check {
  color: var(--gold);
  font-weight: 800;
  line-height: 1.55;
  text-align: center;
}

.home-pricing-grid .feature-copy {
  min-width: 0;
}

.home-pricing-grid li strong {
  color: var(--ink);
  font-weight: 700;
}

.home-page .paid-hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.home-page #home-method {
  padding-top: clamp(34px, 4.5vw, 56px);
  padding-bottom: clamp(34px, 4.5vw, 56px);
}

.home-page .home-dream-section {
  padding-bottom: clamp(30px, 4.5vw, 54px);
}

.home-page #home-method .method-heading {
  margin-bottom: clamp(24px, 3vw, 40px);
}

.home-page .why-section {
  padding-top: clamp(28px, 4vw, 50px);
  padding-bottom: clamp(34px, 4.5vw, 56px);
}

.home-page .home-dream-section .method-heading,
.home-page .why-section .method-heading,
.home-page .home-who-section .method-heading,
.home-page .home-receive-section .method-heading,
.home-page .paid-home-pricing .method-heading,
.home-page .home-founder-section .method-heading {
  margin-bottom: clamp(12px, 1.6vw, 18px);
}

.home-page .home-use-cases-section .method-heading {
  margin-bottom: clamp(10px, 1.5vw, 18px);
}

.home-page .home-who-section {
  padding-bottom: clamp(36px, 5vw, 62px);
}

.home-page .home-receive-section {
  padding-top: clamp(30px, 4.5vw, 54px);
}

.home-page .home-dream-section .home-copy-grid p,
.home-page .home-copy-list,
.home-page #home-method .method-grid article > p:not(.step-number),
.home-page .why-section .home-copy-grid p,
.home-page .home-who-section .home-copy-grid p,
.home-page .home-receive-section .home-copy-grid p,
.home-page .paid-home-pricing .method-heading > p:not(.label),
.home-page .home-pricing-grid .label,
.home-page .home-pricing-grid li,
.home-page .home-seo-section .home-copy-grid p,
.home-page .home-founder-section .home-copy-grid p,
.home-page .home-sample-letter p,
.home-page .home-faq-grid p,
.home-page .home-subscribe-section .subscribe-heading p {
  color: #565f67;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.98rem, 1.14vw, 1.1rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.58;
  text-transform: none;
}

.home-page .home-dream-section .home-copy-list {
  margin-left: clamp(34px, 5vw, 68px);
}

.home-page .home-dream-section .home-copy-list li {
  padding-left: 38px;
}

.home-page .paid-home-pricing {
  padding-top: clamp(34px, 4.5vw, 56px);
}

.home-page .paid-hero .button,
.home-page .home-subscribe-section .button {
  width: min(100%, 360px);
}

.home-page .cta-microcopy,
.home-page .paid-hero-copy > .cta-microcopy {
  margin: 12px 0 0;
  color: #565f67;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.88rem, 1vw, 0.98rem);
  line-height: 1.4;
}

.home-page .waitlist-actions .cta-microcopy {
  text-align: center;
}

.home-page .home-subscribe-section .waitlist-actions .cta-microcopy {
  margin-top: 6px;
}

.home-page .home-length-note {
  margin-top: clamp(8px, 1.5vw, 16px);
}

.home-sample-section {
  background: #f8f7f3;
}

.home-sample-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(240px, 0.85fr);
  align-items: stretch;
  max-width: var(--max);
  border-bottom: 1px solid var(--line);
}

.home-sample-intro .method-heading {
  max-width: 760px;
  margin: 0;
  padding-right: clamp(34px, 6vw, 92px);
}

.home-sample-intro > p {
  display: flex;
  align-items: center;
  min-height: 188px;
  margin: 0;
  padding-left: clamp(34px, 5vw, 72px);
  border-left: 1px solid var(--line);
  color: #565f67;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.98rem, 1.14vw, 1.1rem);
  line-height: 1.58;
  text-align: center;
}

.sample-tabs {
  display: flex;
  max-width: var(--max);
  border-bottom: 1px solid var(--line);
}

.sample-tab {
  min-width: min(33.333%, 260px);
  padding: 20px 0 18px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: #77736c;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.74rem, 0.92vw, 0.84rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
}

.sample-tab:hover,
.sample-tab:focus-visible {
  color: var(--ink);
}

.sample-tab:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.sample-tab.is-active {
  border-color: var(--gold);
  color: var(--ink);
}

.sample-letter-panels {
  max-width: var(--max);
  padding-top: clamp(40px, 6vw, 58px);
}

.home-sample-letter {
  display: grid;
  grid-template-columns: minmax(150px, 265px) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
}

.home-sample-letter[hidden] {
  display: none;
}

.sample-meta {
  padding-right: clamp(28px, 4vw, 54px);
  border-right: 1px solid var(--line);
}

.sample-meta p {
  margin: 0 0 20px;
  color: var(--ink);
  font-family: Didot, "Bodoni 72", Georgia, "Times New Roman", serif;
  font-size: clamp(0.96rem, 1.1vw, 1.08rem);
  line-height: 1.35;
}

.sample-meta p:last-child {
  margin-bottom: 0;
}

.sample-meta span {
  display: block;
  margin-bottom: 5px;
  color: #77736c;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.72rem, 0.9vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sample-meta em {
  color: var(--ink);
  font-style: italic;
}

.sample-letter-body {
  max-width: 760px;
}

.sample-letter-body p {
  margin: 0;
  color: var(--ink);
  font-family: Didot, "Bodoni 72", Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.05vw, 2.18rem);
  font-weight: 400;
  line-height: 1.42;
}

.sample-letter-body .sample-postscript {
  margin-top: clamp(26px, 4vw, 42px);
  padding-bottom: clamp(24px, 4vw, 38px);
  border-bottom: 1px solid var(--line);
  color: #8b857d;
  font-size: clamp(0.96rem, 1.12vw, 1.08rem);
  font-style: italic;
  line-height: 1.55;
}

.sample-letter-body .sample-signoff {
  margin-top: clamp(24px, 4vw, 36px);
  color: #214c3c;
  font-size: clamp(0.94rem, 1.08vw, 1.04rem);
  font-style: italic;
  line-height: 1.5;
}

.home-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 72px);
  max-width: var(--max);
  margin: 0;
}

.home-faq-grid article {
  max-width: 520px;
}

.home-faq-grid h3 {
  margin: 0;
  font-family: Didot, "Bodoni 72", Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.15vw, 2.25rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.25;
}

.home-faq-grid p {
  margin: 14px 0 0;
}

.home-cta-method .button {
  width: min(100%, 360px);
  min-height: 64px;
  margin-top: 32px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.home-benefits-section {
  padding-top: clamp(36px, 6vw, 88px);
}

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

.home-benefits-section .step-number {
  margin-bottom: 10px;
}

.home-benefits-section .method-grid article > p:not(.step-number) {
  margin-top: 8px;
}

.home-subscribe-section .waitlist-actions {
  margin-top: clamp(24px, 4vw, 40px);
}

.home-page .home-subscribe-section {
  padding-top: clamp(74px, 10vw, 128px);
  padding-bottom: clamp(78px, 10vw, 132px);
}

.subscribe-section {
  display: grid;
  justify-items: center;
  padding: clamp(100px, 14vw, 190px) clamp(24px, 7vw, 92px);
  background:
    radial-gradient(circle at 50% 42%, rgba(201, 166, 66, 0.12), transparent 32%),
    linear-gradient(180deg, #f8f7f3, #f0ebe1);
  text-align: center;
}

.subscribe-heading h2 {
  margin: 0;
  font-family: Didot, "Bodoni 72", Georgia, "Times New Roman", serif;
  font-size: clamp(3.7rem, 8vw, 8rem);
  font-weight: 400;
  line-height: 0.95;
}

.subscribe-heading h2 em {
  color: var(--gold);
  font-style: italic;
}

.subscribe-heading p {
  margin: 26px auto 0;
  color: #565f67;
  line-height: 1.5;
}

.subscribe-form {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(190px, 280px);
  gap: 18px;
  width: min(100%, 760px);
  margin: clamp(44px, 6vw, 70px) auto 0;
}

.subscribe-form label {
  position: relative;
}

.subscribe-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.subscribe-form input {
  min-height: 64px;
  padding: 0 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(65, 58, 45, 0.06);
  font-size: 1rem;
}

.subscribe-form .button {
  min-height: 64px;
  width: 100%;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.waitlist-actions.hero-subscribe-form {
  grid-template-columns: minmax(260px, 380px) minmax(190px, 250px);
  align-items: center;
  justify-content: center;
  justify-items: stretch;
  gap: 14px;
  width: min(100%, 700px);
  margin-top: 28px;
}

.waitlist-email-field {
  position: relative;
  width: 100%;
}

.waitlist-email-field span {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.waitlist-actions.hero-subscribe-form input {
  min-height: 64px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 42px rgba(65, 58, 45, 0.06);
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 1rem;
}

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

.waitlist-actions.hero-subscribe-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.waitlist-status {
  grid-column: 1 / -1;
  min-height: 1.5em;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
  text-align: center;
}

.waitlist-status:empty {
  display: none;
}

.waitlist-status[data-state="success"] {
  color: var(--gold-dark);
}

.waitlist-status[data-state="error"] {
  color: #9f3a28;
}

.waitlist-actions {
  display: grid;
  justify-items: center;
  gap: 16px;
  width: min(100%, 560px);
  margin: clamp(44px, 6vw, 70px) auto 0;
}

.waitlist-actions .button {
  min-height: 64px;
  width: min(100%, 300px);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.waitlist-note {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.intake-section {
  padding: clamp(92px, 12vw, 170px) clamp(30px, 7vw, 92px) clamp(90px, 12vw, 160px);
  background:
    radial-gradient(circle at 50% 8%, rgba(201, 166, 66, 0.14), transparent 28%),
    linear-gradient(180deg, #f8f7f3, #eee9df);
}

.intake-body .intake-section {
  background: transparent;
}

.intake-page {
  padding-top: clamp(34px, 5vw, 62px);
  padding-bottom: clamp(48px, 7vw, 84px);
}

.intake-page .intake-heading h2 {
  font-size: clamp(2.55rem, 4.15vw, 4.55rem);
}

.intake-page .intake-heading p {
  margin-top: 10px;
  color: #777777;
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.intake-page .signup-form {
  gap: clamp(18px, 2.4vw, 28px);
  margin-top: clamp(28px, 4vw, 46px);
}

.intake-page .form-row {
  gap: 24px;
}

.intake-page label span,
.intake-page legend {
  margin-bottom: 5px;
  font-size: 0.72rem;
}

.intake-page input,
.intake-page select {
  min-height: 32px;
  padding-inline: 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: clamp(0.9rem, 1vw, 1rem);
}

.intake-page textarea {
  min-height: 78px;
  padding: 12px 16px;
  font-size: clamp(0.9rem, 1vw, 1rem);
}

.intake-page .tone-options {
  gap: 12px;
}

.intake-page .tone-options span {
  min-height: 32px;
  padding: 0 16px;
  font-size: 0.84rem;
}

.intake-page .button {
  min-height: 54px;
  font-size: clamp(0.92rem, 1.05vw, 1.02rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.waitlist-panel {
  width: min(100%, 720px);
  margin: clamp(28px, 4vw, 46px) auto 0;
}

.waitlist-card {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 54px rgba(65, 58, 45, 0.06);
}

.waitlist-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
  font-weight: 500;
  line-height: 1.1;
}

.waitlist-card ul {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
}

.waitlist-card li {
  margin-bottom: 7px;
}

.waitlist-card .form-note {
  margin: 0;
}

.form-embed-panel {
  display: grid;
  gap: 18px;
  width: min(100%, 860px);
}

.google-form-embed {
  width: 100%;
  min-height: 860px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 18px 54px rgba(65, 58, 45, 0.06);
}

.form-fallback {
  display: grid;
  gap: 12px;
  padding: 0 clamp(4px, 2vw, 18px);
  text-align: center;
}

.form-fallback .form-note {
  margin: 0;
}

.intake-heading {
  text-align: center;
}

.intake-heading h2 {
  font-family: Didot, "Bodoni 72", Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5vw, 5.8rem);
  font-weight: 400;
}

.intake-heading h2 em {
  color: var(--gold);
  font-style: italic;
}

.intake-heading p {
  margin: 18px 0 0;
}

.signup-form {
  display: grid;
  gap: clamp(44px, 6vw, 76px);
  width: min(100%, var(--form));
  margin: clamp(76px, 10vw, 130px) auto 0;
}

.form-row {
  display: grid;
  gap: 44px;
}

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

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

label,
fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

label span,
legend {
  display: block;
  margin-bottom: 8px;
}

label span {
  color: var(--faint);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  outline: 0;
}

input,
select {
  min-height: 48px;
}

textarea {
  min-height: 156px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #bdbdbd;
  opacity: 1;
}

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 16px) 50%, calc(100% - 10px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.tone-options {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.tone-options label {
  position: relative;
}

.tone-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tone-options span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.tone-options input:checked + span {
  color: var(--white);
  background: var(--gold);
  border-color: var(--gold);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 104px;
  padding: 0 28px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--white);
  background: var(--accent);
  box-shadow:
    0 0 0 1px rgba(255, 244, 208, 0.24) inset,
    0 12px 34px rgba(201, 166, 66, 0.22),
    0 0 28px rgba(201, 166, 66, 0.24);
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: clamp(0.92rem, 1.05vw, 1.02rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-align: center;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.hero .button,
.site-nav .nav-button {
  border-color: var(--accent);
  background: var(--accent);
}

.button:hover,
.hero .button:hover,
.site-nav .nav-button:hover {
  border-color: var(--gold-dark);
  background: var(--gold-dark);
  box-shadow:
    0 0 0 1px rgba(255, 244, 208, 0.32) inset,
    0 16px 42px rgba(201, 166, 66, 0.28),
    0 0 42px rgba(201, 166, 66, 0.36);
  transform: translateY(-1px);
}

.button:focus-visible {
  outline: 0;
  box-shadow:
    0 0 0 3px rgba(248, 244, 236, 0.96),
    0 0 0 6px rgba(201, 166, 66, 0.5),
    0 14px 38px rgba(201, 166, 66, 0.3),
    0 0 38px rgba(201, 166, 66, 0.36);
}

.button.secondary {
  color: var(--accent);
  background: transparent;
}

.button.full {
  width: 100%;
}

.button span {
  margin-left: 18px;
}

.form-note {
  margin: -36px 0 0;
  text-align: center;
  font-size: 0.92rem;
}

.page-hero {
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(90px, 14vw, 180px) 24px clamp(60px, 8vw, 100px);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(3rem, 6vw, 6rem);
}

.page-hero p {
  max-width: 720px;
  margin: 28px auto 0;
}

.legal-page .page-hero {
  padding-top: clamp(34px, 5vw, 70px);
  padding-bottom: clamp(34px, 5vw, 64px);
}

.legal-page .page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.legal-page .page-hero p {
  max-width: 620px;
  margin-top: 16px;
  font-size: clamp(0.92rem, 1.08vw, 1rem);
}

.legal-body .legal-page {
  background: transparent;
}

.legal-body .site-header {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding-top: clamp(16px, 2vw, 26px);
  padding-bottom: clamp(14px, 2vw, 22px);
}

.stack-list,
.faq-section {
  max-width: var(--form);
  margin: 0 auto;
  padding: 0 24px clamp(90px, 12vw, 160px);
}

.stack-item ul {
  margin: 0;
  padding-left: 22px;
}

.intake-body .brand {
  font-size: clamp(1.25rem, 1.42vw, 1.58rem);
}

.intake-body .site-nav a,
.paid-page .site-nav a {
  font-size: 0.82rem;
}

.paid-nav a[aria-current="page"] {
  color: var(--ink);
}

.paid-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(560px, 76vh, 760px);
  padding: clamp(70px, 9vw, 126px) clamp(24px, 8vw, 118px) clamp(52px, 7vw, 88px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(248, 247, 243, 0.9), rgba(248, 247, 243, 0.62) 48%, rgba(248, 247, 243, 0.2)),
    radial-gradient(circle at 44% 46%, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.08) 48%, rgba(255, 255, 255, 0) 68%),
    url("assets/future-city-hero-v3.png") center / cover no-repeat,
    linear-gradient(180deg, #f7f6f2, #e4e3de);
}

.home-page .paid-hero {
  min-height: clamp(620px, 86vh, 820px);
  padding-top: clamp(124px, 13vw, 178px);
  background-position: center top, center top, center top, center top;
}

.paid-hero-copy {
  max-width: 760px;
}

.paid-hero h1,
.paid-page-hero h1,
.paid-section h2,
.paid-cta-band h2,
.paid-price-card h2,
.paid-pricing-notes h2,
.resource-card h2 {
  margin: 0;
  font-family: Didot, "Bodoni 72", Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

.paid-hero h1 {
  margin-top: 20px;
  font-size: clamp(3.2rem, 6.1vw, 6.7rem);
  line-height: 0.94;
}

.paid-hero-copy > p:not(.label),
.paid-page-hero p,
.paid-section > p,
.paid-letter-copy p:not(.label),
.letter-preview p,
.paid-cta-band p,
.paid-price-card li,
.paid-pricing-notes p,
.resource-card p {
  color: #565f67;
  font-size: clamp(0.98rem, 1.14vw, 1.1rem);
  line-height: 1.58;
}

.paid-hero-copy > p:not(.label) {
  max-width: 650px;
  margin: 28px 0 0;
  color: #565f67;
}

.paid-hero .button {
  width: min(100%, 300px);
  min-height: 64px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 26px;
  margin-top: 34px;
}

.paid-page-hero .hero-actions {
  justify-content: center;
  margin-top: 28px;
}

.paid-page-hero .button {
  min-height: 60px;
  width: min(100%, 280px);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: rgba(201, 166, 66, 0.55);
  text-decoration-thickness: 1px;
  text-underline-offset: 7px;
}

.text-link:hover {
  color: var(--gold-dark);
}

.conversion-note {
  margin-top: 18px !important;
  color: #565f67 !important;
  font-size: 0.92rem !important;
}

.paid-support-section {
  padding-top: clamp(62px, 8vw, 108px);
  padding-bottom: clamp(56px, 7vw, 96px);
}

.support-statement {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.6vw, 3rem);
  line-height: 1.15;
}

.paid-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 110px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(82px, 10vw, 138px) clamp(24px, 7vw, 92px);
}

.paid-section h2,
.paid-cta-band h2,
.paid-page-hero h1 {
  font-size: clamp(2.65rem, 4.8vw, 5.2rem);
  line-height: 1;
}

.paid-page-hero h1 em {
  color: var(--gold);
}

.paid-cta-band h2 em {
  color: var(--gold);
}

.paid-section h2 {
  margin-top: 14px;
}

.paid-feature-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(24px, 7vw, 92px) clamp(86px, 11vw, 150px);
}

.paid-feature-grid article,
.resource-card,
.paid-price-card,
.letter-preview {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 54px rgba(65, 58, 45, 0.06);
}

.paid-feature-grid article,
.resource-card {
  display: grid;
  align-content: start;
  padding: clamp(28px, 4vw, 44px);
}

.paid-feature-grid h2,
.resource-card h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  line-height: 1.08;
}

.paid-feature-grid p:not(.step-number):not(.label),
.resource-card p:not(.label) {
  margin: 18px 0 0;
}

.step-word {
  display: flex;
  align-items: end;
  min-height: clamp(4rem, 7.2vw, 7rem);
  font-size: clamp(2.4rem, 4.5vw, 4.7rem);
  white-space: nowrap;
}

.why-section {
  align-items: start;
  padding-top: clamp(42px, 7vw, 92px);
}

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

.why-copy p {
  margin: 0;
  color: #565f67;
  font-size: clamp(1.05rem, 1.28vw, 1.24rem);
  line-height: 1.62;
}

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

.paid-outcome-section {
  padding-top: clamp(24px, 5vw, 70px);
}

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

.outcome-list article {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.outcome-list h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 1.8vw, 1.8rem);
  font-weight: 500;
  line-height: 1.15;
}

.outcome-list p,
.plan-summary {
  margin: 10px 0 0;
  color: #565f67;
  font-size: clamp(0.98rem, 1.1vw, 1.06rem);
  line-height: 1.58;
}

.paid-letter-section {
  align-items: center;
  padding-top: clamp(24px, 5vw, 70px);
}

.letter-preview {
  position: relative;
  padding: clamp(32px, 5vw, 56px);
  border-radius: 8px;
}

.letter-preview::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(201, 166, 66, 0.2);
  pointer-events: none;
}

.letter-preview .letter-date {
  margin: 0 0 18px;
  color: var(--faint);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.letter-preview p:last-child {
  position: relative;
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.2vw, 2.4rem);
  line-height: 1.28;
}

.paid-cta-band {
  display: grid;
  justify-items: center;
  gap: 22px;
  padding: clamp(82px, 12vw, 156px) clamp(24px, 7vw, 92px);
  background:
    radial-gradient(circle at 50% 48%, rgba(201, 166, 66, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(248, 247, 243, 0), rgba(237, 234, 229, 0.78));
  text-align: center;
}

.paid-proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(18px, 3vw, 32px) clamp(24px, 7vw, 92px) clamp(26px, 5vw, 60px);
}

.paid-proof-band div {
  display: grid;
  gap: 8px;
  padding: clamp(24px, 4vw, 40px);
  border-top: 1px solid var(--line);
}

.paid-proof-band strong {
  color: var(--ink);
  font-family: Didot, "Bodoni 72", Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5vw, 5.8rem);
  font-weight: 400;
  line-height: 0.95;
}

.paid-proof-band span {
  color: #565f67;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.paid-cta-band .label {
  margin: 0;
}

.paid-cta-band p {
  max-width: 620px;
  margin: 0;
}

.paid-cta-band .button {
  min-height: 64px;
  width: min(100%, 360px);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.paid-home-pricing {
  align-items: center;
  padding-top: clamp(32px, 6vw, 84px);
}

.paid-home-pricing > div:first-child > p:not(.label) {
  margin: 16px 0 0;
  color: #565f67;
  font-size: clamp(1.04rem, 1.22vw, 1.18rem);
  line-height: 1.58;
}

.included-panel {
  padding: clamp(30px, 4.4vw, 52px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 54px rgba(65, 58, 45, 0.06);
}

.included-panel ul {
  display: grid;
  gap: 16px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.included-panel li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 12px;
  color: #565f67;
  font-size: clamp(0.98rem, 1.14vw, 1.1rem);
  line-height: 1.5;
}

.included-panel span {
  color: var(--gold-dark);
  font-weight: 800;
}

.seo-footer-section {
  padding-top: clamp(70px, 10vw, 126px);
  padding-bottom: clamp(76px, 11vw, 138px);
}

.paid-page-hero {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(46px, 7vw, 92px) clamp(24px, 7vw, 92px) clamp(34px, 5vw, 58px);
  text-align: center;
}

.paid-page-hero h1 {
  margin-top: 16px;
}

.paid-page-hero p {
  max-width: 720px;
  margin: 24px auto 0;
}

.paid-pricing-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(300px, 1fr);
  gap: clamp(32px, 6vw, 92px);
  max-width: var(--form);
  margin: 0 auto;
  padding: 0 clamp(24px, 7vw, 92px) clamp(86px, 11vw, 150px);
  align-items: center;
}

.paid-pricing-layout-centered {
  grid-template-columns: minmax(320px, 820px);
  justify-content: center;
}

.paid-price-card {
  display: grid;
  gap: 20px;
  padding: clamp(30px, 4.4vw, 52px);
  border-radius: 8px;
}

.plan-badge {
  justify-self: start;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid rgba(201, 166, 66, 0.42);
  border-radius: 999px;
  color: var(--gold-dark);
  background: rgba(201, 166, 66, 0.1);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.paid-price-card h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.02;
}

.paid-price-card h2 em {
  color: var(--gold);
}

.paid-price {
  margin: 0;
  color: #565f67;
}

.paid-price span {
  color: var(--ink);
  font-family: Didot, "Bodoni 72", Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 7vw, 7.2rem);
  line-height: 1;
}

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

.paid-price-card li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.paid-price-card .feature-check {
  color: var(--gold);
  font-weight: 800;
  line-height: 1.58;
  text-align: center;
}

.paid-price-card .feature-copy {
  min-width: 0;
}

.paid-price-card .button {
  min-height: 60px;
  width: 100%;
  margin-top: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.button:disabled,
.button[disabled] {
  cursor: not-allowed;
  border-color: #c9c0ad;
  color: #f8f4ec;
  background: #c9c0ad;
  box-shadow: none;
  transform: none;
}

.checkout-note,
.resource-meta {
  margin: 0;
  color: #565f67;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.paid-price-card .text-link {
  justify-self: center;
  margin-top: -4px;
  text-align: center;
}

.paid-pricing-notes h2 {
  margin-top: 14px;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 1;
}

.paid-pricing-notes p {
  margin: 24px 0 0;
}

.paid-pricing-notes .label {
  margin: 0;
}

.paid-faq {
  padding-bottom: clamp(86px, 11vw, 150px);
}

.paid-faq h2 {
  font-family: Didot, "Bodoni 72", Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.resource-grid {
  gap: clamp(18px, 3vw, 28px);
}

.resource-card {
  min-height: 340px;
  border-radius: 8px;
}

.resource-card-link {
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.resource-card-link:hover,
.resource-card-link:focus-visible {
  border-color: rgba(201, 166, 66, 0.72);
  box-shadow: 0 22px 62px rgba(65, 58, 45, 0.1);
  transform: translateY(-2px);
}

.resource-card-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.resource-card .resource-meta {
  align-self: end;
  margin-top: 32px;
}

.resources-hero {
  padding-bottom: clamp(48px, 6vw, 78px);
}

.resources-intro {
  align-items: start;
  padding-top: clamp(52px, 7vw, 92px);
  padding-bottom: clamp(52px, 7vw, 92px);
}

.resources-intro-heading {
  max-width: 560px;
}

.resources-intro-heading h2 {
  max-width: 520px;
}

.resources-intro-heading h2 em,
.section-heading h2 em {
  color: var(--gold);
  font-style: italic;
}

.resources-intro-copy {
  display: grid;
  gap: 18px;
  max-width: 680px;
  padding-left: clamp(28px, 5vw, 72px);
  border-left: 1px solid var(--line);
}

.resources-intro-copy p {
  margin: 0;
  color: #565f67;
  font-size: clamp(0.98rem, 1.14vw, 1.1rem);
  line-height: 1.58;
}

.resources-featured,
.topic-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(24px, 7vw, 92px) clamp(68px, 9vw, 118px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(28px, 4vw, 52px);
}

.section-heading h2 {
  margin: 14px 0 0;
  font-family: Didot, "Bodoni 72", Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.02;
}

.resource-grid-featured,
.resource-grid-secondary {
  padding-inline: 0;
  padding-bottom: 0;
}

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

.topic-grid article {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 260px;
  padding: clamp(26px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.72);
}

.topic-grid h3 {
  margin: 0;
  font-family: Didot, "Bodoni 72", Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 1.9vw, 2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.18;
}

.topic-grid p {
  margin: 0;
  color: #565f67;
  font-size: clamp(0.96rem, 1.08vw, 1.04rem);
  line-height: 1.58;
}

.topic-grid a,
.breadcrumb,
.article-content a:not(.button) {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: underline;
  text-decoration-color: rgba(201, 166, 66, 0.6);
  text-decoration-thickness: 1px;
  text-transform: uppercase;
  text-underline-offset: 6px;
}

.topic-grid a:hover,
.breadcrumb:hover,
.article-content a:not(.button):hover {
  color: var(--gold-dark);
}

.article-layout {
  padding-bottom: clamp(82px, 11vw, 144px);
}

.article-hero {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(44px, 7vw, 86px) clamp(24px, 7vw, 92px) clamp(34px, 5vw, 58px);
  text-align: center;
}

.article-hero .breadcrumb {
  display: inline-flex;
  margin-bottom: 24px;
}

.article-hero h1 {
  margin: 16px 0 0;
  font-family: Didot, "Bodoni 72", Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.8vw, 6.4rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
}

.article-hero > p:not(.label) {
  max-width: 720px;
  margin: 24px auto 0;
  color: #565f67;
  font-size: clamp(1.02rem, 1.22vw, 1.16rem);
  line-height: 1.58;
}

.article-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 42px);
}

.article-content p,
.article-content li {
  color: #565f67;
  font-size: clamp(1.02rem, 1.18vw, 1.14rem);
  line-height: 1.72;
}

.article-content p {
  margin: 0 0 20px;
}

.article-content h2 {
  margin: clamp(42px, 6vw, 66px) 0 18px;
  font-family: Didot, "Bodoni 72", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
}

.article-content h3 {
  margin: 28px 0 10px;
  font-family: Didot, "Bodoni 72", Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 2.05rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
}

.article-content ul,
.article-content ol {
  display: grid;
  gap: 10px;
  margin: 18px 0 26px;
  padding-left: 24px;
}

.article-cta,
.article-final-cta {
  display: grid;
  gap: 18px;
  margin: clamp(46px, 7vw, 72px) 0;
  padding: clamp(30px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 22% 20%, rgba(201, 166, 66, 0.12), transparent 32%),
    rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 54px rgba(65, 58, 45, 0.06);
}

.article-cta h2,
.article-final-cta h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3.05rem);
}

.article-cta p,
.article-final-cta p {
  margin: 0;
}

.article-cta .button,
.article-final-cta .button {
  width: min(100%, 340px);
  min-height: 60px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.paid-footer {
  background: #edeae5;
}

.stack-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.stack-item {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(34px, 5vw, 58px);
  background: var(--white);
}

.faq-section {
  display: grid;
  gap: 0;
}

.faq-section h2 {
  margin-bottom: 28px;
  text-align: center;
}

.faq-section details {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

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

.faq-section summary {
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
}

.paid-faq summary {
  font-family: Didot, "Bodoni 72", Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.15vw, 2.25rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.25;
}

.legal-copy {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px clamp(90px, 12vw, 160px);
}

.legal-copy h2 {
  margin: 34px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 1.8vw, 1.8rem);
  font-weight: 500;
  line-height: 1.1;
}

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

.legal-copy p {
  margin: 0 0 14px;
  color: #565f67;
  font-size: clamp(0.9rem, 1.05vw, 1rem);
}

.legal-copy ul {
  margin: 0 0 18px;
  padding-left: 22px;
  color: #565f67;
  font-size: clamp(0.9rem, 1.05vw, 1rem);
}

.legal-copy li {
  margin-bottom: 8px;
}

.legal-copy a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 56px clamp(24px, 11vw, 150px);
  background: #edeae5;
  border-top: 1px solid var(--line);
}

.intake-body .site-footer {
  padding-top: 34px;
  padding-bottom: 34px;
}

.legal {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 54px);
}

@media (max-width: 900px) {
  .site-header {
    padding-inline: 24px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .site-nav {
    position: absolute;
    top: 86px;
    right: 24px;
    left: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .landing-page .site-header {
    position: relative;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .landing-page .site-nav a {
    color: var(--faint);
  }

  .hero {
    min-height: auto;
    padding-top: 90px;
  }

  .method-grid,
  .tone-section-heading,
  .tone-card-grid,
  .home-sample-intro,
  .home-sample-letter,
  .subscribe-form,
  .waitlist-actions.hero-subscribe-form,
  .paid-section,
  .paid-feature-grid,
  .benefits-grid,
  .paid-pricing-layout,
  .paid-proof-band,
  .resource-grid,
  .topic-grid,
  .home-faq-grid,
  .form-row.two,
  .form-row.three,
  .stack-item {
    grid-template-columns: 1fr;
  }

  .method-grid article {
    max-width: none;
  }

  .tone-section-heading {
    align-items: start;
  }

  .home-sample-intro {
    gap: 28px;
  }

  .home-sample-intro .method-heading {
    padding-right: 0;
  }

  .home-sample-intro > p {
    min-height: auto;
    padding: 0 0 30px;
    border-left: 0;
    text-align: left;
  }

  .sample-tabs {
    overflow-x: auto;
  }

  .sample-tab {
    min-width: max-content;
    padding-right: 34px;
  }

  .home-sample-letter {
    gap: 28px;
  }

  .sample-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding-right: 0;
    padding-bottom: 26px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .paid-proof-band div {
    padding-inline: 0;
  }

  .resources-intro-copy {
    padding-left: 0;
    border-left: 0;
  }

  .topic-grid article {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 1.25rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .button {
    min-height: 76px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
    justify-content: center;
  }

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

  .google-form-embed {
    min-height: 760px;
  }

  .landing-page .site-footer {
    gap: 12px;
    padding: 24px 16px;
  }

  .landing-page .legal,
  .landing-page .footer-links a {
    font-size: 0.58rem;
    letter-spacing: 0.14em;
  }

  .landing-page .footer-links {
    gap: 12px;
  }

  .sample-meta {
    grid-template-columns: 1fr;
  }

  .sample-tab {
    padding-right: 28px;
  }
}
