:root {
  color-scheme: light;
  --ink: #152019;
  --muted: #647068;
  --green-950: #142117;
  --green-900: #1d3022;
  --green-700: #526f48;
  --green-500: #7e995f;
  --green-200: #dfe9d3;
  --green-100: #edf3e7;
  --cream: #f8f8f1;
  --white: #ffffff;
  --line: rgba(29, 48, 34, 0.14);
  --shadow: 0 22px 60px rgba(25, 47, 31, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { display: block; max-width: 100%; }
.shell { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--white);
  color: var(--green-950);
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(20, 33, 23, 0.92);
  color: var(--white);
  backdrop-filter: blur(18px);
}
.nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 720; text-decoration: none; }
.brand img { border-radius: 11px; box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18); }
.brand-lockup > span:last-child { display: grid; line-height: 1.1; }
.brand-lockup strong { font-size: 15px; letter-spacing: 0.015em; }
.brand-lockup small { margin-top: 5px; color: rgba(255, 255, 255, 0.46); font-size: 8px; font-weight: 680; letter-spacing: 0.18em; }
.brand-symbol { position: relative; display: inline-block; flex: 0 0 auto; width: 42px; height: 42px; border: 1px solid rgba(217, 233, 197, 0.2); border-radius: 14px; background: rgba(217, 233, 197, 0.08); }
.brand-symbol::after { content: ""; position: absolute; left: 20px; top: 19px; width: 2px; height: 13px; border-radius: 3px; background: #b9d29d; transform: rotate(-5deg); }
.brand-symbol i, .brand-symbol b { position: absolute; top: 10px; width: 12px; height: 8px; background: #b9d29d; }
.brand-symbol i { left: 9px; border-radius: 10px 2px 10px 2px; transform: rotate(24deg); }
.brand-symbol b { right: 8px; border-radius: 2px 10px 2px 10px; transform: rotate(-24deg); }
.brand-symbol.small { width: 36px; height: 36px; border-radius: 12px; }
.brand-symbol.small::after { left: 17px; top: 16px; height: 11px; }
.brand-symbol.small i, .brand-symbol.small b { top: 8px; width: 11px; }
.brand-symbol.small i { left: 7px; }
.brand-symbol.small b { right: 6px; }
.nav nav { display: flex; align-items: center; gap: 28px; }
.nav nav a { color: rgba(255, 255, 255, 0.75); font-size: 14px; text-decoration: none; }
.nav nav a:hover, .nav nav a:focus-visible { color: var(--white); }
.nav-actions { display: flex; align-items: center; gap: 22px; }
.language-switch { display: inline-flex; min-width: 42px; min-height: 34px; align-items: center; justify-content: center; padding: 0 10px; border: 1px solid rgba(217, 233, 197, 0.28); border-radius: 999px; background: rgba(217, 233, 197, 0.08); color: #d9e9c5; font-size: 12px; font-weight: 780; letter-spacing: 0.05em; text-decoration: none; }
.language-switch:hover, .language-switch:focus-visible { background: rgba(217, 233, 197, 0.16); color: var(--white); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  display: grid;
  align-items: center;
  background: var(--green-950);
  color: var(--white);
}
.hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -220px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(206, 231, 185, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(206, 231, 185, 0.035), 0 0 0 160px rgba(206, 231, 185, 0.025);
}
.hero-glow {
  position: absolute;
  inset: -35% auto auto -15%;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126, 153, 95, 0.28), transparent 68%);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr); gap: 80px; align-items: center; padding-block: 86px; }
