:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #5d6677;
  --line: #d8dee8;
  --paper: #f7f9fb;
  --white: #ffffff;
  --green: #0f8f6e;
  --green-soft: #dff7ef;
  --red: #df2c2f;
  --charcoal: #252a32;
  --navy: #101827;
  --navy-2: #182235;
  --blue: #2868d8;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(216, 222, 232, 0.78);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 800;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.055em;
  color: var(--charcoal);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.96;
}

.wordmark-pdf {
  display: inline-flex;
  align-items: center;
  min-height: 0.76em;
  padding: 0.02em 0.16em 0.07em;
  color: var(--white);
  background: var(--red);
  border-radius: 0.13em;
  box-shadow: 0 0.08em 0.2em rgba(17, 24, 39, 0.14);
}

.wordmark-e {
  color: var(--charcoal);
}

.wordmark-x {
  color: var(--red);
}

.wordmark-nav {
  font-size: 1.05rem;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.site-header a:hover {
  color: var(--green);
}

.hero {
  position: relative;
  display: grid;
  min-height: 94vh;
  overflow: hidden;
  background:
    linear-gradient(115deg, #ffffff 0%, #f7fafc 42%, #e8eef5 100%);
}

.hero::before {
  content: "";
  position: absolute;
  left: clamp(18px, 8vw, 104px);
  top: calc(50% + 142px);
  z-index: 2;
  width: min(34vw, 500px);
  height: 1px;
  background: linear-gradient(90deg, rgba(15, 143, 110, 0.34), rgba(15, 143, 110, 0.12), rgba(15, 143, 110, 0));
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  height: 18vh;
  background: linear-gradient(180deg, rgba(247, 249, 251, 0), var(--paper));
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 72px 0 0;
  width: 100%;
  height: calc(100% - 72px);
  object-fit: cover;
  object-position: center top;
  opacity: 1;
  filter: saturate(1.06) contrast(1.14) drop-shadow(0 34px 68px rgba(15, 23, 42, 0.14));
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.78) 9%, #000 18%),
    linear-gradient(180deg, #000 0%, #000 88%, transparent 100%);
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.78) 9%, #000 18%),
    linear-gradient(180deg, #000 0%, #000 88%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.99) 0%,
      rgba(255, 255, 255, 0.97) 34%,
      rgba(255, 255, 255, 0.84) 48%,
      rgba(255, 255, 255, 0.46) 60%,
      rgba(255, 255, 255, 0) 74%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(238, 243, 247, 0) 58%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(640px, calc(100% - 36px));
  margin-left: clamp(18px, 8vw, 104px);
  padding-top: 88px;
  color: var(--ink);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-ink .eyebrow {
  color: #58d3b1;
}

.hero h1,
.section h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero h1 {
  font-size: clamp(4rem, 9vw, 7.4rem);
  font-weight: 900;
}

.wordmark-hero {
  gap: 0.01em;
  transform: translateX(-0.03em);
  filter: drop-shadow(0 18px 34px rgba(15, 23, 42, 0.1));
}

.wordmark-hero .wordmark-e,
.wordmark-hero .wordmark-x {
  text-shadow: 0 0.08em 0.18em rgba(15, 23, 42, 0.08);
}

.hero-copy p:not(.eyebrow) {
  max-width: 570px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 86px;
  padding: 0 20px;
  border-radius: 6px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  border: 0;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(15, 143, 110, 0.25);
}

.hero-link:hover {
  background: #087f63;
}

.section {
  padding: clamp(62px, 8vw, 120px) clamp(18px, 5vw, 72px);
}

.section-white {
  background: var(--white);
}

.section-soft {
  background: #eef3f7;
}

.section-extract {
  background: var(--white);
  color: var(--ink);
  padding-block: clamp(52px, 6vw, 86px);
}

.section-ink {
  background: var(--navy);
  color: var(--white);
}

.section-finder {
  background: #eef3f7;
  color: var(--ink);
  padding-block: clamp(52px, 6vw, 86px);
}

.section-tools {
  background: var(--white);
  color: var(--ink);
  padding-block: clamp(62px, 7vw, 104px);
}

.section-merge {
  background: #eef3f7;
  color: var(--ink);
  padding-block: clamp(52px, 6vw, 86px);
}

.section-details {
  background: var(--white);
  color: var(--ink);
  padding-block: clamp(54px, 6vw, 88px);
}

.section-heading,
.feature-layout,
.closing {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.section-heading {
  margin-bottom: clamp(32px, 5vw, 58px);
}

.section h2 {
  max-width: 770px;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  font-weight: 900;
}

.extract-showcase {
  display: grid;
  gap: clamp(22px, 2.6vw, 34px);
  width: min(1440px, 100%);
  margin-inline: auto;
}

.extract-intro {
  display: grid;
  grid-template-columns: minmax(300px, 0.55fr) minmax(360px, 0.9fr);
  align-items: end;
  gap: clamp(16px, 3vw, 48px);
}

.extract-intro h2 {
  max-width: 800px;
  justify-self: end;
  font-size: clamp(2.25rem, 3.45vw, 3.35rem);
  font-weight: 900;
}

.extract-intro p {
  max-width: 520px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
}

.extract-media {
  position: relative;
  background: #dfe6ee;
  box-shadow: 0 28px 74px rgba(15, 23, 42, 0.14);
}

.extract-pointer {
  position: absolute;
  top: 2.4%;
  right: 4.7%;
  width: clamp(26px, 3.3vw, 48px);
  aspect-ratio: 46 / 58;
  background: url("assets/pointer-cursor.svg") center / contain no-repeat;
  filter: drop-shadow(0 4px 8px rgba(15, 23, 42, 0.35));
  transform: rotate(-12deg);
  transform-origin: 30% 12%;
  pointer-events: none;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(34px, 6vw, 90px);
}

.feature-layout.reverse {
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.8fr);
}

.feature-layout.reverse .feature-copy {
  order: 2;
}

.finder-showcase {
  display: grid;
  gap: clamp(22px, 2.6vw, 34px);
  width: min(1440px, 100%);
  margin-inline: auto;
}

.finder-intro {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: clamp(16px, 3vw, 48px);
}

.finder-intro h2 {
  max-width: 800px;
  font-size: clamp(2.25rem, 3.45vw, 3.35rem);
  font-weight: 900;
}

.finder-intro p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  justify-self: end;
}

.feature-copy p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
}

.section-ink .feature-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.media-panel {
  overflow: hidden;
  border: 1px solid rgba(216, 222, 232, 0.78);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.section-ink .media-panel {
  border-color: rgba(255, 255, 255, 0.12);
  background: var(--navy-2);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.media-panel img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center top;
  background: #e6ecf2;
}

.media-panel.extract-media img,
.media-panel img.finder-screenshot {
  display: block;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  background: #a9adb2;
}

.finder-media {
  background: #dfe6ee;
  box-shadow: 0 28px 74px rgba(15, 23, 42, 0.14);
}

.finder-media-pair {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(16px, 2vw, 28px);
  align-items: center;
}

.finder-media-secondary {
  transform: translateY(clamp(12px, 2vw, 30px));
}

.tools-showcase,
.details-showcase {
  display: grid;
  gap: clamp(28px, 4vw, 54px);
  width: min(1440px, 100%);
  margin-inline: auto;
}

.tools-intro,
.details-intro {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: clamp(16px, 3vw, 48px);
}

.tools-intro h2,
.details-intro h2 {
  max-width: 820px;
  font-size: clamp(2.25rem, 3.45vw, 3.35rem);
  font-weight: 900;
}

.tools-intro p,
.details-intro p:not(.eyebrow) {
  max-width: 530px;
  justify-self: end;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
}

.tools-media-grid,
.workflow-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.tool-media,
.workflow-media {
  background: #dfe6ee;
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.12);
}

.media-panel.tool-media img,
.media-panel.workflow-media img {
  display: block;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  background: #dfe6ee;
}

.workflow-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.56fr) minmax(0, 1.44fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  margin-top: clamp(18px, 3vw, 38px);
  padding-top: clamp(34px, 5vw, 66px);
  border-top: 1px solid var(--line);
}

