:root {
  --green-950: #162b24;
  --green-900: #203b32;
  --green-800: #31584b;
  --green-700: #3a6b5c;
  --green-600: #438171;
  --green-100: #eaf1e9;
  --green-050: #f2f5ee;
  --orange: #e58f62;
  --orange-soft: #fff0e5;
  --canvas: #f7f8f3;
  --paper: #fffefa;
  --white: #ffffff;
  --ink: #263630;
  --muted: #6f7e77;
  --subtle: #8a9992;
  --border: #dfe7df;
  --shadow-sm: 0 14px 34px rgba(32, 59, 50, 0.08);
  --shadow-lg: 0 30px 80px rgba(32, 59, 50, 0.16);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --shell: min(1180px, calc(100vw - 40px));
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
summary {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(229, 143, 98, 0.72);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--green-950);
  color: var(--white);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 82px;
  border-bottom: 1px solid transparent;
  background: rgba(247, 248, 243, 0);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(49, 88, 75, 0.1);
  background: rgba(255, 254, 250, 0.92);
  box-shadow: 0 8px 30px rgba(32, 59, 50, 0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand img,
.footer-brand img {
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(32, 59, 50, 0.14);
}

.brand > span,
.footer-brand > span {
  display: grid;
  line-height: 1.06;
}

.brand strong {
  font-size: 17px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.site-nav > a {
  position: relative;
  color: #44564f;
  font-size: 14px;
  font-weight: 680;
}

.site-nav > a::after {
  position: absolute;
  content: "";
  inset: auto 50% -9px;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
  transition: inset 160ms ease;
}

.site-nav > a:hover::after,
.site-nav > a[aria-current="page"]::after {
  inset-inline: 0;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px;
  border: 1px solid rgba(49, 88, 75, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
}

.language-switch button {
  width: 34px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}

.language-switch button[aria-pressed="true"] {
  background: var(--green-800);
  color: var(--white);
}

.language-switch > span {
  width: 1px;
  height: 13px;
  background: var(--border);
}

.menu-button {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--paper);
  cursor: pointer;
}

.menu-button i {
  display: block;
  width: 21px;
  height: 2px;
  margin: 2.5px 0;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] i:nth-of-type(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] i:nth-of-type(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] i:nth-of-type(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 850px;
  padding: 150px 0 86px;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 22%, rgba(197, 216, 193, 0.62), transparent 30%),
    radial-gradient(circle at 12% 80%, rgba(229, 143, 98, 0.12), transparent 24%),
    linear-gradient(145deg, #fafbf7 0%, #f4f7ef 62%, #eef3ea 100%);
}

.hero::after {
  position: absolute;
  content: "";
  inset: auto 0 0;
  height: 130px;
  background: linear-gradient(to bottom, transparent, rgba(247, 248, 243, 0.92));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, 0.97fr);
  align-items: center;
  gap: 76px;
}

.hero-copy {
  padding-bottom: 28px;
}

.eyebrow,
.section-kicker,
.mini-kicker {
  color: var(--green-700);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid rgba(49, 88, 75, 0.14);
  border-radius: 999px;
  background: rgba(255, 254, 250, 0.72);
  font-size: 11px;
}

.eyebrow > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(229, 143, 98, 0.14);
}

.hero h1 {
  max-width: 690px;
  margin: 27px 0 25px;
  font-size: clamp(48px, 5.5vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  margin-top: 7px;
  background: linear-gradient(105deg, var(--green-800), #5c8a72 68%, #d58055);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-style: normal;
}

.hero-lede {
  max-width: 650px;
  margin: 0;
  color: #5c6d65;
  font-size: 18px;
  line-height: 1.82;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--green-800);
  color: var(--white);
  box-shadow: 0 14px 26px rgba(49, 88, 75, 0.23);
}

.button-primary:hover {
  background: var(--green-900);
  box-shadow: 0 18px 34px rgba(49, 88, 75, 0.28);
}

.availability {
  display: flex;
  align-items: center;
  gap: 10px;
}

.availability-mark {
  color: var(--ink);
  font-size: 21px;
}

.availability > span:last-child {
  display: grid;
  gap: 4px;
}

.availability strong {
  font-size: 14px;
}

.availability small {
  color: var(--muted);
  font-size: 11px;
}

.trust-list {
  display: flex;
  gap: 20px 26px;
  flex-wrap: wrap;
  padding: 0;
  margin: 29px 0 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #5c6d65;
  font-size: 12px;
}

.trust-list li > span {
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 11px;
}

.hero-product {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 650px;
}

.soft-orbit {
  position: absolute;
  border: 1px solid rgba(49, 88, 75, 0.11);
  border-radius: 50%;
}

.orbit-one {
  width: 570px;
  height: 570px;
}

.orbit-two {
  width: 455px;
  height: 455px;
}

.phone-frame {
  position: relative;
  z-index: 2;
  width: 326px;
  padding: 9px;
  border: 2px solid rgba(255, 255, 255, 0.84);
  border-radius: 53px;
  background: #17241f;
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  transform: rotate(2.4deg);
}

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

.phone-speaker {
  position: absolute;
  z-index: 3;
  top: 17px;
  left: 50%;
  width: 96px;
  height: 26px;
  border-radius: 999px;
  background: #020403;
  transform: translateX(-50%);
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  background: rgba(255, 254, 250, 0.91);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.due-note {
  top: 82px;
  left: -8px;
  display: grid;
  min-width: 178px;
  transform: rotate(-3deg);
}

.due-note small,
.local-note small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
}

.due-note strong {
  margin-top: 5px;
  font-size: 17px;
}

.due-note span {
  margin-top: 9px;
  color: var(--green-700);
  font-size: 10px;
  font-weight: 800;
}

.local-note {
  right: -6px;
  bottom: 94px;
  gap: 11px;
  transform: rotate(2deg);
}

.local-note > span:last-child {
  display: grid;
  gap: 3px;
}

.local-note strong {
  font-size: 15px;
}

.local-dot {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 12px;
  background: var(--green-100);
  color: var(--green-700);
  font-weight: 900;
}

.hero-leaf {
  position: absolute;
  width: 220px;
  height: 120px;
  border-radius: 100% 0 100% 0;
  background: rgba(129, 161, 119, 0.11);
  transform: rotate(38deg);
}

.hero-leaf-one {
  top: 130px;
  right: -80px;
}

.hero-leaf-two {
  bottom: 140px;
  left: -100px;
  transform: rotate(208deg) scale(1.3);
}

.principle-strip {
  position: relative;
  z-index: 3;
  border-block: 1px solid rgba(49, 88, 75, 0.09);
  background: rgba(255, 254, 250, 0.86);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.principle-grid > div {
  display: grid;
  gap: 7px;
  min-height: 112px;
  padding: 28px 30px;
  border-left: 1px solid rgba(49, 88, 75, 0.09);
}

.principle-grid > div:last-child {
  border-right: 1px solid rgba(49, 88, 75, 0.09);
}

.principle-grid strong {
  color: var(--green-800);
  font-size: 17px;
}

.principle-grid span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.section {
  padding: 116px 0;
}

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

.section-heading.centered {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-kicker {
  display: block;
  margin-bottom: 15px;
  font-size: 11px;
}

.section-heading h2,
.support-copy h2,
.closing-card h2 {
  margin: 0;
  font-size: clamp(35px, 4.2vw, 55px);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.section-heading > p,
.section-heading.centered p,
.split-heading > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.section-heading.centered p {
  max-width: 650px;
  margin: 18px auto 0;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 70px;
}

.split-heading > p {
  margin: 0 0 4px;
}

.workflow-section {
  background: var(--paper);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.workflow-card {
  display: flex;
  min-width: 0;
  min-height: 565px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--canvas);
  box-shadow: 0 20px 55px rgba(32, 59, 50, 0.06);
}

.workflow-card > :not(img) {
  margin-inline: 28px;
}

.step-label {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 30px;
  color: var(--green-700);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.step-label span {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: var(--green-800);
  color: var(--white);
  font-size: 10px;
}

.workflow-card h3,
.feature-tile h3 {
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 25px;
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.workflow-card p,
.feature-tile p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.workflow-card p {
  margin-top: 13px;
  margin-bottom: 8px;
}

.workflow-card > img {
  width: calc(100% - 28px);
  margin: auto 14px 14px;
  border-radius: 27px;
  mix-blend-mode: multiply;
}

.features-section {
  background: var(--canvas);
}

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

.feature-tile {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 31px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: var(--paper);
  box-shadow: 0 16px 44px rgba(32, 59, 50, 0.05);
}

.feature-tile > * {
  position: relative;
  z-index: 2;
}

.feature-tile p {
  max-width: 610px;
  margin: 13px 0 0;
}

.feature-tile a {
  display: inline-block;
  margin-top: 19px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 800;
}

.mini-kicker {
  font-size: 10px;
}

.feature-large {
  grid-column: span 7;
  min-height: 410px;
}

.reminder-feature {
  grid-column: span 5;
}

.privacy-feature {
  grid-column: span 5;
  background: var(--green-900);
  color: var(--white);
}

.privacy-feature .mini-kicker,
.privacy-feature a {
  color: #a8d4c2;
}

.privacy-feature p {
  color: rgba(255, 255, 255, 0.68);
}

.privacy-feature::after {
  position: absolute;
  content: "";
  width: 270px;
  height: 270px;
  right: -88px;
  bottom: -110px;
  border: 38px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
}

.feature-wide {
  grid-column: span 7;
}

.export-feature {
  grid-column: 9 / span 4;
  min-height: 310px;
  background: var(--orange-soft);
}

.record-feature {
  grid-column: 1 / span 8;
}

.feature-symbol {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 23px;
  border-radius: 16px;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 24px;
  font-weight: 800;
}

.privacy-feature .feature-symbol {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.plan-feature {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  align-items: center;
  gap: 26px;
  background: linear-gradient(140deg, var(--paper), #edf3ea);
}

.plan-stack {
  display: grid;
  gap: 10px;
  transform: rotate(2deg);
}

.plan-stack > div {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 11px;
  padding: 15px;
  border: 1px solid rgba(49, 88, 75, 0.1);
  border-radius: 17px;
  background: rgba(255, 254, 250, 0.92);
  box-shadow: 0 12px 24px rgba(32, 59, 50, 0.07);
}

.plan-stack span {
  grid-row: span 2;
  width: 10px;
  height: 10px;
  margin-top: 4px;
  border: 3px solid var(--green-600);
  border-radius: 50%;
}

.plan-stack b {
  font-size: 12px;
}

.plan-stack small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}

.record-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 28px;
}

.record-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--green-050);
}

.record-facts span {
  display: grid;
  gap: 8px;
  padding: 25px 14px;
  text-align: center;
}

.record-facts span + span {
  border-left: 1px solid var(--border);
}

.record-facts small {
  color: var(--muted);
  font-size: 9px;
}

.record-facts strong {
  color: var(--green-800);
  font-size: 18px;
}

.app-preview-section {
  background: var(--green-950);
  color: var(--white);
}

.app-preview-section .section-kicker {
  color: #a9d1c0;
}

.app-preview-section .section-heading p {
  color: rgba(255, 255, 255, 0.62);
}

.screens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 34px;
  max-width: 980px;
  margin: 0 auto;
}

.screens-grid figure {
  margin: 0;
}

.screens-grid img {
  width: 100%;
  border: 8px solid #0c1713;
  border-radius: 37px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.32);
}

.screens-grid figure:nth-child(2) {
  margin-top: 48px;
}

.screens-grid figcaption {
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.support-section {
  background: var(--paper);
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 80px;
}

.support-copy {
  position: sticky;
  top: 120px;
  align-self: start;
}

.support-copy h2 {
  margin-top: 0;
}

.support-copy > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.support-contact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  margin-top: 30px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--canvas);
}

.support-contact > span:first-child {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.support-contact code,
.policy-contact code,
.email-link {
  align-self: center;
  overflow-wrap: anywhere;
  color: var(--green-800);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  font-weight: 700;
}

.email-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.copy-button {
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 12px;
  background: var(--green-800);
  color: var(--white);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
}

.copy-status {
  min-height: 17px;
  grid-column: 1 / -1;
  color: var(--green-700);
  font-size: 10px;
}

.faq-list {
  display: grid;
  gap: 13px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--canvas);
}

.faq-list summary {
  position: relative;
  padding: 22px 60px 22px 23px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 780;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  content: "+";
  top: 50%;
  right: 22px;
  color: var(--green-700);
  font-size: 24px;
  font-weight: 400;
  transform: translateY(-50%);
}

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

.faq-list p {
  padding: 0 23px 22px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.78;
}

.closing-section {
  padding: 80px 0;
  background: var(--canvas);
}

.closing-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 52px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--green-100), #f8efe6);
}