.eyebrow { margin: 0 0 14px; color: var(--green-700); font-size: 13px; font-weight: 760; letter-spacing: 0.13em; text-transform: uppercase; }
.hero .eyebrow { color: #bad09e; }
.status-dot { display: inline-block; width: 8px; height: 8px; margin-right: 8px; border-radius: 50%; background: #98c36b; box-shadow: 0 0 0 6px rgba(152, 195, 107, 0.12); }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 { margin: 0; max-width: 720px; font-size: clamp(44px, 6vw, 76px); font-weight: 760; line-height: 1.06; letter-spacing: -0.045em; }
h1 span { color: #b9d29d; }
.lead { max-width: 680px; margin: 28px 0 0; color: rgba(255, 255, 255, 0.7); font-size: clamp(18px, 2vw, 21px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 0 22px; border: 1px solid transparent; border-radius: 14px; font-weight: 680; text-decoration: none; transition: transform 0.18s ease, background 0.18s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { background: #d9e9c5; color: var(--green-950); }
.button.secondary { border-color: rgba(255, 255, 255, 0.18); background: rgba(255, 255, 255, 0.07); color: var(--white); }
.safe-note { margin: 16px 0 0; color: rgba(255, 255, 255, 0.48); font-size: 13px; }
.app-card { justify-self: end; width: min(100%, 350px); padding: 34px; border: 1px solid rgba(255, 255, 255, 0.13); border-radius: 34px; background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)); box-shadow: 0 34px 70px rgba(0, 0, 0, 0.2); backdrop-filter: blur(20px); }
.app-card img { width: 176px; border-radius: 40px; box-shadow: 0 26px 42px rgba(0, 0, 0, 0.28); }
.app-card div { margin-top: 28px; }
.app-card p { margin: 4px 0; color: rgba(255, 255, 255, 0.62); font-size: 14px; }
.app-card .app-name { color: var(--white); font-size: 21px; font-weight: 720; }
.growth-card { justify-self: end; width: min(100%, 390px); padding: 34px; border: 1px solid rgba(255, 255, 255, 0.13); border-radius: 34px; background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)); box-shadow: 0 34px 70px rgba(0, 0, 0, 0.2); backdrop-filter: blur(20px); }
.growth-orbit { position: relative; display: grid; height: 232px; place-items: center; overflow: hidden; border-radius: 28px; background: radial-gradient(circle, rgba(185, 210, 157, 0.18), transparent 68%); }
.growth-orbit img { position: relative; z-index: 2; width: 164px; border-radius: 38px; box-shadow: 0 24px 52px rgba(0, 0, 0, 0.3); }
.growth-orbit .brand-character { width: 260px; border-radius: 0; box-shadow: none; transform: translateY(22px); }
.orbit { position: absolute; border: 1px solid rgba(217, 233, 197, 0.16); border-radius: 50%; }
.orbit-one { width: 210px; height: 210px; }
.orbit-two { width: 290px; height: 290px; }
.growth-kicker { margin: 24px 0 4px; color: #b9d29d; font-size: 12px; font-weight: 760; letter-spacing: 0.14em; }
.growth-title { margin: 0; color: var(--white); font-size: 23px; font-weight: 730; }
.growth-points { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.growth-points span { padding: 6px 9px; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 999px; color: rgba(255, 255, 255, 0.58); font-size: 11px; }

.section { padding-block: 100px; scroll-margin-top: 72px; }
.section-heading { max-width: 620px; margin-bottom: 38px; }
.section-heading h2, .contact-panel h2 { margin: 0; font-size: clamp(32px, 5vw, 48px); line-height: 1.15; letter-spacing: -0.035em; }
.section-heading > p:last-child { margin: 14px 0 0; color: var(--muted); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card { position: relative; min-height: 260px; padding: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: 0 14px 32px rgba(31, 55, 36, 0.055); }
.step-number { color: var(--green-500); font-size: 13px; font-weight: 800; letter-spacing: 0.12em; }
.step-card h3 { margin: 58px 0 10px; font-size: 23px; }
.step-card p { margin: 0; color: var(--muted); }
.vision-section { padding-bottom: 84px; }
.vision-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.vision-grid article { padding-top: 25px; border-top: 1px solid var(--line); }
.vision-grid article > span { color: var(--green-500); font-size: 12px; font-weight: 800; letter-spacing: 0.12em; }
.vision-grid h3 { margin: 34px 0 9px; font-size: 23px; }
.vision-grid p { margin: 0; color: var(--muted); }
.product-section { position: relative; overflow: hidden; background: var(--green-900); color: var(--white); }
.product-section::after { content: ""; position: absolute; right: -180px; top: -180px; width: 520px; height: 520px; border: 1px solid rgba(217, 233, 197, 0.11); border-radius: 50%; box-shadow: 0 0 0 70px rgba(217, 233, 197, 0.025), 0 0 0 140px rgba(217, 233, 197, 0.018); }
.product-heading { position: relative; z-index: 1; max-width: 760px; }
.product-heading h2 { color: var(--white); }
.product-heading > p:last-child { color: rgba(255, 255, 255, 0.58); }
.product-showcase { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.product-card { min-width: 0; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.11); border-radius: 34px; background: rgba(255, 255, 255, 0.045); box-shadow: 0 28px 58px rgba(7, 14, 9, 0.16); }
.product-visual { position: relative; min-height: 390px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 36px; background: rgba(255, 255, 255, 0.045); }
.product-card .product-visual { border: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.09); border-radius: 0; background: radial-gradient(circle at 50% 52%, rgba(217, 233, 197, 0.13), transparent 62%); }
.product-visual img { width: min(58%, 260px); border-radius: 24%; box-shadow: 0 36px 70px rgba(0, 0, 0, 0.34); }
.product-visual .scene-image { width: 100%; height: 390px; border-radius: 0; object-fit: cover; object-position: center; box-shadow: none; opacity: 0.94; }
.product-visual .product-app-icon { position: absolute; right: 22px; bottom: 20px; z-index: 3; width: 92px; height: 92px; border: 5px solid rgba(255, 255, 255, 0.92); border-radius: 24px; box-shadow: 0 16px 34px rgba(7, 14, 9, 0.28); }
.daily-visual { overflow: hidden; }
.product-visual .daily-character { width: min(66%, 300px); border-radius: 0; box-shadow: none; transform: translateY(34px); }
.mini-code { position: absolute; right: 22px; bottom: 20px; z-index: 3; display: grid; justify-items: center; gap: 7px; padding: 10px; border-radius: 16px; background: rgba(255, 255, 255, 0.94); box-shadow: 0 16px 34px rgba(7, 14, 9, 0.22); }
.mini-code img { width: 92px; height: 92px; aspect-ratio: 1 / 1; border-radius: 8px; object-fit: cover; box-shadow: none; }
.mini-code span { color: var(--green-900); font-size: 10px; font-weight: 720; }
.product-index { position: absolute; left: 26px; top: 24px; color: #b9d29d; font-size: 11px; font-weight: 800; letter-spacing: 0.16em; }
.product-copy { padding: 34px; }
.product-copy h3 { margin: 0; font-size: clamp(30px, 4vw, 46px); line-height: 1.08; letter-spacing: -0.035em; }
.product-lead { max-width: 680px; margin: 22px 0 0; color: rgba(255, 255, 255, 0.68); font-size: 18px; }
.product-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.product-tags span { padding: 8px 11px; border: 1px solid rgba(255, 255, 255, 0.13); border-radius: 9px; background: rgba(255, 255, 255, 0.05); color: rgba(255, 255, 255, 0.72); font-size: 12px; }
.product-meta { margin: 22px 0 0; color: rgba(255, 255, 255, 0.44); font-size: 13px; }
.product-quote { margin: 22px 0 0; color: #d9e9c5; font-size: 14px; font-weight: 680; }
.text-link { display: inline-block; margin-top: 22px; color: #d9e9c5; font-weight: 720; text-decoration: none; }
.text-link span { display: inline-block; margin-left: 6px; transition: transform 0.18s ease; }
.text-link:hover span { transform: translateX(4px); }

.stability-section { background: var(--white); }
.formula-card { display: grid; gap: 8px; padding: 34px 38px; border-radius: 26px; background: var(--green-950); color: var(--white); box-shadow: var(--shadow); }
.formula-card > span { color: #b9d29d; font-size: 13px; font-weight: 760; letter-spacing: 0.12em; }
.formula-card strong { font-size: clamp(24px, 4vw, 42px); line-height: 1.25; letter-spacing: -0.025em; }
.formula-card strong i { padding-inline: 0.15em; color: #b9d29d; font-style: normal; font-weight: 500; }
.formula-card p { margin: 0; color: rgba(255, 255, 255, 0.58); font-size: 14px; }
.stability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 18px; }
.stability-grid article { padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: var(--cream); }
.stability-grid h3 { margin: 22px 0 8px; font-size: 21px; }
.stability-grid p { margin: 0; color: var(--muted); }
.stability-example { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 46px; margin-top: 18px; padding: 30px 34px; border: 1px solid var(--line); border-radius: 22px; background: var(--green-100); }
.stability-example h3 { margin: 0 0 8px; }
.stability-example p { margin: 0; color: var(--muted); }
.stability-example ul { margin: 0; padding-left: 22px; color: #435047; }
.stability-example li + li { margin-top: 6px; }

.tinted { background: var(--green-100); }
.faq-layout { display: grid; grid-template-columns: 0.68fr 1.32fr; gap: 72px; align-items: start; }
.sticky-heading { position: sticky; top: 112px; }
.faq-list { display: grid; gap: 12px; }
details { border: 1px solid var(--line); border-radius: 18px; background: rgba(255, 255, 255, 0.82); }
summary { position: relative; padding: 22px 60px 22px 24px; cursor: pointer; list-style: none; font-weight: 680; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; top: 17px; right: 22px; color: var(--green-700); font-size: 28px; font-weight: 400; transition: transform 0.2s ease; }
details[open] summary::after { transform: rotate(45deg); }
.answer { padding: 0 24px 22px; color: var(--muted); }
.answer p { margin: 0; }
.answer ol { margin: 8px 0 0; padding-left: 22px; }

.contact-panel { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; padding: 56px; border-radius: 34px; background: var(--green-950); color: var(--white); box-shadow: var(--shadow); }
.contact-panel > div:first-child > p:last-child { max-width: 680px; color: rgba(255, 255, 255, 0.65); }
.eyebrow.light { color: #b9d29d; }
.contact-action { align-self: center; padding: 24px; border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 20px; background: rgba(255, 255, 255, 0.06); }
.contact-action span { display: block; color: rgba(255, 255, 255, 0.55); font-size: 13px; }
.contact-action a { display: inline-block; margin-top: 4px; color: #d9e9c5; font-size: clamp(19px, 2.4vw, 28px); font-weight: 720; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.contact-action p { margin: 10px 0 0; color: rgba(255, 255, 255, 0.48); font-size: 13px; }

.data-help { padding-top: 30px; }
.data-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.data-grid article { padding-top: 22px; border-top: 2px solid var(--green-200); }
.data-grid h3 { margin: 0 0 8px; }
.data-grid p { margin: 0; color: var(--muted); }
.privacy-callout { margin: 34px 0 0; padding: 16px 18px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); color: var(--muted); }
.privacy-callout a { margin-left: 4px; color: var(--green-700); font-weight: 680; }

.legal-hero { padding: 94px 0 82px; background: var(--green-950); color: var(--white); }
.legal-hero h1 { font-size: clamp(48px, 7vw, 78px); }
.legal-hero > .shell > p:not(.eyebrow) { max-width: 720px; margin: 22px 0 0; color: rgba(255, 255, 255, 0.68); font-size: 19px; }
.policy-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.policy-meta span { padding: 7px 11px; border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 8px; background: rgba(255, 255, 255, 0.06); color: rgba(255, 255, 255, 0.68); font-size: 12px; }
.legal-layout { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 72px; align-items: start; padding-block: 72px 110px; }
.toc { position: sticky; top: 100px; display: grid; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.toc p { margin: 0 0 10px; color: var(--ink); font-weight: 720; }
.toc a { padding: 5px 0; color: var(--muted); font-size: 13px; text-decoration: none; }
.toc a:hover, .toc a:focus-visible { color: var(--green-700); }
.legal-content { min-width: 0; }
.policy-intro { padding: 26px 28px; border-left: 4px solid var(--green-500); border-radius: 0 18px 18px 0; background: var(--green-100); }
.policy-intro p { margin: 0; }
.policy-intro p + p { margin-top: 12px; }
.legal-content > section { padding-top: 64px; scroll-margin-top: 82px; }
.legal-content h2 { display: flex; align-items: baseline; gap: 14px; margin: 0 0 22px; font-size: clamp(27px, 4vw, 36px); line-height: 1.2; letter-spacing: -0.025em; }
.legal-content h2 span { color: var(--green-500); font-size: 13px; letter-spacing: 0.1em; }
.legal-content h3 { margin: 28px 0 8px; font-size: 19px; }
.legal-content p { margin: 10px 0; color: #435047; }
.legal-content ul { margin: 10px 0; padding-left: 22px; color: #435047; }
.legal-content li { margin: 7px 0; }
.legal-content strong { color: var(--ink); }
.policy-table { margin-top: 22px; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.policy-row { display: grid; grid-template-columns: 0.65fr 1fr 1.35fr; }
.policy-row > * { padding: 15px 16px; border-top: 1px solid var(--line); }
.policy-row > * + * { border-left: 1px solid var(--line); }
.policy-row.policy-head { background: var(--green-100); color: var(--green-900); font-size: 13px; font-weight: 760; }
.policy-row.policy-head > * { border-top: 0; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 22px; }
.choice-grid > div { padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.choice-grid h3 { margin: 0 0 5px; }
.choice-grid p { margin: 0; font-size: 14px; }
.notice-box { margin-top: 22px; padding: 22px; border-radius: 16px; background: var(--green-900); color: var(--white); }
.notice-box h3 { margin: 0 0 6px; }
.notice-box p { margin: 0; color: rgba(255, 255, 255, 0.7); }
.notice-box a { color: #d9e9c5; }
.privacy-contact { margin-top: 18px; padding: 26px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.privacy-contact span { display: block; color: var(--muted); font-size: 13px; }
.privacy-contact a { display: inline-block; margin-top: 3px; color: var(--green-700); font-size: clamp(20px, 3vw, 28px); font-weight: 720; }
.privacy-contact p { margin-bottom: 0; font-size: 14px; }
.back-support { margin-top: 68px !important; }
.back-support a { color: var(--green-700); font-weight: 680; }

footer { margin-top: 30px; border-top: 1px solid var(--line); background: #f1f3ea; color: var(--muted); }
.footer-inner { min-height: 120px; display: flex; align-items: center; justify-content: space-between; gap: 24px; font-size: 13px; }
.footer-brand { color: var(--ink); }
.footer-brand.brand-lockup small { color: var(--muted); }
.footer-inner a { color: var(--green-700); }
.footer-links { display: flex; gap: 18px; }

:focus-visible { outline: 3px solid #91b56e; outline-offset: 4px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; } }

@media (max-width: 820px) {
  .nav nav { display: none; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; padding-block: 72px; }
  .app-card { justify-self: start; display: flex; width: 100%; align-items: center; gap: 24px; }
  .app-card img { width: 112px; border-radius: 26px; }
  .app-card div { margin-top: 0; }
  .steps, .data-grid, .stability-grid, .vision-grid { grid-template-columns: 1fr; }
  .vision-grid { gap: 24px; }
  .product-showcase { grid-template-columns: 1fr; }
  .product-visual { min-height: 330px; }
  .product-visual .scene-image { height: 330px; }
  .stability-example { grid-template-columns: 1fr; gap: 20px; }
  .step-card { min-height: 220px; }
  .faq-layout { grid-template-columns: 1fr; gap: 28px; }
  .sticky-heading { position: static; }
  .contact-panel { grid-template-columns: 1fr; gap: 28px; padding: 36px; }
  .legal-layout { grid-template-columns: 1fr; gap: 28px; }
  .toc { position: static; grid-template-columns: repeat(2, 1fr); column-gap: 18px; }
  .toc p { grid-column: 1 / -1; }
}

@media (max-width: 540px) {
  .shell { width: min(100% - 28px, 1120px); }
  .nav { min-height: 64px; }
  .brand img { width: 38px; height: 38px; }
  .brand-symbol { width: 38px; height: 38px; }
  .brand-lockup strong { font-size: 14px; }
  .hero-grid { padding-block: 56px; }
  h1 { font-size: 42px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .app-card { padding: 22px; border-radius: 24px; }
  .app-card img { width: 86px; border-radius: 20px; }
  .app-card .app-name { font-size: 18px; }
  .section { padding-block: 72px; }
  .step-card { min-height: auto; padding: 24px; }
  .step-card h3 { margin-top: 34px; }
  .formula-card { padding: 26px 22px; border-radius: 20px; }
  .stability-grid article, .stability-example { padding: 24px; }
  .product-card { border-radius: 24px; }
  .product-copy { padding: 28px 22px; }
  .mini-code { right: 14px; bottom: 14px; }
  .mini-code img { width: 76px; }
  .mini-code img { height: 76px; }
  .contact-panel { padding: 28px 22px; border-radius: 24px; }
  .legal-hero { padding: 64px 0 56px; }
  .legal-layout { padding-block: 42px 76px; }
  .toc { grid-template-columns: 1fr; }
  .policy-intro { padding: 20px; }
  .legal-content > section { padding-top: 50px; }
  .policy-row { grid-template-columns: 1fr; padding: 14px 16px; }
  .policy-row > * { padding: 5px 0; border: 0 !important; }
  .policy-row.policy-head { display: none; }
  .policy-row + .policy-row { border-top: 1px solid var(--line); }
  .choice-grid { grid-template-columns: 1fr; }
  .footer-inner { padding-block: 28px; flex-direction: column; justify-content: center; text-align: center; }
}