.workflow-feature-copy h3 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.02;
}

.workflow-feature-copy p:not(.eyebrow) {
  max-width: 500px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.merge-showcase {
  display: grid;
  gap: clamp(22px, 2.6vw, 34px);
  width: min(1440px, 100%);
  margin-inline: auto;
}

.merge-intro {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: clamp(16px, 3vw, 48px);
}

.merge-intro h2 {
  max-width: 800px;
  font-size: clamp(2.25rem, 3.45vw, 3.35rem);
  font-weight: 900;
}

.merge-intro p {
  max-width: 520px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  justify-self: end;
}

.merge-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  gap: clamp(18px, 2.4vw, 34px);
  align-items: center;
}

.merge-media {
  background: #dfe6ee;
  box-shadow: 0 28px 74px rgba(15, 23, 42, 0.14);
}

.media-panel.merge-media img {
  display: block;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  background: #dfe6ee;
}

.merge-media-order {
  transform: translateY(clamp(14px, 2.2vw, 32px));
}

.details-intro {
  grid-template-columns: minmax(260px, 0.4fr) minmax(420px, 1fr);
}

.details-intro .eyebrow {
  align-self: start;
}

.details-intro h2 {
  justify-self: end;
}

.details-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.details-media-grid figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eef3f7;
}

