:root {
  color-scheme: light;
  --gold: #e1a852;
  --gold-deep: #c88936;
  --gold-pale: #f6dfb8;
  --ink: #5f4933;
  --ink-strong: #433222;
  --brown: #9d6f3c;
  --cream: #fff9ef;
  --cream-deep: #f9efdE;
  --card: rgba(255, 253, 248, 0.82);
  --line: rgba(95, 73, 51, 0.14);
  --muted: #7f6c58;
  --shadow: 0 24px 70px rgba(112, 77, 35, 0.12);
  --shadow-soft: 0 12px 34px rgba(112, 77, 35, 0.08);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --shell: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 2%, rgba(225, 168, 82, 0.12), transparent 28rem),
    var(--cream);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

:focus-visible {
  outline: 3px solid rgba(200, 137, 54, 0.46);
  outline-offset: 4px;
  border-radius: 8px;
}

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

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

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(95, 73, 51, 0.08);
  background: rgba(255, 249, 239, 0.78);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-strong);
  font-size: 17px;
  font-weight: 750;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  filter: drop-shadow(0 5px 9px rgba(112, 77, 35, 0.16));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink-strong);
  background: rgba(225, 168, 82, 0.14);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  margin-left: 7px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
}

.site-nav .language-switcher a {
  padding: 5px 8px;
  font-size: 11px;
}

html[lang="zh-CN"] body,
html[lang="ja"] body {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", "Noto Sans CJK SC", "Noto Sans JP", "Segoe UI", sans-serif;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 104px;
}

.hero::before {
  position: absolute;
  top: 8%;
  left: -90px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(225, 168, 82, 0.28);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(440px, 0.97fr);
  align-items: center;
  gap: clamp(40px, 7vw, 92px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--brown);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span {
  margin-right: 7px;
  color: var(--gold);
}

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

h1,
h2,
h3 {
  color: var(--ink-strong);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  max-width: 680px;
  margin-bottom: 28px;
  font-size: clamp(3.4rem, 6.3vw, 5.9rem);
  font-weight: 770;
}

h1 em {
  color: var(--gold-deep);
  font-family: ui-serif, "New York", Georgia, serif;
  font-weight: 500;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 4.7vw, 4.1rem);
  font-weight: 740;
}

h3 {
  margin-bottom: 11px;
  font-size: 1.22rem;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.apple-logo {
  font-size: 19px;
  line-height: 1;
}

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

.button-primary {
  color: #fffdf8;
  background: var(--ink-strong);
  box-shadow: 0 10px 24px rgba(67, 50, 34, 0.18);
}

a.button-primary:hover {
  background: #2f241a;
  box-shadow: 0 14px 28px rgba(67, 50, 34, 0.23);
}

.button-disabled {
  cursor: default;
  opacity: 0.9;
}

.button-secondary {
  border-color: var(--line);
  color: var(--ink-strong);
  background: rgba(255, 255, 255, 0.55);
}

.button-secondary:hover {
  border-color: rgba(157, 111, 60, 0.3);
  background: #fffdf8;
  box-shadow: var(--shadow-soft);
}

.hero-note {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.ambient-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.ambient-one {
  top: 12px;
  right: 14px;
  width: 340px;
  height: 340px;
  background: rgba(225, 168, 82, 0.14);
}

.ambient-two {
  right: 220px;
  bottom: 4px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(157, 111, 60, 0.17);
}

.giraffe-stage {
  position: absolute;
  z-index: 3;
  top: -30px;
  right: 38px;
  width: 270px;
  height: 340px;
}

.sprite {
  width: 320px;
  height: 320px;
  background-repeat: no-repeat;
  background-size: 2560px 320px;
  transform-origin: bottom center;
}

.sprite-idle {
  background-image: url("images/giraffe-idle-sprite.png");
  animation: idle-giraffe 4s steps(1) infinite;
  transform: scale(0.86);
}

@keyframes idle-giraffe {
  0%, 12% { background-position: 0 0; }
  13%, 24% { background-position: -320px 0; }
  25%, 37% { background-position: -640px 0; }
  38%, 50% { background-position: -960px 0; }
  51%, 63% { background-position: -1280px 0; }
  64%, 76% { background-position: -1600px 0; }
  77%, 88% { background-position: -1920px 0; }
  89%, 100% { background-position: -2240px 0; }
}

.stage-shadow {
  position: absolute;
  right: 36px;
  bottom: 27px;
  width: 185px;
  height: 20px;
  border-radius: 50%;
  background: rgba(95, 73, 51, 0.12);
  filter: blur(7px);
}

.mac-card {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 10px;
  width: min(100%, 485px);
  overflow: hidden;
  border: 1px solid rgba(95, 73, 51, 0.13);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transform: rotate(-1.25deg);
}

.mac-card-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  font-weight: 650;
}

.traffic-lights {
  display: flex;
  gap: 6px;
}

.traffic-lights i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #e78473;
}

