:root {
  color-scheme: light;
  --bg: #f5f5f7;
  --bg-warm: #f7f6f2;
  --surface: #ffffff;
  --ink: #101113;
  --muted: #60636a;
  --line: #dedfe4;
  --teal: #49bdb4;
  --teal-dark: #087c77;
  --blue: #3988ef;
  --blue-dark: #1768c5;
  --accent-soft: #e7f7f5;
  --shadow: 0 24px 70px rgba(25, 37, 52, 0.11);
  --shadow-soft: 0 12px 34px rgba(25, 37, 52, 0.07);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content: 1160px;
  --reading: 720px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  z-index: -1;
  height: 430px;
  background: linear-gradient(180deg, rgba(255,255,255,.76), rgba(245,245,247,0));
  pointer-events: none;
}

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

a {
  color: inherit;
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

a:hover {
  text-decoration-color: var(--teal-dark);
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
  border-radius: 6px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
  transition: transform .15s ease;
}

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

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -.035em;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(3.15rem, 6.4vw, 5.9rem);
  max-width: 820px;
}

@media (min-width: 761px) {
  .hero h1 {
    font-size: clamp(3.15rem, 6.1vw, 5.6rem);
  }
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.3rem, 4.2vw, 4rem);
  max-width: 790px;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
}

.section-shell,
.nav-shell,
.footer-shell {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(16, 17, 19, .08);
  background: rgba(247, 247, 248, .86);
  -webkit-backdrop-filter: saturate(150%) blur(18px);
  backdrop-filter: saturate(150%) blur(18px);
}

.nav-shell {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-size: 1.34rem;
  font-weight: 780;
  letter-spacing: -.045em;
  text-decoration: none;
}

.wordmark::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  vertical-align: .12em;
}

.desktop-nav,
.footer-shell nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a,
.footer-shell nav a {
  color: #3f4248;
  font-size: .92rem;
  font-weight: 650;
  text-decoration: none;
}

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

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  cursor: pointer;
  list-style: none;
  padding: 10px 2px 10px 12px;
  font-size: .94rem;
  font-weight: 700;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav nav {
  position: absolute;
  top: 48px;
  right: 0;
  display: grid;
  min-width: 190px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.mobile-nav nav a {
  padding: 11px 12px;
  border-radius: 10px;
  font-weight: 650;
  text-decoration: none;
}

.mobile-nav nav a:hover {
  background: var(--bg);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(290px, .66fr);
  gap: clamp(48px, 7vw, 100px);
  min-height: 780px;
  padding-block: 74px 88px;
  align-items: center;
}

.hero-copy {
  padding-top: 10px;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.16rem, 2vw, 1.42rem);
  line-height: 1.52;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .96rem;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
}

.button-primary {
  background: linear-gradient(110deg, var(--teal-dark), var(--blue-dark));
  color: #fff;
  box-shadow: 0 12px 28px rgba(42, 132, 192, .19);
}

.button-primary:hover {
  filter: saturate(112%) brightness(.98);
}

.button-secondary {
  border-color: #c7c9d0;
  background: var(--surface);
  color: var(--ink);
}

.button-light {
  background: #fff;
  color: #17202d;
}

.status-text,
.final-actions p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
}

.hero-proof {
  display: inline-block;
  margin: 24px 0 0;
  color: #4b4f56;
  font-size: .92rem;
  font-weight: 680;
}

.hero-proof::before {
  content: "✓";
  margin-right: 8px;
  color: var(--teal-dark);
}

.product-shot {
  margin: 0;
}

.product-shot img {
  width: 100%;
  border-radius: var(--radius-xl);
  background: #f2f2f7;
  box-shadow: var(--shadow);
}

.hero-visual {
  width: min(100%, 390px);
  justify-self: end;
  transform: rotate(0deg);
}

.pain-section {
  padding-block: 112px;
  background: #111316;
  color: #fff;
}

.pain-layout {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 80px;
  align-items: start;
}

.pain-layout h2 {
  max-width: 520px;
}

.pain-copy {
  max-width: 640px;
  padding-top: 48px;
  color: #d4d6da;
  font-size: 1.15rem;
}

.section-number {
  margin-bottom: 18px;
  color: var(--teal);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.example-line {
  margin: 30px 0 0;
  color: #fff;
  font-size: .92rem;
  font-weight: 700;
}

.how-section {
  padding-block: 128px;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 56px;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.how-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .62fr);
  gap: 70px;
  align-items: center;
}