.details-media-grid img {
  width: 100%;
  height: auto;
  background: #dfe6ee;
}

.details-media-grid figcaption {
  padding: 14px 16px 16px;
  border-top: 1px solid var(--line);
  background: var(--white);
  color: #344054;
  font-size: 0.92rem;
  font-weight: 760;
}

.section-saves {
  background: #f2f6fa;
}

.saves {
  display: grid;
  gap: clamp(30px, 4vw, 46px);
  max-width: 1180px;
  margin: 0 auto;
}

.saves-intro h2 {
  max-width: 720px;
  font-size: clamp(2.3rem, 4vw, 3.8rem);
}

.saves-intro p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.saves-ledger {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ledger-block {
  padding: clamp(24px, 3.2vw, 38px) 0;
}

.ledger-block h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.1;
}

.ledger-tools {
  padding-left: clamp(24px, 3.2vw, 48px);
  border-left: 1px solid var(--line);
}

.ledger-list,
.ledger-checks {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ledger-list li {
  display: grid;
  grid-template-columns: minmax(160px, 0.42fr) minmax(0, 1fr);
  gap: clamp(16px, 2vw, 28px);
  padding: 18px 0;
  border-top: 1px solid rgba(216, 222, 232, 0.9);
}

.ledger-list li:first-child,
.ledger-checks li:first-child {
  border-top: 0;
}

.ledger-list strong {
  color: var(--ink);
  font-weight: 850;
}

.ledger-list span {
  color: var(--muted);
  font-size: 0.98rem;
}

.ledger-checks li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 14px 0;
  border-top: 1px solid rgba(216, 222, 232, 0.9);
  color: #344054;
  font-size: 0.95rem;
  font-weight: 720;
}

.ledger-checks li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.45em;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px var(--green-soft);
}

.bottom-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding-top: clamp(28px, 4vw, 46px);
  border-top: 1px solid var(--line);
}

.bottom-cta .hero-link {
  margin-top: 0;
}

.media-note {
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.section-ink .media-note {
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.65);
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer > span:first-child {
  color: var(--ink);
  font-weight: 850;
}

.wordmark-footer {
  font-size: 1rem;
}

.footer-links {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  color: #485264;
  font-weight: 720;
}

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

.legal-main {
  min-height: calc(100vh - 76px);
  padding-top: 72px;
  background: var(--white);
}

.legal-hero {
  padding: clamp(68px, 9vw, 118px) clamp(18px, 5vw, 72px) clamp(48px, 7vw, 82px);
  border-bottom: 1px solid var(--line);
  background: #eef3f7;
}

.legal-hero-inner,
.legal-content {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.legal-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.legal-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.24rem);
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid #cbd5e1;
  color: #445065;
  font-size: 0.92rem;
  font-weight: 700;
}

