:root {
  --canvas: #f4f7f5;
  --paper: #ffffff;
  --ink: #172427;
  --muted: #5e6e70;
  --brand: #0f8276;
  --brand-deep: #075c55;
  --brand-soft: #dcf2ec;
  --brand-wash: #ecf7f3;
  --orange: #ee8526;
  --line: rgba(23, 36, 39, 0.12);
  --shadow: 0 24px 70px rgba(23, 61, 56, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(rgba(15, 130, 118, 0.08) 0.6px, transparent 0.6px);
  background-size: 18px 18px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 42%);
}

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

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  color: white;
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(23, 36, 39, 0.07);
  background: rgba(244, 247, 245, 0.85);
  backdrop-filter: blur(18px) saturate(140%);
}

.nav-shell,
.hero,
.section,
.promise-strip,
.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  font-size: 1.15rem;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  overflow: hidden;
  place-items: center;
  border-radius: 11px;
  background: linear-gradient(145deg, #18a495, #075c55);
}

.brand-mark img {
  width: 21px;
  height: 29px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 34px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.nav-links a,
.footer-links a {
  transition: color 160ms ease;
}

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

.nav-shell > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 730;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.88rem;
}

.button-primary {
  color: white;
  background: var(--brand);
  box-shadow: 0 12px 30px rgba(15, 130, 118, 0.24);
}

.button-primary:hover {
  background: var(--brand-deep);
  box-shadow: 0 16px 32px rgba(15, 130, 118, 0.3);
}

.button-secondary,
.button-quiet {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.65);
}

.button-secondary:hover,
.button-quiet:hover {
  background: white;
}

.button-white {
  color: var(--brand-deep);
  background: white;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.13);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  align-items: center;
  gap: 64px;
  min-height: 760px;
  padding-block: 74px 84px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-copy .eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 6px var(--brand-soft);
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 690px;
  margin-bottom: 26px;
  font-size: clamp(3.5rem, 6.1vw, 5.9rem);
  font-weight: 780;
  letter-spacing: -0.068em;
  line-height: 0.98;
}

h1 em {
  color: var(--brand);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.65vw, 1.28rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.availability {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
}

.availability .apple {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
}

.availability span:last-child {
  display: grid;
}

.availability strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.availability small {
  margin-top: 1px;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  z-index: -2;
  width: 90%;
  aspect-ratio: 1;
  border-radius: 42% 58% 60% 40% / 45% 40% 60% 55%;
  background: linear-gradient(145deg, var(--brand-soft), #c7e8df 55%, #f5e9d9);
  content: "";
  transform: rotate(-4deg);
}

.soft-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(15, 130, 118, 0.16);
  border-radius: 50%;
}

.orbit-one {
  width: 105%;
  aspect-ratio: 1;
  transform: rotate(20deg) scaleY(0.8);
}

.orbit-two {
  width: 74%;
  aspect-ratio: 1;
  transform: rotate(-25deg) scaleX(0.85);
}

.hero-phone {
  width: min(345px, 69vw);
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 51px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 40px 90px rgba(20, 70, 63, 0.2);
  transform: rotate(2.4deg);
}

.hero-phone img {
  width: 100%;
  border-radius: 43px;
}

.floating-note {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 225px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 45px rgba(20, 70, 63, 0.15);
  backdrop-filter: blur(14px);
}

.floating-note > span:last-child {
  display: grid;
}

.floating-note strong {
  font-size: 0.86rem;
}

.floating-note small {
  color: var(--muted);
  font-size: 0.72rem;
}

.note-check,
.note-lock {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  color: white;
  background: var(--brand);
  font-weight: 800;
}

.note-progress {
  top: 18%;
  left: -4%;
}

.note-private {
  right: -4%;
  bottom: 16%;
}

.note-lock {
  color: var(--brand-deep);
  background: var(--brand-soft);
}

.promise-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}

.promise-strip > div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  padding: 28px 32px;
}

.promise-strip > div + div {
  border-left: 1px solid var(--line);
}

.promise-strip span {
  grid-row: span 2;
  color: var(--brand);
  font-family: Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
}

.promise-strip strong {
  font-size: 0.92rem;
}

.promise-strip small {
  color: var(--muted);
}

.section {
  padding-block: 132px;
}

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

.section-heading h2,
.showcase h2,
.privacy-copy h2,
.support h2,
.policy h2 {
  margin-bottom: 0;
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  font-weight: 760;
  letter-spacing: -0.058em;
  line-height: 1.02;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 90px;
}

.split-heading > p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  position: relative;
  display: flex;
  min-height: 380px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 36px;
  border: 1px solid rgba(23, 36, 39, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 55px rgba(31, 70, 65, 0.06);
}

