@font-face { font-family: "Montserrat"; src: url("./assets/fonts/montserrat-latin-600-normal.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Montserrat"; src: url("./assets/fonts/montserrat-latin-700-normal.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Montserrat"; src: url("./assets/fonts/montserrat-latin-800-normal.woff2") format("woff2"); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: "Source Sans 3"; src: url("./assets/fonts/source-sans-3-latin-400-normal.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Source Sans 3"; src: url("./assets/fonts/source-sans-3-latin-500-normal.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Source Sans 3"; src: url("./assets/fonts/source-sans-3-latin-600-normal.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Source Sans 3"; src: url("./assets/fonts/source-sans-3-latin-700-normal.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }

:root {
  --navy: #123b63;
  --navy-deep: #0a2b4b;
  --blue: #1769aa;
  --sun: #f3bf32;
  --sun-deep: #9a6700;
  --green: #18775a;
  --paper: #f6f3ec;
  --card: #ffffff;
  --ink: #17212b;
  --muted: #607080;
  --line: #dfe5e6;
  --shadow: 0 22px 60px rgba(10, 43, 75, 0.11);
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; min-height: 100vh; background: var(--paper); }
body.modal-open { overflow: hidden; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, strong, .brand { font-family: "Montserrat", sans-serif; }
svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
:focus-visible { outline: 3px solid rgba(23, 105, 170, 0.38); outline-offset: 3px; }

.site-header {
  width: min(calc(100% - 48px), 1240px);
  height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 30;
}

.brand, .footer-brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img, .footer-brand img { width: 48px; height: 48px; object-fit: contain; border-radius: 12px; }
.brand span, .footer-brand span { display: grid; line-height: 1; }
.brand strong, .footer-brand strong { color: var(--navy); font-size: 1.25rem; letter-spacing: .1em; }
.brand small, .footer-brand small { margin-top: 7px; color: #a45b35; font-size: .59rem; font-weight: 800; letter-spacing: .28em; }
.header-nav { display: flex; align-items: center; gap: 34px; margin-left: auto; }
.header-nav a { color: #425465; font-size: .94rem; font-weight: 700; transition: color .2s ease; }
.header-nav a:hover { color: var(--navy); }
.language-wrap { position: relative; }
.language-button {
  min-width: 94px;
  height: 48px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--navy);
  background: #fff;
  border: 1px solid rgba(18, 59, 99, .1);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(18, 59, 99, .08);
  font-weight: 800;
}
.language-button .chevron { width: 14px; transition: transform .2s ease; }
.language-button[aria-expanded="true"] .chevron { transform: rotate(180deg); }
.language-menu {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  width: 220px;
  padding: 7px;
  background: #fff;
  border: 1px solid rgba(18, 59, 99, .1);
  border-radius: 17px;
  box-shadow: var(--shadow);
}
.language-menu button { width: 100%; min-height: 54px; padding: 8px 10px; display: flex; align-items: center; justify-content: space-between; text-align: left; background: transparent; border: 0; border-radius: 11px; color: var(--ink); }
.language-menu button:hover, .language-menu button.active { background: #eef4f2; }
.language-menu button span { display: grid; }
.language-menu button strong { font-size: .9rem; }
.language-menu button small { color: var(--muted); }
.language-menu button svg { width: 17px; color: var(--green); }

main { width: min(calc(100% - 48px), 1240px); margin: 0 auto; }
.hero {
  min-height: 640px;
  padding: 72px 70px 54px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(430px, .78fr);
  gap: 74px;
  align-items: center;
  overflow: hidden;
  color: white;
  background: linear-gradient(120deg, var(--navy-deep) 0%, #123e67 60%, #1c658d 100%);
  border-radius: 34px;
  box-shadow: 0 28px 70px rgba(10, 43, 75, .18);
}
.hero::before { content: ""; position: absolute; width: 510px; height: 510px; top: -320px; right: 12%; border: 110px solid rgba(243, 191, 50, .12); border-radius: 50%; }
.hero::after { content: ""; position: absolute; width: 420px; height: 420px; left: -180px; bottom: -330px; border: 1px solid rgba(255, 255, 255, .18); border-radius: 50%; }
.hero-pattern { position: absolute; inset: 0; opacity: .14; background-image: radial-gradient(rgba(255,255,255,.42) .8px, transparent .8px); background-size: 22px 22px; mask-image: linear-gradient(90deg, black, transparent 48%); }
.hero-copy, .hero-visual { position: relative; z-index: 2; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; color: #ffd45b; font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow i { width: 26px; height: 3px; background: var(--sun); border-radius: 99px; }
.eyebrow.dark { color: var(--sun-deep); }
.hero h1 { max-width: 660px; margin-bottom: 22px; font-size: clamp(2.65rem, 4.7vw, 4.65rem); line-height: .98; letter-spacing: -.055em; }
.hero-lead { max-width: 590px; margin-bottom: 28px; color: #d7e5ef; font-size: 1.15rem; line-height: 1.65; }
.platform-status { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 25px; }
.status-icon { width: 42px; height: 42px; display: grid; place-items: center; color: var(--sun); background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; }
.platform-status > span:last-child { display: grid; }
.platform-status small { color: #9eb9cc; line-height: 1.1; }
.platform-status strong { margin-top: 5px; font-size: .95rem; }
.hero-actions { display: flex; align-items: center; gap: 23px; }
.primary-button {
  min-height: 68px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--navy-deep);
  background: linear-gradient(180deg, #ffd65d, var(--sun));
  border: 0;
  border-radius: 18px;
  box-shadow: 0 18px 35px rgba(243,191,50,.22);
  transition: transform .2s ease, box-shadow .2s ease;
}
.primary-button svg { width: 25px; height: 25px; }
.primary-button span { display: grid; text-align: left; }
.primary-button small { color: #6d4b00; font-size: .74rem; font-weight: 700; line-height: 1; }
.primary-button strong { margin-top: 5px; font-size: 1.02rem; line-height: 1; }
.primary-button:hover { transform: translateY(-2px); box-shadow: 0 22px 44px rgba(243,191,50,.28); }
.text-button { padding: 8px 0; display: inline-flex; align-items: center; gap: 9px; color: white; background: transparent; border: 0; font-weight: 700; }
.text-button svg { width: 18px; transition: transform .2s ease; }
.text-button:hover svg { transform: translateX(4px); }
.download-note { margin: 20px 0 0; display: flex; align-items: center; gap: 8px; color: #aec4d3; font-size: .83rem; }
.download-note svg { width: 16px; color: #7dd3ad; }

.hero-visual { min-height: 510px; display: grid; place-items: center; }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; }
.orbit-one { width: 475px; height: 475px; }
.orbit-two { width: 360px; height: 360px; border-color: rgba(243,191,50,.2); }
.phone { width: 260px; height: 525px; padding: 10px; position: relative; z-index: 2; background: #071d32; border: 1px solid rgba(255,255,255,.25); border-radius: 42px; box-shadow: 0 38px 65px rgba(0,0,0,.34), inset 0 0 0 1px rgba(255,255,255,.08); transform: rotate(3deg); }
.phone-speaker { position: absolute; z-index: 4; width: 76px; height: 20px; top: 15px; left: 50%; transform: translateX(-50%); background: #071d32; border-radius: 0 0 13px 13px; }
.phone-screen { height: 100%; padding: 17px 14px 13px; position: relative; overflow: hidden; color: var(--ink); background: #f6f3ec; border-radius: 33px; }
.phone-top { height: 34px; display: flex; align-items: center; justify-content: space-between; color: var(--navy); font-size: .64rem; font-weight: 700; }
.phone-top img { width: 27px; height: 27px; border-radius: 8px; object-fit: contain; }
.phone-welcome { display: grid; margin-top: 14px; }
.phone-welcome small { color: var(--sun-deep); font-size: .56rem; font-weight: 800; letter-spacing: .13em; }
.phone-welcome strong { margin-top: 6px; color: var(--navy-deep); font-size: 1.05rem; }
.balance-card { margin-top: 14px; padding: 17px; color: white; background: linear-gradient(135deg, var(--navy-deep), #1a6089); border-radius: 19px; }
.balance-card span { color: #bed1de; font-size: .6rem; }
.balance-card strong { display: block; margin-top: 7px; font-size: 1.45rem; }
.balance-card div { height: 5px; margin-top: 17px; overflow: hidden; background: rgba(255,255,255,.15); border-radius: 99px; }
.balance-card i { display: block; width: 68%; height: 100%; background: var(--sun); border-radius: inherit; }
.quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 11px; }
.quick-grid span { aspect-ratio: 1.2; display: grid; place-items: center; color: var(--navy); background: white; border-radius: 13px; box-shadow: 0 6px 16px rgba(18,59,99,.06); }
.quick-grid svg { width: 18px; }
.miner-card { margin-top: 11px; padding: 14px; display: grid; grid-template-columns: 42px 1fr; align-items: center; background: white; border-radius: 15px; }
.miner-card > span { width: 38px; height: 38px; display: flex; align-items: end; justify-content: center; gap: 3px; padding: 8px; background: #eef4f2; border-radius: 10px; }
.miner-card i { width: 5px; background: var(--green); border-radius: 3px; }
.miner-card i:nth-child(1) { height: 10px; }.miner-card i:nth-child(2) { height: 17px; }.miner-card i:nth-child(3) { height: 13px; }
.miner-card strong { color: var(--navy); font-size: .68rem; }
.miner-card small { grid-column: 2; color: var(--muted); font-size: .57rem; }
.phone-nav { position: absolute; left: 14px; right: 14px; bottom: 13px; height: 47px; display: flex; align-items: center; justify-content: space-around; background: white; border-radius: 15px; }
.phone-nav i { width: 17px; height: 17px; border: 2px solid #8ba0ae; border-radius: 5px; }
.phone-nav i:first-child { border-color: var(--navy); background: #eaf1f5; }
.float-card { position: absolute; z-index: 3; min-width: 185px; padding: 13px 15px; display: flex; align-items: center; gap: 11px; color: var(--ink); background: rgba(255,255,255,.94); border: 1px solid rgba(255,255,255,.55); border-radius: 17px; box-shadow: 0 18px 35px rgba(0,0,0,.18); backdrop-filter: blur(14px); animation: float 5s ease-in-out infinite; }
.float-card svg { width: 23px; color: var(--green); }
.float-card span { display: grid; }
.float-card small { color: var(--muted); font-size: .64rem; }
.float-card strong { margin-top: 3px; color: var(--navy); font-size: .76rem; }
.float-card-one { left: -16px; top: 105px; }.float-card-two { right: -8px; bottom: 105px; animation-delay: -2.3s; }
.pulse { width: 23px; height: 23px; display: block!important; position: relative; background: #dff4eb; border-radius: 50%; }
.pulse::after { content: ""; width: 8px; height: 8px; position: absolute; inset: 0; margin: auto; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 5px rgba(24,119,90,.1); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.trust-strip { margin: -1px 36px 0; min-height: 106px; padding: 21px 30px; position: relative; z-index: 5; display: grid; grid-template-columns: repeat(3, 1fr); background: #fff; border-radius: 0 0 25px 25px; box-shadow: var(--shadow); }
.trust-strip article { padding: 0 25px; display: flex; align-items: center; gap: 15px; border-right: 1px solid var(--line); }
.trust-strip article:last-child { border: 0; }
.trust-strip article > svg { width: 28px; height: 28px; flex: 0 0 auto; color: var(--green); }
.trust-strip article span { display: grid; }
.trust-strip strong { color: var(--navy-deep); font-size: .87rem; }
.trust-strip small { margin-top: 5px; color: var(--muted); font-size: .78rem; }

.section { padding: 110px 35px; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; margin-bottom: 42px; }
.section-heading h2, .install-copy h2 { margin-bottom: 0; color: var(--navy-deep); font-size: clamp(2rem, 3.6vw, 3.35rem); line-height: 1.08; letter-spacing: -.045em; }
.section-heading p { max-width: 510px; margin: 0; color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.benefit-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px; }
.benefit-grid article { min-height: 240px; padding: 30px; position: relative; overflow: hidden; background: white; border: 1px solid rgba(18,59,99,.07); border-radius: 24px; box-shadow: 0 14px 40px rgba(18,59,99,.07); }
.benefit-grid article:not(.benefit-main) { grid-column: 2; }
.benefit-grid .benefit-main { grid-row: span 2; min-height: 498px; padding: 40px; color: white; background: linear-gradient(150deg, var(--navy-deep), #174e78); }
.benefit-icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 36px; color: var(--navy); background: #eef4f2; border-radius: 16px; }
.benefit-main .benefit-icon { color: var(--sun); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.12); }
.benefit-grid article > small, .benefit-main div > small { color: var(--sun-deep); font-weight: 800; letter-spacing: .14em; }
.benefit-main div > small { color: var(--sun); }
.benefit-grid h3 { margin: 14px 0 10px; color: var(--navy-deep); font-size: 1.42rem; letter-spacing: -.025em; }
.benefit-main h3 { max-width: 390px; color: white; font-size: 2rem; }
.benefit-grid p { max-width: 470px; margin: 0; color: var(--muted); line-height: 1.65; }
.benefit-main p { color: #c5d7e3; }
.metric-lines { height: 100px; position: absolute; left: 40px; right: 40px; bottom: 34px; display: flex; align-items: end; gap: 11px; }
.metric-lines i { flex: 1; background: linear-gradient(180deg, var(--sun), rgba(243,191,50,.12)); border-radius: 7px 7px 2px 2px; }
.metric-lines i:nth-child(1) { height: 28%; }.metric-lines i:nth-child(2) { height: 51%; }.metric-lines i:nth-child(3) { height: 43%; }.metric-lines i:nth-child(4) { height: 72%; }.metric-lines i:nth-child(5) { height: 66%; }.metric-lines i:nth-child(6) { height: 94%; }

.install-section { margin: 0 0 85px; padding: 72px; display: grid; grid-template-columns: .88fr 1.12fr; gap: 85px; color: white; background: #0c3154; border-radius: 30px; box-shadow: 0 24px 60px rgba(10,43,75,.14); }
.install-copy h2 { color: white; }
.install-copy > p { margin: 20px 0 30px; color: #bfd2df; font-size: 1.03rem; line-height: 1.68; }
.platform-switch { width: max-content; padding: 5px; display: flex; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); border-radius: 15px; }
.platform-switch button { min-height: 48px; padding: 0 16px; display: flex; align-items: center; gap: 8px; color: #b9cfdd; background: transparent; border: 0; border-radius: 11px; font-weight: 700; }
.platform-switch button.active { color: var(--navy-deep); background: white; box-shadow: 0 7px 18px rgba(0,0,0,.12); }
.platform-switch svg { width: 19px; }
.platform-switch #iosTab svg { fill: currentColor; stroke: none; }
.secondary-download { min-height: 62px; margin-top: 25px; padding: 0 20px; display: inline-flex; align-items: center; gap: 11px; color: var(--navy-deep); background: var(--sun); border-radius: 16px; font-weight: 700; }
.secondary-download strong { margin-left: 5px; }
.step-list { margin: 0; padding: 0; display: grid; list-style: none; counter-reset: steps; }
.step-list li { min-height: 112px; padding: 22px 0 22px 78px; position: relative; display: flex; flex-direction: column; justify-content: center; border-bottom: 1px solid rgba(255,255,255,.11); counter-increment: steps; }
.step-list li:last-child { border: 0; }
.step-list li::before { content: counter(steps, decimal-leading-zero); width: 52px; height: 52px; position: absolute; left: 0; display: grid; place-items: center; color: var(--sun); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.11); border-radius: 15px; font-family: "Montserrat", sans-serif; font-size: .8rem; font-weight: 800; }
.step-list strong { font-size: 1rem; }
.step-list span { margin-top: 6px; color: #abc4d5; line-height: 1.5; }

footer { width: min(calc(100% - 48px), 1240px); min-height: 100px; margin: 0 auto; display: flex; align-items: center; gap: 34px; border-top: 1px solid var(--line); color: var(--muted); }
footer p { margin: 0 auto 0 0; }
footer > span { font-size: .88rem; }
.footer-brand img { width: 40px; height: 40px; }
.footer-brand strong { font-size: 1rem; }
.footer-brand small { font-size: .5rem; }

.mobile-download { display: none; }
.guide-modal { position: fixed; inset: 0; z-index: 100; padding: 20px; overflow: auto; }
.guide-modal[hidden] { display: none; }
.modal-backdrop { position: fixed; inset: 0; background: rgba(4,20,35,.68); border: 0; backdrop-filter: blur(7px); }
.modal-panel { width: min(100%, 620px); margin: 5vh auto; padding: 32px; position: relative; z-index: 1; color: var(--ink); background: var(--paper); border-radius: 28px; box-shadow: 0 28px 80px rgba(0,0,0,.28); }
.modal-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.modal-head > div > span { color: var(--sun-deep); font-size: .72rem; font-weight: 800; letter-spacing: .13em; }
.modal-head h2 { margin: 7px 0 0; color: var(--navy-deep); font-size: 1.8rem; letter-spacing: -.03em; }
.modal-close { width: 42px; height: 42px; flex: 0 0 auto; display: grid; place-items: center; color: var(--navy); background: white; border: 1px solid var(--line); border-radius: 13px; }
.modal-close svg { width: 19px; }
.modal-steps { margin: 25px 0; padding: 0; display: grid; gap: 10px; list-style: none; counter-reset: modalSteps; }
.modal-steps li { min-height: 76px; padding: 14px 15px 14px 65px; position: relative; display: flex; flex-direction: column; justify-content: center; background: white; border: 1px solid var(--line); border-radius: 16px; counter-increment: modalSteps; }
.modal-steps li::before { content: counter(modalSteps); width: 34px; height: 34px; position: absolute; left: 15px; display: grid; place-items: center; color: var(--navy-deep); background: var(--sun); border-radius: 10px; font-family: "Montserrat", sans-serif; font-size: .8rem; font-weight: 800; }
.modal-steps strong { color: var(--navy-deep); font-size: .9rem; }
.modal-steps span { margin-top: 4px; color: var(--muted); font-size: .87rem; line-height: 1.4; }
.modal-download { width: 100%; }

@media (max-width: 1040px) {
  .hero { padding: 60px 44px; grid-template-columns: 1fr 390px; gap: 30px; }
  .float-card-one { left: -5px; }.float-card-two { right: -4px; }
  .install-section { padding: 58px 48px; gap: 52px; }
}

@media (max-width: 820px) {
  .site-header, main, footer { width: min(calc(100% - 28px), 1240px); }
  .site-header { height: 76px; }
  .header-nav { display: none; }
  .language-button { width: 42px; height: 42px; min-width: 42px; padding: 0; border-radius: 50%; }
  .language-button span, .language-button .chevron { display: none; }
  .language-button svg { width: 19px; }
  .hero { min-height: auto; padding: 52px 34px 40px; grid-template-columns: 1fr; gap: 30px; border-radius: 27px; }
  .hero h1 { font-size: clamp(2.45rem, 10vw, 4.2rem); }
  .hero-visual { min-height: 480px; }
  .phone { transform: rotate(2deg) scale(.92); }
  .trust-strip { margin: -1px 18px 0; grid-template-columns: 1fr; padding: 10px 22px; }
  .trust-strip article { min-height: 82px; padding: 13px 6px; border-right: 0; border-bottom: 1px solid var(--line); }
  .section { padding: 82px 10px; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .benefit-grid .benefit-main { grid-column: 1 / -1; grid-row: auto; min-height: 430px; }
  .benefit-grid article:not(.benefit-main) { grid-column: auto; }
  .install-section { margin-bottom: 70px; padding: 48px 34px; grid-template-columns: 1fr; gap: 38px; }
}

@media (max-width: 560px) {
  body { padding-bottom: 82px; }
  .site-header, main, footer { width: min(calc(100% - 20px), 1240px); }
  .site-header { height: 68px; }
  .brand img { width: 42px; height: 42px; border-radius: 11px; }
  .brand strong { font-size: 1.08rem; }.brand small { font-size: .5rem; }
  .hero { padding: 40px 20px 29px; border-radius: 24px; }
  .hero h1 { margin-bottom: 17px; font-size: 2.38rem; }
  .hero-lead { margin-bottom: 22px; font-size: 1rem; line-height: 1.55; }
  .platform-status { margin-bottom: 20px; }
  .hero-actions .primary-button { width: 100%; }
  .hero-actions .text-button { display: none; }
  .download-note { justify-content: center; }
  .hero-visual { min-height: 405px; margin: 0 -12px; }
  .phone { transform: rotate(2deg) scale(.77); }
  .orbit-one { width: 360px; height: 360px; }.orbit-two { width: 285px; height: 285px; }
  .float-card { min-width: 154px; padding: 10px 12px; }
  .float-card-one { top: 87px; left: 0; }.float-card-two { right: 0; bottom: 75px; }
  .trust-strip { margin: -1px 10px 0; border-radius: 0 0 20px 20px; }
  .trust-strip article:nth-child(3) { display: none; }
  .section { padding: 68px 4px; }
  .section-heading { margin-bottom: 28px; }
  .section-heading h2, .install-copy h2 { font-size: 2rem; }
  .section-heading p { font-size: .97rem; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-grid .benefit-main { min-height: 390px; padding: 28px; }
  .benefit-grid article { min-height: 220px; padding: 25px; }
  .benefit-grid article:not(.benefit-main) { grid-column: 1; }
  .benefit-icon { margin-bottom: 27px; }
  .metric-lines { left: 28px; right: 28px; }
  .install-section { margin: 0 0 55px; padding: 38px 20px; border-radius: 24px; }
  .platform-switch { width: 100%; }
  .platform-switch button { flex: 1; justify-content: center; padding: 0 8px; font-size: .85rem; }
  .secondary-download { width: 100%; justify-content: center; }
  .step-list li { padding-left: 65px; }
  footer { min-height: 140px; padding: 24px 0; flex-wrap: wrap; gap: 15px; }
  footer p { width: 100%; order: 3; }
  .mobile-download { height: 62px; position: fixed; z-index: 40; left: 10px; right: 10px; bottom: max(10px, env(safe-area-inset-bottom)); display: flex; align-items: center; justify-content: center; gap: 12px; color: var(--navy-deep); background: var(--sun); border-radius: 18px; box-shadow: 0 16px 38px rgba(10,43,75,.25); opacity: 0; pointer-events: none; transform: translateY(calc(100% + 24px)); transition: opacity .22s ease, transform .22s ease; }
  .mobile-download.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-download span { display: grid; }.mobile-download small { color: #725000; font-size: .67rem; font-weight: 700; line-height: 1; }.mobile-download strong { margin-top: 4px; font-size: .92rem; line-height: 1; }
  .guide-modal { padding: 10px; }
  .modal-panel { margin: 2vh auto; padding: 22px 16px; border-radius: 23px; }
  .modal-head h2 { font-size: 1.42rem; }
}

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