* { box-sizing: border-box; }

:root {
  --ink: #242117;
  --sub: #6c6757;
  --paper: #fff8c9;
  --paper-deep: #f4df76;
  --green: #2f6e46;
  --green-dark: #205335;
  --line: #ded8c5;
  --soft: #f7f5ed;
  --blue: #dcecff;
  --pink: #ffe1e5;
  --shadow: 0 18px 54px rgb(64 52 13 / 12%);
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Pretendard Variable", Pretendard, "Noto Sans KR", "Malgun Gothic", system-ui, -apple-system, sans-serif;
  line-height: 1.65;
  word-break: keep-all;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 max(20px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid rgb(222 216 197 / 80%);
  background: rgb(255 255 255 / 88%);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
}

.brand img { width: 32px; height: 32px; border-radius: 9px; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.guide-locale { min-width:112px; height:40px; padding:0 32px 0 12px; border:1px solid #b8b29f; border-radius:10px; background:#fff; color:var(--ink); font:inherit; font-size:14px; font-weight:700; line-height:1.2; letter-spacing:-.01em; }
.header-download, .header-link { display:inline-flex; align-items:center; min-height:40px; line-height:1.2; letter-spacing:-.015em; white-space:nowrap; }
.header-download { padding: 0 14px; border-radius: 10px; background: var(--green); color: #fff; font-size: 14px; font-weight: 750; text-decoration: none; }
.header-link { padding:0 6px; color: var(--green); font-size: 14px; font-weight: 700; text-decoration: none; }
.header-download:hover { background:var(--green-dark); }
.header-link:hover { text-decoration:underline; text-underline-offset:4px; }

@media (max-width: 620px) {
  .header-actions { gap:8px; }
  .guide-locale { min-width:74px; max-width:94px; }
  .header-link { display:none; }
}

main { overflow: hidden; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
  gap: 48px;
  align-items: center;
  min-height: 650px;
  padding: 78px max(24px, calc((100vw - 1120px) / 2)) 88px;
  background:
    radial-gradient(circle at 84% 16%, rgb(255 255 255 / 90%) 0 6%, transparent 28%),
    linear-gradient(135deg, #fffbe2 0%, var(--paper) 58%, #f7e892 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .09em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.08;
  letter-spacing: -.055em;
}

.hero-description {
  max-width: 580px;
  margin: 24px 0 0;
  color: #5f5948;
  font-size: 18px;
  line-height: 1.75;
}
.hero-description b { color: var(--ink); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 13px;
  font-weight: 850;
  text-decoration: none;
}

.button.primary { background: var(--green); color: #fff; box-shadow: 0 9px 24px rgb(47 110 70 / 22%); }
.button.primary:hover { background: var(--green-dark); }
.button.secondary { border: 1px solid #c9ba72; background: rgb(255 255 255 / 70%); }

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

.device {
  position: absolute;
  border: 1px solid #a69d7a;
  background: #fff;
  box-shadow: 0 24px 60px rgb(52 43 13 / 22%);
}

.desktop-device {
  top: 12px;
  left: 0;
  width: 86%;
  height: 330px;
  overflow: hidden;
  border-radius: 16px;
  transform: rotate(-2deg);
}

.device-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 12px;
  border-bottom: 1px solid var(--line);
  background: #faf9f5;
}

.device-bar i { width: 8px; height: 8px; border-radius: 50%; background: #d7d2c5; }
.device-bar span { margin-left: 4px; font-size: 11px; font-weight: 800; }

.note-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; padding: 12px; }
.mini-note { min-height: 122px; padding: 14px; border: 1px solid #9f987d; border-radius: 5px; box-shadow: 0 3px 7px #39321c18; }
.mini-note b, .mini-note span { display: block; }
.mini-note b { margin-bottom: 12px; font-size: 13px; }
.mini-note span { font-size: 12px; }
.yellow { background: #fff3a6; }
.pink { background: var(--pink); }
.blue { background: var(--blue); }
.green { background: #dff1d7; }

.phone-device {
  right: 0;
  bottom: 0;
  width: 165px;
  height: 310px;
  padding: 10px;
  border: 5px solid #25251f;
  border-radius: 27px;
  transform: rotate(3deg);
}

.phone-notch { width: 58px; height: 13px; margin: -4px auto 10px; border-radius: 0 0 10px 10px; background: #25251f; }
.phone-title { display: flex; justify-content: space-between; align-items: center; margin: 2px 3px 10px; font-size: 12px; font-weight: 900; }
.phone-title small { color: var(--green); font-size: 7px; }
.phone-note { margin-bottom: 8px; padding: 12px 10px; border: 1px solid #a39b7d; border-radius: 7px; font-size: 9px; }
.phone-note b { font-size: 11px; }

.sync-pill {
  position: absolute;
  right: 124px;
  bottom: 82px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 7px 20px rgb(31 82 50 / 32%);
  font-size: 11px;
  font-weight: 850;
}
.sync-pill span { font-size: 18px; line-height: 1; }

.trust-strip {
  display: flex;
  justify-content: center;
  gap: 42px;
  padding: 20px max(20px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.trust-strip p { margin: 0; color: #565143; font-size: 13px; font-weight: 750; }
.trust-strip span { color: var(--green); }

.section { max-width: 1120px; margin: 0 auto; padding: 110px 24px; }
.section-heading { max-width: 650px; margin-bottom: 42px; }
.section-heading h2, .beta-card h2 { margin: 0; font-size: clamp(32px, 4vw, 48px); line-height: 1.22; letter-spacing: -.045em; }
.section-heading > p:last-child { margin: 14px 0 0; color: var(--sub); font-size: 17px; }

.actual-screen-section { padding-top: 92px; padding-bottom: 74px; }
.actual-screen-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 44px; max-width: none; }
.actual-screen-heading > p:last-child { margin: 0 0 5px; }
.actual-screen-frame { overflow: hidden; margin: 0; border: 1px solid #b8b09a; border-radius: 18px; background: #fff; box-shadow: 0 24px 65px rgb(47 43 29 / 16%); }
.locale-screenshot-stack { background: #fff; }
.actual-screenshot { display: none; width: 100%; height: auto; }
html[lang="ko"] .screenshot-ko, html[lang="en"] .screenshot-en, html[lang="ja"] .screenshot-ja, html[lang="zh-Hans"] .screenshot-zh { display: block; }
.actual-screen-notes { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 18px; }
.actual-screen-notes article { display: grid; grid-template-columns: 52px 1fr; gap: 14px; align-items: center; padding: 18px 20px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.actual-screen-notes article > span { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 13px; background: var(--paper); color: var(--green-dark); font-size: 13px; font-weight: 900; }
.actual-screen-notes b { font-size: 15px; }
.actual-screen-notes p { margin: 4px 0 0; color: var(--sub); font-size: 12px; line-height: 1.55; }

.shortcut-section { padding-bottom: 70px; }
.shortcut-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 18px; align-items: stretch; }
.hero-shortcut { padding: 34px; border-radius: 22px; background: var(--paper); box-shadow: var(--shadow); }
.hero-shortcut > p:first-child { margin: 0 0 22px; color: var(--green); font-size: 12px; font-weight: 900; }
.hero-shortcut h3 { margin: 28px 0 8px; font-size: 25px; }
.hero-shortcut > p:last-child { margin: 0; color: #615a47; }
.keys { display: flex; align-items: center; gap: 9px; }
kbd { display: inline-grid; place-items: center; min-width: 48px; min-height: 46px; padding: 5px 10px 7px; border: 1px solid #aaa28d; border-bottom-width: 4px; border-radius: 9px; background: #fff; box-shadow: 0 3px 0 #d2ccba; color: var(--ink); font-family: inherit; font-size: 16px; font-weight: 900; line-height: 1; }
.keys b { color: #9c947d; font-size: 18px; }
.shortcut-list { display: grid; gap: 9px; }
.shortcut-list article { display: grid; grid-template-columns: 245px 1fr; align-items: center; gap: 18px; min-height: 90px; padding: 14px 18px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.small-keys { display: flex; align-items: center; gap: 5px; }
.small-keys kbd { min-width: 39px; min-height: 35px; padding: 4px 7px 5px; border-bottom-width: 3px; border-radius: 7px; font-size: 12px; }
.small-keys i { color: #a09884; font-size: 10px; font-style: normal; }
.shortcut-list article > div:last-child { display: grid; gap: 3px; }
.shortcut-list article > div:last-child b { font-size: 15px; }
.shortcut-list article > div:last-child span { color: var(--sub); font-size: 12px; }

.organize-flow { display: grid; grid-template-columns: 1fr 44px 1fr 44px 1fr; align-items: center; margin-top: 34px; }
.organize-flow > article { position: relative; min-width: 0; text-align: center; }
.flow-number { position: absolute; top: 10px; left: 10px; z-index: 2; display: grid; place-items: center; width: 25px; height: 25px; border-radius: 50%; background: #fff; color: var(--green); font-size: 11px; font-weight: 900; box-shadow: 0 2px 7px #38311a1f; }
.flow-visual { height: 150px; margin-bottom: 16px; padding: 18px; border: 1px solid #cfc7ae; border-radius: 15px; background: var(--soft); }
.organize-flow h3 { margin: 0; font-size: 17px; }
.organize-flow article > p { margin: 3px 0 0; color: var(--sub); font-size: 12px; }
.flow-connector { color: #9e967f; font-size: 24px; text-align: center; }
.quick-window { display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 9px; background: #fff3a6; }
.quick-window i { width: 35px; height: 5px; margin: 0 auto 8px; border-radius: 999px; background: #d0b735; }
.quick-window strong, .inbox strong, .board-demo strong { padding: 9px; border: 1px solid #b9b29b; border-radius: 6px; background: rgb(255 255 255 / 65%); font-size: 11px; font-weight: 750; text-align: left; }
.inbox { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; background: #fff3a6; }
.inbox small { grid-column: 1 / -1; text-align: left; font-weight: 900; }
.board-demo { display: grid; grid-template-columns: 1fr auto 1fr; gap: 5px; align-items: center; background: #f5f1e5; }
.board-demo > div { display: grid; gap: 7px; height: 112px; padding: 8px; border: 1px solid #aaa185; border-radius: 7px; background: #fff3a6; }
.board-demo > div:last-child { background: #dff1d7; }
.board-demo small { text-align: left; font-weight: 900; }
.board-demo > b { color: var(--green); }
.shortcut-note { margin: 23px 0 0; color: var(--sub); font-size: 12px; text-align: center; }

.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step-card { position: relative; min-height: 330px; padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.step-card.featured { border-color: #dfc95b; background: var(--paper); box-shadow: var(--shadow); }
.step-number { position: absolute; top: 22px; right: 24px; color: #a79f88; font-size: 14px; font-weight: 900; }
.step-icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 44px; border-radius: 14px; background: var(--soft); color: var(--green); font-size: 23px; font-weight: 900; }
.featured .step-icon { background: #fff; }
.step-card h3 { margin: 0; font-size: 22px; }
.step-card > p { color: var(--sub); }
.step-card .tip { margin-top: 20px; padding: 12px; border-radius: 10px; background: #f5f3eb; color: #685e43; font-size: 12px; }
.status-demo { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; padding: 8px 11px; border-radius: 999px; background: #fff; color: var(--green); font-size: 12px; font-weight: 850; }
.status-demo span { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.text-link { display: inline-block; margin-top: 14px; color: var(--green); font-weight: 850; text-decoration: none; }
.download-button { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; margin-top: 10px; padding: 7px 12px; border-radius: 10px; background: var(--green); color: #fff; font-size: 13px; font-weight: 850; text-decoration: none; }
.download-button:hover { background: var(--green-dark); }

.data-section { max-width: none; padding-right: max(24px, calc((100vw - 1120px) / 2)); padding-left: max(24px, calc((100vw - 1120px) / 2)); background: var(--soft); }
.data-flow { display: grid; grid-template-columns: 1fr 130px 1fr; align-items: center; gap: 10px; }
.data-card { min-height: 280px; padding: 30px; border-radius: 22px; background: #fff; box-shadow: 0 10px 35px rgb(47 43 29 / 7%); }
.data-label { display: inline-block; padding: 5px 9px; border-radius: 999px; background: #f0eee5; color: #716b5a; font-size: 11px; font-weight: 850; }
.data-symbol { display: grid; place-items: center; width: 64px; height: 64px; margin: 32px 0 18px; border-radius: 17px; background: var(--paper); font-size: 15px; font-weight: 900; }
.drive-card .data-symbol { background: #e1efe5; color: var(--green); }
.data-card h3 { margin: 0; font-size: 23px; }
.data-card p { color: var(--sub); }
.flow-arrow { color: var(--green); font-size: 36px; text-align: center; }
.flow-arrow span { display: block; margin-bottom: -6px; color: var(--sub); font-size: 10px; font-weight: 850; }

.state-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: var(--line); }
.state-list > div { display: grid; grid-template-columns: 14px 160px 1fr; align-items: center; gap: 10px; min-height: 66px; padding: 14px 18px; background: #fff; font-size: 13px; }
.state-list span { color: var(--sub); }
.state { width: 9px; height: 9px; border-radius: 50%; background: #858073; }
.state.syncing { background: #d7a91e; box-shadow: 0 0 0 4px #f9efc6; }
.state.done { background: var(--green); }
.state.offline { background: #b65d4a; }

.mobile-beta-section { max-width: none; padding-right: max(24px, calc((100vw - 1120px) / 2)); padding-left: max(24px, calc((100vw - 1120px) / 2)); }
.mobile-install-card { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 20px; align-items: center; margin: -3px 0 30px; padding: 22px 24px; border: 1px solid #d9c66c; border-radius: 20px; background: #fff9d8; box-shadow: 0 14px 34px rgb(77 63 15 / 9%); }
.mobile-install-icon { display: grid; place-items: center; width: 58px; height: 58px; overflow: hidden; border: 1px solid #e4dcae; border-radius: 15px; background: #fff; box-shadow: 0 8px 18px rgb(77 63 15 / 10%); }
.mobile-install-icon img { display: block; width: 50px; height: 50px; }
.mobile-install-copy h3 { margin: 5px 0 4px; font-size: 19px; line-height: 1.35; }
.mobile-install-copy p { margin: 0; color: #6c654e; font-size: 13px; line-height: 1.6; }
.mobile-install-badge { color: #806b10; font-size: 11px; font-weight: 900; }
.mobile-install-card .mobile-install-help { margin-top: 8px; padding: 8px 10px; border-radius: 9px; background: rgb(255 255 255 / 68%); color: #4c493d; font-weight: 750; }
.mobile-install-button { width: auto; min-width: 208px; border: 0; cursor: pointer; }
.mobile-beta-layout { display: grid; grid-template-columns: 1.08fr .92fr; gap: 34px; align-items: start; }
.mobile-apply-steps { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.mobile-apply-steps li { display: grid; grid-template-columns: 42px 1fr; gap: 15px; align-items: start; padding: 17px 18px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.mobile-apply-steps li > span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--paper); color: var(--green-dark); font-size: 13px; font-weight: 900; }
.mobile-apply-steps b { display: block; margin-top: 1px; font-size: 16px; }
.mobile-apply-steps p { margin: 5px 0 0; color: var(--sub); font-size: 13px; line-height: 1.6; }
.mobile-apply-card { position: sticky; top: 88px; padding: 30px; border: 1px solid #a9c6ad; border-radius: 22px; background: #f2faef; box-shadow: 0 15px 40px rgb(47 110 70 / 10%); }
.invite-badge { display: inline-flex; padding: 6px 10px; border-radius: 999px; background: #dceedd; color: var(--green-dark); font-size: 11px; font-weight: 900; }
.mobile-apply-card h3 { margin: 18px 0 9px; font-size: 25px; line-height: 1.3; }
.mobile-apply-card > p { color: #526553; line-height: 1.65; }
.mobile-apply-button { width: 100%; margin-top: 9px; border: 0; cursor: pointer; }
.mobile-apply-card .privacy-note { margin: 13px 0 0; color: #687568; font-size: 11px; }
.mobile-apply-card .approved-link { margin-top: 20px; font-size: 13px; }

.transfer-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; }
.transfer-steps { margin: 0; padding: 0; list-style: none; }
.transfer-steps li { display: flex; gap: 18px; padding: 0 0 28px; }
.transfer-steps li > span { flex: 0 0 36px; display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: var(--paper); font-weight: 900; }
.transfer-steps b { font-size: 19px; }
.transfer-steps p { margin: 5px 0 0; color: var(--sub); }
.callout { grid-column: 1 / -1; display: flex; gap: 16px; align-items: center; margin-top: -26px; padding: 22px 24px; border: 1px solid #dfca69; border-radius: 16px; background: #fffbe4; }
.callout > span { font-size: 24px; }
.callout p { margin: 0; }

.help-section { max-width: none; padding-right: max(24px, calc((100vw - 900px) / 2)); padding-left: max(24px, calc((100vw - 900px) / 2)); background: #24251f; color: #fff; }
.help-section .section-heading > p:last-child { color: #bdbdaf; }
.help-section .section-kicker { color: #a9d6b6; }
.faq-list { border-top: 1px solid #4a4b42; }
.faq-list details { border-bottom: 1px solid #4a4b42; }
.faq-list summary { position: relative; padding: 23px 42px 23px 0; cursor: pointer; font-size: 18px; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 17px; right: 4px; color: #dcd6b9; font-size: 27px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details div { padding: 0 42px 20px 0; color: #c8c8bb; }
.faq-list details p { margin: 0; }

.beta-card { display: grid; grid-template-columns: 1.25fr .75fr; gap: 60px; max-width: 1072px; margin: 90px auto; padding: 46px; border: 1px solid #e0ce75; border-radius: 24px; background: var(--paper); box-shadow: var(--shadow); }
.beta-card > div > p:last-child { color: #625b46; }
.beta-checks { display: grid; align-content: center; gap: 10px; }
.beta-checks span { padding: 10px 12px; border-radius: 10px; background: rgb(255 255 255 / 68%); color: var(--green-dark); font-size: 13px; font-weight: 850; }

.site-footer { display:flex; flex-wrap:wrap; justify-content:space-between; width:min(1120px,calc(100% - 48px)); margin:0 auto; padding:14px 2px 0; border-top:1px solid #e6ebf2; color:#667085; font-size:.8rem; line-height:1.6; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 58px; }
  .hero-copy { max-width: 690px; }
  .hero-visual { width: min(100%, 570px); margin: 0 auto; }
  .trust-strip { flex-wrap: wrap; gap: 8px 24px; justify-content: flex-start; }
  .step-grid { grid-template-columns: 1fr; }
  .shortcut-layout { grid-template-columns: 1fr; }
  .actual-screen-heading { grid-template-columns: 1fr; gap: 14px; }
  .actual-screen-heading > p:last-child { margin: 0; }
  .organize-flow { grid-template-columns: 1fr; gap: 12px; }
  .flow-connector { transform: rotate(90deg); }
  .step-card { min-height: 0; }
  .step-icon { margin-bottom: 28px; }
  .transfer-section { grid-template-columns: 1fr; gap: 18px; }
  .mobile-beta-layout { grid-template-columns: 1fr; }
  .mobile-install-card { grid-template-columns: auto minmax(0, 1fr); }
  .mobile-install-button { grid-column: 1 / -1; width: 100%; }
  .mobile-apply-card { position: static; }
  .callout { margin-top: 0; }
  .beta-card { grid-template-columns: 1fr; margin-right: 24px; margin-left: 24px; }
}

@media (max-width: 640px) {
  .site-header { height: 58px; padding: 0 16px; }
  .brand { font-size: 16px; }
  .brand img { width: 29px; height: 29px; }
  .header-actions { gap: 10px; }
  .header-download { padding: 6px 8px; font-size: 10px; }
  .header-link { font-size: 12px; }
  .hero { gap: 20px; min-height: auto; padding: 50px 18px 64px; }
  .hero h1 { font-size: 43px; }
  .hero-description { font-size: 16px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-visual { min-height: 330px; transform: scale(.9); transform-origin: top center; }
  .desktop-device { width: 94%; height: 265px; }
  .note-grid { gap: 6px; padding: 8px; }
  .mini-note { min-height: 101px; padding: 10px; }
  .phone-device { width: 137px; height: 255px; }
  .sync-pill { right: 92px; bottom: 54px; }
  .trust-strip { padding: 17px 20px; }
  .trust-strip p { width: 100%; }
  .section { padding: 78px 18px; }
  .section-heading { margin-bottom: 30px; }
  .section-heading > p:last-child { font-size: 15px; }
  .actual-screen-section { padding-top: 64px; padding-bottom: 48px; }
  .actual-screen-frame { border-radius: 12px; }
  .actual-screen-notes { grid-template-columns: 1fr; }
  .step-card { padding: 23px; border-radius: 16px; }
  .hero-shortcut { padding: 24px 20px; }
  .keys { gap: 6px; }
  .keys kbd { min-width: 42px; min-height: 41px; font-size: 14px; }
  .shortcut-list article { grid-template-columns: 1fr; gap: 9px; }
  .small-keys.compact { gap: 3px; }
  .small-keys.compact kbd { min-width: 31px; padding-right: 5px; padding-left: 5px; font-size: 10px; }
  .flow-visual { height: 142px; }
  .data-section, .help-section { padding-right: 18px; padding-left: 18px; }
  .mobile-beta-section { padding-right: 18px; padding-left: 18px; }
  .mobile-install-card { grid-template-columns: 1fr; gap: 13px; padding: 19px; }
  .mobile-install-icon { width: 50px; height: 50px; }
  .mobile-install-icon img { width: 43px; height: 43px; }
  .mobile-install-button { grid-column: auto; min-width: 0; }
  .data-flow { grid-template-columns: 1fr; }
  .flow-arrow { transform: rotate(90deg); }
  .data-card { min-height: 0; }
  .state-list { grid-template-columns: 1fr; }
  .state-list > div { grid-template-columns: 14px 1fr; }
  .state-list > div span { grid-column: 2; }
  .faq-list summary { font-size: 16px; }
  .beta-card { gap: 28px; margin: 64px 18px; padding: 28px 22px; }
  .site-footer { width:calc(100% - 36px); }
}

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