.feature-card-wide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.9fr);
  align-items: center;
  gap: 42px;
  grid-column: 1 / -1;
  min-height: 330px;
}

.feature-card h3 {
  max-width: 500px;
  margin-bottom: 13px;
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.feature-card p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
}

.feature-number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: var(--brand);
  font-family: Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
}

.mini-ui,
.progress-ui,
.cycle-ui,
.week-row {
  border: 1px solid rgba(23, 36, 39, 0.08);
  background: var(--canvas);
}

.mini-today {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 22px;
  border-radius: 22px;
  box-shadow: 0 16px 35px rgba(23, 61, 56, 0.09);
}

.mini-today > span:nth-child(2) {
  display: grid;
}

.mini-today small {
  color: var(--muted);
}

.mini-today > strong {
  padding: 10px 15px;
  border-radius: 999px;
  color: white;
  background: var(--brand);
  font-size: 0.82rem;
}

.mini-pill {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  color: var(--brand);
  background: var(--brand-soft);
  font-size: 1.45rem;
}

.week-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 14px;
  border-radius: 18px;
}

.week-row span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
}

.week-row .active {
  color: white;
  background: var(--brand);
}

.progress-ui {
  display: grid;
  padding: 22px;
  border-radius: 20px;
}

.progress-ui span {
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.progress-ui strong {
  margin-block: 2px 14px;
  font-size: 2.7rem;
  letter-spacing: -0.05em;
}

.progress-ui i {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #dfe5e3;
}

.progress-ui b {
  display: block;
  width: 86%;
  height: 100%;
  border-radius: inherit;
  background: var(--brand);
}

.feature-card-dark {
  color: white;
  border-color: rgba(255, 255, 255, 0.08);
  background: var(--ink);
}

.feature-card-dark p {
  color: rgba(255, 255, 255, 0.65);
}

.feature-card-dark .feature-number {
  color: #80d8cb;
}

.cycle-ui {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 26px;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.cycle-ui span {
  display: grid;
  gap: 3px;
}

.cycle-ui span:last-child {
  text-align: right;
}

.cycle-ui small {
  color: rgba(255, 255, 255, 0.55);
}

.cycle-ui b {
  font-size: 1.35rem;
}

.cycle-ui i {
  width: 34px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.showcase {
  overflow: hidden;
  padding-block: 126px 112px;
  color: white;
  background: var(--ink);
}

.showcase-heading {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 72px;
}

.showcase-heading h2 {
  max-width: 780px;
}

.showcase-heading > p:last-child {
  max-width: 570px;
  margin: 28px 0 0 auto;
  color: rgba(255, 255, 255, 0.64);
  font-size: 1.08rem;
}

.eyebrow-light {
  color: #78d4c7;
}

.screens-track {
  display: flex;
  width: min(1320px, calc(100% - 40px));
  align-items: center;
  gap: 28px;
  margin-inline: auto;
  overflow-x: auto;
  padding: 40px 20px 38px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
}

.screens-track figure {
  flex: 0 0 246px;
  margin: 0;
  scroll-snap-align: center;
}

.screens-track img {
  width: 100%;
  border: 7px solid rgba(255, 255, 255, 0.11);
  border-radius: 36px;
  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.32);
}

.screens-track .screen-featured {
  flex-basis: 280px;
}

.screens-track figcaption {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.85rem;
}

.screens-track figcaption span {
  color: #78d4c7;
  font-family: Georgia, serif;
  font-style: italic;
}

.privacy-intro {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 90px;
}

.privacy-mascot {
  position: relative;
  display: grid;
  min-height: 610px;
  overflow: hidden;
  place-items: end center;
  border-radius: 42px;
  background: linear-gradient(160deg, var(--brand-soft), #c3e8dd);
}

.privacy-mascot::before,
.privacy-mascot::after {
  position: absolute;
  border: 1px solid rgba(7, 92, 85, 0.14);
  border-radius: 50%;
  content: "";
}

.privacy-mascot::before {
  width: 480px;
  height: 480px;
  top: -80px;
  right: -210px;
}

.privacy-mascot::after {
  width: 280px;
  height: 280px;
  bottom: 40px;
  left: -150px;
}

.privacy-mascot img {
  position: relative;
  z-index: 2;
  width: 74%;
  max-height: 570px;
}

.privacy-copy {
  max-width: 620px;
}

.privacy-copy h2 {
  margin-bottom: 26px;
}

.privacy-lede {
  color: var(--muted);
  font-size: 1.12rem;
}

.check-list {
  display: grid;
  gap: 0;
  margin: 38px 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  padding-block: 18px;
  border-top: 1px solid var(--line);
}

.check-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.check-list > li > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--brand-deep);
  background: var(--brand-soft);
  font-weight: 800;
}

.check-list li div {
  display: grid;
}

.check-list small {
  color: var(--muted);
}

.text-link,
.policy-summary a,
.policy-content a {
  color: var(--brand);
  font-weight: 730;
  text-decoration: underline;
  text-decoration-color: rgba(15, 130, 118, 0.3);
  text-underline-offset: 4px;
}

.text-link span {
  display: inline-block;
  margin-left: 8px;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.support {
  padding-top: 20px;
}

.support-card {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  overflow: hidden;
  border-radius: 38px;
  color: white;
  background: var(--brand-deep);
  box-shadow: var(--shadow);
}

.support-copy,
.support-faq {
  padding: 68px;
}

.support-copy {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent);
}

.support h2 {
  max-width: 560px;
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 4.5vw, 4.15rem);
}

