@font-face {
  font-family: Manrope;
  src: url("/fonts/manrope-500.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("/fonts/manrope-600.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("/fonts/manrope-700.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("/fonts/manrope-800.ttf") format("truetype");
  font-weight: 800;
  font-display: swap;
}
:root {
  --navy: #0d1b35;
  --muted: #586377;
  --gold: #a08030;
  --line: #dce2ea;
  --mint: #d9f0e5;
  --lavender: #e7e1f5;
  --peach: #f9e6d8;
  --blue: #dcebf8;
}
.favorite-access {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 22px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.favorite-access > div {
  flex: 1;
  min-width: 160px;
}
.favorite-access h2 {
  font-size: 24px;
  margin: 0;
  overflow-wrap: anywhere;
}
.favorite-access .eyebrow {
  margin: 0 0 8px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: #fafbf9;
  color: var(--navy);
  font:
    500 15px/1.7 Manrope,
    Arial,
    sans-serif;
}
button,
input,
select {
  font: inherit;
}
a {
  color: inherit;
}
button,
a,
input,
select {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  opacity: 0.6;
  cursor: wait;
}
svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}
h1,
h2,
h3,
h4 {
  line-height: 1.15;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(38px, 4.3vw, 62px);
  font-weight: 800;
}
h2 {
  font-size: clamp(29px, 3vw, 40px);
  font-weight: 800;
}
h3 {
  font-size: 21px;
  font-weight: 800;
}
h4 {
  font-size: 24px;
}
p {
  margin-bottom: 20px;
}
ul {
  padding: 0;
  list-style: none;
}
.header {
  max-width: 1240px;
  margin: auto;
  padding: 24px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  letter-spacing: -0.04em;
}
.brand small {
  display: block;
  font-size: 8px;
  letter-spacing: 0.16em;
  margin-top: 6px;
  font-weight: 700;
}
.header nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
}
.header nav > a {
  text-decoration: none;
}
.nav-account {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--navy);
  color: white;
  border-radius: 30px;
  padding: 10px 18px;
}
.nav-account svg {
  width: 17px;
}
.hero {
  max-width: 1240px;
  padding: 76px 36px 82px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 55px;
  align-items: center;
}
.hero h1 {
  margin: 20px 0 24px;
}
.hero h1 span {
  color: #6b7d6e;
}
.hero-copy > p {
  max-width: 555px;
  color: var(--muted);
}
.lead {
  font-size: 18px;
  line-height: 1.7;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: #647265;
  margin-bottom: 15px;
}
.gift-label {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: #637160;
}
.gift-label svg {
  width: 17px;
}
.button {
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border-radius: 30px;
  min-height: 50px;
  padding: 13px 25px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
  transition:
    transform 0.15s,
    background 0.15s;
}
.button:hover {
  transform: translateY(-2px);
}
.primary {
  background: var(--navy);
  color: white;
}
.secondary {
  background: #f0f3f7;
  color: var(--navy);
}
.light {
  background: white;
  color: var(--navy);
}
.hero .button {
  margin: 8px 0 22px;
}
.trust {
  display: flex;
  gap: 20px;
  font-size: 10px;
  color: #5d695f;
  flex-wrap: wrap;
}
.trust span {
  display: flex;
  gap: 6px;
  align-items: center;
}
.trust svg {
  width: 15px;
  height: 15px;
}
.hero-art {
  position: relative;
  background: #f0f2eb;
  border-radius: 50% 50% 44% 44%;
  padding: 44px 32px 36px;
  min-height: 425px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.orbit-label {
  font-size: 8px;
  letter-spacing: 0.23em;
  margin-bottom: 30px;
  color: #637160;
  font-weight: 800;
}
.app-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  transform: rotate(-7deg);
  width: 78%;
}
.tile {
  aspect-ratio: 1.18;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 24px;
  border: 3px solid #ffffffb3;
  box-shadow: 0 10px 15px #1e3b3520;
}
.tile span {
  background: #ffffff73;
  padding: 10px;
  border-radius: 17px;
  display: grid;
  place-items: center;
}
.tile svg {
  width: 32px;
  height: 32px;
}
.tile strong {
  font-size: 14px;
}
.mint {
  background: var(--mint);
}
.lavender {
  background: var(--lavender);
}
.peach {
  background: var(--peach);
}
.blue {
  background: var(--blue);
}
.access-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  background: white;
  padding: 11px 18px;
  border: 1px solid #e5e8e1;
  border-radius: 30px;
  margin-top: 28px;
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 8px 20px #0d1b3508;
  white-space: nowrap;
}
.access-pill svg {
  background: var(--mint);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  padding: 3px;
}
.art-spark {
  position: absolute;
  font-size: 32px;
  color: #b8a26b;
}
.spark-one {
  top: 50px;
  right: 14px;
}
.spark-two {
  bottom: 60px;
  left: 10px;
}
.apps-section {
  background: white;
  padding: 64px max(36px, calc((100vw - 1168px) / 2));
  border-top: 1px solid #edf0e9;
  border-bottom: 1px solid #edf0e9;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}
.section-heading h2 {
  margin-bottom: 0;
}
.section-heading > p {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
  max-width: 325px;
}
.app-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.app-card {
  border-radius: 24px;
  padding: 24px 21px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid #0d1b3508;
}
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 6px;
}
.app-icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: #ffffffa3;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.app-icon svg {
  width: 26px;
  height: 26px;
}
.tag {
  font-size: 7px;
  letter-spacing: 0.06em;
  font-weight: 800;
  white-space: nowrap;
}
.app-card .eyebrow {
  font-size: 8px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.app-card h3 {
  font-size: 16px;
  letter-spacing: -0.025em;
  overflow-wrap: anywhere;
  min-height: 37px;
}
.app-card h4 {
  font-size: 23px;
  min-height: 80px;
  margin: 0 0 18px;
}
.app-card > p:not(.eyebrow) {
  font-size: 12px;
  color: #475468;
  min-height: 84px;
  line-height: 1.8;
}
.app-card ul {
  font-size: 10px;
  margin: 0 0 26px;
  flex: 1;
}
.app-card li {
  display: flex;
  gap: 7px;
  align-items: start;
  margin-bottom: 8px;
}
.app-card li svg {
  width: 13px;
  height: 17px;
}
.choose {
  width: 100%;
  border: 1px solid #ffffffa8;
  background: #ffffffbd;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 15px;
  font-size: 11px;
  font-weight: 800;
  color: var(--navy);
  min-height: 46px;
}
.choose:hover,
.choose.chosen {
  background: var(--navy);
  color: white;
}
.choose svg {
  width: 18px;
}
.steps-section,
.faq {
  max-width: 1240px;
  margin: auto;
  padding: 80px 36px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 36px;
}
.steps article > span {
  font-size: 13px;
  color: #7d8d80;
  display: block;
  border-bottom: 1px solid #dbe2d9;
  padding-bottom: 14px;
  margin-bottom: 20px;
}
.steps h3 {
  font-size: 20px;
  margin-bottom: 14px;
}
.steps p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.offer-band {
  max-width: 1168px;
  margin: auto;
  border-radius: 28px;
  background: var(--navy);
  color: white;
  padding: 50px 54px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.offer-band .eyebrow {
  color: #c4d2bd;
}
.offer-band h2 {
  font-size: 43px;
  margin-bottom: 0;
}
.offer-band p:not(.eyebrow) {
  color: #ced6e4;
  font-size: 14px;
}
.offer-band .button {
  margin-top: 5px;
}
.faq {
  max-width: 850px;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq summary {
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.faq summary:after {
  content: "+";
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}
.faq details[open] summary:after {
  content: "−";
}
.faq details p {
  font-size: 13px;
  color: var(--muted);
  margin: 16px 25px 0 0;
}
footer {
  max-width: 1168px;
  margin: 10px auto 0;
  border-top: 1px solid var(--line);
  padding: 34px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 30px;
  font-size: 11px;
  color: var(--muted);
}
footer .brand {
  font-size: 17px;
  color: var(--navy);
}
footer .brand span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
}
footer p {
  grid-column: 1;
  margin: 0;
}
footer nav {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  gap: 20px;
}
footer nav a {
  text-decoration: none;
}
footer small {
  grid-column: 2;
  grid-row: 2;
}
.mobile-nav {
  display: none;
}
.skip {
  position: fixed;
  top: -70px;
  left: 10px;
  z-index: 99;
  background: white;
  padding: 12px;
}
.skip:focus {
  top: 10px;
}
:focus-visible {
  outline: 3px solid #91711c;
  outline-offset: 4px;
}
#toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  background: var(--navy);
  color: white;
  border-radius: 16px;
  padding: 15px 25px;
  z-index: 80;
  display: none;
  max-width: 90vw;
  font-size: 13px;
}
#toast.visible {
  display: block;
}
.auth-page {
  background: #f7f9fb;
}
.auth-shell {
  max-width: 1190px;
  margin: auto;
  padding: 80px 36px 40px;
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 45px 60px;
  align-items: center;
}
.auth-story h1 {
  font-size: 42px;
  line-height: 1.15;
}
.gold {
  color: var(--gold);
  font-size: 17px;
  font-weight: 700;
}
.auth-story > p:not(.gold) {
  font-size: 13px;
  color: var(--muted);
}
.benefits {
  margin: 28px 0;
}
.benefits li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 13px;
  margin: 13px 0;
}
.benefits svg {
  background: #e6eaf0;
  border-radius: 50%;
  padding: 4px;
}
.auth-panel {
  padding: 30px;
  border: 1px solid #d7dfeb;
  background: white;
  border-radius: 22px;
  box-shadow: 0 18px 35px #0d1b350b;
}
.auth-panel h2 {
  font-size: 21px;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.auth-tabs {
  background: #f0f3f7;
  border-radius: 13px;
  display: flex;
  padding: 4px;
  margin-bottom: 24px;
}
.auth-tabs a {
  width: 50%;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 13px;
}
.auth-tabs [aria-current] {
  background: var(--navy);
  color: white;
  font-weight: 800;
}
.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}
.form-section {
  grid-column: 1/-1;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin: 0;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.field > span:first-child {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #3a526e;
}
.field input,
.field select {
  min-width: 0;
  width: 100%;
  height: 48px;
  border: 1px solid #cbd7e6;
  background: white;
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--navy);
  font-size: 13px;
}
.field input::placeholder {
  color: #929fb1;
}
.phone-group {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 7px;
}
.phone-group select {
  padding-left: 7px;
  padding-right: 0;
  font-size: 11px;
}
.form-status,
.form-actions,
.full {
  grid-column: 1/-1;
}
.form-status:empty {
  display: none;
}
.form-status {
  font-size: 12px;
  margin: 0;
  color: #71531b;
}
.form-actions {
  display: flex;
  gap: 12px;
}
.form-actions .button {
  width: 50%;
  padding: 13px 12px;
  font-size: 12px;
}
.auth-privacy {
  grid-column: 1/-1;
  text-align: center;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  color: var(--muted);
  margin: 0;
}
.fine {
  font-size: 11px;
  color: var(--muted);
}
.account {
  max-width: 950px;
  margin: auto;
  padding: 60px 36px;
}
.account > h1 {
  font-size: 36px;
}
.account > p {
  max-width: 760px;
  color: var(--muted);
}
.account-apps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 34px 0;
}
.app-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 22px;
  border-radius: 20px;
  text-decoration: none;
  min-width: 0;
}
.app-link > span:nth-child(2) {
  flex: 1;
  min-width: 0;
}
.app-link strong {
  display: block;
  font-size: 14px;
  overflow-wrap: anywhere;
}
.app-link small {
  display: block;
  font-size: 11px;
}
.account-details {
  max-width: 680px;
  margin: 50px auto 0;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}