.steps-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  padding: 0 0 42px;
}

.steps-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 48px;
  bottom: 0;
  left: 23px;
  width: 1px;
  background: #c9d8dd;
}

.step-index {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid #acd9d6;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--teal-dark);
  font-size: .91rem;
  font-weight: 800;
}

.steps-list p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.compact-shot {
  width: min(100%, 330px);
  justify-self: center;
}

.sending-section {
  padding-block: 128px;
  background: var(--bg-warm);
}

.centered-heading {
  margin-inline: auto;
  text-align: center;
}

.centered-heading h2,
.centered-heading p {
  margin-inline: auto;
}

.sending-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.send-choice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, .64fr);
  gap: 30px;
  overflow: hidden;
  padding: 36px 34px 0;
  border: 1px solid rgba(16,17,19,.08);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.primary-choice {
  border-color: #bae4df;
}

.choice-label {
  display: inline-flex;
  margin-bottom: 44px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--teal-dark);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.choice-copy p {
  margin: 0;
  color: var(--muted);
}

.send-shot {
  width: 100%;
  align-self: end;
}

.send-shot img {
  border-radius: 24px 24px 0 0;
  box-shadow: 0 18px 44px rgba(25,37,52,.12);
}

.reassurance {
  max-width: 860px;
  margin: 42px auto 0;
  color: #4d535a;
  text-align: center;
}

.control-name,
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .9em;
}

code {
  padding: .12em .33em;
  border-radius: 5px;
  background: #eef0f3;
}

.privacy-section {
  display: grid;
  grid-template-columns: 1fr minmax(270px, .55fr);
  gap: 84px;
  padding-block: 128px;
  align-items: center;
}

.privacy-copy h2 {
  max-width: 560px;
}

.privacy-copy {
  min-width: 0;
}

.trust-list {
  display: grid;
  gap: 14px;
  max-width: 640px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding: 15px 18px 15px 52px;
  border: 1px solid #e2e4e8;
  border-radius: 15px;
  background: var(--surface);
  font-weight: 680;
}

.trust-list li::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 18px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--teal-dark);
  font-size: .76rem;
  transform: translateY(-50%);
}

.text-link {
  color: var(--blue-dark);
  font-weight: 720;
}

.privacy-visual {
  width: min(100%, 330px);
  justify-self: center;
}

.privacy-visual img {
  width: 100%;
  filter: drop-shadow(0 20px 30px rgba(25, 37, 52, .1));
}

.pricing-section {
  padding-block: 120px;
  background: #111316;
  color: #fff;
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 80px;
  align-items: center;
}

.pricing-intro > p:last-child {
  max-width: 620px;
  color: #c9ccd1;
}

.pricing-card {
  padding: 36px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.055));
}

.pricing-card p {
  color: #c9ccd1;
}

.pricing-card .plan-kicker {
  margin-bottom: 10px;
  color: #74ded5;
  font-size: .78rem;
  font-weight: 780;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-size: 2rem;
}

.price {
  display: flex;
  flex-wrap: wrap;
  gap: 0 5px;
  align-items: baseline;
  margin: 28px 0 0;
}

.price span {
  color: #fff;
  font-size: 1.65rem;
  font-weight: 780;
  letter-spacing: -.035em;
}

.price em {
  margin-inline: 8px;
  color: #969ba3;
  font-size: .85rem;
  font-style: normal;
}

.pricing-prelaunch-cta {
  margin-top: 28px;
  border-color: rgba(255,255,255,.2);
  background: linear-gradient(110deg, var(--teal-dark), var(--blue-dark));
  color: #fff;
  box-shadow: none;
  cursor: default;
  pointer-events: none;
  user-select: none;
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  margin-top: 96px;
  margin-bottom: 120px;
  padding: 58px 62px;
  border-radius: var(--radius-xl);
  background: linear-gradient(125deg, var(--teal-dark), var(--blue-dark));
  color: #fff;
  box-shadow: 0 26px 68px rgba(35,123,184,.24);
}

.final-cta h2 {
  margin-bottom: 14px;
}

.final-cta > div:first-child p:last-child {
  max-width: 640px;
  margin-bottom: 0;
  color: rgba(255,255,255,.9);
}

.final-cta .eyebrow {
  color: #fff;
}

.final-actions {
  display: grid;
  gap: 13px;
  min-width: 210px;
  place-content: center;
  text-align: center;
}