.closing-card img {
  border-radius: 27px;
  box-shadow: var(--shadow-sm);
}

.closing-card h2 {
  max-width: 650px;
  font-size: clamp(27px, 3.4vw, 43px);
}

.coming-pill {
  padding: 13px 17px;
  border: 1px solid rgba(49, 88, 75, 0.14);
  border-radius: 999px;
  background: rgba(255, 254, 250, 0.7);
  color: var(--green-800);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.site-footer {
  padding: 35px 0;
  border-top: 1px solid var(--border);
  background: var(--paper);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.footer-brand strong {
  font-size: 14px;
}

.footer-brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
}

.site-footer nav {
  display: flex;
  gap: 24px;
}

.site-footer nav a,
.site-footer p {
  color: var(--muted);
  font-size: 10px;
}

.site-footer p {
  margin: 0;
  text-align: right;
}

/* Privacy policy */

.legal-page {
  background: var(--paper);
}

.legal-hero {
  padding: 160px 0 72px;
  background:
    radial-gradient(circle at 80% 20%, rgba(198, 216, 193, 0.65), transparent 28%),
    linear-gradient(145deg, var(--green-950), var(--green-900));
  color: var(--white);
}

.legal-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 80px;
}

.legal-hero .section-kicker {
  color: #a9d1c0;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(50px, 6.8vw, 82px);
  letter-spacing: -0.055em;
}

