:root {
  color-scheme: light;
  --ink: #07110f;
  --ink-2: #152320;
  --paper: #fbfaf6;
  --panel: #fffef9;
  --panel-2: #edf8f2;
  --line: #dbe3dc;
  --muted: #5f6f68;
  --cyan: #22d6cf;
  --green: #41d883;
  --coral: #ff735f;
  --gold: #efbd47;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(7, 17, 15, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(20px, 4vw, 54px);
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--green);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  font-size: 0.94rem;
}

.nav a,
.header-cta {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.nav a:hover,
.header-cta:hover {
  color: var(--white);
}

.header-cta {
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 6px;
  padding: 10px 14px;
  background: rgba(7, 17, 15, 0.28);
  font-weight: 700;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(760px, 88svh);
  overflow: hidden;
  background: var(--ink);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 58% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 17, 15, 0.94) 0%, rgba(7, 17, 15, 0.72) 34%, rgba(7, 17, 15, 0.28) 72%, rgba(7, 17, 15, 0.12) 100%),
    linear-gradient(180deg, rgba(7, 17, 15, 0.44) 0%, rgba(7, 17, 15, 0) 46%, rgba(7, 17, 15, 0.52) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: 112px 0 58px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 16px;
  font-size: 4.8rem;
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.1rem;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.28rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 13px 18px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  background: var(--green);
  color: #04100b;
  box-shadow: 0 12px 30px rgba(65, 216, 131, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #54eda0;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.hero-stats div {
  min-width: 148px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(7, 17, 15, 0.42);
}

.hero-stats dt {
  margin-bottom: 3px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.section {
  padding: clamp(68px, 9vw, 118px) 0;
}

.intro-band {
  padding-top: clamp(42px, 7vw, 88px);
  padding-bottom: clamp(46px, 7vw, 84px);
  background: var(--paper);
}

.enter-band {
  padding-top: clamp(46px, 7vw, 84px);
  background: var(--panel);
}

.two-column,
.ownership-layout,
.fit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--panel);
  box-shadow: 0 10px 30px rgba(7, 17, 15, 0.06);
}

.feature-chip {
  display: inline-flex;
  margin-bottom: 30px;
  border: 1px solid rgba(34, 214, 207, 0.42);
  border-radius: 6px;
  padding: 5px 8px;
  color: #0f6d67;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.feature-card p,
.timeline p,
.fit-grid li,
.faq-list p,
.ownership-layout p {
  color: var(--muted);
}

.ownership-band {
  background: var(--ink);
  color: var(--white);
}

.ownership-band .section-kicker {
  color: var(--gold);
}

.ownership-layout p {
  color: rgba(255, 255, 255, 0.72);
}

.compare-list {
  display: grid;
  gap: 10px;
}

.compare-list div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.compare-list span {
  color: rgba(255, 255, 255, 0.58);
}

.compare-list strong {
  color: var(--white);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  min-height: 280px;
  border-top: 3px solid var(--ink);
  padding: 18px 18px 0 0;
}

.timeline span {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--coral);
  font-weight: 900;
}

.fit-band {
  background: var(--panel-2);
}

.check-list,
.x-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.x-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before,
.x-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
}

.check-list li::before {
  content: "+";
  color: #168457;
}

.x-list li::before {
  content: "-";
  color: #b34838;
}

.contact-note {
  margin-top: 24px;
  border-left: 4px solid var(--coral);
  padding: 12px 0 12px 16px;
  color: var(--muted);
}

.contact-note a {
  color: var(--ink);
  font-weight: 800;
}

.button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(34, 214, 207, 0.58);
  outline-offset: 2px;
}

.faq-section {
  background: var(--white);
}

.blog-preview-section,
.blog-list-section {
  background: var(--white);
}

.blog-preview-grid,
.blog-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.blog-list-grid {
  grid-template-columns: minmax(0, 1fr);
  max-width: 860px;
}

.blog-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--panel);
  box-shadow: 0 10px 30px rgba(7, 17, 15, 0.06);
}

.blog-card-visual {
  display: block;
  width: calc(100% + 48px);
  max-width: none;
  height: auto;
  aspect-ratio: 16 / 9;
  margin: -24px -24px 6px;
  object-fit: cover;
}

.blog-card-muted {
  background: var(--paper);
}

.blog-card h3 {
  font-size: 1.35rem;
}

.blog-card p {
  color: var(--muted);
}

.text-link {
  align-self: end;
  color: #0f6d67;
  font-weight: 900;
  text-decoration-thickness: 0.1em;
}