.final-actions p {
  color: rgba(255,255,255,.82);
}

.site-footer {
  padding-block: 34px;
  border-top: 1px solid rgba(16,17,19,.08);
  background: #efeff2;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 26px;
}

.footer-shell > p {
  margin: 0;
  color: var(--muted);
  font-size: .83rem;
  text-align: right;
}

/* Interior pages */
.page-hero {
  padding-block: 108px 82px;
}

.page-hero h1 {
  margin-bottom: 20px;
}

.page-hero > p:last-child,
.page-hero > div > p:last-child {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.18rem;
}

.faq-page {
  display: grid;
  gap: 100px;
  padding-bottom: 110px;
}

.faq-group {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 70px;
  align-items: start;
}

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

.faq-group-heading h2 {
  font-size: 2.1rem;
}

.faq-list {
  border-top: 1px solid #cfd1d6;
}

.faq-list details {
  border-bottom: 1px solid #cfd1d6;
  scroll-margin-top: 110px;
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 25px 54px 25px 0;
  font-size: 1.12rem;
  font-weight: 720;
  line-height: 1.35;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 28px;
  color: var(--teal-dark);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  transform: translateY(-50%);
}

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

.faq-list details:target summary {
  color: var(--blue-dark);
}

.details-answer {
  max-width: 720px;
  padding: 0 58px 26px 0;
  color: var(--muted);
}

.details-answer p {
  margin-bottom: 0;
}

.compact-cta {
  display: flex;
  gap: 40px;
  margin-bottom: 110px;
  padding: 42px 46px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  align-items: center;
  justify-content: space-between;
}

.compact-cta h2 {
  margin-bottom: 10px;
  font-size: 2rem;
}

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

.support-hero {
  display: flex;
  gap: 50px;
  align-items: end;
  justify-content: space-between;
}

.support-hero .button {
  flex: 0 0 auto;
  margin-bottom: 8px;
}