.traffic-lights i:nth-child(2) {
  background: #e5b85f;
}

.traffic-lights i:nth-child(3) {
  background: #7bbf79;
}

.reminder-card {
  display: grid;
  grid-template-columns: 62px 1fr;
  padding: 26px 26px 24px;
  gap: 15px;
}

.mini-giraffe {
  width: 62px;
  height: 62px;
  background-image: url("images/giraffe-reminder-sprite.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 496px 62px;
}

.reminder-kicker {
  display: block;
  margin: 2px 0 4px;
  color: var(--brown);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reminder-card strong {
  display: block;
  color: var(--ink-strong);
  font-size: 16px;
}

.reminder-card p {
  margin: 5px 0 17px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.reminder-button {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 8px;
  color: #fff;
  background: var(--gold-deep);
  font-size: 11px;
  font-weight: 700;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.55);
}

.trust-list {
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-height: 76px;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 620;
}

.trust-list i {
  margin-right: 8px;
  color: var(--gold-deep);
  font-style: normal;
}

.section {
  padding: 124px 0;
}

.section-tinted {
  border-block: 1px solid rgba(95, 73, 51, 0.07);
  background: rgba(246, 223, 184, 0.18);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 52px;
}

.section-heading > p:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.section-heading.centered > p:last-child {
  margin-inline: auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card {
  position: relative;
  min-height: 294px;
  padding: 28px 24px 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover {
  border-color: rgba(200, 137, 54, 0.27);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.feature-number {
  position: absolute;
  top: 19px;
  right: 20px;
  color: rgba(95, 73, 51, 0.35);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 54px;
  place-items: center;
  border-radius: 14px;
  color: var(--brown);
  background: rgba(225, 168, 82, 0.17);
  font-size: 23px;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  position: relative;
  padding: 0 38px;
  text-align: center;
}

.steps li + li {
  border-left: 1px solid var(--line);
}

.step-number {
  display: grid;
  width: 28px;
  height: 28px;
  margin: 0 auto 18px;
  place-items: center;
  border: 1px solid rgba(157, 111, 60, 0.27);
  border-radius: 50%;
  color: var(--brown);
  background: rgba(255, 253, 248, 0.65);
  font-size: 11px;
  font-weight: 750;
}

.step-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 132px;
  margin-bottom: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: var(--shadow-soft);
}

.menu-bar-visual {
  align-items: flex-start;
  justify-content: flex-end;
  padding: 14px;
  gap: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
}

.bubble-visual {
  gap: 10px;
}

.bubble-visual span {
  position: relative;
  padding: 8px 11px;
  border-radius: 11px 11px 11px 3px;
  color: var(--ink);
  background: rgba(225, 168, 82, 0.18);
  font-size: 10px;
  font-weight: 650;
}

.movement-visual {
  gap: 15px;
  color: var(--gold-deep);
  font-size: 22px;
}

.steps h3 {
  font-size: 1.12rem;
}

.steps p {
  max-width: 280px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 14px;
}

.platform-card {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  padding: clamp(34px, 6vw, 72px);
  gap: clamp(40px, 8vw, 100px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(130deg, rgba(255, 253, 248, 0.94), rgba(246, 223, 184, 0.25));
  box-shadow: var(--shadow);
}

.platform-copy p:last-child {
  max-width: 540px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.platform-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.5);
}

.platform-row {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  min-height: 67px;
  padding: 0 18px;
  gap: 10px;
  border-bottom: 1px solid var(--line);
}

.platform-row:last-child {
  border-bottom: 0;
}

.platform-row.current {
  background: rgba(225, 168, 82, 0.09);
}

.platform-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  color: var(--brown);
  background: rgba(225, 168, 82, 0.14);
  font-size: 13px;
}

.platform-row strong {
  color: var(--ink-strong);
  font-size: 14px;
}

.status {
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(95, 73, 51, 0.07);
  font-size: 10px;
  font-weight: 700;
}

.status-soon {
  color: #81541e;
  background: rgba(225, 168, 82, 0.2);
}

.support-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: clamp(48px, 8vw, 110px);
}

.support-intro {
  position: sticky;
  top: 120px;
}

.support-intro > p:not(.eyebrow) {
  color: var(--muted);
}

.support-email {
  display: block;
  width: fit-content;
  margin: 20px 0 23px;
  color: var(--brown);
  font-size: 14px;
  font-weight: 650;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 4px;
  gap: 24px;
  color: var(--ink-strong);
  cursor: pointer;
  font-weight: 680;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  color: var(--brown);
  background: rgba(225, 168, 82, 0.15);
  font-size: 16px;
  transition: transform 180ms ease;
}

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

.faq-list details p {
  max-width: 680px;
  padding: 0 44px 24px 4px;
  color: var(--muted);
}

.wellness-note {
  padding: 42px 0;
  border-top: 1px solid rgba(95, 73, 51, 0.07);
}

.wellness-note .shell {
  display: flex;
  align-items: center;
  max-width: 860px;
  gap: 20px;
}

.wellness-note img {
  flex: 0 0 auto;
  opacity: 0.9;
}

.wellness-note p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.wellness-note strong {
  color: var(--ink);
}

.site-footer {
  padding: 54px 0 30px;
  border-top: 1px solid var(--line);
  background: rgba(246, 223, 184, 0.18);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 34px;
}

.footer-brand p {
  margin: 8px 0 0 48px;
  color: var(--muted);
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
  padding-top: 10px;
}

.footer-links a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 620;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--ink-strong);
  text-decoration: underline;
}