.support-copy > p:not(.eyebrow, .support-note) {
  max-width: 510px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.06rem;
}

.support-note {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
}

.support-faq {
  align-self: center;
}

.support-faq details {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.support-faq details:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.support-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 22px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.support-faq summary span {
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 160ms ease;
}

.support-faq details[open] summary span {
  transform: rotate(45deg);
}

.support-faq details p {
  padding: 0 34px 22px 0;
  color: rgba(255, 255, 255, 0.64);
}

.policy {
  padding-top: 90px;
}

.policy-language-switch {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-bottom: 38px;
}

.policy-language-switch > span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-language-options {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.policy-language-options button {
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.policy-language-options button:hover {
  color: var(--brand-deep);
}

.policy-language-options button[aria-pressed="true"] {
  color: white;
  background: var(--brand);
  box-shadow: 0 7px 18px rgba(15, 130, 118, 0.2);
}

.policy-panel[hidden] {
  display: none;
}

.policy-panel[lang^="zh"] .policy-content {
  line-height: 1.75;
}

.policy-panel[lang^="zh"] h2,
.policy-panel[lang^="zh"] h3 {
  letter-spacing: -0.025em;
}

.policy-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 68px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.policy-heading > p {
  flex: 0 0 auto;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

.policy-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: start;
  gap: 90px;
}

.policy-summary {
  position: sticky;
  top: 110px;
  padding: 28px;
  border: 1px solid rgba(15, 130, 118, 0.12);
  border-radius: 22px;
  background: var(--brand-wash);
}

.policy-summary strong {
  display: block;
  margin-bottom: 9px;
  font-size: 1.1rem;
}

.policy-summary p {
  color: var(--muted);
  font-size: 0.9rem;
}

.policy-summary a {
  font-size: 0.88rem;
}

.policy-content {
  max-width: 760px;
}

.policy-content section {
  margin-bottom: 50px;
  scroll-margin-top: 110px;
}

.policy-content h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

.policy-content p {
  color: var(--muted);
}

.policy-table {
  display: grid;
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  font-size: 0.88rem;
}

.policy-table [role="row"] {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.25fr;
}

.policy-table [role="row"] + [role="row"] {
  border-top: 1px solid var(--line);
}

.policy-table span {
  padding: 14px 16px;
}

.policy-table span + span {
  border-left: 1px solid var(--line);
}

.policy-table [role="columnheader"] {
  color: var(--brand-deep);
  background: var(--brand-wash);
  font-weight: 760;
}

.policy-table [role="cell"] {
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 40px;
  padding-block: 54px 44px;
  border-top: 1px solid var(--line);
}

.footer-brand p {
  max-width: 280px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 650;
}

.copyright {
  justify-self: end;
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  text-align: right;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-phone {
    animation: phone-float 7s ease-in-out infinite;
  }

  .note-progress {
    animation: note-float 6s ease-in-out -1s infinite;
  }

  .note-private {
    animation: note-float 6.5s ease-in-out -3s infinite;
  }

  @keyframes phone-float {
    0%, 100% { transform: rotate(2.4deg) translateY(0); }
    50% { transform: rotate(1.2deg) translateY(-9px); }
  }

  @keyframes note-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr 0.9fr;
    gap: 30px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .floating-note {
    min-width: 205px;
  }

  .note-progress {
    left: -7%;
  }

  .note-private {
    right: -6%;
  }

  .split-heading,
  .privacy-intro {
    gap: 52px;
  }

  .support-copy,
  .support-faq {
    padding: 48px;
  }

  .policy-layout {
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 50px;
  }
}

@media (max-width: 780px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 66px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .availability {
    justify-content: center;
  }

  .hero-lede {
    margin-inline: auto;
  }

  .hero-visual {
    min-height: 610px;
  }

  .hero-phone {
    width: 330px;
  }

  .note-progress {
    left: 3%;
  }

  .note-private {
    right: 2%;
  }

  .promise-strip {
    grid-template-columns: 1fr;
  }

  .promise-strip > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .split-heading,
  .privacy-intro,
  .support-card,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 24px;
  }

  .feature-card-wide {
    grid-template-columns: 1fr;
    padding-top: 86px;
  }

  .privacy-mascot {
    min-height: 520px;
  }

  .privacy-copy {
    max-width: none;
  }

  .support-faq {
    padding-top: 0;
  }

  .policy-heading {
    display: grid;
  }

  .policy-summary {
    position: static;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    justify-self: end;
  }

  .copyright {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .nav-shell,
  .hero,
  .section,
  .promise-strip,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

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

  .nav-shell .button-small {
    min-height: 38px;
    padding-inline: 13px;
    font-size: 0.78rem;
  }

  h1 {
    font-size: clamp(3.15rem, 16vw, 4.5rem);
  }

  .hero {
    gap: 30px;
    min-height: auto;
    padding-block: 56px 72px;
  }

  .hero-visual {
    min-height: 550px;
  }

  .hero-phone {
    width: 280px;
    border-radius: 43px;
  }

  .hero-phone img {
    border-radius: 36px;
  }

  .floating-note {
    min-width: 190px;
    padding: 11px 12px;
  }

  .note-progress {
    top: 18%;
    left: -2%;
  }

  .note-private {
    right: -2%;
    bottom: 12%;
  }

  .note-check,
  .note-lock {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .floating-note strong {
    font-size: 0.76rem;
  }

  .floating-note small {
    font-size: 0.65rem;
  }

  .promise-strip > div {
    padding: 22px 16px;
  }

  .section {
    padding-block: 94px;
  }

  .section-heading h2,
  .showcase h2,
  .privacy-copy h2,
  .support h2,
  .policy h2 {
    font-size: clamp(2.45rem, 12vw, 3.4rem);
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card-wide {
    grid-column: auto;
    min-height: 340px;
    padding: 28px;
  }

  .feature-card-wide {
    padding-top: 78px;
  }

  .feature-card-wide .feature-number {
    top: 28px;
  }

  .week-row span {
    width: 30px;
    height: 30px;
  }

  .mini-today {
    padding: 14px;
  }

  .mini-today > strong {
    padding-inline: 11px;
  }

  .cycle-ui {
    gap: 11px;
    padding: 18px;
  }

  .cycle-ui b {
    font-size: 1.08rem;
  }

  .showcase {
    padding-block: 92px 76px;
  }

  .showcase-heading,
  .screens-track {
    width: calc(100% - 28px);
  }

  .showcase-heading > p:last-child {
    margin-left: 0;
  }

  .screens-track {
    justify-content: flex-start;
    padding-inline: 6px;
  }

  .screens-track figure,
  .screens-track .screen-featured {
    flex-basis: min(72vw, 280px);
  }

  .privacy-intro {
    gap: 54px;
  }

  .privacy-mascot {
    min-height: 430px;
  }

  .support {
    width: 100%;
    padding-top: 0;
  }

  .support-card {
    border-radius: 0;
  }

  .support-copy,
  .support-faq {
    padding: 44px 24px;
  }

  .support-copy .button {
    width: 100%;
    padding-inline: 14px;
    font-size: 0.86rem;
  }

  .support-faq {
    padding-top: 0;
  }

  .policy {
    padding-top: 82px;
  }

  .policy-language-switch {
    align-items: stretch;
    flex-direction: column;
  }

  .policy-language-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }

  .policy-language-options button {
    padding-inline: 8px;
    white-space: nowrap;
  }

  .policy-heading {
    margin-bottom: 44px;
  }

  .policy-table {
    border: 0;
    background: transparent;
  }

  .policy-table [role="row"] {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: white;
  }

  .policy-table [role="row"]:first-child {
    display: none;
  }

  .policy-table [role="row"] + [role="row"] {
    border-top: 1px solid var(--line);
  }

  .policy-table span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .policy-table [role="cell"]::before {
    display: block;
    margin-bottom: 3px;
    color: var(--brand);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .policy-table [role="cell"]::before { content: attr(data-label); }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-self: start;
    flex-wrap: wrap;
  }
}

@media print {
  .site-header,
  .hero,
  .promise-strip,
  .features,
  .showcase,
  .privacy-intro,
  .support,
  .site-footer {
    display: none;
  }

  .policy {
    width: 100%;
    padding: 0;
  }

  .policy-language-switch {
    display: none;
  }

  .policy-layout {
    display: block;
  }

  .policy-summary {
    position: static;
    margin-bottom: 30px;
  }
}