.legal-hero p {
  max-width: 760px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.8;
}

.legal-meta {
  display: grid;
  grid-template-columns: auto auto;
  gap: 10px 20px;
  min-width: 230px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
}

.legal-meta span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 9px;
}

.legal-meta strong {
  font-size: 11px;
  text-align: right;
}

.legal-main {
  padding: 56px 0 110px;
  background: var(--canvas);
}

.policy-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 18px 0 54px;
}

.summary-card {
  display: grid;
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 16px 40px rgba(32, 59, 50, 0.045);
}

.summary-card > span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
}

.summary-card strong {
  align-self: end;
  margin-top: 20px;
  font-size: 18px;
}

.summary-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: start;
  gap: 38px;
}

.legal-layout[hidden] {
  display: none;
}

.policy-toc {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 2px;
  padding: 17px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 254, 250, 0.9);
}

.policy-toc strong {
  padding: 8px 10px 13px;
  border-bottom: 1px solid var(--border);
  font-size: 11px;
}

.policy-toc a {
  padding: 7px 10px;
  border-radius: 9px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}

.policy-toc a:hover {
  background: var(--green-100);
  color: var(--green-800);
}

.policy-article {
  min-width: 0;
  padding: 18px 42px 52px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--paper);
}

.policy-article section {
  padding: 42px 0;
  scroll-margin-top: 100px;
}

