:root {
  --navy: #0b2238;
  --navy-2: #17324a;
  --green: #07956a;
  --green-dark: #047652;
  --green-soft: #e9f8f2;
  --mint: #d8f2e8;
  --blue: #2d6cdf;
  --blue-soft: #edf4ff;
  --red: #d83b4a;
  --red-soft: #fff0f2;
  --gold: #c98613;
  --gold-soft: #fff8e8;
  --indigo: #6d4bd1;
  --indigo-soft: #f4f0ff;
  --cyan: #1688a5;
  --cyan-soft: #eafaff;
  --surface: #ffffff;
  --surface-2: #f6faf8;
  --surface-3: #eef5f2;
  --text: #132238;
  --muted: #627086;
  --line: #dbe5e1;
  --shadow: 0 18px 42px rgba(15, 42, 58, .10);
  --shadow-soft: 0 10px 24px rgba(15, 42, 58, .07);
  --radius-xl: 8px;
  --radius-lg: 8px;
  --radius-md: 8px;
  --radius-sm: 6px;
  --header-height: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: linear-gradient(180deg, #f7faf9 0%, #eef5f2 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--green-dark); text-decoration: none; }
a:hover { color: var(--green); }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 3000;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  color: #fff;
  background: var(--navy);
}
.skip-link:focus { transform: translateY(0); }

.site-container {
  max-width: 1180px;
  width: min(calc(100% - 32px), 1180px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}
.site-header {
  background: rgba(255,255,255,.90);
  border-bottom: 1px solid rgba(219,229,225,.9);
  backdrop-filter: blur(16px);
  overflow-x: clip;
}
.navbar { min-height: var(--header-height); padding: 10px 0; }
.navbar-brand { display: inline-flex; align-items: center; gap: 10px; }
.navbar-brand img { width: 46px; height: 46px; border-radius: var(--radius-md); box-shadow: 0 8px 22px rgba(7,149,106,.14); object-fit: cover; }
.brand-word { color: var(--navy); font-size: 1.45rem; font-weight: 850; letter-spacing: 0; }
.brand-word span, .footer-brand strong span { color: var(--green); }
.nav-link { color: #415168; font-weight: 700; padding: 10px 12px !important; border-radius: var(--radius-md); }
.nav-link:hover, .nav-link.active { color: var(--green-dark); background: var(--green-soft); }
.navbar-toggler { border: 1px solid var(--line); border-radius: var(--radius-md); }
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(7,149,106,.15); }

.btn { max-width: 100%; min-height: 46px; border-radius: var(--radius-md); font-weight: 800; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 11px 18px; }
.btn-play { color: #fff; background: var(--navy); border: 0; }
.btn-play:hover { color: #fff; background: var(--navy-2); transform: translateY(-1px); }
.btn-primary-lv { color: #fff; background: linear-gradient(135deg, var(--green), var(--green-dark)); border: 0; box-shadow: 0 12px 24px rgba(7,149,106,.20); }
.btn-primary-lv:hover { color: #fff; filter: brightness(.97); transform: translateY(-1px); }
.btn-soft { color: var(--navy); background: #fff; border: 1px solid var(--line); }
.btn-soft:hover { color: var(--green-dark); border-color: rgba(7,149,106,.35); background: var(--green-soft); }

.app-main { position: relative; min-height: calc(100vh - var(--header-height)); outline: none; overflow-x: clip; }
.route-view { min-height: calc(100vh - var(--header-height)); padding: 48px 0 72px; animation: routeIn .28s ease both; overflow-x: clip; }
.route-view[hidden] { display: none !important; }
@keyframes routeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.route-loader { position: fixed; z-index: 1200; left: 0; top: var(--header-height); width: 100%; height: 3px; pointer-events: none; overflow: hidden; opacity: 0; }
.route-loader::after { content: ""; display: block; width: 38%; height: 100%; background: linear-gradient(90deg, transparent, var(--green), transparent); transform: translateX(-120%); }
.route-loader.loading { opacity: 1; }
.route-loader.loading::after { animation: loadingBar .7s ease infinite; }
@keyframes loadingBar { to { transform: translateX(320%); } }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--green-dark); background: var(--green-soft); border: 1px solid rgba(7,149,106,.18); border-radius: 999px; padding: 8px 12px; font-size: .82rem; font-weight: 800; letter-spacing: 0; }
.page-heading { max-width: 790px; margin-bottom: 34px; }
.page-heading h1, .hero-copy h1, .home-overview h2, .section-copy h2, .feature-cta h2 { margin: 14px 0 12px; color: var(--navy); font-weight: 900; letter-spacing: 0; }
.page-heading h1 { font-size: clamp(2rem, 4.2vw, 3.35rem); line-height: 1.08; overflow-wrap: anywhere; }
.page-heading p, .section-copy p { color: var(--muted); font-size: 1.06rem; line-height: 1.75; }
.compact-heading { margin-bottom: 22px; }

.home-grid { min-height: 590px; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr); align-items: start; gap: clamp(28px, 5vw, 56px); }
.hero-copy { min-width: 0; padding-top: 92px; }
.hero-copy h1 { font-size: clamp(2.9rem, 5.4vw, 4.55rem); line-height: 1.04; overflow-wrap: anywhere; }
.hero-line { display: block; }
.hero-copy h1 .hero-accent { color: var(--green); }
.hero-lead { max-width: 650px; color: var(--muted); font-size: 1.18rem; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: nowrap; gap: 12px; margin-top: 24px; max-width: 100%; }
.trust-row { display: flex; flex-wrap: wrap; gap: 14px 22px; margin-top: 24px; color: #526176; font-size: .93rem; font-weight: 700; }
.trust-row i { color: var(--green); margin-right: 6px; }
.hero-visual { position: relative; min-height: 600px; display: grid; place-items: center; min-width: 0; }
.hero-visual::before { content: ""; position: absolute; inset: 38px 42px; border: 1px solid rgba(7,149,106,.16); border-radius: 8px; background: linear-gradient(145deg, rgba(255,255,255,.78), rgba(233,248,242,.72)); box-shadow: var(--shadow-soft); }
.phone-frame { position: relative; z-index: 2; width: 245px; aspect-ratio: 575 / 1280; overflow: hidden; padding: 8px; border-radius: 34px; background: #152b3d; box-shadow: 0 35px 70px rgba(9,33,50,.25); }
.phone-frame::before { content: ""; position: absolute; z-index: 3; left: 50%; top: 8px; transform: translateX(-50%); width: 84px; height: 19px; border-radius: 0 0 12px 12px; background: #152b3d; }
.phone-frame img { width: 100%; height: 100%; border-radius: 27px; object-fit: contain; object-position: center; }
.floating-chip { position: absolute; z-index: 4; display: flex; align-items: center; gap: 9px; padding: 11px 14px; border-radius: var(--radius-md); color: var(--navy); background: rgba(255,255,255,.96); border: 1px solid var(--line); box-shadow: var(--shadow-soft); font-size: .88rem; font-weight: 800; }
.floating-chip i { color: var(--green); }
.chip-health { left: 12px; top: 145px; }
.chip-reminder { right: 4px; bottom: 125px; }

.value-strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin: 10px 0 54px; }
.value-strip article { display: flex; align-items: center; gap: 14px; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,.88); box-shadow: var(--shadow-soft); }
.value-strip article > i { width: 44px; height: 44px; flex: 0 0 auto; display: grid; place-items: center; border-radius: var(--radius-md); color: var(--green-dark); background: var(--green-soft); }
.value-strip strong, .value-strip span { display: block; }
.value-strip strong { color: var(--navy); font-size: .95rem; }
.value-strip span { margin-top: 3px; color: var(--muted); font-size: .83rem; line-height: 1.45; }

.home-overview { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(280px, .96fr); gap: 46px; align-items: center; padding: 36px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(233,248,242,.82)); box-shadow: var(--shadow-soft); }
.home-overview h2 { font-size: clamp(2rem, 4vw, 3rem); }
.home-overview p { color: var(--muted); line-height: 1.75; }
.check-list { display: grid; gap: 12px; list-style: none; padding: 0; margin: 22px 0 0; }
.check-list li { display: flex; gap: 11px; color: #405167; line-height: 1.55; }
.check-list i { flex: 0 0 auto; width: 23px; height: 23px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--green); font-size: .68rem; margin-top: 1px; }
.brand-card { padding: 18px; border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow); }
.brand-card img { width: 100%; border-radius: var(--radius-md); }

.home-shortcuts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 28px; }
.home-shortcuts a { display: flex; align-items: center; gap: 14px; padding: 18px; color: var(--text); background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-soft); transition: .2s ease; }
.home-shortcuts a:hover { transform: translateY(-2px); border-color: rgba(7,149,106,.35); }
.home-shortcuts > a > i:first-child { width: 44px; height: 44px; display: grid; place-items: center; border-radius: var(--radius-md); color: var(--green-dark); background: var(--green-soft); }
.home-shortcuts > a > i:last-child { margin-left: auto; color: var(--green); }
.home-shortcuts b, .home-shortcuts small { display: block; }
.home-shortcuts b { color: var(--navy); }
.home-shortcuts small { color: var(--muted); margin-top: 3px; }

.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.feature-card { position: relative; overflow: hidden; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-soft); }
.feature-card::after { content: ""; position: absolute; inset: 0 0 auto; height: 4px; opacity: .95; }
.feature-icon { position: relative; z-index: 1; width: 54px; height: 54px; display: grid; place-items: center; border-radius: var(--radius-md); font-size: 1.25rem; }
.feature-card h2 { position: relative; z-index: 1; margin: 18px 0 8px; color: var(--navy); font-size: 1.25rem; font-weight: 850; }
.feature-card p { position: relative; z-index: 1; color: var(--muted); line-height: 1.65; min-height: 80px; }
.feature-card ul { position: relative; z-index: 1; list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 8px; color: #46566a; }
.feature-card li::before { content: "✓"; color: currentColor; font-weight: 900; margin-right: 8px; }
.feature-green .feature-icon { color: var(--green-dark); background: var(--green-soft); } .feature-green::after { background: var(--green); }
.feature-red .feature-icon { color: var(--red); background: var(--red-soft); } .feature-red::after { background: var(--red); }
.feature-gold .feature-icon { color: var(--gold); background: var(--gold-soft); } .feature-gold::after { background: var(--gold); }
.feature-indigo .feature-icon { color: var(--indigo); background: var(--indigo-soft); } .feature-indigo::after { background: var(--indigo); }
.feature-blue .feature-icon { color: var(--blue); background: var(--blue-soft); } .feature-blue::after { background: var(--blue); }
.feature-cyan .feature-icon { color: var(--cyan); background: var(--cyan-soft); } .feature-cyan::after { background: var(--cyan); }

.benefit-section { margin-top: 54px; padding: 36px; border-radius: var(--radius-xl); background: var(--navy); color: #fff; box-shadow: var(--shadow); }
.benefit-section .section-copy h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.benefit-section .section-copy p { color: #cbd6e0; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 26px; }
.benefit-grid article { padding: 20px; border-radius: var(--radius-md); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); }
.benefit-grid span { display: inline-flex; color: #83e2bd; font-weight: 900; }
.benefit-grid h3 { margin: 12px 0 8px; font-size: 1.03rem; }
.benefit-grid p { margin: 0; color: #cad6df; font-size: .9rem; line-height: 1.6; }
.feature-cta { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-top: 30px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-soft); }
.feature-cta h2 { font-size: 2rem; }
.feature-cta p { color: var(--muted); margin: 0; }

.screen-showcase { display: grid; grid-template-columns: minmax(300px, .85fr) minmax(0, 1.15fr); gap: clamp(24px, 4vw, 46px); align-items: center; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: linear-gradient(135deg, #fff, #edf8f4); box-shadow: var(--shadow-soft); overflow: hidden; }
.screen-stage { position: relative; min-height: 610px; display: grid; place-items: center; }
.phone-frame-large { width: 250px; }
.screen-arrow { position: absolute; z-index: 5; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; color: var(--navy); background: #fff; box-shadow: var(--shadow-soft); }
.screen-arrow:hover { color: #fff; background: var(--green); border-color: var(--green); }
.screen-arrow-left { left: 20px; } .screen-arrow-right { right: 20px; }
.screen-copy { max-width: 480px; }
.screen-count { color: var(--green); font-weight: 900; letter-spacing: 0; }
.screen-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.screen-tags span { padding: 7px 10px; border-radius: 999px; color: var(--green-dark); background: var(--green-soft); font-size: .78rem; font-weight: 800; }
.screen-copy h2 { color: var(--navy); font-size: clamp(2rem, 4vw, 3.15rem); font-weight: 900; letter-spacing: 0; }
.screen-copy p { color: var(--muted); font-size: 1.05rem; line-height: 1.75; }
.screen-notes { display: flex; gap: 10px; margin-top: 20px; padding: 14px; border-radius: var(--radius-md); color: #516176; background: #fff; border: 1px solid var(--line); font-size: .88rem; }
.screen-notes i { color: var(--green); margin-top: 3px; }
#active-screen { transition: opacity .14s ease, transform .14s ease; }
#active-screen.changing { opacity: .3; transform: scale(.985); }
.screen-thumbs { display: grid; grid-template-columns: repeat(11, minmax(72px, 1fr)); gap: 10px; overflow-x: auto; padding: 16px 2px 10px; margin-top: 22px; scrollbar-width: thin; }
.screen-thumbs button { min-width: 78px; padding: 5px; border: 2px solid transparent; border-radius: var(--radius-md); background: #fff; box-shadow: 0 8px 18px rgba(15,42,58,.06); }
.screen-thumbs button.active { border-color: var(--green); }
.screen-thumbs img { width: 100%; border-radius: var(--radius-sm); }

.tutorial-section { margin-top: 50px; }
.tutorial-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.tutorial-grid article { position: relative; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-soft); }
.tutorial-grid article > span { position: absolute; top: 18px; right: 18px; color: rgba(11,34,56,.08); font-size: 2.4rem; font-weight: 950; }
.tutorial-grid i { width: 50px; height: 50px; display: grid; place-items: center; border-radius: var(--radius-md); color: var(--green-dark); background: var(--green-soft); }
.tutorial-grid h3 { margin: 18px 0 8px; color: var(--navy); font-size: 1.06rem; }
.tutorial-grid p { margin: 0; color: var(--muted); line-height: 1.65; font-size: .9rem; }

.privacy-layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 30px; align-items: start; }
.privacy-nav { position: sticky; top: 100px; }
.privacy-nav-card { display: grid; gap: 6px; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-soft); }
.privacy-nav-card strong { color: var(--navy); font-size: 1.15rem; }
.privacy-nav-card > span { color: var(--muted); font-size: .78rem; margin-bottom: 8px; }
.privacy-nav-card button { text-align: left; border: 0; border-radius: var(--radius-sm); padding: 9px 10px; color: #526176; background: transparent; font-weight: 700; font-size: .86rem; }
.privacy-nav-card button:hover, .privacy-nav-card button.active { color: var(--green-dark); background: var(--green-soft); }
.policy-card { scroll-margin-top: 104px; margin-bottom: 16px; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-soft); }
.policy-card h2 { color: var(--navy); font-size: 1.35rem; font-weight: 850; }
.policy-card h3 { margin-top: 20px; color: var(--navy-2); font-size: 1rem; font-weight: 850; }
.policy-card p, .policy-card li { color: #536278; line-height: 1.75; }
.policy-card li + li { margin-top: 6px; }
.highlight-policy { background: linear-gradient(135deg, #fff, var(--green-soft)); border-color: rgba(7,149,106,.2); }
.policy-badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.policy-badges span { display: inline-flex; align-items: center; gap: 7px; padding: 8px 10px; border-radius: 999px; color: var(--green-dark); background: #fff; border: 1px solid rgba(7,149,106,.15); font-size: .8rem; font-weight: 800; }
.policy-note { padding: 13px 14px; border-left: 4px solid var(--green); background: rgba(255,255,255,.68); border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.permission-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 18px 0; }
.permission-grid article { display: flex; gap: 12px; padding: 15px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface-2); }
.permission-grid article > i { flex: 0 0 auto; width: 38px; height: 38px; display: grid; place-items: center; border-radius: var(--radius-md); color: var(--green-dark); background: var(--green-soft); }
.permission-grid h3 { margin: 0 0 4px; }
.permission-grid p { margin: 0; font-size: .86rem; line-height: 1.55; }
.policy-warning { border-color: #f0dca3; background: #fffdf6; }

.faq-layout { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 28px; align-items: start; }
.faq-aside { position: sticky; top: 100px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(135deg, #fff, var(--green-soft)); box-shadow: var(--shadow-soft); }
.faq-aside img { width: 96px; height: 96px; border-radius: var(--radius-md); margin-bottom: 18px; object-fit: cover; object-position: center; box-shadow: var(--shadow-soft); }
.faq-aside h2 { color: var(--navy); font-size: 1.35rem; }
.faq-aside p { color: var(--muted); line-height: 1.65; }
.faq-accordion { display: grid; gap: 10px; }
.accordion-item { overflow: hidden; border: 1px solid var(--line) !important; border-radius: var(--radius-md) !important; background: #fff; box-shadow: var(--shadow-soft); }
.accordion-button { color: var(--navy); font-weight: 800; box-shadow: none !important; padding: 18px 20px; }
.accordion-button:not(.collapsed) { color: var(--green-dark); background: var(--green-soft); }
.accordion-button::after { background-size: 1rem; }
.accordion-body { color: var(--muted); line-height: 1.75; }

.contact-grid { display: grid; grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr); gap: 24px; align-items: start; }
.contact-cards { display: grid; gap: 13px; }
.contact-cards article { display: flex; gap: 14px; padding: 19px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-soft); }
.contact-cards article > span { flex: 0 0 auto; width: 44px; height: 44px; display: grid; place-items: center; border-radius: var(--radius-md); color: var(--green-dark); background: var(--green-soft); }
.contact-cards h2 { margin: 0 0 4px; color: var(--navy); font-size: 1rem; }
.contact-cards p { margin: 0 0 4px; color: var(--muted); font-size: .86rem; }
.contact-tip { display: flex; gap: 12px; padding: 16px; border-radius: var(--radius-md); color: #66551e; background: var(--gold-soft); border: 1px solid #f0dca3; }
.contact-tip i { margin-top: 4px; }
.contact-tip p { margin: 0; font-size: .86rem; line-height: 1.6; }
.contact-form { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow); }
.form-heading { display: flex; gap: 14px; margin-bottom: 22px; }
.form-icon { width: 48px; height: 48px; flex: 0 0 auto; display: grid; place-items: center; border-radius: var(--radius-md); color: var(--green-dark); background: var(--green-soft); }
.form-heading h2 { margin: 0; color: var(--navy); font-size: 1.35rem; }
.form-heading p { margin: 4px 0 0; color: var(--muted); font-size: .86rem; }
.form-label { color: #394b61; font-size: .86rem; font-weight: 800; }
.form-control, .form-select { min-height: 48px; border-color: #cfdad6; border-radius: var(--radius-md); color: var(--text); }
.form-control:focus, .form-select:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(7,149,106,.12); }
textarea.form-control { min-height: 150px; resize: vertical; }
.character-count { color: var(--muted); font-size: .76rem; }

.not-found-view { display: grid; place-items: center; }
.not-found-card { max-width: 520px; margin: auto; padding: 42px; text-align: center; border: 1px solid var(--line); border-radius: var(--radius-xl); background: #fff; box-shadow: var(--shadow); }
.not-found-card img { width: 105px; margin: 0 auto 14px; border-radius: var(--radius-md); }
.not-found-card > span { display: block; color: rgba(7,149,106,.18); font-size: 5rem; line-height: 1; font-weight: 950; }
.not-found-card h1 { color: var(--navy); font-weight: 900; }
.not-found-card p { color: var(--muted); }

.site-footer { padding: 28px 0; color: #c8d3dc; background: var(--navy); overflow-x: clip; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 11px; }
.footer-brand img { width: 48px; height: 48px; border-radius: var(--radius-md); }
.footer-brand strong, .footer-brand small { display: block; }
.footer-brand strong { color: #fff; font-size: 1.2rem; }
.footer-brand small { color: #aebdca; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 16px; }
.site-footer nav a { color: #c8d3dc; font-weight: 700; font-size: .88rem; }
.site-footer nav a:hover { color: #7fe0ba; }
.footer-meta { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1); color: #91a5b5; font-size: .8rem; }

.toast { border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow); }

@media (max-width: 1199.98px) {
  .site-container { width: min(calc(100% - 28px), 1060px); }
  .nav-link { padding-left: 9px !important; padding-right: 9px !important; font-size: .94rem; }
  .btn-play { padding-left: 14px; padding-right: 14px; }
  .home-grid { grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr); gap: 28px; }
  .hero-copy { padding-top: 100px; }
  .hero-copy h1 { font-size: clamp(3rem, 5vw, 4.2rem); }
  .hero-lead { font-size: 1.08rem; max-width: 560px; }
  .phone-frame { width: 235px; }
  .hero-visual::before { inset: 54px 18px; }
  .chip-health { left: 0; }
  .chip-reminder { right: 0; }
  .screen-showcase { grid-template-columns: minmax(270px, .78fr) minmax(0, 1.22fr); }
  .screen-stage { min-height: 570px; }
  .phone-frame-large { width: 235px; }
}

@media (max-width: 991.98px) {
  :root { --header-height: 72px; }
  .navbar-collapse { padding: 14px 0 6px; }
  .btn-play { margin-top: 8px; width: 100%; }
  .home-grid, .home-overview, .screen-showcase, .contact-grid { grid-template-columns: 1fr; }
  .home-grid { padding-top: 12px; gap: 24px; }
  .hero-copy { padding-top: 0; }
  .hero-copy { text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .hero-actions { flex-wrap: wrap; }
  .hero-visual { min-height: 560px; }
  .hero-visual::before { inset: 28px 12%; }
  .value-strip { grid-template-columns: 1fr; }
  .home-overview { text-align: left; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .benefit-grid, .tutorial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .screen-showcase { overflow: visible; }
  .screen-stage { min-height: 570px; }
  .screen-copy { max-width: none; text-align: center; }
  .screen-tags { justify-content: center; }
  .screen-notes { justify-content: center; }
  .privacy-layout { grid-template-columns: 1fr; }
  .privacy-nav { position: static; }
  .privacy-nav-card { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .privacy-nav-card strong, .privacy-nav-card > span { grid-column: 1 / -1; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-aside { position: static; display: grid; grid-template-columns: auto 1fr; gap: 14px 18px; align-items: center; }
  .faq-aside img { grid-row: 1 / 4; margin: 0; }
  .faq-aside .btn { grid-column: 2; justify-self: start; }
}

@media (max-width: 767.98px) {
  .route-view { padding: 34px 0 52px; }
  .page-heading { width: calc(100vw - 28px); max-width: calc(100vw - 28px); margin-bottom: 24px; overflow-x: clip; }
  .page-heading h1, .home-overview h2, .section-copy h2 { font-size: clamp(1.85rem, 8vw, 2.55rem); line-height: 1.12; }
  .page-heading h1 { max-width: 12ch; }
  .page-heading p, .section-copy p { max-width: min(32ch, 100%); font-size: 1rem; line-height: 1.65; overflow-wrap: anywhere; }
  .eyebrow { max-width: calc(100vw - 32px); white-space: normal; justify-content: center; text-align: center; }
  .hero-copy { width: calc(100vw - 24px); max-width: calc(100vw - 24px); margin-inline: auto; overflow-x: clip; }
  .hero-copy h1 { max-width: calc(100vw - 32px); margin-left: auto; margin-right: auto; font-size: clamp(2rem, 8.5vw, 2.45rem); line-height: 1.14; }
  .hero-lead { max-width: min(27ch, calc(100vw - 44px)); margin-left: auto; margin-right: auto; font-size: 1rem; line-height: 1.65; }
  .hero-actions { flex-direction: column; align-items: center; min-width: 0; width: calc(100vw - 24px); padding-inline: 0; }
  .hero-actions .btn { width: min(100%, 360px); min-width: 0; white-space: normal; text-align: center; padding-left: 12px; padding-right: 12px; }
  .trust-row { display: grid; justify-content: center; gap: 10px; }
  .hero-visual { min-height: 535px; }
  .hero-visual::before { inset: 34px 0; }
  .phone-frame { width: min(220px, 64vw); }
  .floating-chip { display: none; }
  .chip-health { left: 0; } .chip-reminder { right: 0; }
  .home-overview { padding: 24px; }
  .home-shortcuts { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card p { min-height: 0; }
  .benefit-section { padding: 24px; }
  .benefit-grid, .tutorial-grid { grid-template-columns: 1fr; }
  .feature-cta { align-items: stretch; flex-direction: column; padding: 22px; }
  .feature-cta h2 { font-size: clamp(1.6rem, 7vw, 2rem); line-height: 1.18; }
  .feature-cta .btn { width: 100%; white-space: normal; }
  .screen-showcase { padding: 22px; }
  .screen-stage { min-height: 520px; width: 100%; max-width: 100%; overflow: hidden; }
  .phone-frame-large { width: min(210px, 58vw); }
  .screen-arrow { width: 42px; height: 42px; }
  .screen-arrow-left { left: 6px; } .screen-arrow-right { right: 6px; }
  .screen-copy { width: 100%; max-width: 100%; overflow-x: clip; }
  .screen-copy h2 { max-width: min(11ch, 100%); margin-left: auto; margin-right: auto; font-size: clamp(1.8rem, 8vw, 2.35rem); line-height: 1.12; overflow-wrap: anywhere; }
  .screen-copy p { max-width: min(30ch, 100%); margin-left: auto; margin-right: auto; overflow-wrap: anywhere; }
  .screen-notes { max-width: 100%; overflow-wrap: anywhere; }
  .screen-thumbs { grid-template-columns: repeat(11, 76px); }
  .privacy-nav-card { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .permission-grid { grid-template-columns: 1fr; }
  .policy-card { padding: 20px; }
  .faq-layout, .faq-aside, .faq-accordion, .accordion-item { width: 100%; max-width: 100%; overflow-x: clip; }
  .faq-aside { display: block; }
  .faq-aside img { margin-bottom: 14px; }
  .faq-aside h2, .faq-aside p { max-width: 28ch; }
  .faq-aside .btn, .faq-aside .btn.w-100 { width: min(100%, 312px) !important; min-width: 0; white-space: normal; text-align: center; }
  .accordion-button { white-space: normal; overflow-wrap: anywhere; }
  .accordion-body { max-width: 30ch; overflow-wrap: anywhere; }
  .contact-cards article, .form-heading { align-items: flex-start; }
  .contact-form { padding: 22px; }
  .contact-form .d-flex { gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-footer nav { justify-content: flex-start; }
  .footer-meta { flex-direction: column; }
}

@media (max-width: 420px) {
  .site-container { width: calc(100% - 24px); padding-left: 0; padding-right: 0; }
  .navbar-brand img { width: 42px; height: 42px; }
  .brand-word { font-size: 1.25rem; }
  .hero-visual { min-height: 490px; }
  .phone-frame { width: min(195px, 62vw); border-radius: 30px; }
  .phone-frame img { border-radius: 24px; }
  .home-overview, .benefit-section, .screen-showcase { border-radius: var(--radius-xl); }
  .privacy-nav-card { grid-template-columns: 1fr; }
  .screen-stage { min-height: 485px; }
  .phone-frame-large { width: min(190px, 56vw); }
  .screen-arrow { top: auto; bottom: 6px; }
  .screen-arrow-left { left: 28%; } .screen-arrow-right { right: 28%; }
}

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