.copyright {
  grid-column: 1 / -1;
  margin: 22px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

/* Privacy Policy */
.privacy-main {
  padding: 78px 0 120px;
}

.privacy-shell {
  max-width: 900px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 58px;
  gap: 8px;
  color: var(--brown);
  font-size: 13px;
  font-weight: 680;
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}

.privacy-hero {
  max-width: 760px;
  margin-bottom: 50px;
}

.privacy-hero h1 {
  margin-bottom: 17px;
  font-size: clamp(3rem, 7vw, 5.2rem);
}

.effective-date {
  color: var(--muted);
  font-size: 13px;
}

.privacy-summary {
  margin: 34px 0 0;
  padding: 22px 24px;
  border-left: 3px solid var(--gold);
  border-radius: 0 14px 14px 0;
  color: var(--ink);
  background: rgba(225, 168, 82, 0.12);
  font-size: 1.05rem;
}

.policy-card {
  padding: clamp(26px, 6vw, 62px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow);
}

.policy-card section {
  scroll-margin-top: 110px;
}

.policy-card section + section {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.policy-card h2 {
  display: flex;
  margin-bottom: 21px;
  gap: 9px;
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  line-height: 1.24;
}

.policy-card h2 span {
  flex: 0 0 auto;
  color: var(--gold-deep);
}

.policy-card p {
  color: var(--muted);
  line-height: 1.78;
}

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

.policy-card ul {
  margin: 0;
  padding-left: 1.35rem;
  color: var(--muted);
}

.policy-card li {
  padding-left: 0.25rem;
  line-height: 1.78;
}

.policy-card li + li {
  margin-top: 0.55rem;
}

.policy-email {
  display: inline-flex;
  margin-top: 4px;
  padding: 11px 15px;
  border-radius: 11px;
  color: var(--ink-strong);
  background: rgba(225, 168, 82, 0.16);
  font-weight: 700;
}

.policy-email:hover {
  background: rgba(225, 168, 82, 0.26);
}

@media (max-width: 940px) {
  .hero {
    padding-top: 82px;
  }

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

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(100%, 630px);
    min-height: 480px;
    margin-inline: auto;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps li {
    padding-inline: 22px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

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

  .site-nav {
    gap: 0;
  }

  .site-nav a {
    padding-inline: 9px;
    font-size: 12px;
  }

  .language-switcher {
    margin-left: 2px;
  }

  .brand {
    font-size: 15px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .hero {
    padding: 72px 0 78px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.3rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

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

  .giraffe-stage {
    top: -40px;
    right: 50%;
    transform: translateX(50%) scale(0.84);
  }

  .mac-card {
    right: 50%;
    bottom: 0;
    width: calc(100% - 8px);
    transform: translateX(50%) rotate(-1deg);
  }

  .trust-list {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 22px;
    gap: 9px;
  }

  .section {
    padding: 86px 0;
  }

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

  .steps {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .steps li {
    padding-inline: 0;
  }

  .steps li + li {
    padding-top: 46px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .step-visual {
    max-width: 380px;
    margin-inline: auto;
  }

  .platform-card,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .support-intro {
    position: static;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .copyright {
    grid-column: 1;
    margin-top: 4px;
  }

  .privacy-main {
    padding: 54px 0 88px;
  }

  .back-link {
    margin-bottom: 42px;
  }
}

@media (max-width: 520px) {
  .nav-shell {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 12px;
    gap: 5px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .language-switcher {
    flex: 0 0 auto;
  }

  .site-nav a {
    flex: 1;
    text-align: center;
  }

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

  .feature-card {
    min-height: 250px;
  }

  .feature-icon {
    margin-bottom: 38px;
  }

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

  .giraffe-stage {
    top: -55px;
    transform: translateX(50%) scale(0.72);
  }

  .reminder-card {
    grid-template-columns: 48px 1fr;
    padding: 20px 17px 18px;
    gap: 11px;
  }

  .mini-giraffe {
    width: 48px;
    height: 48px;
    background-size: 384px 48px;
  }

  .reminder-card p {
    margin-bottom: 12px;
  }

  .platform-card {
    padding: 30px 20px;
  }

  .platform-row {
    grid-template-columns: 28px 1fr;
  }

  .status {
    grid-column: 2;
    width: fit-content;
    margin-top: -8px;
    margin-bottom: 10px;
  }

  .wellness-note .shell {
    align-items: flex-start;
  }

  .policy-card {
    border-radius: 22px;
  }

  .policy-card section + section {
    margin-top: 38px;
    padding-top: 38px;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --ink: #eadbc8;
    --ink-strong: #fff5e7;
    --brown: #dfb372;
    --cream: #1c1712;
    --cream-deep: #251d16;
    --card: rgba(43, 34, 26, 0.83);
    --line: rgba(255, 239, 219, 0.12);
    --muted: #c3ae96;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    --shadow-soft: 0 12px 34px rgba(0, 0, 0, 0.18);
  }

  body {
    background:
      radial-gradient(circle at 80% 2%, rgba(225, 168, 82, 0.08), transparent 28rem),
      var(--cream);
  }

  .site-header {
    background: rgba(28, 23, 18, 0.78);
  }

  .button-primary {
    color: #2f241a;
    background: #f0c37d;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  }

  a.button-primary:hover {
    background: #f7d298;
  }

  .button-secondary,
  .mac-card,
  .step-visual,
  .platform-list {
    background: rgba(50, 40, 31, 0.68);
  }

  .button-secondary:hover {
    background: rgba(63, 50, 38, 0.9);
  }

  .mac-card-bar {
    background: rgba(255, 255, 255, 0.03);
  }

  .reminder-button {
    color: #291e14;
    background: #e8b463;
  }

  .trust-strip {
    background: rgba(255, 255, 255, 0.02);
  }

  .section-tinted,
  .site-footer {
    background: rgba(225, 168, 82, 0.045);
  }

  .platform-card {
    background: linear-gradient(130deg, rgba(49, 39, 30, 0.94), rgba(92, 65, 34, 0.2));
  }

  .status-soon {
    color: #f2c98b;
  }
}

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

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