.policy-article section + section {
  border-top: 1px solid var(--border);
}

.policy-article h2 {
  margin: 0 0 22px;
  color: var(--green-900);
  font-size: 25px;
  letter-spacing: -0.025em;
}

.policy-article h3 {
  margin: 27px 0 10px;
  font-size: 16px;
}

.policy-article p,
.policy-article li {
  color: #53635c;
  font-size: 13px;
  line-height: 1.85;
}

.policy-article p {
  margin: 13px 0 0;
}

.policy-article ul {
  padding-left: 22px;
}

.policy-article li + li {
  margin-top: 9px;
}

.policy-article a {
  color: var(--green-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-callout {
  margin-top: 20px;
  padding: 17px 19px;
  border-left: 4px solid var(--orange);
  border-radius: 0 14px 14px 0;
  background: var(--orange-soft);
  color: #6e5540;
  font-size: 12px;
  line-height: 1.7;
}

.policy-table-wrap {
  width: 100%;
  margin-top: 22px;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 16px;
}

.policy-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 10px;
}

.policy-table th,
.policy-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
  line-height: 1.6;
}

.policy-table th {
  background: var(--green-100);
  color: var(--green-900);
  font-weight: 800;
}

.policy-table td {
  color: #596961;
}

.policy-table tr:last-child td {
  border-bottom: 0;
}

.policy-table td:first-child {
  color: var(--green-900);
  font-weight: 750;
}

.policy-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 16px;
  margin-top: 25px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--green-050);
}

.policy-contact > div {
  display: grid;
  gap: 4px;
}

.policy-contact > div strong {
  font-size: 12px;
}

.policy-contact > div span {
  color: var(--muted);
  font-size: 10px;
}

.policy-contact .copy-status {
  grid-column: 1 / -1;
}