.support-topics {
  padding-bottom: 115px;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.topic-grid article {
  min-height: 220px;
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.topic-grid article > span {
  display: block;
  margin-bottom: 38px;
  color: var(--teal-dark);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .13em;
}

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

.support-contact {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 80px;
  margin-bottom: 110px;
  padding: 56px;
  border-radius: var(--radius-xl);
  background: #111316;
  color: #fff;
}

.support-contact h2 {
  margin-bottom: 18px;
}

.support-contact > div:first-child > p:not(.eyebrow):not(.privacy-warning) {
  color: #c9ccd1;
}

.privacy-warning {
  margin: 28px 0 0;
  padding: 18px 20px;
  border-left: 3px solid var(--teal);
  background: rgba(255,255,255,.07);
  color: #fff;
}

.contact-actions {
  display: grid;
  gap: 16px;
  place-content: center stretch;
}

.contact-actions .text-link {
  color: #8ccfff;
  text-align: center;
}

.privacy-page-hero {
  padding-block: 88px 28px;
}

.privacy-page-hero h1 {
  margin-bottom: 0;
  font-size: clamp(3rem, 4vw, 3.5rem);
  line-height: 1.08;
}

.policy-shell {
  max-width: 860px;
  padding-bottom: 104px;
}

.policy-placeholder {
  padding: 38px;
  border: 2px solid #d2a13b;
  border-radius: var(--radius-lg);
  background: #fff9e8;
}

.local-only-label {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #2b2519;
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.policy-placeholder h2 {
  margin-bottom: 14px;
  font-size: 2rem;
}

.policy-placeholder p:last-child {
  margin-bottom: 0;
}

.policy-body-frame {
  margin: 24px 0 30px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.policy-effective-date {
  margin: 32px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .85rem;
}

.policy-effective-date strong {
  color: var(--ink);
}

.policy-body-frame > .policy-intro {
  margin-bottom: 34px;
}

.policy-body-frame > section + section {
  margin-top: 38px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.policy-body-frame section h2 {
  max-width: none;
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 2.2vw, 2rem);
  line-height: 1.2;
  letter-spacing: -.02em;
}

.policy-body-frame section > :last-child {
  margin-bottom: 0;
}

.policy-body-frame span {
  height: 11px;
  border-radius: 999px;
  background: #e9eaed;
}

.policy-body-frame span:nth-child(2) { width: 88%; }
.policy-body-frame span:nth-child(3) { width: 94%; }
.policy-body-frame span:nth-child(4) { width: 72%; }
.policy-body-frame span:nth-child(5) { width: 84%; }

.policy-support {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr minmax(260px, .55fr);
    gap: 42px;
  }

  .send-choice {
    grid-template-columns: 1fr;
  }

  .choice-label {
    margin-bottom: 22px;
  }

  .send-shot {
    width: min(100%, 260px);
    justify-self: center;
  }

  .faq-group {
    grid-template-columns: 220px 1fr;
    gap: 42px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .section-shell,
  .nav-shell,
  .footer-shell {
    width: min(calc(100% - 32px), var(--content));
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .nav-shell {
    min-height: 64px;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.1rem);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 44px;
    min-height: 0;
    padding-block: 62px 76px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-lede {
    font-size: 1.08rem;
  }

  .hero-actions {
    display: grid;
    gap: 13px;
    justify-items: start;
  }

  .hero-visual {
    width: min(78vw, 315px);
    justify-self: center;
    transform: none;
  }

  .pain-section,
  .how-section,
  .sending-section,
  .privacy-section,
  .pricing-section {
    padding-block: 84px;
  }

  .pain-layout,
  .how-layout,
  .privacy-section,
  .pricing-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

  .pain-copy {
    padding-top: 0;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .compact-shot,
  .privacy-visual {
    width: min(78vw, 305px);
  }

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

  .send-choice {
    padding: 30px 26px 0;
  }

  .send-shot {
    width: min(72vw, 280px);
  }

  .privacy-copy {
    order: 1;
  }

  .privacy-visual {
    order: 2;
  }

  .pricing-layout {
    gap: 40px;
  }

  .final-cta {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 72px;
    margin-bottom: 80px;
    padding: 42px 28px;
  }

  .final-actions {
    justify-items: start;
    text-align: left;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-shell nav {
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-shell > p {
    text-align: left;
  }

  .page-hero {
    padding-block: 76px 60px;
  }

  .faq-page {
    gap: 76px;
    padding-bottom: 84px;
  }

  .faq-group {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .faq-group-heading {
    position: static;
  }

  .faq-group-heading h2 {
    font-size: 1.85rem;
  }

  .faq-list summary {
    padding-block: 22px;
    font-size: 1.04rem;
  }

  .details-answer {
    padding-right: 38px;
  }

  .compact-cta,
  .support-hero {
    display: grid;
    align-items: start;
  }

  .compact-cta {
    margin-bottom: 84px;
    padding: 34px 28px;
  }

  .support-topics {
    padding-bottom: 84px;
  }

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

  .topic-grid article > span {
    margin-bottom: 24px;
  }

  .support-contact {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-bottom: 84px;
    padding: 38px 26px;
  }

  .contact-actions {
    justify-items: start;
  }

  .contact-actions .text-link {
    text-align: left;
  }

  .privacy-page-hero {
    padding-block: 56px 24px;
  }

  .privacy-page-hero h1 {
    font-size: clamp(2.25rem, 9vw, 2.625rem);
  }

  .policy-placeholder,
  .policy-body-frame {
    padding: 26px 22px;
  }

  .policy-body-frame > .policy-intro {
    margin-bottom: 30px;
  }

  .policy-body-frame > section + section {
    margin-top: 32px;
    padding-top: 26px;
  }

  .policy-body-frame section h2 {
    font-size: clamp(1.5rem, 6.5vw, 1.75rem);
    line-height: 1.24;
  }
}

@media (max-width: 420px) {
  .section-shell,
  .nav-shell,
  .footer-shell {
    width: min(calc(100% - 28px), var(--content));
  }

  h1 {
    font-size: 2.82rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions .status-text {
    width: 100%;
    text-align: center;
  }

  .hero-visual,
  .compact-shot,
  .privacy-visual,
  .send-shot {
    width: min(82vw, 300px);
  }

  .steps-list li {
    grid-template-columns: 42px 1fr;
    gap: 16px;
  }

  .step-index {
    width: 42px;
    height: 42px;
  }

  .steps-list li:not(:last-child)::after {
    top: 42px;
    left: 20px;
  }

  .price {
    display: block;
  }

  .price em {
    display: block;
    margin: 8px 0;
  }

}

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

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

@media (forced-colors: active) {
  .button,
  .trust-list li,
  .send-choice,
  .policy-placeholder {
    border: 1px solid ButtonText;
  }
}
