:root {
  --paper: #f7f1e3;
  --paper-soft: #fcf8ef;
  --card: #fffdf8;
  --ink: #253d36;
  --muted: #68736d;
  --green: #2f7667;
  --green-dark: #1e554b;
  --green-pale: #dce9df;
  --coral: #ef805f;
  --coral-pale: #f8ddd1;
  --gold: #e6a142;
  --gold-pale: #f6e6b9;
  --line: rgba(37, 61, 54, 0.12);
  --shadow: 0 24px 70px rgba(42, 58, 51, 0.12);
  --serif: "Songti SC", "STSong", "Noto Serif CJK SC", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input { font: inherit; }
button { color: inherit; }

.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;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  border-radius: 10px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.section-shell, .nav-shell { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 241, 227, 0.88);
  border-bottom: 1px solid rgba(37, 61, 54, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav-shell { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--serif); font-size: 21px; font-weight: 800; letter-spacing: 0.04em; }
.brand img { border-radius: 13px; box-shadow: 0 7px 20px rgba(203, 123, 73, 0.2); }
.site-nav { display: flex; align-items: center; gap: 6px; padding: 5px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 253, 248, 0.68); }
.nav-tab { position: relative; padding: 8px 17px; border-radius: 999px; color: var(--muted); font-size: 14px; font-weight: 650; transition: 180ms ease; }
.nav-tab:hover, .nav-tab:focus-visible { color: var(--green-dark); background: rgba(47, 118, 103, 0.07); outline: none; }
.nav-tab.is-active { color: #fff; background: var(--green); box-shadow: 0 6px 18px rgba(47, 118, 103, 0.24); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--ink); transition: 180ms ease; }

.hero { position: relative; min-height: 780px; overflow: hidden; background: linear-gradient(145deg, var(--paper) 0%, #fbf5e7 58%, #f2e9d2 100%); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: 0.34; pointer-events: none; background-image: radial-gradient(rgba(47, 118, 103, 0.22) 0.7px, transparent 0.7px); background-size: 18px 18px; mask-image: linear-gradient(to right, black, transparent 62%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(4px); opacity: 0.7; }
.hero-glow-one { width: 500px; height: 500px; right: -100px; top: 70px; background: rgba(235, 163, 69, 0.2); }
.hero-glow-two { width: 320px; height: 320px; left: -150px; bottom: -80px; background: rgba(47, 118, 103, 0.14); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr 0.98fr; align-items: center; min-height: 780px; gap: 60px; padding-top: 50px; padding-bottom: 70px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 8px 14px; border-radius: 999px; color: var(--green-dark); background: rgba(47, 118, 103, 0.09); font-size: 13px; font-weight: 700; letter-spacing: 0.08em; }
.eyebrow span { color: var(--gold); }
.hero h1 { margin: 26px 0 22px; max-width: 680px; font-family: var(--serif); font-size: clamp(52px, 6vw, 82px); line-height: 1.1; letter-spacing: -0.05em; }
.hero h1 em { color: var(--coral); font-style: normal; background: linear-gradient(100deg, var(--coral), #d85f4c); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-lead { max-width: 580px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.9; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 35px; }
.app-store-button { display: inline-flex; align-items: center; gap: 11px; min-width: 175px; padding: 10px 18px; color: #fff; background: #17221f; border-radius: 14px; box-shadow: 0 13px 30px rgba(23, 34, 31, 0.2); transition: transform 180ms ease, box-shadow 180ms ease; }
.app-store-button:hover { transform: translateY(-2px); box-shadow: 0 17px 36px rgba(23, 34, 31, 0.28); }
.app-store-button svg { width: 27px; height: 27px; fill: currentColor; }
.app-store-button span { display: flex; flex-direction: column; font-size: 19px; font-weight: 650; line-height: 1.15; }
.app-store-button small { font-size: 10px; font-weight: 500; letter-spacing: 0.05em; }
.text-link, .feature-card a { color: var(--green-dark); font-weight: 700; }
.text-link span, .feature-card a span { display: inline-block; transition: transform 180ms ease; }
.text-link:hover span, .feature-card a:hover span { transform: translateX(4px); }
.trust-row { display: flex; flex-wrap: wrap; gap: 16px 22px; margin-top: 30px; color: var(--muted); font-size: 13px; }
.trust-row b { display: inline-grid; place-items: center; width: 18px; height: 18px; margin-right: 5px; border-radius: 50%; color: #fff; background: var(--green); font-size: 11px; }

.hero-visual { position: relative; display: grid; place-items: center; min-height: 625px; }
.orbit { position: absolute; border: 1px dashed rgba(47, 118, 103, 0.24); border-radius: 50%; animation: spin 35s linear infinite; }
.orbit-one { width: 540px; height: 540px; }
.orbit-two { width: 410px; height: 410px; animation-direction: reverse; animation-duration: 24s; }
.orbit::before, .orbit::after { content: "✦"; position: absolute; color: var(--gold); font-size: 22px; background: var(--paper); }
.orbit::before { top: 12%; left: 7%; } .orbit::after { right: 1%; bottom: 26%; }
@keyframes spin { to { transform: rotate(360deg); } }
.phone { position: relative; z-index: 4; width: 330px; padding: 10px; border: 2px solid #344942; border-radius: 48px; background: #13201c; box-shadow: 0 44px 80px rgba(30, 52, 45, 0.24), 0 12px 22px rgba(30, 52, 45, 0.18); transform: rotate(2deg); }
.phone-top { position: absolute; z-index: 5; top: 18px; left: 50%; width: 98px; height: 24px; border-radius: 0 0 17px 17px; background: #13201c; transform: translateX(-50%); }
.phone-top span { position: absolute; top: 7px; left: 50%; width: 38px; height: 5px; border-radius: 99px; background: #283832; transform: translateX(-50%); }
.phone-screen { position: relative; min-height: 620px; padding: 18px 16px 0; overflow: hidden; border-radius: 38px; color: var(--ink); background: #f2ebdc; }
.phone-status { display: flex; justify-content: space-between; padding: 0 8px 20px; font-size: 10px; font-weight: 800; }
.phone-heading { display: flex; align-items: end; justify-content: space-between; padding: 4px 2px 16px; }
.phone-heading small { color: var(--muted); font-size: 10px; }
.phone-heading h2 { margin: 1px 0 0; font-family: var(--serif); font-size: 25px; }
.phone-heading button { width: 35px; height: 35px; border: 0; border-radius: 12px; color: #fff; background: var(--green); font-size: 22px; }
.memory-card { overflow: hidden; border-radius: 19px; background: #fffdf7; box-shadow: 0 12px 24px rgba(41, 59, 53, 0.09); }
.memory-photo { position: relative; height: 170px; overflow: hidden; background: linear-gradient(#b8d8d2, #fae4b1 58%, #c0c99d 59%); }
.memory-photo .sun { position: absolute; top: 25px; right: 42px; width: 43px; height: 43px; border-radius: 50%; background: #f4bf60; box-shadow: 0 0 35px rgba(244, 191, 96, 0.7); }
.hill { position: absolute; bottom: -45px; width: 260px; height: 150px; border-radius: 50% 50% 0 0; transform: rotate(-8deg); }
.hill-one { left: -80px; background: #779d7f; } .hill-two { right: -95px; bottom: -60px; background: #4f806e; transform: rotate(12deg); }
.memory-body { padding: 14px; }
.memory-meta { display: flex; justify-content: space-between; color: var(--muted); font-size: 9px; }
.memory-body h3 { margin: 7px 0 4px; font-family: var(--serif); font-size: 17px; }
.memory-body p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.6; }
.mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }
.mini-cards div { padding: 12px; border-radius: 15px; background: rgba(255, 253, 247, 0.9); }
.mini-cards span { font-size: 18px; } .mini-cards p { margin: 4px 0 1px; font-size: 10px; font-weight: 700; } .mini-cards small { color: var(--muted); font-size: 8px; }
.phone-tabs { position: absolute; right: 0; bottom: 0; left: 0; display: flex; justify-content: space-around; padding: 10px 14px 12px; border-top: 1px solid var(--line); background: rgba(255,253,247,0.94); }
.phone-tabs span { display: flex; flex-direction: column; align-items: center; color: #9b9f9d; font-size: 14px; }
.phone-tabs small { margin-top: 2px; font-size: 8px; } .phone-tabs .active { color: var(--green); }
.floating-note { position: absolute; z-index: 7; display: flex; align-items: center; gap: 9px; padding: 12px 15px; border: 1px solid rgba(255,255,255,0.8); border-radius: 16px; background: rgba(255, 253, 248, 0.9); box-shadow: 0 14px 36px rgba(40, 61, 53, 0.14); backdrop-filter: blur(10px); font-size: 12px; }
.floating-note span { font-size: 23px; } .note-one { left: -18px; top: 24%; transform: rotate(-4deg); } .note-two { right: -18px; bottom: 25%; transform: rotate(5deg); }

.manifesto { max-width: 820px; padding-top: 105px; padding-bottom: 105px; text-align: center; }
.section-kicker { margin: 0 0 13px; color: var(--coral); font-size: 12px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.manifesto blockquote { margin: 0; font-family: var(--serif); font-size: clamp(36px, 5vw, 56px); font-weight: 700; line-height: 1.38; }
.manifesto blockquote::before { content: "✦"; display: block; margin-bottom: 18px; color: var(--gold); font-size: 22px; }
.manifesto > p:last-child { max-width: 650px; margin: 25px auto 0; color: var(--muted); font-size: 16px; }

.features-section { padding: 100px 0 120px; background: #e8eee7; }
.section-heading { max-width: 720px; margin-bottom: 45px; }
.section-heading > div { color: var(--green); font-size: 11px; font-weight: 800; letter-spacing: 0.2em; }
.section-heading h2, .privacy-banner h2, .download-section h2 { margin: 10px 0 12px; font-family: var(--serif); font-size: clamp(34px, 4vw, 50px); line-height: 1.25; }
.section-heading p { margin: 0; color: var(--muted); font-size: 16px; }
.feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.feature-card { position: relative; min-height: 360px; padding: 36px; overflow: hidden; border: 1px solid rgba(255,255,255,0.75); border-radius: 28px; box-shadow: 0 18px 50px rgba(45, 65, 56, 0.08); }
.feature-card-wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 0.82fr; gap: 50px; align-items: center; }
.feature-card.coral { background: linear-gradient(135deg, #fff8f2, var(--coral-pale)); }
.feature-card.sage { background: linear-gradient(145deg, #f9fcf8, #ceded0); }
.feature-card.cream { background: linear-gradient(145deg, #fffdf8, #f6ead0); }
.feature-card.gold { background: linear-gradient(145deg, #fff9e9, var(--gold-pale)); }
.feature-card.forest { color: #fff; background: linear-gradient(135deg, var(--green), var(--green-dark)); }
.feature-card h3 { margin: 13px 0 10px; font-family: var(--serif); font-size: 28px; }
.feature-card p { margin: 0; max-width: 520px; color: var(--muted); }
.feature-card.forest p { color: rgba(255,255,255,0.78); }
.feature-card.forest a { color: #fff; display: inline-block; margin-top: 20px; }
.feature-number { position: absolute; top: 22px; right: 28px; color: rgba(37,61,54,0.14); font-family: var(--serif); font-size: 52px; font-weight: 800; line-height: 1; }
.forest .feature-number { color: rgba(255,255,255,0.13); }
.feature-icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 15px; color: #fff; background: var(--green); font-size: 22px; font-weight: 800; }
.coral .feature-icon { background: var(--coral); } .gold .feature-icon { background: var(--gold); } .forest .feature-icon { color: var(--green-dark); background: #fff; }
.feature-card ul { display: flex; flex-wrap: wrap; gap: 9px; margin: 20px 0 0; padding: 0; list-style: none; }
.feature-card li { padding: 6px 11px; border: 1px solid rgba(239,128,95,0.22); border-radius: 99px; color: #9b5844; background: rgba(255,255,255,0.5); font-size: 12px; }
.compose-demo { align-self: stretch; padding: 20px; border-radius: 24px; background: rgba(255,255,255,0.8); box-shadow: 0 16px 40px rgba(113,70,51,0.1); transform: rotate(2deg); }
.compose-toolbar { display: flex; justify-content: space-between; color: var(--green); font-size: 12px; } .compose-toolbar b { color: var(--ink); font-family: var(--serif); }
.mood-row { display: flex; justify-content: space-between; margin: 17px 0; } .mood-row span { display: grid; place-items: center; width: 37px; height: 37px; border-radius: 12px; background: var(--paper); } .mood-row .chosen { background: #f4b35e; box-shadow: 0 0 0 3px rgba(244,179,94,0.2); }
.compose-image { height: 120px; margin-bottom: 15px; overflow: hidden; border-radius: 16px; background: linear-gradient(#a9d4d0 0 52%, #86a36e 53%); }
.compose-image i { position: absolute; } .compose-demo > b { font-family: var(--serif); font-size: 17px; } .compose-demo > p { margin-top: 5px; font-size: 11px; }
.mood-chart { display: grid; grid-template-columns: repeat(7, 1fr); gap: 7px; margin-top: 35px; }
.mood-chart span { aspect-ratio: 1; border-radius: 8px; } .m1 { background: #efaa47; } .m2 { background: #72a28a; } .m3 { background: #8f82bd; } .m4 { background: #8498ae; } .m5 { background: #a9bec7; }
.search-demo { display: flex; gap: 9px; margin-top: 38px; padding: 13px 15px; border-radius: 14px; color: var(--muted); background: rgba(255,255,255,0.78); } .search-demo em { font-size: 13px; font-style: normal; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; } .chips span { padding: 6px 10px; border-radius: 99px; color: var(--green-dark); background: rgba(255,255,255,0.68); font-size: 11px; }
.checkin-demo { margin-top: 29px; padding: 17px; border-radius: 18px; background: rgba(255,255,255,0.7); } .checkin-demo > div:first-child { display: flex; justify-content: space-between; } .checkin-demo small { color: var(--muted); }
.check-days { display: grid!important; grid-template-columns: repeat(7, 1fr); gap: 5px; margin-top: 15px; text-align: center; font-size: 10px; } .check-days span { display: flex; flex-direction: column; gap: 6px; } .check-days small { display: grid; place-items: center; aspect-ratio: 1; border: 1px solid rgba(47,118,103,0.2); border-radius: 50%; color: #fff; background: rgba(255,255,255,0.5); } .check-days span:nth-child(-n+5) small { background: var(--green); }
.privacy-demo { text-align: center; } .lock-ring { display: grid; place-items: center; width: 145px; height: 145px; margin: 0 auto 18px; border: 1px dashed rgba(255,255,255,0.45); border-radius: 50%; } .lock-ring span { display: grid; place-items: center; width: 94px; height: 94px; border-radius: 50%; color: var(--green-dark); background: #fff; font-size: 45px; transform: rotate(-40deg); } .privacy-demo b { font-family: var(--serif); font-size: 22px; } .privacy-demo p { margin-top: 4px; font-size: 12px; }

.more-section { padding-top: 110px; padding-bottom: 110px; }
.section-heading.compact { margin-bottom: 34px; }
.more-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.more-grid article { padding: 26px 22px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,253,248,0.65); transition: 180ms ease; }
.more-grid article:hover { transform: translateY(-4px); background: var(--card); box-shadow: 0 15px 35px rgba(45,65,56,0.08); }
.more-grid article > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 14px; color: #fff; background: var(--coral); font-size: 18px; font-weight: 800; }
.more-grid article:nth-child(2) > span { background: var(--green); } .more-grid article:nth-child(3) > span { background: var(--gold); } .more-grid article:nth-child(4) > span { background: #816da7; }
.more-grid h3 { margin: 18px 0 8px; font-family: var(--serif); font-size: 20px; } .more-grid p { margin: 0; color: var(--muted); font-size: 13px; }

.privacy-banner { padding: 70px 0; color: #fff; background: var(--green-dark); }
.privacy-banner-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 34px; }
.privacy-banner .section-kicker { color: #f3c671; } .privacy-banner h2 { margin-top: 6px; font-size: clamp(30px, 3.4vw, 43px); } .privacy-banner p:last-child { max-width: 680px; margin: 0; color: rgba(255,255,255,0.72); }
.privacy-mark { display: grid; place-items: center; width: 84px; height: 84px; border: 1px solid rgba(255,255,255,0.25); border-radius: 50%; background: rgba(255,255,255,0.08); font-size: 39px; transform: rotate(-40deg); }
.outline-button { padding: 12px 19px; border: 1px solid rgba(255,255,255,0.46); border-radius: 999px; font-size: 13px; font-weight: 700; white-space: nowrap; transition: 180ms ease; } .outline-button:hover { color: var(--green-dark); background: #fff; }

.download-section { position: relative; padding: 120px 0; overflow: hidden; text-align: center; background: linear-gradient(160deg, #fff8eb, #f8e2c2); }
.download-section::before, .download-section::after { content: ""; position: absolute; border: 1px dashed rgba(239,128,95,0.25); border-radius: 50%; } .download-section::before { width: 500px; height: 500px; top: -320px; left: -120px; } .download-section::after { width: 400px; height: 400px; right: -170px; bottom: -270px; }
.download-section img { margin: 0 auto 20px; border-radius: 25px; box-shadow: 0 18px 40px rgba(205,115,69,0.24); }
.download-section h2 { margin-top: 8px; } .download-section > .section-shell > p:not(.section-kicker) { color: var(--muted); }
.download-actions { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 28px; }
.app-store-button.waiting { cursor: default; } .mail-link { color: var(--green-dark); font-weight: 700; border-bottom: 1px solid var(--green); }
.purchase-note { display: block; max-width: 590px; margin: 24px auto 0; color: var(--muted); line-height: 1.7; }
.download-stars { position: absolute; top: 40px; left: 50%; color: rgba(230,161,66,0.5); font-size: 24px; letter-spacing: 1em; transform: translateX(-50%); }

.site-footer { padding: 65px 0 25px; color: #dbe3df; background: #172b26; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 45px; }
.footer-brand .brand { color: #fff; } .footer-brand p { max-width: 290px; color: #95a59f; font-size: 13px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; font-size: 13px; } .footer-links b { margin-bottom: 4px; color: #fff; } .footer-links a { color: #95a59f; } .footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 50px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); color: #82938c; font-size: 11px; }

/* Legal pages */
.legal-page { background: #f6f1e7; }
.legal-main { min-height: 70vh; }
.legal-hero { padding: 85px 0 75px; text-align: center; background: linear-gradient(145deg, #e7efe9, #f8f2e4); border-bottom: 1px solid var(--line); }
.terms-hero { background: linear-gradient(145deg, #f7e7d9, #fbf4e5); }
.legal-symbol { display: grid; place-items: center; width: 65px; height: 65px; margin: 0 auto 20px; border-radius: 21px; color: #fff; background: var(--green); box-shadow: 0 12px 30px rgba(47,118,103,0.2); font-size: 33px; transform: rotate(-4deg); }
.terms-hero .legal-symbol { background: var(--coral); box-shadow: 0 12px 30px rgba(239,128,95,0.2); transform: none; }
.legal-hero h1 { margin: 5px 0 12px; font-family: var(--serif); font-size: clamp(43px, 6vw, 66px); line-height: 1.15; }
.legal-hero > .section-shell > p:not(.section-kicker) { max-width: 680px; margin: 0 auto; color: var(--muted); }
.legal-meta { display: flex; justify-content: center; gap: 28px; margin-top: 22px; color: var(--muted); font-size: 12px; }
.legal-layout { display: grid; grid-template-columns: 230px minmax(0, 760px); justify-content: center; align-items: start; gap: 65px; padding-top: 65px; padding-bottom: 110px; }
.legal-toc { position: sticky; top: 106px; display: flex; flex-direction: column; padding: 19px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,253,248,0.7); }
.legal-toc b { margin: 0 0 9px 10px; font-size: 12px; } .legal-toc a { padding: 7px 10px; border-left: 2px solid transparent; color: var(--muted); font-size: 12px; transition: 160ms ease; } .legal-toc a:hover, .legal-toc a.is-current { color: var(--green-dark); border-left-color: var(--green); background: rgba(47,118,103,0.06); }
.legal-content { min-width: 0; }
.legal-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 45px; }
.legal-summary > div { padding: 20px; border: 1px solid var(--line); border-radius: 19px; background: var(--card); } .legal-summary span { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 12px; color: #fff; background: var(--green); font-size: 18px; } .legal-summary b { display: block; margin: 13px 0 5px; font-size: 14px; } .legal-summary p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.7; }
.legal-section { position: relative; padding: 0 0 42px; margin: 0 0 40px; border-bottom: 1px solid var(--line); scroll-margin-top: 110px; }
.legal-index { display: block; margin-bottom: 5px; color: var(--coral); font-family: var(--serif); font-size: 13px; font-weight: 800; letter-spacing: 0.12em; }
.legal-section h2 { margin: 0 0 18px; font-family: var(--serif); font-size: 30px; line-height: 1.3; }
.legal-section h3 { margin: 25px 0 8px; font-size: 16px; }
.legal-section p { color: #58655f; }
.legal-section ul { padding-left: 1.25em; color: #58655f; } .legal-section li { margin: 8px 0; padding-left: 4px; }
.legal-section a { color: var(--green); font-weight: 750; border-bottom: 1px solid rgba(47,118,103,0.4); }
.legal-table { margin: 23px 0; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: var(--card); } .legal-table > div { display: grid; grid-template-columns: 1.15fr 1fr 1.35fr; border-top: 1px solid var(--line); } .legal-table > div:first-child { border-top: 0; } .legal-table span { padding: 12px 13px; font-size: 12px; } .legal-table span + span { border-left: 1px solid var(--line); } .legal-table .table-head { color: var(--green-dark); background: var(--green-pale); font-weight: 800; }
.terms-callout { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; margin-bottom: 45px; padding: 22px; border: 1px solid rgba(239,128,95,0.25); border-radius: 18px; background: #fff5ec; } .terms-callout > span { padding: 4px 9px; border-radius: 99px; color: #fff; background: var(--coral); font-size: 11px; font-weight: 800; } .terms-callout p { margin: 0; color: #765d51; } .terms-callout a { color: var(--green); font-weight: 700; }
.contact-card { padding: 30px; border: 1px solid rgba(47,118,103,0.2); border-radius: 23px; background: var(--green-pale); } .contact-card a { display: inline-block; margin: 4px 0 12px; font-size: 19px; } .contact-card small { display: block; color: var(--muted); }
.legal-footer { padding-top: 18px; } .legal-footer .footer-bottom { margin-top: 0; } .legal-footer a:hover { color: #fff; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.72,.2,1); }
.reveal-delay { transition-delay: 120ms; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms!important; animation-iteration-count: 1!important; transition-duration: 0.01ms!important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 5px; padding-top: 90px; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-visual { min-height: 690px; }
  .feature-card-wide { grid-template-columns: 1fr 0.85fr; }
  .more-grid { grid-template-columns: repeat(2, 1fr); }
  .privacy-banner-inner { grid-template-columns: auto 1fr; } .privacy-banner-inner .outline-button { grid-column: 2; justify-self: start; }
  .legal-layout { grid-template-columns: 190px minmax(0, 1fr); gap: 35px; }
}

@media (max-width: 760px) {
  .section-shell, .nav-shell { width: min(100% - 28px, 680px); }
  .nav-shell { min-height: 66px; }
  .brand { font-size: 18px; } .brand img { width: 42px; height: 42px; }
  .menu-toggle { display: block; z-index: 5; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: fixed; top: 66px; right: 0; bottom: 0; left: 0; display: flex; flex-direction: column; align-items: stretch; gap: 8px; padding: 22px 18px; border: 0; border-radius: 0; background: rgba(247,241,227,0.98); transform: translateX(100%); opacity: 0; pointer-events: none; transition: 220ms ease; }
  .site-nav.is-open { transform: translateX(0); opacity: 1; pointer-events: auto; }
  .nav-tab { padding: 14px 18px; text-align: center; font-size: 16px; }
  .hero { min-height: auto; } .hero-grid { min-height: auto; padding-top: 65px; padding-bottom: 45px; }
  .hero h1 { font-size: clamp(44px, 13vw, 62px); } .hero-lead { font-size: 16px; } .hero-actions { flex-direction: column; gap: 14px; }
  .hero-visual { min-height: 600px; transform: scale(0.9); margin: -10px 0 -30px; }
  .phone { width: 310px; } .phone-screen { min-height: 590px; } .orbit-one { width: 480px; height: 480px; } .orbit-two { width: 370px; height: 370px; }
  .note-one { left: 0; } .note-two { right: -2px; }
  .manifesto { padding-top: 80px; padding-bottom: 80px; }
  .features-section { padding: 75px 0; } .feature-grid { grid-template-columns: 1fr; } .feature-card-wide { grid-column: auto; grid-template-columns: 1fr; } .feature-card { min-height: auto; padding: 28px; } .compose-demo { margin-top: 10px; transform: none; }
  .more-section { padding-top: 75px; padding-bottom: 75px; } .more-grid { grid-template-columns: 1fr; }
  .privacy-banner-inner { grid-template-columns: 1fr; text-align: center; } .privacy-mark { margin: 0 auto; } .privacy-banner-inner .outline-button { grid-column: auto; justify-self: center; }
  .download-section { padding: 95px 0; } .download-actions { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } .footer-bottom { gap: 15px; flex-direction: column; }
  .legal-hero { padding: 65px 0 55px; } .legal-meta { flex-direction: column; gap: 3px; }
  .legal-layout { grid-template-columns: 1fr; gap: 28px; padding-top: 35px; }
  .legal-toc { position: static; display: grid; grid-template-columns: repeat(2, 1fr); } .legal-toc b { grid-column: 1 / -1; }
  .legal-summary { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 43px; } .hero-visual { min-height: 545px; transform: scale(0.8); margin: -40px -30px -65px; }
  .trust-row { justify-content: center; }
  .feature-card h3 { font-size: 25px; } .feature-number { font-size: 44px; }
  .footer-grid { grid-template-columns: 1fr; } .footer-brand { grid-column: auto; }
  .legal-table { overflow-x: auto; } .legal-table > div { min-width: 600px; }
  .legal-toc { grid-template-columns: 1fr; } .legal-toc b { grid-column: auto; }
  .legal-section h2 { font-size: 26px; } .terms-callout { grid-template-columns: 1fr; }
}