@media (max-width: 1050px) {
  .site-nav {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
    gap: 34px;
  }

  .floating-note {
    display: none;
  }

  .workflow-card > :not(img) {
    margin-inline: 22px;
  }

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

  .policy-article {
    padding-inline: 30px;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 30px, 720px);
  }

  .site-header {
    height: 72px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 72px 15px auto;
    display: none;
    align-items: stretch;
    max-height: calc(100vh - 90px);
    padding: 15px;
    overflow: auto;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 254, 250, 0.98);
    box-shadow: var(--shadow-lg);
  }

  .site-nav.is-open {
    display: grid;
    gap: 3px;
  }

  .site-nav > a {
    padding: 13px 12px;
    border-radius: 12px;
  }

  .site-nav > a:hover {
    background: var(--green-050);
  }

  .site-nav > a::after {
    display: none;
  }

  .language-switch {
    justify-self: start;
    margin: 7px 9px;
  }

  .hero {
    padding: 125px 0 80px;
  }

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

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

  .eyebrow {
    margin-inline: auto;
  }

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

  .hero-actions,
  .trust-list {
    justify-content: center;
  }

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

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

  .principle-grid > div:nth-child(3) {
    border-top: 1px solid rgba(49, 88, 75, 0.09);
  }

  .principle-grid > div:nth-child(4) {
    border-top: 1px solid rgba(49, 88, 75, 0.09);
    border-right: 1px solid rgba(49, 88, 75, 0.09);
  }

  .section {
    padding: 88px 0;
  }

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

  .workflow-card {
    min-height: 0;
  }

  .workflow-card > img {
    margin-top: 20px;
  }

  .workflow-card p {
    margin-bottom: 0;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-large,
  .reminder-feature,
  .privacy-feature,
  .record-feature,
  .export-feature {
    grid-column: 1 / -1;
  }

  .screens-grid {
    max-width: 340px;
    gap: 44px;
  }

  .screens-grid figure:nth-child(2) {
    margin-top: 0;
  }

  .support-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .support-copy {
    position: static;
  }

  .closing-card {
    grid-template-columns: auto 1fr;
  }

  .coming-pill {
    grid-column: 1 / -1;
    justify-self: start;
  }

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

  .site-footer p {
    grid-column: 1 / -1;
    text-align: left;
  }

  .legal-hero {
    padding-top: 130px;
  }

  .legal-hero-inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .legal-meta {
    width: 100%;
  }

  .policy-summary {
    margin-top: 0;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .policy-toc {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .policy-toc strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .brand img {
    width: 40px;
    height: 40px;
  }

  .hero h1 {
    font-size: 45px;
  }

  .hero-lede {
    font-size: 15px;
  }

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

  .availability {
    justify-content: center;
  }

  .trust-list {
    gap: 13px;
  }

  .hero-product {
    min-height: 500px;
  }

  .phone-frame {
    width: min(290px, calc(100vw - 70px));
  }

  .orbit-one {
    width: 420px;
    height: 420px;
  }

  .orbit-two {
    width: 340px;
    height: 340px;
  }

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

  .principle-grid > div {
    min-height: 90px;
    border-right: 1px solid rgba(49, 88, 75, 0.09);
    border-bottom: 1px solid rgba(49, 88, 75, 0.09);
  }

  .principle-grid > div:last-child {
    border-bottom: 0;
  }

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

  .section-heading h2,
  .support-copy h2 {
    font-size: 36px;
  }

  .feature-tile {
    padding: 25px;
  }

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

  .record-facts {
    grid-template-columns: 1fr;
  }

  .record-facts span + span {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .support-contact {
    grid-template-columns: 1fr;
  }

  .copy-button {
    justify-self: start;
  }

  .closing-card {
    grid-template-columns: 1fr;
    padding: 34px 27px;
  }

  .closing-card img {
    width: 82px;
    height: 82px;
  }

  .site-footer nav {
    gap: 15px;
  }

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

  .site-footer p {
    grid-column: auto;
  }

  .legal-hero h1 {
    font-size: 52px;
  }

  .legal-hero p {
    font-size: 14px;
  }

  .policy-summary {
    grid-template-columns: 1fr;
  }

  .summary-card {
    min-height: 140px;
  }

  .policy-toc {
    grid-template-columns: 1fr;
  }

  .policy-article {
    padding: 8px 21px 40px;
  }

  .policy-article section {
    padding: 35px 0;
  }

  .policy-article h2 {
    font-size: 22px;
  }

  .policy-contact {
    grid-template-columns: 1fr;
  }
}

@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;
  }
}

@media print {
  .site-header,
  .site-footer,
  .policy-toc,
  .copy-button,
  .copy-status {
    display: none !important;
  }

  .legal-hero {
    padding: 30px 0;
    background: none;
    color: #000;
  }

  .legal-hero p {
    color: #333;
  }

  .legal-main {
    background: #fff;
  }

  .policy-summary {
    margin-top: 25px;
  }

  .legal-layout {
    display: block;
  }

  .policy-article {
    padding: 0;
    border: 0;
  }
}
