@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=LXGW+WenKai+TC:wght@400;500;700&family=Noto+Sans+TC:wght@400;500;600;700;800&display=swap');

:root {
  color-scheme: light;
  --paper: #f2ece2;
  --paper-2: #e8dfd1;
  --cream: #fbf7f0;
  --cream-strong: #fffdf9;
  --ink: #292720;
  --muted: #68645b;
  --faint: #938b80;
  --sage: #586750;
  --sage-dark: #263326;
  --sage-soft: #dfe5da;
  --copper: #b47854;
  --copper-soft: #ead2c1;
  --line: #d4c8b7;
  --white: #fff;
  --shadow: 0 28px 80px rgba(48, 42, 32, .16);
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background:
    radial-gradient(circle at 14% 4%, rgba(255, 255, 255, .72), transparent 26rem),
    var(--paper);
  color: var(--ink);
  font-family: "DM Sans", "Noto Sans TC", -apple-system, BlinkMacSystemFont, sans-serif;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  opacity: .045;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
svg { width: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.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; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section-space { padding-block: clamp(96px, 12vw, 168px); }
.skip-link { position: fixed; z-index: 100; top: 12px; left: 12px; padding: 10px 14px; border-radius: 10px; background: var(--ink); color: var(--white); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--copper); outline-offset: 4px; }

.site-header { position: fixed; z-index: 50; top: 16px; left: 0; right: 0; transition: transform .25s ease; }
.site-header.is-scrolled .nav { background: rgba(251, 247, 240, .93); box-shadow: 0 14px 42px rgba(45, 40, 32, .13); }
.nav {
  height: 68px;
  padding: 8px 10px 8px 12px;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 20px;
  background: rgba(251, 247, 240, .82);
  box-shadow: 0 12px 40px rgba(45, 40, 32, .09);
  backdrop-filter: blur(20px) saturate(1.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 10px; cursor: pointer; }
.brand img { border-radius: 12px; box-shadow: 0 5px 14px rgba(47, 58, 43, .22); }
.brand span { display: flex; flex-direction: column; line-height: 1.05; }
.brand strong { font-family: "Noto Sans TC", sans-serif; font-size: 16px; letter-spacing: .04em; }
.brand small { margin-top: 4px; color: var(--muted); font-size: 8px; font-weight: 700; letter-spacing: .22em; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { position: relative; color: var(--muted); font-size: 14px; font-weight: 600; cursor: pointer; transition: color .2s ease; }
.nav-links a::after { position: absolute; right: 0; bottom: -6px; left: 0; height: 1px; content: ""; background: var(--sage); transform: scaleX(0); transition: transform .2s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { padding: 13px 19px; border-radius: 13px; background: var(--sage-dark); color: var(--white); font-size: 13px; font-weight: 700; cursor: pointer; transition: background .2s ease, box-shadow .2s ease; }
.nav-cta:hover { background: var(--sage); box-shadow: 0 8px 18px rgba(38, 51, 38, .2); }

.hero { min-height: 900px; padding-top: 160px; padding-bottom: 92px; display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 5vw; }
.hero-copy { position: relative; z-index: 2; }
.section-kicker { color: var(--sage); font-size: 12px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.hero h1, .display-heading, .section-heading h2, .flow-head h2, .final-cta h2, .privacy-banner h2 {
  margin: 0;
  font-family: "LXGW WenKai TC", "Noto Sans TC", sans-serif;
  font-weight: 700;
  letter-spacing: -.01em;
}
.hero h1 { font-size: clamp(60px, 6.7vw, 108px); line-height: 1.1; }
.hero h1 em { color: var(--sage); display: inline-block; font-size: .82em; font-style: normal; }
.hero-lead { max-width: 570px; margin: 30px 0 0; color: var(--muted); font-size: 18px; line-height: 1.9; }
.download-metric {
  position: relative;
  width: min(570px, 100%);
  margin-top: 26px;
  padding: 17px 18px;
  border: 1px solid rgba(88, 103, 80, .2);
  border-radius: 20px;
  background: rgba(255, 253, 249, .55);
  box-shadow: 0 14px 34px rgba(51, 47, 38, .07);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px auto;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.download-metric[hidden] { display: none; }
.download-metric::after {
  position: absolute;
  bottom: -61px;
  left: -48px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(180, 120, 84, .15), transparent 68%);
}
.download-metric-main { position: relative; z-index: 1; min-width: 0; }
.download-metric-label { position: relative; z-index: 1; display: flex; align-items: center; gap: 8px; color: var(--sage); font-size: 10px; font-weight: 800; letter-spacing: .11em; }
.download-pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--copper); box-shadow: 0 0 0 5px rgba(180, 120, 84, .12); animation: download-pulse 1.8s ease-in-out infinite; }
.download-metric-value { position: relative; z-index: 1; min-height: 39px; margin-top: 5px; display: flex; align-items: baseline; color: var(--sage-dark); font-size: clamp(34px, 3.4vw, 43px); line-height: .95; letter-spacing: -.055em; font-variant-numeric: tabular-nums; }
.download-metric-main > p { position: relative; z-index: 1; margin: 6px 0 0; overflow: hidden; color: var(--faint); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.download-metric-divider { position: relative; z-index: 1; width: 1px; height: 58px; background: rgba(180, 120, 84, .28); }
.app-store-link {
  position: relative;
  z-index: 1;
  min-height: 60px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 15px;
  background: #111312;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04), 0 10px 22px rgba(24, 27, 24, .13);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}
.app-store-mark { font: 30px/1 -apple-system, BlinkMacSystemFont, sans-serif; transform: translateY(-1px); }
.app-store-link:hover { background: #20231f; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08), 0 13px 26px rgba(24, 27, 24, .18); transform: translateY(-2px); }
.app-store-link:focus-visible { outline: 3px solid rgba(108, 131, 95, .35); outline-offset: 3px; }
.download-metric[data-state="waiting"] .download-pulse,
.download-metric[data-state="error"] .download-pulse { background: var(--faint); box-shadow: none; animation: none; }
@keyframes download-pulse { 50% { transform: scale(.72); opacity: .65; } }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.button { min-height: 54px; padding: 0 22px; border: 1px solid transparent; border-radius: 16px; display: inline-flex; align-items: center; justify-content: center; gap: 11px; font-size: 14px; font-weight: 700; cursor: pointer; transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease; }
.button svg { width: 18px; transition: transform .2s ease; }
.button:hover svg { transform: translateX(3px); }
.button-primary { background: var(--sage-dark); color: var(--white); box-shadow: 0 12px 28px rgba(38, 51, 38, .2); }
.button-primary:hover { background: var(--sage); box-shadow: 0 15px 34px rgba(38, 51, 38, .25); }
.button-quiet { border-color: var(--line); background: rgba(255, 255, 255, .28); color: var(--ink); }
.button-quiet:hover { border-color: var(--sage); background: var(--cream); }
.button-light { background: var(--cream-strong); color: var(--sage-dark); }
.button-light:hover { background: var(--copper-soft); }
.trust-list { margin: 32px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 18px; list-style: none; }
.trust-list li { color: var(--muted); display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; }
.trust-list svg { color: var(--sage); font-size: 16px; }

.hero-visual { position: relative; min-height: 660px; display: grid; place-items: center; isolation: isolate; }
.hero-visual::before { position: absolute; inset: var(--spot-y, 28%) auto auto var(--spot-x, 52%); width: 520px; height: 520px; border-radius: 50%; content: ""; background: radial-gradient(circle, rgba(180, 120, 84, .24), rgba(88, 103, 80, .12) 46%, transparent 68%); transform: translate(-50%, -50%); filter: blur(8px); transition: inset .15s ease-out; }
.hero-aura { position: absolute; z-index: -2; width: 560px; height: 560px; border-radius: 50%; border: 1px solid rgba(88, 103, 80, .17); background: linear-gradient(145deg, rgba(255, 255, 255, .36), rgba(88, 103, 80, .12)); box-shadow: inset 0 0 90px rgba(255, 255, 255, .48); }
.hero-aura::before, .hero-aura::after { position: absolute; border: 1px solid rgba(88, 103, 80, .2); border-radius: 50%; content: ""; }
.hero-aura::before { inset: 44px; }
.hero-aura::after { inset: 112px; }
.phone { position: relative; z-index: 2; padding: 9px; border: 2px solid rgba(255, 255, 255, .35); border-radius: 52px; background: #171914; box-shadow: 0 45px 90px rgba(44, 39, 30, .29), inset 0 0 0 1px rgba(255, 255, 255, .13); overflow: hidden; }
.phone-hero { width: 334px; height: 685px; transform: rotate(2.4deg); }
.phone-hardware { position: absolute; z-index: 8; top: 16px; left: 50%; width: 102px; height: 29px; padding: 5px; border-radius: 18px; background: #090a08; transform: translateX(-50%); }
.phone-hardware span { width: 7px; height: 7px; margin-left: auto; border-radius: 50%; display: block; background: #161d1c; box-shadow: inset 0 0 0 2px #0a1110; }
.phone-screen { height: 100%; border-radius: 42px; overflow: hidden; background: var(--paper); }
.app-screen { padding: 18px 14px 16px; }
.lock-screen {
  position: relative;
  padding: 18px 14px 16px;
  color: var(--white);
  background:
    radial-gradient(circle at 83% 62%, rgba(255, 249, 232, .7), transparent 34%),
    radial-gradient(circle at 8% 8%, rgba(111, 126, 111, .38), transparent 38%),
    linear-gradient(155deg, #9fa99a 0%, #c8bba4 52%, #b4aa92 100%);
}
.lock-screen::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(120deg, rgba(255,255,255,.08), transparent 40%, rgba(58, 67, 56, .12));
}
.lock-screen > * { position: relative; z-index: 1; }
.lock-screen .ios-bar { color: var(--white); }
.lock-content { display: flex; flex-direction: column; align-items: center; text-align: center; }
.lock-symbol { margin-top: 13px; font-size: 28px; font-weight: 700; line-height: 1; transform: rotate(90deg); }
.lock-date { margin-top: 17px; font-size: 12px; font-weight: 600; letter-spacing: .02em; }
.lock-time { margin-top: 9px; font-size: 62px; font-weight: 400; line-height: .95; letter-spacing: -.08em; }
.parking-notification { padding: 13px; border: 1px solid rgba(255, 255, 255, .55); border-radius: 18px; background: rgba(255, 253, 249, .68); box-shadow: 0 16px 28px rgba(65, 54, 39, .14); color: var(--ink); text-align: left; backdrop-filter: blur(16px) saturate(1.1); }
.lock-screen .parking-notification { width: 100%; margin-top: 38px; }
.notification-meta { display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 9px; }
.notification-meta > span { display: flex; align-items: center; gap: 6px; font-weight: 700; }
.notification-meta img { width: 24px; height: 24px; border-radius: 7px; object-fit: cover; }
.notification-meta time { color: var(--faint); font-size: 9px; }
.parking-notification strong { display: block; margin-top: 10px; font-size: 14px; letter-spacing: -.02em; }
.parking-notification p { margin: 4px 0 0; color: var(--muted); font-size: 10px; }
.lock-footer { position: absolute; right: 14px; bottom: 18px; left: 14px; margin: 0; color: rgba(255, 255, 255, .86); font-size: 10px; text-align: center; }
.ios-bar { height: 32px; padding: 1px 10px 0; display: flex; align-items: center; justify-content: space-between; font-size: 10px; }
.app-top { height: 52px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; font-size: 17px; }
.round-icon { font-size: 15px; }
.round-icon:last-child { text-align: right; }
.parking-card { padding: 17px; border: 1px solid var(--line); border-radius: 19px; background: rgba(255, 253, 249, .82); box-shadow: 0 8px 18px rgba(55, 46, 34, .05); }
.parking-state { color: var(--sage); display: flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 800; }
.parking-state span { width: 7px; height: 7px; border-radius: 50%; background: #73846a; }
.elapsed { margin-top: 15px; color: var(--ink); font-size: 25px; font-weight: 600; letter-spacing: -.045em; }
.parking-card p { margin: 4px 0 0; color: var(--faint); font-size: 10px; }
.parking-meta { margin-top: 16px; display: flex; gap: 12px; }
.parking-meta b { color: var(--sage); font-size: 9px; }
.reminder-line { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: 10px; font-weight: 600; }
.reminder-line svg { width: 14px; color: var(--sage); }
.photo-preview { height: 190px; margin-top: 12px; border-radius: 18px; overflow: hidden; background: var(--paper-2); }
.photo-preview img { width: 100%; height: 100%; object-fit: cover; object-position: center 68%; }
.mock-button { width: 100%; height: 43px; margin-top: 11px; padding: 0 12px; border-radius: 13px; display: grid; place-items: center; overflow: hidden; font: 700 11px/1.2 "Noto Sans TC", sans-serif; text-align: center; white-space: nowrap; }
.mock-outline { border: 1px solid var(--line); background: var(--cream); color: var(--ink); }
.mock-primary { border: 0; background: var(--sage); color: var(--white); }
.float-card { position: absolute; z-index: 5; min-width: 154px; padding: 14px 17px; border: 1px solid rgba(255, 255, 255, .8); border-radius: 17px; background: rgba(255, 253, 249, .83); box-shadow: 0 18px 40px rgba(52, 44, 32, .13); backdrop-filter: blur(15px); display: flex; flex-direction: column; }
.float-card small { color: var(--muted); font-size: 9px; }
.float-card strong { margin-top: 3px; font-size: 13px; }
.float-time { top: 104px; right: -20px; transform: rotate(-3deg); }
.float-place { left: -16px; bottom: 112px; flex-direction: row; align-items: center; gap: 9px; transform: rotate(2deg); }
.mini-pin { width: 10px; height: 10px; border: 3px solid var(--copper); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); }
.hero-stamp { position: absolute; right: 2px; bottom: 42px; width: 78px; height: 78px; border: 1px solid rgba(88, 103, 80, .34); border-radius: 50%; display: grid; place-content: center; color: var(--sage); text-align: center; transform: rotate(9deg); }
.hero-stamp span { font-size: 8px; letter-spacing: .22em; }
.hero-stamp b { font-size: 13px; letter-spacing: .09em; }

.feature-rail { width: 110%; margin-left: -5%; padding: 18px 0; border-block: 1px solid rgba(255, 255, 255, .2); background: var(--sage-dark); color: #eef1e9; overflow: hidden; transform: rotate(-1.5deg); }
.feature-rail div { width: max-content; font-size: 13px; font-weight: 700; letter-spacing: .06em; animation: rail 28s linear infinite; }
.feature-rail span { margin: 0 22px; color: #c68b69; }
@keyframes rail { to { transform: translateX(-50%); } }

.problem-section { position: relative; }
.problem-grid { margin-top: 30px; display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 8vw; }
.display-heading { font-size: clamp(42px, 5.3vw, 76px); line-height: 1.24; }
.problem-copy { padding-bottom: 6px; }
.problem-copy p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.9; }
.problem-copy p + p { margin-top: 18px; color: var(--ink); font-weight: 600; }

.demo-section { position: relative; background: var(--sage-dark); color: #f6f1e8; overflow: hidden; }
.demo-section::before { position: absolute; top: -30%; left: -10%; width: 620px; height: 620px; border-radius: 50%; content: ""; background: rgba(180, 120, 84, .18); filter: blur(2px); }
.demo-layout { display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: 8vw; }
.demo-copy { position: relative; z-index: 2; }
.demo-copy .section-kicker { color: #c9d4c2; }
.demo-copy h2 { max-width: 540px; margin: 16px 0 0; font: 700 clamp(41px, 4.7vw, 68px)/1.22 "LXGW WenKai TC", "Noto Sans TC", sans-serif; letter-spacing: -.01em; }
.demo-copy > p:not(.section-kicker) { color: #aeb8a8; }
.step-tabs { margin-top: 34px; display: grid; gap: 8px; }
.step-tab { position: relative; width: 100%; padding: 16px 18px 16px 54px; border: 1px solid rgba(255, 255, 255, .09); border-radius: 17px; background: transparent; color: #d7ddd2; text-align: left; cursor: pointer; transition: background .22s ease, border-color .22s ease, color .22s ease; }
.step-tab:hover { border-color: rgba(255, 255, 255, .25); background: rgba(255, 255, 255, .04); }
.step-tab.is-active { border-color: rgba(225, 211, 194, .24); background: #f4ede2; color: var(--ink); box-shadow: 0 16px 40px rgba(0, 0, 0, .18); }
.step-tab span { position: absolute; top: 18px; left: 18px; color: #93a08d; font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.step-tab b, .step-tab small { display: block; }
.step-tab b { font-size: 14px; }
.step-tab small { margin-top: 3px; color: #9eaaa0; font-size: 11px; }
.step-tab.is-active small { color: var(--muted); }
.demo-pause { margin-top: 18px; padding: 8px 0; border: 0; background: transparent; color: #aeb8a8; display: inline-flex; align-items: center; gap: 8px; font-size: 11px; cursor: pointer; }
.demo-pause svg { width: 15px; }
.demo-pause .play-icon { display: none; }
.demo-pause[aria-pressed="true"] .pause-icon { display: none; }
.demo-pause[aria-pressed="true"] .play-icon { display: block; }

.interactive-stage { position: relative; min-height: 870px; border: 1px solid rgba(255, 255, 255, .11); border-radius: var(--radius-xl); background: linear-gradient(145deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .018)); display: grid; place-items: center; overflow: hidden; }
.stage-grid { position: absolute; inset: 0; opacity: .17; background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(to bottom, #000, transparent 80%); }
.phone-demo { width: 320px; height: 700px; box-shadow: 0 48px 80px rgba(0, 0, 0, .38); }
.demo-phone-screen { position: relative; padding: 18px 13px 15px; color: var(--ink); }
.demo-panel { animation: screen-in .38s cubic-bezier(.2,.8,.2,1); }
.demo-panel[hidden] { display: none; }
@keyframes screen-in { from { opacity: 0; transform: translateY(12px); } }
.demo-nav { height: 48px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; font-size: 15px; }
.demo-nav span:last-child { text-align: right; }
.demo-panel h3 { margin: 12px 5px 16px; font: 700 18px "Noto Sans TC", sans-serif; }
.demo-panel h3 small { margin-left: 4px; color: var(--faint); font-size: 10px; font-weight: 500; }
.capture-card { position: relative; height: 442px; border-radius: 24px; overflow: hidden; background: var(--paper-2); }
.capture-card img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 62%; }
.capture-card::after { position: absolute; inset: 55% 0 0; content: ""; background: linear-gradient(transparent, rgba(0,0,0,.3)); }
.capture-badge { position: absolute; z-index: 2; right: 16px; bottom: 16px; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.9); display: grid; place-items: center; color: var(--sage); }
.capture-badge svg { width: 21px; }
.screen-caption { margin: 13px 0 0; color: var(--muted); font-size: 11px; text-align: center; }
.field-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.field-row label { height: 76px; padding: 11px; border: 1px solid var(--line); border-radius: 13px; color: var(--faint); font-size: 9px; }
.field-row strong { margin-top: 12px; color: var(--ink); display: block; font-size: 14px; }
.demo-segment { height: 44px; padding: 5px; border-radius: 14px; background: #e8dfd2; display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; text-align: center; }
.demo-segment b, .demo-segment span { border-radius: 10px; display: grid; place-items: center; font-size: 11px; }
.demo-segment b { border: 1px solid rgba(88, 103, 80, .25); background: var(--cream-strong); color: var(--sage); box-shadow: 0 3px 8px rgba(53, 48, 39, .08); }
.demo-segment span { color: var(--faint); font-weight: 600; }
.demo-section-heading { margin-top: 14px; display: flex; align-items: center; justify-content: space-between; }
.demo-section-heading h3 { margin: 0; font-size: 14px; }
.demo-section-heading em { padding: 5px 8px; border-radius: 999px; background: var(--sage-soft); color: var(--sage); font-size: 8px; font-style: normal; font-weight: 700; }
.demo-panel[data-panel="details"] .field-row { margin-top: 9px; }
.demo-panel[data-panel="details"] .field-row label { height: 62px; padding: 9px; background: rgba(255, 253, 249, .6); }
.demo-panel[data-panel="details"] .field-row strong { margin-top: 8px; }
.demo-rate-card { margin-top: 12px; padding: 13px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255, 253, 249, .72); box-shadow: 0 8px 22px rgba(66, 57, 45, .06); }
.demo-card-title { padding-bottom: 10px; display: flex; align-items: center; justify-content: space-between; }
.demo-card-title strong { font-size: 13px; }
.demo-card-title span { padding: 5px 8px; border-radius: 999px; background: var(--sage-soft); color: var(--sage); font-size: 8px; font-weight: 700; }
.demo-rate-row { min-height: 43px; padding: 6px 10px; border-top: 1px solid rgba(212, 200, 183, .55); display: grid; grid-template-columns: 1fr 1.15fr; align-items: center; gap: 10px; }
.demo-rate-row small { color: var(--faint); font-size: 9px; }
.demo-rate-row b { min-height: 30px; padding: 7px 10px; border: 1px solid rgba(212, 200, 183, .8); border-radius: 10px; background: var(--cream-strong); color: var(--ink); font-size: 11px; }
.demo-card-divider { height: 1px; margin: 8px 0; background: rgba(212, 200, 183, .62); }
.demo-option-row { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 10px; font-weight: 700; }
.demo-option-row > span { display: flex; flex-direction: column; gap: 2px; }
.demo-option-row small { color: var(--faint); font-size: 8px; font-weight: 500; }
.demo-option-row > strong { color: var(--sage); font-size: 10px; }
.demo-toggle { position: relative; width: 34px; height: 20px; border-radius: 999px; background: var(--sage); }
.demo-toggle::after { position: absolute; top: 3px; right: 3px; width: 14px; height: 14px; border-radius: 50%; background: var(--cream-strong); content: ""; box-shadow: 0 1px 3px rgba(0, 0, 0, .18); }
.time-option { margin-top: 12px; padding: 15px; border: 1px solid var(--line); border-radius: 15px; background: var(--cream); display: flex; align-items: center; justify-content: space-between; }
.time-option span { display: flex; flex-direction: column; gap: 4px; }
.time-option small { color: var(--faint); font-size: 9px; }
.time-option b { font-size: 12px; }
.time-option i { width: 24px; height: 24px; border-radius: 50%; background: var(--sage-soft); color: var(--sage); display: grid; place-items: center; font: normal 700 11px sans-serif; }
.demo-panel[data-panel="details"] .mock-button { margin-top: 12px; }
.compact-card { padding: 14px; }
.compact-card .elapsed { font-size: 24px; }
.compact-card .parking-meta { margin-top: 11px; }
.photo-preview.small { height: 204px; }
.demo-home-nav { height: 42px; }
.active-photo { position: relative; height: 120px; border-radius: 20px; overflow: hidden; background: var(--paper-2); }
.active-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 55%; }
.active-photo::after { position: absolute; inset: 58% 0 0; background: linear-gradient(transparent, rgba(20, 28, 19, .58)); content: ""; }
.active-photo span { position: absolute; z-index: 1; right: 12px; bottom: 10px; padding: 5px 8px; border-radius: 999px; background: rgba(255, 253, 249, .9); color: var(--sage-dark); font-size: 8px; font-weight: 700; }
.active-status-card { margin-top: 8px; padding: 10px 12px; border: 1px solid rgba(212, 200, 183, .72); border-radius: 17px; background: rgba(255, 253, 249, .75); display: grid; grid-template-columns: 1fr auto; align-items: center; }
.active-status-card > div { display: flex; align-items: center; gap: 7px; color: var(--sage); font-size: 10px; }
.active-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sage); }
.active-status-card > small { padding: 5px 7px; border-radius: 999px; background: var(--sage-soft); color: var(--sage); font-size: 8px; font-weight: 700; }
.active-status-card > strong { grid-column: 1 / -1; margin-top: 7px; font-size: 22px; letter-spacing: -.04em; }
.active-summary-card { margin-top: 8px; padding: 9px 11px; border: 1px solid rgba(212, 200, 183, .72); border-radius: 17px; background: rgba(255, 253, 249, .75); }
.active-summary-row { min-height: 24px; display: grid; grid-template-columns: 72px 1fr; align-items: center; gap: 8px; font-size: 9px; }
.active-summary-row > span { color: var(--muted); }
.active-summary-row > b { color: var(--sage); font-size: 9px; text-align: right; }
.active-qr-row > b { text-decoration: underline; text-underline-offset: 3px; }
.active-summary-card .demo-card-divider { margin: 7px 0; }
.active-fee { display: flex; align-items: end; justify-content: space-between; gap: 10px; }
.active-fee > span, .active-fee > strong { display: flex; flex-direction: column; gap: 3px; }
.active-fee small { color: var(--faint); font-size: 8px; font-weight: 500; }
.active-fee > span b { color: var(--sage); font-size: 9px; }
.active-fee > strong { color: var(--sage); font-size: 23px; line-height: 1; text-align: right; }
.active-actions { margin-top: 8px; display: grid; gap: 6px; }
.active-actions .mock-button { height: 34px; min-height: 34px; margin-top: 0; font-size: 10px; }
.reminder-panel { position: absolute; inset: 0; overflow: hidden; background: linear-gradient(155deg, #9fa99a 0%, #c8bba4 52%, #b4aa92 100%); color: var(--white); }
.demo-lock-content { height: 100%; padding: 42px 14px 15px; text-align: center; background: radial-gradient(circle at 82% 57%, rgba(255,249,232,.68), transparent 38%), radial-gradient(circle at 8% 9%, rgba(111,126,111,.32), transparent 40%); }
.demo-lock-symbol { display: block; font-size: 24px; font-weight: 700; line-height: 1; transform: rotate(90deg); }
.demo-lock-date { margin-top: 13px; font-size: 11px; font-weight: 600; }
.demo-lock-time { margin-top: 8px; font-size: 54px; font-weight: 400; line-height: .95; letter-spacing: -.08em; }
.demo-notification { width: 100%; margin-top: 38px; }
.interactive-stage[data-screen="reminder"] .phone-hardware,
.interactive-stage[data-screen="reminder"] .demo-phone-screen > .ios-bar { opacity: 0; }
.stage-caption { position: absolute; right: 26px; bottom: 24px; left: 26px; display: flex; align-items: flex-end; justify-content: space-between; pointer-events: none; }
.stage-caption span { color: rgba(255,255,255,.26); font-size: 64px; font-weight: 700; line-height: 1; letter-spacing: -.08em; }
.stage-caption p { max-width: 250px; margin: 0; color: #bac4b5; font-size: 11px; line-height: 1.65; text-align: right; }

.section-heading { display: flex; align-items: end; justify-content: space-between; }
.section-heading h2 { margin-top: 17px; font-size: clamp(38px, 4.4vw, 58px); line-height: 1.23; }
.bento-grid { margin-top: 40px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-template-rows: minmax(300px, auto); gap: 12px; }
.bento { position: relative; min-height: 240px; padding: 24px; border: 1px solid var(--line); border-radius: 24px; background: var(--cream); overflow: hidden; }
.bento h3 { margin: 12px 0 0; font: 700 clamp(20px, 1.8vw, 28px)/1.3 "LXGW WenKai TC", "Noto Sans TC", sans-serif; letter-spacing: 0; }
.bento p { max-width: 480px; margin: 10px 0 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.feature-index { color: var(--copper); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.bento-photo { color: var(--white); border: 0; }
.bento-photo::after { position: absolute; z-index: 1; inset: 0; content: ""; background: linear-gradient(90deg, rgba(19,24,18,.9), rgba(19,24,18,.3) 60%, transparent); }
.bento-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 63%; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.bento-photo:hover img { transform: scale(1.025); }
.bento-copy { position: relative; z-index: 2; max-width: 480px; }
.bento-photo .feature-index { color: #dca582; }
.bento-photo p { color: rgba(255,255,255,.74); }
.bento-reminder { background: var(--copper-soft); display: flex; flex-direction: column; }
.bento-reminder > p { margin-bottom: 18px; }
.mini-notification { position: static; width: calc(100% - 24px); margin-top: auto; padding: 10px; align-self: center; border: 1px solid rgba(88,103,80,.12); border-radius: 14px; background: rgba(255,253,249,.92); box-shadow: 0 10px 22px rgba(78,51,35,.1); }
.mini-notification-meta { display: grid; grid-template-columns: 24px 1fr auto; align-items: center; gap: 6px; margin-bottom: 6px; }
.mini-notification-meta img { width: 24px; height: 24px; border-radius: 7px; }
.mini-notification-meta b { font-size: 10px; }
.mini-notification-meta small { color: var(--faint); font-size: 8px; }
.mini-notification > strong { display: block; font-size: 11px; }
.mini-notification > span { display: block; margin-top: 2px; color: var(--muted); font-size: 8px; line-height: 1.45; }
.bento-map { background: var(--sage-soft); }
.route-map { position: absolute; right: 16px; bottom: 16px; width: 62%; height: 30%; border: 1px solid rgba(88,103,80,.18); border-radius: 14px; background-image: linear-gradient(rgba(88,103,80,.11) 1px, transparent 1px), linear-gradient(90deg, rgba(88,103,80,.11) 1px, transparent 1px); background-size: 18px 18px; overflow: hidden; }
.route-map svg { width: 100%; height: 100%; }
.route-map path { stroke: var(--copper); stroke-width: 4; stroke-dasharray: 7 7; }
.route-start, .route-end { position: absolute; z-index: 2; width: 14px; height: 14px; border: 3px solid var(--cream); border-radius: 50%; background: var(--sage); box-shadow: 0 3px 8px rgba(0,0,0,.16); }
.route-start { top: 64%; left: 9%; }
.route-end { top: 55%; right: 9%; background: var(--copper); }
.bento-private { background: var(--sage-dark); color: var(--white); }
.bento-private p { color: #b7c0b2; }
.privacy-orbit { position: absolute; top: 20px; right: 20px; width: 56px; height: 56px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; display: grid; place-items: center; }
.privacy-orbit::before { position: absolute; inset: 8px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; content: ""; }
.privacy-orbit svg { width: 22px; color: #c9d4c2; }
.bento-private a { position: absolute; bottom: 31px; left: 32px; color: #e2e7de; font-size: 12px; font-weight: 700; cursor: pointer; }
.bento-private a span { display: inline-block; margin-left: 6px; transition: transform .2s ease; }
.bento-private a:hover span { transform: translateX(3px); }

.flow-section { border-block: 1px solid var(--line); background: rgba(255,255,255,.24); }
.flow-section .shell { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; }
.flow-head h2 { margin-top: 18px; font-size: clamp(44px, 5vw, 70px); line-height: 1.15; }
.flow-list { margin: 0; padding: 0; list-style: none; }
.flow-list li { padding: 30px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 68px 1fr; gap: 18px; }
.flow-list li:first-child { border-top: 1px solid var(--line); }
.flow-list span { color: var(--copper); font-size: 12px; font-weight: 800; }
.flow-list b { font: 700 22px "Noto Sans TC", sans-serif; }
.flow-list p { margin: 8px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.privacy-banner { min-height: 410px; padding: clamp(42px, 7vw, 78px); border-radius: var(--radius-xl); background: var(--sage); color: var(--white); display: flex; align-items: end; justify-content: space-between; gap: 60px; overflow: hidden; }
.privacy-banner::before { position: absolute; width: 340px; height: 340px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; content: ""; transform: translate(190%, -40%); box-shadow: 0 0 0 70px rgba(255,255,255,.04), 0 0 0 140px rgba(255,255,255,.025); }
.privacy-banner > div { position: relative; z-index: 2; max-width: 720px; }
.privacy-banner .section-kicker { color: #d5ded0; }
.privacy-banner h2 { margin-top: 15px; font-size: clamp(39px, 5vw, 70px); line-height: 1.15; }
.privacy-banner p:not(.section-kicker) { max-width: 660px; color: #d5ded0; line-height: 1.8; }
.privacy-banner .button { position: relative; z-index: 2; flex: 0 0 auto; }
.final-cta { display: flex; flex-direction: column; align-items: center; text-align: center; }
.final-cta img { border-radius: 25px; box-shadow: 0 18px 38px rgba(55,68,50,.23); }
.final-cta .section-kicker { margin-top: 30px; }
.final-cta h2 { margin-top: 15px; font-size: clamp(46px, 6.5vw, 86px); line-height: 1.18; }
.final-cta > p:not(.section-kicker) { max-width: 640px; color: var(--muted); line-height: 1.8; }
.final-cta .button { margin-top: 24px; }

.footer { padding: 48px 0; border-top: 1px solid var(--line); }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 28px; }
.brand-footer { justify-self: start; }
.footer p { color: var(--muted); font-size: 12px; text-align: center; }
.footer div > div { display: flex; gap: 20px; }
.footer div > div a { color: var(--muted); font-size: 12px; font-weight: 600; cursor: pointer; }
.footer div > div a:hover { color: var(--ink); }
.footer-inner > small { grid-column: 1 / -1; color: var(--faint); font-size: 10px; text-align: center; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Privacy page */
.legal-hero { padding-top: 170px; padding-bottom: 62px; }
.legal-hero h1 { max-width: 900px; margin: 18px 0 0; font: 700 clamp(52px, 7.4vw, 96px)/1.14 "LXGW WenKai TC", "Noto Sans TC", sans-serif; letter-spacing: -.01em; }
.legal-hero p:not(.section-kicker) { max-width: 670px; margin-top: 25px; color: var(--muted); font-size: 17px; line-height: 1.8; }
.legal-meta { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 9px; }
.legal-meta span { padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 11px; }
.legal-meta .language-switch { display: inline-flex; align-items: center; gap: 3px; padding: 3px; background: rgba(251,247,240,.76); }
.legal-meta .language-switch-label { padding: 5px 7px; border: 0; color: var(--faint); font-size: 10px; font-weight: 700; }
.legal-meta .language-option { padding: 6px 10px; border: 0; color: var(--muted); font-size: 11px; font-weight: 700; text-decoration: none; }
.legal-meta .language-option.is-active { background: var(--sage-dark); color: var(--white); }
.legal-meta a.language-option:hover { background: var(--paper); color: var(--ink); }
.legal-layout { padding-bottom: 130px; display: grid; grid-template-columns: 250px 1fr; align-items: start; gap: 7vw; }
.legal-toc { position: sticky; top: 110px; padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: rgba(251,247,240,.72); }
.legal-toc b { font-size: 12px; }
.legal-toc ol { margin: 14px 0 0; padding-left: 20px; color: var(--faint); }
.legal-toc li + li { margin-top: 9px; }
.legal-toc a { color: var(--muted); font-size: 11px; cursor: pointer; }
.legal-toc a:hover { color: var(--sage); }
.legal-content { display: grid; gap: 14px; }
.legal-summary { padding: 30px; border-radius: 24px; background: var(--sage-dark); color: var(--white); }
.legal-summary h2 { margin: 0; font-size: 24px; }
.legal-summary p { color: #bcc6b7; }
.legal-card { scroll-margin-top: 110px; padding: clamp(24px, 4vw, 42px); border: 1px solid var(--line); border-radius: 24px; background: var(--cream); }
.legal-card .legal-number { color: var(--copper); font-size: 10px; font-weight: 800; letter-spacing: .15em; }
.legal-card h2 { margin: 12px 0 0; font: 700 clamp(23px, 3vw, 34px) "Noto Sans TC", sans-serif; letter-spacing: -.035em; }
.legal-card p, .legal-card li { color: var(--muted); font-size: 14px; line-height: 1.9; }
.legal-card ul { padding-left: 20px; }
.legal-card a { color: var(--sage); font-weight: 700; text-decoration: underline; text-underline-offset: 4px; cursor: pointer; }
.legal-back { margin-top: 18px; }

/* Support page */
.support-hero { padding-top: 170px; padding-bottom: 74px; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 7vw; }
.support-hero h1 { margin: 18px 0 0; font: 700 clamp(52px, 7.2vw, 96px)/1.14 "LXGW WenKai TC", "Noto Sans TC", sans-serif; letter-spacing: -.01em; }
.support-hero h1 em { color: var(--sage); font-style: normal; }
.support-hero p:not(.section-kicker) { max-width: 650px; margin-top: 25px; color: var(--muted); font-size: 17px; line-height: 1.8; }
.support-meta { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 9px; }
.support-meta span { padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 11px; }
.support-contact-card { min-width: 290px; padding: 26px; border-radius: 24px; background: var(--sage-dark); color: var(--white); box-shadow: var(--shadow); transition: transform .2s ease, background .2s ease; }
.support-contact-card:hover { background: var(--sage); transform: translateY(-4px); }
.support-icon { width: 38px; height: 38px; margin-bottom: 28px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; display: grid; place-items: center; font-size: 22px; }
.support-contact-card small, .support-contact-card strong, .support-contact-card > span:last-child { display: block; }
.support-contact-card small { color: #cbd4c6; font-size: 11px; }
.support-contact-card strong { margin-top: 8px; font-size: 15px; overflow-wrap: anywhere; }
.support-contact-card > span:last-child { margin-top: 10px; color: #b7c3b2; font-size: 11px; line-height: 1.6; }
.support-layout { padding-bottom: 130px; display: grid; grid-template-columns: 250px 1fr; align-items: start; gap: 7vw; }
.support-toc { position: sticky; top: 110px; padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: rgba(251,247,240,.72); }
.support-toc b { font-size: 12px; }
.support-toc ol { margin: 14px 0 0; padding-left: 20px; color: var(--faint); }
.support-toc li + li { margin-top: 9px; }
.support-toc a { color: var(--muted); font-size: 11px; }
.support-toc a:hover { color: var(--sage); }
.support-content { display: grid; gap: 14px; }
.support-note { padding: clamp(24px, 4vw, 42px); border-radius: 24px; background: var(--sage-dark); color: var(--white); display: grid; grid-template-columns: auto 1fr; gap: 25px; }
.support-note h2, .support-card h2 { margin: 0; font: 700 clamp(23px, 3vw, 34px) "Noto Sans TC", sans-serif; letter-spacing: -.035em; }
.support-note p { max-width: 650px; margin: 12px 0 0; color: #c0cbbd; font-size: 14px; line-height: 1.9; }
.support-number { color: var(--copper); font-size: 10px; font-weight: 800; letter-spacing: .15em; }
.support-mail-button { margin-top: 20px; background: var(--cream-strong); color: var(--sage-dark); box-shadow: none; }
.support-mail-button:hover { background: var(--copper-soft); }
.support-card { scroll-margin-top: 110px; padding: clamp(24px, 4vw, 42px); border: 1px solid var(--line); border-radius: 24px; background: var(--cream); }
.support-card > h2 { margin-top: 12px; }
.faq-list { margin-top: 20px; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 18px 28px 18px 0; color: var(--ink); font-size: 15px; font-weight: 700; cursor: pointer; list-style: none; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; right: 3px; top: 16px; content: "+"; color: var(--sage); font-size: 20px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { max-width: 720px; margin: -2px 0 18px; color: var(--muted); font-size: 14px; line-height: 1.9; }
.support-checklist { margin: 20px 0 0; padding: 0; display: grid; gap: 13px; list-style: none; }
.support-checklist li { padding: 15px 17px; border-radius: 15px; background: var(--paper); color: var(--muted); font-size: 14px; line-height: 1.7; }
.support-checklist strong { color: var(--ink); }

@media (max-width: 980px) {
  .hero { min-height: 0; grid-template-columns: 1fr; text-align: center; }
  .hero-copy { max-width: 760px; margin: auto; }
  .hero-lead { margin-inline: auto; }
  .download-metric { margin-inline: auto; text-align: left; }
  .hero-actions, .trust-list { justify-content: center; }
  .hero-visual { margin-top: 30px; }
  .problem-grid, .demo-layout, .flow-section .shell { grid-template-columns: 1fr; }
  .problem-copy { max-width: 640px; }
  .demo-copy { max-width: 700px; }
  .step-tabs { grid-template-columns: 1fr 1fr; }
  .interactive-stage { margin-top: 10px; }
  .bento-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: repeat(2, minmax(300px, auto)); }
  .bento-photo { grid-column: auto; }
  .bento-private { grid-column: span 1; }
  .privacy-banner { align-items: flex-start; flex-direction: column; justify-content: end; }
  .footer-inner { grid-template-columns: 1fr auto; }
  .footer p { display: none; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .support-hero { grid-template-columns: 1fr; align-items: start; }
  .support-layout { grid-template-columns: 1fr; }
  .support-toc { position: static; }
}

@media (max-width: 720px) {
  .shell { width: min(100% - 28px, 600px); }
  .site-header { top: 10px; }
  .nav { height: 60px; border-radius: 17px; }
  .brand img { width: 38px; height: 38px; border-radius: 10px; }
  .brand strong { font-size: 14px; }
  .brand small { font-size: 7px; }
  .nav-links { display: none; }
  .nav-cta { padding: 11px 14px; font-size: 11px; }
  .hero { padding-top: 128px; padding-bottom: 72px; }
  .hero h1 { font-size: clamp(48px, 13.8vw, 68px); line-height: 1.12; }
  .hero-lead { font-size: 15px; }
  .download-metric { width: min(440px, 100%); padding: 18px; grid-template-columns: 1fr; gap: 14px; }
  .download-metric-divider { width: 100%; height: 1px; }
  .app-store-link { width: 100%; min-height: 58px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .trust-list { gap: 10px 15px; }
  .hero-visual { min-height: 590px; transform: scale(.91); margin-inline: -18px; }
  .hero-aura { width: 470px; height: 470px; }
  .phone-hero { width: 292px; height: 600px; border-radius: 46px; }
  .phone-screen { border-radius: 37px; }
  .float-time { right: 0; }
  .float-place { left: 0; }
  .hero-stamp { display: none; }
  .feature-rail { width: 100%; margin-left: 0; transform: rotate(-1deg); }
  .section-space { padding-block: 88px; }
  .problem-grid { gap: 30px; }
  .display-heading { font-size: 39px; line-height: 1.28; }
  .demo-section { padding-block: 88px; }
  .demo-copy h2 { font-size: 40px; line-height: 1.25; }
  .step-tabs { grid-template-columns: 1fr; }
  .step-tab small { display: none; }
  .interactive-stage { min-height: 790px; margin-inline: -7px; border-radius: 30px; }
  .phone-demo { width: 282px; height: 620px; border-radius: 46px; }
  .phone-demo .phone-screen { border-radius: 36px; }
  .capture-card { height: 374px; }
  .photo-preview.small { height: 166px; }
  .active-photo { height: 108px; }
  .stage-caption { bottom: 16px; }
  .stage-caption span { font-size: 45px; }
  .stage-caption p { max-width: 190px; }
  .bento-grid { grid-template-columns: 1fr; grid-template-rows: none; grid-auto-rows: minmax(250px, auto); }
  .bento-photo, .bento-private { grid-column: auto; }
  .bento { padding: 24px; }
  .bento h3 { font-size: 25px; line-height: 1.32; }
  .mini-notification { width: 100%; padding: 12px; border-radius: 16px; }
  .mini-notification-meta { grid-template-columns: 28px 1fr auto; gap: 7px; margin-bottom: 8px; }
  .mini-notification-meta img { width: 28px; height: 28px; border-radius: 8px; }
  .mini-notification-meta b { font-size: 11px; }
  .mini-notification-meta small { font-size: 9px; }
  .mini-notification > strong { font-size: 12px; }
  .mini-notification > span { margin-top: 3px; font-size: 9px; }
  .route-map { width: 62%; height: 34%; }
  .flow-head h2 { font-size: 42px; }
  .privacy-banner { width: calc(100% - 28px); min-height: 490px; padding: 30px; border-radius: 30px; }
  .privacy-banner .button { width: 100%; }
  .final-cta h2 { font-size: 46px; line-height: 1.22; }
  .footer-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .brand-footer { justify-self: center; }
  .footer div > div { justify-content: center; flex-wrap: wrap; }
  .legal-hero { padding-top: 130px; }
  .legal-hero h1 { font-size: 48px; line-height: 1.2; }
  .legal-layout { padding-bottom: 90px; }
  .legal-toc { display: none; }
  .support-toc { display: none; }
  .support-hero { padding-top: 130px; }
  .support-hero h1 { font-size: 48px; line-height: 1.2; }
  .support-contact-card { min-width: 0; }
  .support-note { grid-template-columns: 1fr; gap: 12px; }
  .support-layout { padding-bottom: 90px; }
}

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