.site-header-solid {
  position: sticky;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 246, 0.96);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.site-header-solid .brand-mark {
  border-color: rgba(7, 17, 15, 0.18);
  background: var(--ink);
}

.site-header-solid .nav a,
.site-header-solid .header-cta {
  color: var(--ink-2);
}

.site-header-solid .nav a:hover,
.site-header-solid .header-cta:hover {
  color: #0f6d67;
}

.site-header-solid .header-cta {
  border-color: var(--line);
  background: var(--panel);
}

.blog-hero {
  padding: clamp(78px, 11vw, 132px) 0 clamp(48px, 7vw, 78px);
  background:
    linear-gradient(180deg, rgba(237, 248, 242, 0.96), rgba(251, 250, 246, 0)),
    var(--paper);
}

.blog-hero-narrow {
  padding-bottom: clamp(34px, 5vw, 56px);
}

.blog-hero-content {
  max-width: 900px;
}

.blog-hero h1 {
  color: var(--ink);
  font-size: clamp(2.7rem, 7vw, 4.9rem);
}

.blog-hero-copy {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.18rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.article-hero-media {
  overflow: hidden;
  margin: clamp(28px, 5vw, 46px) 0 0;
  border: 1px solid rgba(7, 17, 15, 0.1);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 28px 80px rgba(7, 17, 15, 0.12);
}

.article-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-shell {
  padding: clamp(42px, 7vw, 78px) 0 clamp(72px, 9vw, 118px);
  background: var(--white);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 230px) minmax(0, 780px);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.article-toc {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 10px;
  border-left: 3px solid var(--green);
  padding-left: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.article-toc strong {
  color: var(--ink);
}

.article-toc a {
  color: inherit;
  text-decoration: none;
}

.article-toc a:hover {
  color: #0f6d67;
}

.article-content {
  min-width: 0;
  color: var(--ink-2);
  font-size: 1.05rem;
}

.article-content h2 {
  margin-top: 52px;
  font-size: clamp(2rem, 4vw, 2.7rem);
}

.article-content h3 {
  margin-top: 34px;
  font-size: 1.35rem;
}

.article-content p,
.article-content li {
  color: var(--muted);
}

.article-content a {
  color: #0f6d67;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.article-content ul,
.article-content ol {
  padding-left: 1.2rem;
}

.article-content li + li {
  margin-top: 8px;
}

.article-lede {
  color: var(--ink-2);
  font-size: 1.22rem;
  font-weight: 650;
}

.article-figure {
  margin: 34px 0;
}

.article-figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 48px rgba(7, 17, 15, 0.08);
}

.article-figure figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.article-callout,
.article-cta {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--panel-2);
}

.article-cta {
  margin-top: 46px;
  background: var(--ink);
  color: var(--white);
}

.article-cta p {
  color: rgba(255, 255, 255, 0.74);
}

.article-cta .button {
  width: auto;
}

.table-wrap {
  max-width: 100%;
  overflow-x: auto;
  margin: 26px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: var(--panel);
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 13px 14px;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--ink);
  font-size: 0.84rem;
  text-transform: uppercase;
}

td {
  color: var(--muted);
}