.account-details h2 {
  font-size: 23px;
}
.account-details dl {
  display: grid;
  grid-template-columns: 150px 1fr;
  font-size: 12px;
  gap: 12px;
}
.account-details dd {
  margin: 0;
  overflow-wrap: anywhere;
}
.account-details dt {
  color: var(--muted);
}
.account-details > .button {
  margin: 20px 0 0;
  display: flex;
  max-width: 180px;
}
.account-details > a {
  font-size: 12px;
}
.request-page,
.legal {
  max-width: 800px;
  margin: auto;
  padding: 65px 36px;
}
.request-page h1,
.legal h1 {
  font-size: 36px;
}
.legal h2 {
  font-size: 22px;
  margin-top: 35px;
}
.legal p {
  color: var(--muted);
  font-size: 14px;
}
.request-page .field {
  grid-column: 1/-1;
}
@media (min-width: 1400px) {
  .hero {
    padding-top: 90px;
    padding-bottom: 100px;
  }
  .hero-art {
    min-height: 460px;
  }
}
@media (max-width: 1050px) {
  .app-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .app-card h3 {
    min-height: 0;
  }
  .app-card h4 {
    min-height: 55px;
  }
  .app-card > p:not(.eyebrow) {
    min-height: 45px;
  }
  .hero {
    gap: 22px;
  }
  .hero-art {
    padding: 30px 12px;
    min-height: 355px;
  }
  .trust {
    gap: 10px;
  }
  .auth-shell {
    gap: 35px;
  }
  .auth-story h1 {
    font-size: 35px;
  }
  .auth-panel {
    padding: 24px;
  }
  footer {
    margin-left: 36px;
    margin-right: 36px;
  }
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 20px;
  }
  body {
    padding-bottom: calc(75px + env(safe-area-inset-bottom));
  }
  .header {
    padding: 17px 21px;
  }
  .header .brand {
    font-size: 19px;
  }
  .header nav > a:not(.nav-account) {
    display: none;
  }
  .nav-account {
    font-size: 11px;
    padding: 8px 12px;
  }
  .nav-account svg {
    display: none;
  }
  .hero {
    padding: 40px 23px;
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .hero h1 {
    font-size: 40px;
    letter-spacing: -0.055em;
  }
  .hero-copy > p {
    font-size: 13px;
  }
  .hero .lead {
    font-size: 16px;
  }
  .hero-art {
    min-height: 340px;
    max-width: 380px;
    width: 100%;
    margin: 0 auto;
    padding: 27px;
  }
  .app-tiles {
    width: 78%;
    max-width: 260px;
  }
  .orbit-label {
    margin-bottom: 25px;
  }
  .tile {
    border-radius: 20px;
  }
  .tile span {
    padding: 8px;
  }
  .tile svg {
    width: 27px;
    height: 27px;
  }
  .tile strong {
    font-size: 12px;
  }
  .access-pill {
    font-size: 9px;
    padding: 9px 12px;
  }
  .gift-label {
    font-size: 8px;
  }
  .trust {
    font-size: 9px;
  }
  .hero .button {
    width: 100%;
    margin-bottom: 18px;
  }
  .apps-section {
    padding: 40px 21px;
  }
  .section-heading {
    display: block;
    margin-bottom: 26px;
  }
  .section-heading > p {
    margin-top: 18px;
    font-size: 12px;
  }
  .section-heading h2 {
    font-size: 30px;
  }
  .app-grid {
    gap: 14px;
  }
  .app-card {
    padding: 19px 16px;
    border-radius: 20px;
  }
  .app-card .tag {
    display: none;
  }
  .card-top {
    margin-bottom: 22px;
  }
  .app-card h3 {
    font-size: 15px;
    min-height: 37px;
  }
  .app-card h4 {
    font-size: 21px;
    min-height: 95px;
  }
  .app-card > p:not(.eyebrow) {
    font-size: 11px;
    min-height: 98px;
  }
  .app-card li {
    font-size: 9px;
  }
  .choose {
    font-size: 10px;
    padding: 11px 12px;
  }
  .choose svg {
    width: 14px;
  }
  .app-card ul {
    margin-bottom: 15px;
  }
  .app-card .eyebrow {
    font-size: 7px;
  }
  .steps-section,
  .faq {
    padding: 45px 23px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 25px;
  }
  .steps article {
    padding-left: 48px;
    position: relative;
  }
  .steps article > span {
    position: absolute;
    left: 0;
    top: 0;
    border: 0;
  }
  .steps h3 {
    font-size: 19px;
    margin-bottom: 9px;
  }
  .steps p {
    font-size: 12px;
  }
  .offer-band {
    margin: 0 21px;
    padding: 28px;
    grid-template-columns: 1fr;
    gap: 24px;
    border-radius: 24px;
  }
  .offer-band h2 {
    font-size: 34px;
  }
  .offer-band .button {
    width: 100%;
    font-size: 11px;
  }
  .offer-band p:not(.eyebrow) {
    font-size: 13px;
  }
  .faq h2 {
    font-size: 28px;
  }
  .faq summary {
    font-size: 13px;
  }
  footer {
    margin: 0 23px;
    padding: 28px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  footer nav {
    gap: 20px;
  }
  .mobile-nav {
    position: fixed;
    z-index: 50;
    bottom: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 9px 10px calc(9px + env(safe-area-inset-bottom));
    background: #fffffff5;
    backdrop-filter: blur(12px);
    border-top: 1px solid #dce2ea;
  }
  .mobile-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 48px;
    font-size: 9px;
    font-weight: 700;
    text-decoration: none;
  }
  .mobile-nav a:nth-child(2) {
    color: #496b59;
  }
  .mobile-nav svg {
    height: 21px;
    width: 21px;
  }
  #toast {
    bottom: calc(88px + env(safe-area-inset-bottom));
    width: 90vw;
  }
  .auth-shell {
    padding: 34px 21px;
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .auth-story h1 {
    font-size: 35px;
  }
  .auth-story .benefits {
    display: none;
  }
  .auth-story > p {
    margin-bottom: 10px;
  }
  .auth-panel {
    padding: 22px 18px;
    border-radius: 20px;
  }
  .form-grid {
    gap: 14px;
  }
  .form-actions {
    flex-direction: column-reverse;
  }
  .form-actions .button {
    width: 100%;
    font-size: 13px;
  }
  .auth-privacy {
    text-align: left;
  }
  .gold {
    font-size: 15px;
  }
  .account {
    padding: 35px 21px;
  }
  .account h1 {
    font-size: 29px;
  }
  .account-apps {
    grid-template-columns: 1fr;
  }
  .account-details {
    padding: 20px;
  }
  .account-details dl {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .account-details dd {
    margin-bottom: 12px;
  }
  .request-page,
  .legal {
    padding: 35px 21px;
  }
  .request-page h1,
  .legal h1 {
    font-size: 30px;
  }
  body:has(input:focus) .mobile-nav {
    display: none;
  }
}
@media (max-width: 390px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .app-grid {
    grid-template-columns: 1fr;
  }
  .app-card h3,
  .app-card h4,
  .app-card > p:not(.eyebrow) {
    min-height: 0;
  }
  .app-card .tag {
    display: block;
  }
  .card-top {
    margin-bottom: 18px;
  }
  .app-card h4 {
    font-size: 25px;
  }
  .app-card > p:not(.eyebrow) {
    font-size: 13px;
  }
  .app-card ul,
  .app-card li {
    font-size: 11px;
  }
  .choose {
    font-size: 12px;
  }
  .hero h1 {
    font-size: 35px;
  }
  .trust {
    gap: 9px;
  }
  .hero-art {
    min-height: 320px;
  }
  .orbit-label {
    font-size: 7px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
@media print {
  .header,
  .mobile-nav,
  footer,
  #toast {
    display: none;
  }
  body {
    padding: 0;
  }
}