.legal-content {
  padding: clamp(42px, 6vw, 76px) 18px clamp(72px, 9vw, 118px);
}

.policy-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 34px;
  border-block: 1px solid var(--line);
}

.policy-fact {
  padding: 24px clamp(18px, 3vw, 32px);
  border-right: 1px solid var(--line);
}

.policy-fact:last-child {
  border-right: 0;
}

.policy-fact strong,
.support-row strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.policy-fact span,
.support-row span,
.legal-content p,
.legal-content li,
.legal-content dd {
  color: var(--muted);
}

.legal-content section {
  display: grid;
  grid-template-columns: minmax(210px, 0.34fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 82px);
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.25;
  letter-spacing: 0;
}

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

.legal-copy > :last-child {
  margin-bottom: 0;
}

.legal-content a {
  color: var(--green);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.legal-content li + li {
  margin-top: 8px;
}

.data-use-list,
.support-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.data-use-list li,
.support-row {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.data-use-list li:first-child,
.support-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.support-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  padding: 26px 0;
  border-block: 1px solid var(--line);
}

.support-contact p {
  margin: 0;
}

.support-contact a {
  flex: 0 0 auto;
}

.back-to-top {
  position: fixed;
  right: clamp(16px, 2vw, 26px);
  bottom: clamp(16px, 2vw, 26px);
  z-index: 30;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(216, 222, 232, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(12px);
}

.back-to-top span {
  width: 13px;
  height: 13px;
  border-top: 3px solid var(--ink);
  border-left: 3px solid var(--ink);
  transform: translateY(3px) rotate(45deg);
}

.back-to-top:hover {
  border-color: rgba(15, 143, 110, 0.42);
  background: var(--green);
}

.back-to-top:hover span {
  border-color: var(--white);
}

@media (max-width: 920px) {
  .extract-intro,
  .finder-intro,
  .merge-intro,
  .tools-intro,
  .details-intro,
  .finder-media-pair,
  .workflow-feature,
  .merge-media-grid,
  .saves-ledger,
  .feature-layout,
  .feature-layout.reverse {
    grid-template-columns: 1fr;
  }

  .tools-media-grid,
  .workflow-media-grid {
    grid-template-columns: 1fr;
  }

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

  .finder-media-secondary,
  .merge-media-order {
    transform: none;
  }

  .ledger-tools {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .feature-layout.reverse .feature-copy {
    order: 0;
  }

  .extract-intro h2 {
    justify-self: start;
  }

  .extract-intro p,
  .finder-intro p:not(.eyebrow),
  .merge-intro p,
  .tools-intro p,
  .saves-intro p:not(.eyebrow) {
    max-width: 620px;
    justify-self: start;
  }

  .details-intro h2 {
    justify-self: start;
  }

}

@media (max-width: 680px) {
  .site-header {
    min-height: 64px;
  }

  .brand > .wordmark {
    display: none;
  }

  .site-header nav {
    gap: 14px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 650px;
  }

  .hero::before {
    display: none;
  }

  .hero-copy {
    margin-inline: 18px;
    align-self: start;
    padding-top: 132px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 21vw, 5.5rem);
  }

  .hero-copy p:not(.eyebrow) {
    max-width: 340px;
    font-size: 1rem;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.93), rgba(238, 243, 247, 0.5));
  }

  .hero-media {
    top: 230px;
    right: -44vw;
    width: 160vw;
    opacity: 0.52;
  }

  .section h2 {
    font-size: clamp(2.1rem, 11vw, 3.35rem);
  }

  .section {
    padding-block: 54px;
  }

  .ledger-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .details-media-grid {
    grid-template-columns: 1fr;
  }

  .ledger-block {
    padding-block: 24px;
  }

  .site-footer {
    display: grid;
  }

  .footer-links {
    justify-self: start;
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .policy-facts,
  .legal-content section {
    grid-template-columns: 1fr;
  }

  .policy-fact {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .policy-fact:last-child {
    border-bottom: 0;
  }

  .support-contact {
    align-items: flex-start;
    flex-direction: column;
  }
}