tr:last-child td {
  border-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.site-footer {
  padding: 46px 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr auto;
  gap: 24px;
  align-items: start;
}

.site-footer nav {
  display: flex;
  gap: 16px;
}

.site-footer a {
  color: var(--white);
}

.fineprint {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  font-size: 0.85rem;
}

@media (max-width: 960px) {
  .feature-grid,
  .timeline,
  .blog-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-column,
  .ownership-layout,
  .fit-grid,
  .footer-layout,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-toc {
    position: static;
  }

  .site-header {
    position: absolute;
  }

  .site-header-solid {
    position: sticky;
  }

  h1 {
    font-size: 3.85rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .nav {
    display: none;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    gap: 10px;
    padding: 16px 14px;
  }

  .brand span:last-child {
    max-width: 104px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-cta {
    padding: 9px 10px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-image {
    object-position: 63% center;
  }

  .hero-content {
    padding-top: 96px;
    padding-bottom: 42px;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .hero-copy {
    font-size: 1.04rem;
  }

  .button {
    width: 100%;
  }

  .hero-stats,
  .feature-grid,
  .timeline,
  .blog-preview-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    display: grid;
  }

  .feature-card {
    min-height: 0;
  }

  .timeline li {
    min-height: 0;
    padding-bottom: 22px;
  }

  .timeline span {
    margin-bottom: 16px;
  }

  .compare-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

.sales-letter-page {
  --letter-ink: #111416;
  --letter-muted: #505963;
  --letter-red: #8f1d18;
  --letter-blue: #173f77;
  --letter-orange: #f05a28;
  --letter-orange-dark: #c8431a;
  --letter-paper: #fffefa;
  --letter-gray: #eef0f2;
  background: #f2f3f5;
  color: var(--letter-ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.75;
}

.sales-letter-page .letter-container {
  width: min(100% - 40px, 760px);
  margin: 0 auto;
}

.sales-letter {
  padding: 32px 0 76px;
  background: var(--letter-paper);
}

.letter-masthead {
  width: min(100vw - 40px, 1040px);
  margin: 0 0 24px 50%;
  padding: 6px 0 18px;
  transform: translateX(-50%);
  text-align: center;
}

.sales-letter .brand-line {
  margin: 0 0 12px;
  color: var(--letter-muted);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sales-letter .prehead {
  max-width: 900px;
  margin: 0 auto 12px;
  color: var(--letter-red);
  font-size: 1.28rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.45;
}

.sales-letter h1,
.sales-letter h2 {
  color: var(--letter-ink);
  letter-spacing: 0;
  text-wrap: balance;
}

.sales-letter h1 {
  max-width: 1040px;
  margin: 0 auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 4.25rem;
  font-weight: 900;
  line-height: 0.98;
  text-align: center;
}

.sales-letter h2 {
  margin: 0 0 20px;
  font-size: 2.05rem;
  font-weight: 900;
  line-height: 1.18;
  text-align: left;
}

.sales-letter p,
.sales-letter li {
  color: var(--letter-ink);
  font-size: 1.16rem;
  line-height: 1.75;
}

.sales-letter p {
  margin: 0 0 24px;
}

.sales-letter strong {
  color: #050607;
  font-weight: 900;
}

.salutation {
  color: var(--letter-blue) !important;
  font-size: 1.34rem !important;
  font-style: italic;
  font-weight: 800;
}

.sales-letter .letter-section {
  margin: 0 0 64px;
  padding: 0;
  background: transparent;
}

.sales-letter ul,
.sales-letter ol {
  margin: 28px 0 32px;
  padding-left: 1.65rem;
}

.sales-letter li {
  padding-left: 0.18rem;
}

.sales-letter li + li {
  margin-top: 14px;
}

.pull-quote {
  margin: 34px 0;
  border-left: 5px solid var(--letter-red);
  padding: 10px 0 10px 20px;
  color: #050607 !important;
  font-size: 1.34rem !important;
  font-weight: 800;
}

.math-box {
  margin: 34px 0;
  border: 2px solid #17191b;
  padding: 22px;
  background: var(--letter-gray);
}

.math-table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  table-layout: fixed;
  background: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.math-table caption {
  margin-bottom: 10px;
  color: var(--letter-ink);
  font-size: 0.9rem;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
}

.math-table th,
.math-table td {
  border: 1px solid #17191b;
  padding: 14px 16px;
  color: var(--letter-ink);
  font-size: 1rem;
  line-height: 1.35;
  text-align: left;
  vertical-align: middle;
}

.math-table th {
  width: 58%;
  background: #f8f9fa;
  font-weight: 900;
}

.math-table td {
  font-size: 1.14rem;
  font-weight: 900;
}

.math-total th,
.math-total td {
  background: #111416;
  color: #ffffff;
}

.math-highlight {
  margin: 22px 0 !important;
  color: var(--letter-ink) !important;
  font-size: 1.22rem !important;
  font-weight: 800;
}

.math-highlight strong,
.math-table-payback strong {
  color: var(--letter-red);
  font-size: 1.22em;
}

.math-table-payback .math-total strong {
  color: #fff7c7;
}

.cta-block {
  margin: 42px 0 0;
  text-align: center;
}

.sales-letter .button {
  display: flex;
  width: 100%;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  padding: 20px 22px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.06rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.sales-letter .button-primary {
  background: var(--letter-orange);
  color: #ffffff;
  box-shadow: 0 14px 0 var(--letter-orange-dark);
}

.sales-letter .button-primary:hover,
.sales-letter .button-primary:focus-visible {
  background: #ff6a35;
}

.microcopy {
  max-width: 620px;
  margin: 18px auto 0 !important;
  color: #686f77 !important;
  font-size: 0.96rem !important;
  font-style: italic;
  line-height: 1.55 !important;
  text-align: center;
}

.sales-letter-page .guarantee-box {
  margin: 0 0 68px;
  border: 3px dashed var(--letter-blue);
  padding: 28px 30px;
  background: #fff7c7;
}

.sales-letter-page .guarantee-box h2 {
  color: #102f5b;
}

.sales-letter-page .guarantee-box ol {
  margin-bottom: 0;
}

.final-cta {
  text-align: center;
}

.final-cta h2 {
  text-align: center;
}

.faq-letter .faq-item {
  border: 0;
  border-top: 1px solid #c9ced3;
  border-radius: 0;
  background: transparent;
  padding: 18px 0 20px;
}

.faq-letter .faq-item:last-child {
  border-bottom: 1px solid #c9ced3;
}

.faq-letter .faq-question {
  margin-bottom: 6px;
  color: var(--letter-ink);
  font-size: 1.14rem;
}

.faq-letter .faq-item p:last-child {
  margin-bottom: 0;
  color: var(--letter-muted);
}

.letter-footer {
  padding: 30px 0 42px;
  background: #111416;
  color: rgba(255, 255, 255, 0.82);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.letter-footer p {
  margin: 0 0 8px;
}

.letter-footer .fineprint {
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 800px) {
  .sales-letter {
    padding-top: 30px;
  }

  .sales-letter h1 {
    font-size: 3.15rem;
  }

  .sales-letter h2 {
    font-size: 1.82rem;
  }

  .prehead {
    font-size: 1.14rem;
  }
}

@media (max-width: 560px) {
  .sales-letter-page .letter-container {
    width: min(100% - 28px, 760px);
  }

  .letter-masthead {
    width: min(100vw - 28px, 760px);
    margin-bottom: 34px;
    padding-bottom: 22px;
  }

  .sales-letter h1 {
    font-size: 2.2rem;
    line-height: 1.03;
  }

  .sales-letter h2 {
    font-size: 1.55rem;
  }

  .sales-letter p,
  .sales-letter li {
    font-size: 1.08rem;
    line-height: 1.68;
  }

  .sales-letter .letter-section,
  .sales-letter-page .guarantee-box {
    margin-bottom: 52px;
  }

  .math-box,
  .sales-letter-page .guarantee-box {
    padding: 18px;
  }

  .math-table th,
  .math-table td {
    display: block;
    width: 100%;
  }

  .math-table tr + tr th {
    border-top-width: 2px;
  }

  .sales-letter .button {
    min-height: 58px;
    padding: 17px 14px;
    font-size: 0.9rem;
  }
}

.hero-story {
  min-height: min(700px, 82svh);
}

.hero-story .hero-content {
  padding-top: 96px;
  padding-bottom: 40px;
}

.hero-story h1 {
  max-width: 1050px;
  font-size: clamp(2.35rem, 4.45vw, 3.95rem);
  line-height: 0.98;
}

.hero-story .hero-copy {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: clamp(1.14rem, 2vw, 1.42rem);
  font-weight: 800;
}

.hero-note {
  max-width: 720px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.04rem;
}

.hero-story .hero-actions {
  margin-bottom: 0;
}

.letter-section {
  padding-top: clamp(52px, 8vw, 96px);
  background: var(--paper);
}

.letter-layout,
.essentials-layout,
.math-layout,
.offer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.75fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
}

.letter-copy {
  max-width: 760px;
  color: var(--ink-2);
  font-size: 1.08rem;
}

.letter-copy p,
.essentials-layout p,
.agitate-copy p {
  color: var(--muted);
}

.story-emphasis {
  margin: 28px 0 0;
  border-left: 4px solid var(--coral);
  padding: 8px 0 8px 18px;
  color: var(--ink) !important;
  font-size: 1.22rem;
  font-weight: 900;
}

.margin-snapshot {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--panel);
  box-shadow: 0 14px 42px rgba(7, 17, 15, 0.08);
}

.margin-snapshot h3 {
  margin-bottom: 20px;
  font-size: 1.35rem;
}

.margin-snapshot dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.margin-snapshot div {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.margin-snapshot dt {
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 900;
}

.margin-snapshot dd {
  margin: 0;
  color: var(--muted);
}

.trap-band {
  background: var(--white);
}

.search-section {
  background: var(--paper);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pain-item {
  min-height: 180px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--coral);
  border-radius: 8px;
  padding: 20px;
  background: var(--paper);
}

.pain-item span {
  display: block;
  margin-bottom: 28px;
  color: #9f3328;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pain-item p {
  margin: 0;
  color: var(--muted);
}

.agitate-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 5vw, 48px);
  max-width: 960px;
  margin-top: 34px;
  font-size: 1.08rem;
}

.essentials-band {
  background: var(--panel-2);
}

.needs-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: needs;
}

.needs-strip li {
  counter-increment: needs;
  min-height: 128px;
  border-top: 3px solid var(--ink);
  padding: 16px 16px 0 0;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 900;
}

.needs-strip li::before {
  content: counter(needs, decimal-leading-zero);
  display: block;
  margin-bottom: 24px;
  color: var(--coral);
  font-size: 0.9rem;
}

.solution-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.solution-grid .feature-card {
  min-height: 255px;
}

.math-band {
  background: var(--paper);
}

.math-layout {
  align-items: center;
}

.math-layout p,
.cost-panel p {
  color: var(--muted);
}

.math-closing {
  margin-top: 24px;
  color: var(--ink) !important;
  font-size: 1.18rem;
  font-weight: 900;
}

.cost-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 30px);
  background: var(--panel);
  box-shadow: 0 14px 42px rgba(7, 17, 15, 0.08);
}

.cost-panel h3 {
  margin-bottom: 18px;
  font-size: 1.45rem;
}

.cost-rows {
  display: grid;
  gap: 0;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cost-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 14px 16px;
  background: var(--white);
}

.cost-row + .cost-row {
  border-top: 1px solid var(--line);
}

.cost-row span {
  color: var(--muted);
  font-weight: 800;
}

.cost-row strong {
  color: var(--ink);
  white-space: nowrap;
}

.cost-total {
  background: var(--ink);
}

.cost-total span,
.cost-total strong {
  color: var(--white);
}

.podos-payback {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.podos-payback div {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 14px;
  align-items: center;
  border-left: 4px solid var(--green);
  padding: 12px 14px;
  background: var(--panel-2);
}

.podos-payback span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
}

.podos-payback strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.offer-band {
  background: var(--white);
}

.offer-layout {
  align-items: center;
}

.offer-layout p,
.urgency-list li,
.setup-bonus p,
.guarantee-list li {
  color: var(--muted);
}

.setup-bonus {
  margin: 0 0 28px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 28px);
  background: var(--panel-2);
}

.setup-bonus h2 {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.08;
}

.setup-bonus .feature-chip {
  margin-bottom: 18px;
  border-color: rgba(65, 216, 131, 0.48);
  color: #168457;
}

.setup-bonus p:last-child {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 800;
}

.offer-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 30px);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.offer-card h3 {
  margin-bottom: 18px;
  font-size: 1.7rem;
}

.price-lockup {
  display: grid;
  gap: 2px;
  margin: 8px 0 16px;
}

.price-lockup span {
  color: var(--ink);
  font-size: clamp(3.3rem, 7vw, 5.2rem);
  font-weight: 900;
  line-height: 0.9;
}

.price-lockup small {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.urgency-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.urgency-list li {
  position: relative;
  padding-left: 26px;
}

.urgency-list li::before {
  content: "!";
  position: absolute;
  left: 0;
  top: 0;
  color: #9f3328;
  font-weight: 900;
}

.offer-card .button {
  width: 100%;
  margin: 10px 0 16px;
}

.guarantee-box {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.guarantee-box h4 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1.2;
}

.guarantee-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 1.1rem;
}

.guarantee-list li {
  padding-left: 4px;
  font-size: 0.94rem;
}

.guarantee-list strong {
  color: var(--ink);
}

.closing-line {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 900;
}

@media (max-width: 960px) {
  .hero-story h1 {
    font-size: 2.85rem;
  }

  .letter-layout,
  .essentials-layout,
  .math-layout,
  .offer-layout {
    grid-template-columns: 1fr;
  }

  .pain-grid,
  .solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .margin-snapshot {
    max-width: 640px;
  }
}

@media (max-width: 680px) {
  .hero-story {
    min-height: auto;
  }

  .hero-story .hero-content {
    padding-top: 86px;
    padding-bottom: 34px;
  }

  .hero-story h1 {
    font-size: 1.92rem;
  }

  .hero-note {
    font-size: 0.98rem;
  }

  .pain-grid,
  .agitate-copy,
  .needs-strip,
  .solution-grid {
    grid-template-columns: 1fr;
  }

  .cost-row,
  .podos-payback div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .pain-item,
  .solution-grid .feature-card {
    min-height: 0;
  }
}
