@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/montserrat-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/montserrat-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --navy: #09197d;
  --navy-950: #051052;
  --navy-900: #071469;
  --orange: #ffb648;
  --yellow: #febd00;
  --cyan: #86cacc;
  --cyan-strong: #00a0a3;
  --green: #2edc78;
  --ink: #373737;
  --muted: #77798a;
  --surface: #fff;
  --soft: #f7f8ff;
  --line: rgba(9, 25, 125, .14);
  --shadow: 0 32px 80px rgba(4, 15, 80, .16);
  --shell: min(1440px, calc(100vw - clamp(40px, 8vw, 144px)));
  --reading: min(820px, calc(100vw - 40px));
  --section: clamp(92px, 11vw, 180px);
  --radius-s: 18px;
  --radius-m: 30px;
  --radius-l: 56px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--surface);
  font-family: Montserrat, Arial, sans-serif;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .18em; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { color: var(--navy); background: var(--orange); }

.shell { width: var(--shell); margin-inline: auto; }
.shell--wide { width: min(1600px, calc(100vw - 40px)); }
.shell--reading { width: var(--reading); }
.section { padding-block: var(--section); }
.section--soft { background: var(--soft); }
.section--navy { color: #fff; background: var(--navy); }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--navy);
  background: #fff;
  border-radius: 10px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  padding-block: 20px;
  pointer-events: none;
  transition: padding .3s var(--ease), transform .3s var(--ease);
}
.site-header.is-hidden { transform: translateY(-120%); }
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 10px 12px 10px 22px;
  color: var(--navy);
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(5, 16, 82, .12);
  backdrop-filter: blur(22px);
  pointer-events: auto;
}
.site-header.is-scrolled { padding-block: 10px; }
.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  text-decoration: none;
}
.brand-mark { display: grid; place-items: center; width: 31px; height: 36px; color: var(--orange); }
.brand-mark svg { width: 100%; height: 100%; }
.site-brand__word { font-size: 21px; font-weight: 700; letter-spacing: .08em; line-height: 1; }
.site-brand__word i { font-style: normal; }
.primary-navigation { display: flex; align-items: center; gap: clamp(20px, 2vw, 34px); }
.primary-navigation .menu { display: flex; align-items: center; gap: clamp(18px, 2vw, 32px); margin: 0; padding: 0; list-style: none; }
.primary-navigation .menu a { position: relative; font-size: 14px; font-weight: 650; text-decoration: none; }
.primary-navigation .menu a::after { position: absolute; right: 0; bottom: -7px; left: 0; height: 2px; content: ''; background: var(--orange); transform: scaleX(0); transform-origin: right; transition: transform .25s var(--ease); }
.primary-navigation .menu a:hover::after,
.primary-navigation .current-menu-item > a::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; align-items: center; gap: 10px; padding: 10px; background: none; border: 0; cursor: pointer; }
.menu-toggle__label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.menu-toggle__lines { position: relative; width: 26px; height: 18px; }
.menu-toggle__lines i { position: absolute; right: 0; width: 26px; height: 2px; background: currentColor; transition: transform .25s, top .25s; }
.menu-toggle__lines i:first-child { top: 4px; }
.menu-toggle__lines i:last-child { top: 13px; width: 18px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  padding: 14px 24px;
  color: var(--navy);
  background: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 17px;
  box-shadow: 0 16px 34px rgba(255, 182, 72, .22);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
}
.button svg, .text-link svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s var(--ease); }
.button:hover { transform: translateY(-3px); box-shadow: 0 20px 42px rgba(255, 182, 72, .3); }
.button:hover svg, .text-link:hover svg { transform: translateX(4px); }
.button--header { min-height: 48px; padding: 11px 18px; border-radius: 14px; }
.button--light { color: var(--navy); background: #fff; border-color: #fff; box-shadow: none; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); font-size: 14px; font-weight: 750; text-decoration: none; }
.section--navy .text-link, .feature-detail__hero .text-link { color: #fff; }

.section-label {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 22px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.section-label span { color: var(--orange); }
.section-label em { margin-left: 8px; padding: 5px 9px; color: var(--navy); background: var(--orange); border-radius: 99px; font-size: 9px; font-style: normal; letter-spacing: .08em; }
.section-label--light, .section--navy .section-label, .feature-detail__hero .section-label { color: rgba(255,255,255,.68); }
.section-heading { margin-bottom: clamp(52px, 7vw, 96px); }
.section-heading--split { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr); align-items: end; gap: clamp(50px, 9vw, 150px); }
.section-heading h2,
.app-window h2,
.budget-story h2,
.trust-section h2,
.home-faq h2,
.download-cta h2 {
  max-width: 880px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(42px, 6.2vw, 92px);
  font-weight: 780;
  letter-spacing: -.055em;
  line-height: .98;
}
.section-heading > p, .section-heading > a { margin-bottom: 8px; }
.section-heading > p { max-width: 560px; color: var(--muted); }

.hero {
  position: relative;
  min-height: min(1040px, 100svh);
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}
.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: '';
  background: linear-gradient(90deg, rgba(5,16,82,.42), rgba(9,25,125,.08) 54%, rgba(9,25,125,.25));
}
.hero__media { position: absolute; inset: 0; opacity: .42; }
.hero__media video { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: screen; }
.hero__media-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(134,202,204,.11) 1px, transparent 1px), linear-gradient(90deg, rgba(134,202,204,.11) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(to right, transparent, #000 45%, #000);
}
.hero-signal { position: absolute; z-index: 2; inset: auto 0 4%; width: 100%; height: 72%; pointer-events: none; }
.hero-signal path { fill: none; vector-effect: non-scaling-stroke; }
.hero-signal__base { stroke: rgba(134,202,204,.25); stroke-width: 2; }
.hero-signal__live { stroke: var(--yellow); stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 10px rgba(254,189,0,.35)); }
.hero-signal circle { fill: var(--yellow); filter: drop-shadow(0 0 16px var(--yellow)); }
.hero__inner { position: relative; z-index: 4; display: grid; grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr); align-items: center; gap: 5vw; min-height: min(960px, 100svh); padding-top: 130px; padding-bottom: 96px; }
.hero__copy { position: relative; z-index: 4; max-width: 760px; }
.hero__kicker { display: flex; align-items: center; gap: 12px; margin: 0 0 24px; color: rgba(255,255,255,.72); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.hero__kicker span { width: 34px; height: 2px; background: var(--orange); }
.hero h1 { max-width: 820px; margin: 0; color: #fff; font-size: clamp(54px, 7.1vw, 110px); font-weight: 800; letter-spacing: -.065em; line-height: .91; text-wrap: balance; }
.hero__lead { max-width: 660px; margin: 30px 0 34px; color: rgba(255,255,255,.78); font-size: clamp(17px, 1.5vw, 22px); line-height: 1.5; }
.store-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.store-button { display: inline-flex; align-items: center; gap: 13px; min-width: 184px; min-height: 65px; padding: 10px 17px; color: #fff; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.26); border-radius: 16px; text-decoration: none; backdrop-filter: blur(16px); transition: background .25s, transform .25s var(--ease), border-color .25s; }
.store-button:hover { background: rgba(255,255,255,.17); border-color: rgba(255,255,255,.55); transform: translateY(-3px); }
.store-button__icon { display: grid; place-items: center; width: 30px; height: 34px; }
.store-button__icon svg { width: 30px; height: 30px; }
.store-button small, .store-button strong { display: block; line-height: 1.1; }
.store-button small { margin-bottom: 4px; color: rgba(255,255,255,.66); font-size: 9px; font-weight: 650; letter-spacing: .07em; text-transform: uppercase; }
.store-button strong { font-size: 15px; }
.hero__explore { display: inline-flex; align-items: center; gap: 10px; margin-top: 28px; color: rgba(255,255,255,.75); font-size: 12px; font-weight: 650; text-decoration: none; }
.hero__explore span { display: grid; place-items: center; width: 28px; height: 28px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; }
.hero__foot { position: absolute; z-index: 5; right: 0; bottom: 26px; left: 0; display: flex; gap: clamp(24px, 5vw, 70px); color: rgba(255,255,255,.58); font-size: 10px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.hero__foot span { display: flex; align-items: center; gap: 10px; }
.hero__foot span::before { width: 6px; height: 6px; content: ''; background: var(--green); border-radius: 50%; box-shadow: 0 0 14px var(--green); }

.hero-product { position: relative; width: min(100%, 670px); height: 760px; margin-inline: auto; perspective: 1200px; }
.hero-product .phone-stage { position: absolute; z-index: 3; top: 45px; left: 50%; width: 395px; transform: translateX(-47%) rotate(3deg); }
.hero-product__orbit { position: absolute; border: 1px solid rgba(134,202,204,.3); border-radius: 50%; }
.hero-product__orbit--one { inset: 8% -4% 4% 5%; transform: rotate(-14deg); }
.hero-product__orbit--two { inset: 15% 7% 12% -3%; border-color: rgba(255,182,72,.2); transform: rotate(20deg); }
.hero-product__card { position: absolute; z-index: 5; padding: 18px 20px; color: var(--ink); background: rgba(255,255,255,.94); border: 1px solid rgba(255,255,255,.6); border-radius: 19px; box-shadow: 0 24px 70px rgba(0,0,40,.22); backdrop-filter: blur(18px); }
.hero-product__card span, .hero-product__card small { display: block; color: var(--muted); font-size: 10px; font-weight: 650; letter-spacing: .07em; text-transform: uppercase; }
.hero-product__card strong { display: block; color: var(--navy); font-size: 20px; }
.hero-product__card--balance { z-index: 6; top: 150px; left: 0; min-width: 205px; transform: rotate(-5deg); }
.hero-product__card--balance i { position: absolute; top: 16px; right: 16px; padding: 5px 8px; color: var(--navy); background: var(--green); border-radius: 99px; font-size: 10px; font-style: normal; font-weight: 800; }
.hero-product__card--signal { right: -10px; bottom: 115px; min-width: 225px; transform: rotate(4deg); }
.status-dot { float: left; width: 10px; height: 10px; margin: 8px 10px 0 0; background: var(--green); border-radius: 50%; box-shadow: 0 0 14px var(--green); }

.phone-stage { position: relative; transform-style: preserve-3d; transition: transform .25s var(--ease); }
.phone-stage__glow { position: absolute; inset: 8% -16% -7%; background: radial-gradient(circle, rgba(134,202,204,.3), rgba(9,25,125,0) 68%); filter: blur(8px); }
.device-frame { position: relative; overflow: hidden; padding: 10px; background: linear-gradient(135deg, #050505, #2f3034 45%, #020203 80%); border: 2px solid #55565a; border-radius: 58px; box-shadow: 0 52px 100px rgba(0,0,30,.45), inset 0 0 0 2px rgba(255,255,255,.13); }
.device-frame::before { position: absolute; z-index: 3; inset: 9px; content: ''; border: 1px solid rgba(255,255,255,.18); border-radius: 48px; pointer-events: none; }
.device-frame__speaker { position: absolute; z-index: 4; top: 21px; left: 50%; width: 92px; height: 25px; background: #020203; border-radius: 99px; transform: translateX(-50%); }
.device-frame img { width: 100%; height: auto; aspect-ratio: 1170 / 2532; object-fit: cover; border-radius: 48px; }

.numbers-band { color: var(--navy); background: var(--orange); }
.numbers-band__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.number-stat { min-height: 210px; padding: 36px clamp(20px, 3vw, 52px); border-right: 1px solid rgba(9,25,125,.22); }
.number-stat:last-child { border-right: 0; }
.number-stat strong { display: flex; align-items: baseline; gap: 12px; font-size: clamp(64px, 7vw, 108px); font-weight: 800; letter-spacing: -.07em; line-height: .9; }
.number-stat em { font-size: clamp(18px, 2vw, 28px); font-style: normal; font-weight: 720; letter-spacing: -.03em; }
.number-stat p { max-width: 240px; margin: 18px 0 0; font-size: 13px; font-weight: 650; line-height: 1.4; }

.journey { overflow: hidden; }
.journey-track { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 5vw; padding-top: 60px; }
.journey-track__line { position: absolute; top: 77px; right: calc(16.66% - 10px); left: calc(16.66% - 10px); height: 2px; overflow: hidden; background: rgba(9,25,125,.13); }
.journey-track__line span { display: block; width: 100%; height: 100%; background: var(--orange); transform: scaleX(0); transform-origin: left; }
.journey-step { position: relative; padding-top: 60px; }
.journey-step__number { position: absolute; z-index: 3; top: -22px; left: 50%; color: var(--navy); font-size: 12px; font-weight: 800; letter-spacing: .08em; transform: translateX(-50%); }
.journey-step__node { position: absolute; z-index: 2; top: 8px; left: 50%; width: 20px; height: 20px; background: var(--surface); border: 5px solid var(--orange); border-radius: 50%; box-shadow: 0 0 0 8px rgba(255,182,72,.13); transform: translateX(-50%); }
.journey-step h3 { margin: 0 0 18px; color: var(--navy); font-size: clamp(28px, 3vw, 42px); letter-spacing: -.04em; }
.journey-step p { margin: 0; color: var(--muted); }

.app-window { position: relative; overflow: hidden; border-radius: var(--radius-l) var(--radius-l) 0 0; }
.app-window::after { position: absolute; right: -12vw; bottom: -30vw; width: 55vw; height: 55vw; content: ''; border: 1px solid rgba(134,202,204,.2); border-radius: 50%; box-shadow: 0 0 0 8vw rgba(134,202,204,.04), 0 0 0 16vw rgba(134,202,204,.025); }
.app-window__grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(420px, 1fr) minmax(360px, .8fr); align-items: center; gap: clamp(70px, 9vw, 140px); }
.app-window__visual { position: relative; min-height: 760px; }
.app-window__halo { position: absolute; inset: 10% -10% 0; background: radial-gradient(circle, rgba(134,202,204,.24), transparent 62%); }
.phone-stage--window { width: min(420px, 80%); margin: 0 auto; transform: rotate(-3deg); }
.app-window__copy h2 { color: #fff; }
.app-window__copy h2 { max-width: 100%; font-size: clamp(40px, 3.8vw, 60px); letter-spacing: -.045em; line-height: 1.03; }
.app-window__copy > p:not(.section-label) { max-width: 620px; color: rgba(255,255,255,.7); font-size: 18px; }
.signal-list { display: grid; gap: 12px; margin: 32px 0 40px; padding: 0; list-style: none; }
.signal-list li { display: flex; align-items: center; gap: 13px; font-size: 14px; font-weight: 650; }
.signal-list li::before { width: 18px; height: 4px; content: ''; background: var(--orange); border-radius: 99px; }
.transaction-chip { position: absolute; z-index: 4; display: grid; grid-template-columns: 34px 1fr; min-width: 245px; padding: 14px 17px; color: var(--ink); background: #fff; border-radius: 18px; box-shadow: var(--shadow); }
.transaction-chip i { grid-row: span 2; display: grid; place-items: center; width: 29px; height: 29px; border-radius: 9px; font-style: normal; font-weight: 800; }
.transaction-chip span { color: var(--muted); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.transaction-chip strong { color: var(--navy); font-size: 17px; }
.transaction-chip--out { top: 26%; left: -4%; transform: rotate(-4deg); }
.transaction-chip--out i { color: var(--navy); background: var(--orange); }
.transaction-chip--in { right: -6%; bottom: 22%; transform: rotate(4deg); }
.transaction-chip--in i { color: var(--navy); background: var(--green); }

.feature-showcase { border-top: 0; }
.feature-row { display: grid; grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr); align-items: center; min-height: 720px; border-bottom: 0; }
.feature-row:nth-child(even) .feature-row__copy { order: 2; padding-left: clamp(50px, 8vw, 120px); }
.feature-row__copy { max-width: 600px; padding: 60px 5vw 60px 0; }
.feature-row__number { display: flex; align-items: center; gap: 12px; color: var(--orange); font-size: 13px; font-weight: 800; letter-spacing: .1em; }
.feature-row__number span { padding: 5px 9px; color: var(--navy); background: var(--orange); border-radius: 99px; font-size: 9px; }
.feature-row h3 { max-width: 700px; margin: 22px 0; color: var(--navy); font-size: clamp(38px, 5vw, 68px); letter-spacing: -.055em; line-height: .98; }
.feature-row h3 a { text-decoration: none; }
.feature-row__copy > p { color: var(--muted); }
.feature-row__visual { position: relative; display: grid; place-items: center; min-height: 650px; overflow: hidden; background: var(--navy); border-radius: 36px; }
.feature-row__visual::before, .feature-row__visual::after { position: absolute; content: ''; border-radius: 50%; }
.feature-row__visual::before { width: 520px; height: 520px; border: 1px solid rgba(134,202,204,.32); box-shadow: 0 0 0 70px rgba(134,202,204,.04), 0 0 0 140px rgba(134,202,204,.025); }
.feature-row__visual::after { top: 13%; right: 12%; width: 18px; height: 18px; background: var(--orange); box-shadow: 0 0 0 14px rgba(255,182,72,.15); }
.feature-row__visual--2 { background: #fff7df; }
.feature-row__visual--2::before { border-color: rgba(9,25,125,.16); box-shadow: 0 0 0 70px rgba(9,25,125,.025), 0 0 0 140px rgba(9,25,125,.015); }
.feature-row__visual--3 { background: var(--cyan); }
.feature-row__visual--4 { background: var(--navy-950); }
.phone-stage--feature { z-index: 2; width: 340px; transform: translateY(110px) rotate(4deg); }
.feature-row:nth-child(even) .phone-stage--feature { transform: translateY(110px) rotate(-4deg); }

.budget-story { overflow: hidden; }
.budget-story__grid { display: grid; grid-template-columns: minmax(360px, .85fr) minmax(440px, 1.15fr); align-items: center; gap: clamp(70px, 10vw, 170px); }
.budget-story h2 { max-width: 740px; font-size: clamp(44px, 6vw, 86px); }
.budget-story__copy > p:not(.section-label) { max-width: 630px; color: var(--muted); }
.budget-story__visual { position: relative; min-height: 760px; }
.phone-stage--budget { width: 410px; margin-inline: auto; transform: rotate(3deg); }
.budget-scale { margin-top: 48px; padding: 28px; background: #fff; border-radius: 24px; box-shadow: 0 24px 60px rgba(9,25,125,.08); }
.budget-scale__labels, .budget-scale > p { display: flex; align-items: center; justify-content: space-between; gap: 18px; color: var(--muted); font-size: 11px; font-weight: 700; }
.budget-scale__labels strong { color: var(--navy); text-transform: uppercase; letter-spacing: .08em; }
.budget-scale__track { position: relative; display: flex; align-items: center; height: 28px; margin: 15px 0 20px; }
.budget-scale__track::before { position: absolute; inset: 11px 0; content: ''; background: linear-gradient(90deg, var(--cyan) 0 45%, #fff4c8 45% 78%, #ffdde2 78%); border-radius: 99px; }
.budget-scale__track b { position: absolute; z-index: 2; left: var(--progress); width: 22px; height: 22px; background: #fff; border: 6px solid var(--cyan-strong); border-radius: 50%; box-shadow: 0 3px 10px rgba(0,0,0,.15); transform: translateX(-50%); }
.budget-scale__track span { position: relative; z-index: 1; width: 15px; height: 15px; margin-left: auto; background: #fff4c8; border-radius: 50%; }
.budget-scale > p { justify-content: flex-start; margin: 0; }
.budget-scale > p span { width: 8px; height: 8px; background: var(--cyan-strong); border-radius: 50%; }
.budget-scale > p strong { margin-left: auto; color: var(--navy); }
.care-message { position: absolute; z-index: 4; right: -2%; bottom: 16%; display: flex; align-items: center; gap: 13px; max-width: 310px; padding: 17px 20px; background: #fff; border-radius: 19px; box-shadow: var(--shadow); transform: rotate(-3deg); }
.care-message > span { display: grid; place-items: center; flex: 0 0 31px; width: 31px; height: 31px; color: var(--navy); background: var(--green); border-radius: 50%; font-weight: 800; }
.care-message p, .care-message strong { display: block; margin: 0; }
.care-message p { color: var(--muted); font-size: 11px; line-height: 1.45; }
.care-message strong { color: var(--navy); font-size: 14px; }

.trust-section { color: #fff; background: var(--navy-950); }
.trust-section .section-label { color: rgba(255,255,255,.68); }
.trust-section__grid { display: grid; grid-template-columns: minmax(330px, .72fr) minmax(0, 1.28fr); gap: clamp(70px, 10vw, 170px); }
.trust-section h2 { position: sticky; top: 130px; color: #fff; font-size: clamp(46px, 6vw, 84px); }
.trust-section__lead { max-width: 900px; margin: 0 0 60px; color: rgba(255,255,255,.74); font-size: clamp(19px, 2vw, 27px); line-height: 1.5; }
.trust-cards { display: grid; }
.trust-cards article { display: grid; grid-template-columns: 60px minmax(180px, .65fr) 1fr; gap: 28px; align-items: start; padding: 38px 0; border-top: 1px solid rgba(255,255,255,.17); }
.trust-cards article:last-child { border-bottom: 1px solid rgba(255,255,255,.17); }
.trust-cards span { color: var(--orange); font-size: 12px; font-weight: 800; }
.trust-cards h3 { margin: 0; color: #fff; font-size: clamp(22px, 2.2vw, 32px); letter-spacing: -.035em; }
.trust-cards p { margin: 0; color: rgba(255,255,255,.6); }

.home-faq { border-radius: 0 0 var(--radius-l) var(--radius-l); }
.home-faq__grid { display: grid; grid-template-columns: minmax(330px, .72fr) minmax(0, 1.28fr); gap: clamp(70px, 10vw, 170px); }
.home-faq h2 { color: #fff; }
.home-faq__heading > p:not(.section-label) { color: rgba(255,255,255,.64); }
.home-faq .faq-item button { color: #fff; }
.faq-list { border-top: 1px solid rgba(255,255,255,.2); }
.faq-item { border-bottom: 1px solid rgba(255,255,255,.2); }
.faq-item h2, .faq-item h3 { margin: 0; }
.faq-item button { display: flex; align-items: center; justify-content: space-between; gap: 30px; width: 100%; padding: 28px 0; color: inherit; background: none; border: 0; text-align: left; cursor: pointer; }
.faq-item button span { font-size: clamp(18px, 2vw, 25px); font-weight: 680; letter-spacing: -.025em; }
.faq-item button i { display: grid; place-items: center; flex: 0 0 40px; width: 40px; height: 40px; color: var(--navy); background: var(--orange); border-radius: 50%; transition: transform .3s var(--ease); }
.faq-item button i svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.faq-item button[aria-expanded="true"] i { transform: rotate(45deg); }
.faq-item__answer { overflow: hidden; }
.faq-item__answer > div { max-width: 790px; padding: 0 70px 30px 0; color: rgba(255,255,255,.68); }
.faq-item__answer p:first-child { margin-top: 0; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { overflow: hidden; background: var(--soft); border-radius: 28px; transition: transform .3s var(--ease), box-shadow .3s; }
.post-card:hover { transform: translateY(-8px); box-shadow: 0 26px 60px rgba(9,25,125,.12); }
.post-card__media { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--navy); text-decoration: none; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.035); }
.post-card__placeholder { position: relative; display: grid; place-items: center; width: 100%; height: 100%; color: var(--orange); }
.post-card__placeholder::before { position: absolute; width: 180px; height: 180px; content: ''; border: 1px solid rgba(134,202,204,.3); border-radius: 50%; box-shadow: 0 0 0 45px rgba(134,202,204,.05), 0 0 0 90px rgba(134,202,204,.03); }
.post-card__placeholder .brand-mark { position: relative; width: 78px; height: 90px; }
.post-card__body { padding: 30px; }
.post-card__meta { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.post-card h2, .post-card h3 { margin: 13px 0; color: var(--navy); font-size: clamp(22px, 2.1vw, 31px); letter-spacing: -.04em; line-height: 1.12; }
.post-card h2 a, .post-card h3 a { text-decoration: none; }
.post-card__body > p:not(.post-card__meta) { color: var(--muted); font-size: 14px; }

.download-cta { position: relative; overflow: hidden; padding-block: clamp(88px, 10vw, 160px); color: #fff; background: var(--navy); }
.download-cta__inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 50px; }
.download-cta h2 { max-width: 980px; color: #fff; }
.download-cta p:not(.section-label) { max-width: 700px; color: rgba(255,255,255,.67); }
.download-cta__signal { position: absolute; inset: 0; opacity: .55; }
.download-cta__signal::before { position: absolute; top: 52%; left: -4%; width: 78%; height: 4px; content: ''; background: var(--orange); }
.download-cta__signal::after { position: absolute; top: 18%; right: 8%; width: 26vw; height: 26vw; content: ''; border: 1px solid rgba(134,202,204,.25); border-radius: 50%; box-shadow: 0 0 0 7vw rgba(134,202,204,.04), 0 0 0 14vw rgba(134,202,204,.025); }
.download-cta__signal i { position: absolute; z-index: 1; top: calc(52% - 8px); width: 20px; height: 20px; background: var(--orange); border: 4px solid var(--navy); border-radius: 50%; box-shadow: 0 0 0 8px rgba(255,182,72,.17); }
.download-cta__signal i:nth-child(1) { left: 20%; }.download-cta__signal i:nth-child(2) { left: 46%; }.download-cta__signal i:nth-child(3) { left: 72%; }

.site-footer { position: relative; padding: 90px 0 28px; color: #fff; background: var(--navy-950); }
.site-footer__inner { display: grid; grid-template-columns: minmax(300px, .9fr) minmax(420px, 1.1fr); gap: 8vw; }
.site-brand--footer { color: #fff; }
.site-footer__brand > p { max-width: 470px; color: rgba(255,255,255,.56); }
.store-buttons--footer { margin-top: 30px; }
.store-buttons--footer .store-button { min-width: 165px; min-height: 58px; }
.site-footer__nav { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.site-footer__nav h2 { margin: 0 0 20px; color: rgba(255,255,255,.45); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.site-footer__nav .menu { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.site-footer__nav a { color: rgba(255,255,255,.75); font-size: 13px; text-decoration: none; }
.menu--legal-fallback { margin-top: 10px !important; }
.site-footer__bottom { display: flex; align-items: center; gap: 35px; margin-top: 70px; padding-top: 25px; color: rgba(255,255,255,.4); border-top: 1px solid rgba(255,255,255,.12); font-size: 10px; }
.site-footer__bottom a { text-decoration: none; }
.back-to-top { margin-left: auto; }
.site-toast { position: fixed; z-index: 2000; right: 24px; bottom: 24px; max-width: 360px; padding: 15px 18px; color: var(--navy); background: var(--orange); border-radius: 15px; box-shadow: var(--shadow); font-size: 13px; font-weight: 700; opacity: 0; pointer-events: none; transform: translateY(20px); transition: opacity .25s, transform .25s var(--ease); }
.site-toast.is-visible { opacity: 1; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal--delay { transition-delay: .16s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Inner pages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(190px, 20vw, 300px) 0 clamp(90px, 10vw, 150px);
  color: #fff;
  background: var(--navy);
}
.page-hero::before { position: absolute; top: -30%; right: -12%; width: 52vw; height: 52vw; content: ''; border: 1px solid rgba(134,202,204,.25); border-radius: 50%; box-shadow: 0 0 0 8vw rgba(134,202,204,.04), 0 0 0 16vw rgba(134,202,204,.025); }
.page-hero::after { position: absolute; right: 0; bottom: 18%; width: 44%; height: 4px; content: ''; background: var(--orange); box-shadow: -34vw 0 0 var(--orange); transform: translateX(12%); }
.page-hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr); align-items: end; gap: clamp(60px, 9vw, 150px); }
.page-hero h1, .legal-hero h1, .article-hero h1, .about-hero h1, .download-page h1, .error-page h1 { margin: 0; font-size: clamp(52px, 7vw, 112px); font-weight: 790; letter-spacing: -.065em; line-height: .93; text-wrap: balance; }
.page-hero h1, .legal-hero h1, .download-page h1 { color: #fff; }
.page-hero .section-label, .legal-hero .section-label { color: rgba(255,255,255,.72); }
.page-hero--features h1, .download-page h1 { letter-spacing: -.052em; line-height: 1.02; }
.page-hero__grid > p { position: relative; z-index: 1; max-width: 580px; margin: 0 0 5px; color: rgba(255,255,255,.7); font-size: clamp(17px, 1.6vw, 22px); }
.page-hero--compact { padding-bottom: 90px; }
.page-hero--compact::after { display: none; }

.archive-features { padding-top: clamp(70px, 8vw, 120px); }
.archive-features__grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.archive-feature-card { min-height: 420px; padding: clamp(34px, 5vw, 72px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.archive-feature-card:nth-child(3n+2) { background: var(--soft); }
.archive-feature-card__number { color: var(--orange); font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.archive-feature-card h2 { max-width: 600px; margin: 50px 0 22px; color: var(--navy); font-size: clamp(32px, 4vw, 58px); letter-spacing: -.05em; line-height: 1; }
.archive-feature-card h2 a { text-decoration: none; }
.archive-feature-card > p:not(.archive-feature-card__number) { max-width: 590px; color: var(--muted); }
.archive-feature-card .text-link { margin-top: 18px; }

/* Feature detail */
.feature-detail__hero { position: relative; min-height: 880px; overflow: hidden; color: #fff; background: var(--navy); }
.feature-detail__hero::after { position: absolute; inset: auto -15% 9% 38%; height: 4px; content: ''; background: var(--orange); transform: rotate(-8deg); transform-origin: right center; }
.feature-detail__hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, .95fr) minmax(460px, 1.05fr); align-items: center; gap: 7vw; min-height: 880px; padding-top: 130px; }
.feature-detail__copy { max-width: 760px; }
.eyebrow-link { display: inline-block; margin-bottom: 34px; color: var(--navy); font-size: 11px; font-weight: 750; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.eyebrow-link--light { color: rgba(255,255,255,.65); }
.feature-detail h1 { margin: 0; color: #fff; font-size: clamp(53px, 6.6vw, 102px); font-weight: 790; letter-spacing: -.065em; line-height: .93; }
.feature-detail__lead { max-width: 670px; margin: 30px 0 36px; color: rgba(255,255,255,.7); font-size: clamp(18px, 1.7vw, 24px); }
.feature-detail__visual { align-self: end; height: 720px; }
.phone-stage--detail { height: 100%; }
.phone-stage--detail .device-frame { width: min(360px, 72%); margin: auto; transform: translateY(75px) rotate(5deg); }
.phone-stage--detail::before { position: absolute; top: 10%; left: 50%; width: 560px; height: 560px; content: ''; background: rgba(134,202,204,.13); border: 1px solid rgba(134,202,204,.25); border-radius: 50%; transform: translateX(-50%); }
.feature-detail__content { display: grid; grid-template-columns: 220px minmax(0, 820px); justify-content: space-between; gap: 8vw; padding-block: clamp(90px, 11vw, 170px); }
.feature-detail__rail { position: sticky; top: 135px; align-self: start; color: var(--navy); }
.feature-detail__rail > span { font-size: 74px; font-weight: 790; letter-spacing: -.06em; }
.feature-detail__rail i { display: block; width: 100%; height: 3px; margin: 10px 0 18px; background: linear-gradient(to right, var(--orange) 40%, var(--line) 40%); }
.feature-detail__rail p { max-width: 160px; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

/* Editorial content */
.entry-content { color: #4f5261; }
.entry-content > *:first-child { margin-top: 0; }
.entry-content h2 { margin: 2.2em 0 .65em; color: var(--navy); font-size: clamp(31px, 4vw, 54px); letter-spacing: -.045em; line-height: 1.06; }
.entry-content h3 { margin: 2em 0 .6em; color: var(--navy); font-size: clamp(23px, 2.4vw, 34px); letter-spacing: -.035em; line-height: 1.14; }
.entry-content h4 { margin: 1.8em 0 .5em; color: var(--navy); font-size: 20px; }
.entry-content p, .entry-content li { font-size: clamp(16px, 1.2vw, 19px); }
.entry-content p { margin: 0 0 1.5em; }
.entry-content ul, .entry-content ol { margin: 1.8em 0; padding-left: 1.3em; }
.entry-content li { margin: .65em 0; padding-left: .4em; }
.entry-content li::marker { color: var(--orange); font-weight: 800; }
.entry-content strong { color: var(--navy); }
.entry-content blockquote { margin: 2.8em 0; padding: 30px 38px; color: var(--navy); background: var(--soft); border-left: 4px solid var(--orange); border-radius: 0 var(--radius-s) var(--radius-s) 0; }
.entry-content a { color: var(--navy); font-weight: 650; }
.entry-content table { width: 100%; margin: 2em 0; border-collapse: collapse; }
.entry-content th, .entry-content td { padding: 14px; border: 1px solid var(--line); text-align: left; }
.entry-content th { color: var(--navy); background: var(--soft); }

/* FAQ */
.faq-page { display: grid; grid-template-columns: 300px minmax(0, 900px); justify-content: space-between; gap: 8vw; }
.faq-page__aside { position: sticky; top: 140px; align-self: start; padding: 28px; background: var(--soft); border-radius: 22px; }
.faq-page__aside p { margin-top: 0; color: var(--navy); font-weight: 700; }
.faq-list--page { color: var(--ink); border-color: var(--line); }
.faq-list--page .faq-item { border-color: var(--line); }
.faq-list--page .faq-item__answer > div { color: var(--muted); }
.faq-list--page .faq-item button i { color: #fff; background: var(--navy); }

/* About */
.about-hero { position: relative; overflow: hidden; padding: clamp(190px, 20vw, 300px) 0 clamp(80px, 8vw, 130px); background: var(--soft); }
.about-hero__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(250px, .45fr); align-items: end; gap: 7vw; }
.about-hero h1 { max-width: 1120px; color: var(--navy); }
.about-hero__mark { display: grid; place-items: center; justify-self: end; width: clamp(200px, 25vw, 390px); aspect-ratio: 1; color: var(--orange); background: var(--navy); border-radius: 50%; transform: rotate(8deg); }
.about-hero__mark .brand-mark { width: 40%; height: auto; }
.about-intro { display: grid; grid-template-columns: minmax(250px, .5fr) minmax(0, 1fr); gap: 10vw; }
.about-intro__label { max-width: 330px; color: var(--navy); font-size: 13px; font-weight: 750; letter-spacing: .08em; line-height: 1.5; text-transform: uppercase; }
.entry-content--about > p:first-child { color: var(--navy); font-size: clamp(28px, 3.4vw, 50px); font-weight: 650; letter-spacing: -.04em; line-height: 1.18; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { padding: 18px 18px 34px; background: #fff; border-radius: 28px; }
.team-card__portrait { position: relative; display: grid; place-items: end start; aspect-ratio: 4 / 4.7; padding: 24px; overflow: hidden; color: var(--orange); background: var(--navy); border-radius: 18px; }
.team-card__portrait::before { position: absolute; width: 16%; aspect-ratio: 1; content: ''; background: var(--cyan); border-radius: 50%; box-shadow: 80px -70px 0 10px rgba(134,202,204,.12), 150px -190px 0 55px rgba(255,182,72,.11); }
.team-card__portrait span { position: relative; font-size: clamp(48px, 7vw, 95px); font-weight: 800; letter-spacing: -.08em; line-height: .8; }
.team-card > p { margin: 24px 0 10px; color: var(--orange); font-size: 10px; font-weight: 800; }
.team-card h3 { margin: 0 0 7px; color: var(--navy); font-size: clamp(21px, 2vw, 29px); letter-spacing: -.035em; }
.team-card > span { color: var(--muted); font-size: 12px; }

/* Contact */
.contact-section { display: grid; grid-template-columns: minmax(330px, .72fr) minmax(480px, 1fr); gap: clamp(70px, 10vw, 170px); }
.contact-detail { display: flex; align-items: center; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.contact-detail i { display: grid; place-items: center; flex: 0 0 48px; width: 48px; height: 48px; color: var(--navy); background: var(--orange); border-radius: 15px; }
.contact-detail i svg { width: 24px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.contact-detail span, .contact-detail strong { display: block; }
.contact-detail span { color: var(--muted); font-size: 11px; }
.contact-detail strong { color: var(--navy); font-size: 14px; }
.company-data { margin-top: 55px; }
.company-data h2 { color: var(--navy); font-size: 24px; }
.company-data dl { margin: 0; }
.company-data dl > div { display: grid; grid-template-columns: 140px 1fr; gap: 20px; padding: 11px 0; border-top: 1px solid var(--line); font-size: 12px; }
.company-data dt { color: var(--muted); }
.company-data dd { margin: 0; color: var(--navy); font-weight: 600; }
.contact-section__form { padding: clamp(35px, 5vw, 68px); color: #fff; background: var(--navy); border-radius: var(--radius-m); box-shadow: var(--shadow); }
.contact-section__form .section-label { color: rgba(255,255,255,.65); }
.contact-section__form h2 { margin: 0 0 38px; color: #fff; font-size: clamp(34px, 4vw, 56px); letter-spacing: -.05em; line-height: 1; }
.szumma-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.szumma-form__field { display: grid; gap: 8px; }
.szumma-form__field--wide, .szumma-form__actions, .szumma-form__notice, .szumma-form__privacy, .szumma-form__captcha { grid-column: 1 / -1; }
.szumma-form__captcha { min-height: 65px; }
.szumma-form label { color: rgba(255,255,255,.65); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.szumma-form input, .szumma-form textarea { width: 100%; padding: 15px 0; color: #fff; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.25); border-radius: 0; outline: none; transition: border-color .2s; }
.szumma-form textarea { min-height: 135px; resize: vertical; }
.szumma-form input:focus, .szumma-form textarea:focus { border-color: var(--orange); }
.szumma-form__privacy { color: rgba(255,255,255,.55); font-size: 11px; }
.szumma-form__privacy label { display: flex; align-items: flex-start; gap: 10px; letter-spacing: 0; line-height: 1.5; text-transform: none; }
.szumma-form__privacy input { flex: 0 0 auto; width: 17px; margin-top: 3px; accent-color: var(--orange); }
.szumma-form__privacy a { color: #fff; }
.szumma-form__notice { min-height: 24px; margin: 0; color: var(--orange); font-size: 12px; }
.szumma-form .button[disabled] { opacity: .55; cursor: wait; }
.szumma-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.map-panel { position: relative; display: grid; align-items: end; min-height: 540px; overflow: hidden; background: #e7eaf6; }
.map-panel__map { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: saturate(.72) contrast(1.04); }
.map-panel__grid { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,16,82,.28), transparent 52%); pointer-events: none; }
.map-panel__pin { position: relative; z-index: 2; display: grid; justify-items: start; width: max-content; max-width: calc(100% - 36px); margin: 0 0 48px max(18px, calc((100vw - min(1440px, calc(100vw - clamp(40px, 8vw, 144px)))) / 2)); padding: 25px 34px; color: #fff; background: var(--navy); border-radius: 20px; box-shadow: var(--shadow); text-decoration: none; }
.map-panel__pin::after { position: absolute; bottom: -12px; width: 24px; height: 24px; content: ''; background: var(--navy); transform: rotate(45deg); }
.map-panel__pin > span { position: absolute; top: -28px; display: grid; place-items: center; width: 55px; height: 55px; color: var(--orange); background: #fff; border-radius: 50%; }
.map-panel__pin .brand-mark { width: 20px; height: auto; }
.map-panel__pin strong { margin-top: 14px; font-size: 22px; }
.map-panel__pin small { color: rgba(255,255,255,.55); font-size: 10px; }

/* Download */
.download-page { position: relative; min-height: 100svh; overflow: hidden; color: #fff; background: var(--navy); }
.download-page__grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr); align-items: center; gap: 8vw; min-height: 100svh; padding-top: 150px; }
.download-page__copy { max-width: 760px; padding-block: 70px; }
.download-page__copy > p:not(.section-label) { max-width: 650px; color: rgba(255,255,255,.7); font-size: clamp(17px, 1.6vw, 22px); }
.download-page .store-buttons { margin-top: 34px; }
.download-page ul { display: flex; flex-wrap: wrap; gap: 24px; margin: 28px 0 0; padding: 0; list-style: none; color: rgba(255,255,255,.55); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.download-page li::before { display: inline-block; width: 6px; height: 6px; margin-right: 8px; content: ''; background: var(--orange); border-radius: 50%; }
.download-page__visual { align-self: end; height: calc(100svh - 110px); min-height: 690px; }
.phone-stage--download { height: 100%; }
.phone-stage--download .device-frame { width: min(390px, 74%); margin: 5% auto 0; transform: rotate(5deg); }
.phone-stage--download::before { position: absolute; top: 4%; left: 50%; width: min(630px, 45vw); aspect-ratio: 1; content: ''; background: rgba(134,202,204,.1); border: 1px solid rgba(134,202,204,.25); border-radius: 50%; transform: translateX(-50%); box-shadow: 0 0 0 8vw rgba(134,202,204,.035); }
.download-page__signal { position: absolute; right: -8%; bottom: 19%; width: 66%; height: 4px; background: var(--orange); transform: rotate(-8deg); }

/* Legal and journal */
.legal-hero { padding: clamp(190px, 19vw, 280px) 0 80px; color: #fff; background: var(--navy); }
.legal-hero__inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; }
.legal-hero h1 { max-width: 990px; }
.legal-hero p { color: rgba(255,255,255,.6); }
.legal-layout { display: grid; grid-template-columns: 250px minmax(0, 880px); justify-content: space-between; gap: 8vw; padding-block: clamp(75px, 9vw, 140px); }
.legal-layout > aside { position: sticky; top: 140px; align-self: start; padding: 24px; background: var(--soft); border-radius: 18px; font-size: 12px; }
.legal-layout aside strong, .legal-layout aside p { display: block; }
.legal-layout aside strong { color: var(--navy); }
.legal-layout aside p { color: var(--muted); }
.legal-layout aside button { padding: 0; color: var(--navy); background: none; border: 0; font-size: 11px; font-weight: 700; text-decoration: underline; cursor: pointer; }
.entry-content--legal { color: #555867; }
.entry-content--legal h2 { font-size: clamp(26px, 3vw, 38px); }
.entry-content--legal h3 { font-size: 22px; }
.entry-content--legal p, .entry-content--legal li { font-size: 14px; line-height: 1.75; }
.article-hero { padding-top: clamp(130px, 12vw, 180px); padding-bottom: 70px; text-align: center; }
.article-hero__meta { color: var(--orange); font-size: 11px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.article-hero h1 { max-width: 1160px; margin-inline: auto; color: var(--navy); }
.article-hero__lead { max-width: 800px; margin: 28px auto 0; color: var(--muted); font-size: clamp(18px, 1.7vw, 23px); }
.article-cover { overflow: hidden; aspect-ratio: 16 / 7; background: var(--soft); border-radius: var(--radius-m); }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.single-article > .entry-content { padding-block: clamp(70px, 9vw, 130px); }
.post-grid-section { padding-block: clamp(70px, 9vw, 140px); }
.navigation.pagination { margin-top: 60px; }
.nav-links { display: flex; justify-content: center; gap: 10px; }
.page-numbers { display: grid; place-items: center; min-width: 42px; height: 42px; padding: 0 12px; color: var(--navy); background: var(--soft); border-radius: 11px; font-size: 12px; font-weight: 700; text-decoration: none; }
.page-numbers.current { color: #fff; background: var(--navy); }
.error-page { display: grid; grid-template-columns: minmax(300px, .65fr) 1fr; align-items: center; gap: 9vw; min-height: 100svh; padding-top: 130px; }
.error-page__number { color: var(--navy); font-size: clamp(130px, 24vw, 390px); font-weight: 800; letter-spacing: -.1em; line-height: .7; opacity: .08; }
.error-page h1 { max-width: 780px; color: var(--navy); }
.error-page > div:last-child > p:not(.section-label) { max-width: 560px; color: var(--muted); }

/* Responsive */
@media (max-width: 1100px) {
  :root { --shell: min(100% - 52px, 1280px); }
  .site-header__inner { min-height: 62px; backdrop-filter: none; }
  .site-brand, .menu-toggle { position: relative; z-index: 20; }
  .menu-toggle { display: flex; }
  .primary-navigation { position: fixed; z-index: 10; inset: 0; display: grid; align-content: center; justify-items: center; gap: 40px; padding: 120px 30px 50px; color: #fff; background: var(--navy); opacity: 0; pointer-events: none; transform: translateY(-18px); transition: opacity .3s, transform .45s var(--ease); }
  .primary-navigation.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .primary-navigation .menu { display: grid; justify-items: center; gap: 18px; }
  .primary-navigation .menu a { font-size: clamp(28px, 5vw, 44px); font-weight: 700; letter-spacing: -.04em; }
  .primary-navigation .button--header { min-height: 56px; padding-inline: 26px; }
  .menu-open .site-header__inner { color: #fff; background: transparent; border-color: transparent; box-shadow: none; }
  .menu-open .site-brand { color: #fff; }
  .menu-open .menu-toggle__lines i:first-child { top: 9px; transform: rotate(45deg); }
  .menu-open .menu-toggle__lines i:last-child { top: 9px; width: 26px; transform: rotate(-45deg); }
  .hero__inner, .feature-detail__hero-grid, .download-page__grid { grid-template-columns: minmax(0, 1fr) minmax(390px, .75fr); gap: 2vw; }
  .hero-product { height: 670px; }
  .trust-section__grid, .home-faq__grid, .contact-section { grid-template-columns: 1fr; gap: 70px; }
  .trust-section h2 { position: static; }
  .contact-section__details { max-width: 720px; }
  .site-footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  :root { --shell: calc(100vw - 36px); --section: 86px; --radius-l: 36px; }
  body { font-size: 16px; }
  .site-header { padding-top: 12px; }
  .site-header__inner { padding-left: 16px; border-radius: 17px; }
  .site-brand__word { font-size: 17px; }
  .brand-mark { width: 26px; height: 30px; }
  .hero { min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; min-height: auto; padding-top: 170px; padding-bottom: 0; }
  .hero h1 { font-size: clamp(53px, 15.3vw, 82px); }
  .hero-product { width: 100%; height: 650px; margin-top: 35px; }
  .hero__foot { position: relative; flex-wrap: wrap; padding-bottom: 25px; }
  .numbers-band__grid { grid-template-columns: 1fr; }
  .number-stat { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .section-heading--split, .page-hero__grid, .about-hero__inner, .about-intro, .feature-detail__content, .legal-layout, .error-page { grid-template-columns: 1fr; }
  .section-heading--split { gap: 25px; }
  .journey-track { grid-template-columns: 1fr; gap: 45px; }
  .journey-track__line { top: 0; bottom: 0; left: 11px; width: 2px; height: auto; }
  .journey-track__line span { width: 100%; height: var(--journey-progress, 0%); }
  .journey-step { padding-left: 50px; }
  .journey-step__number { top: 5px; left: 31px; }
  .journey-step__node { position: absolute; top: 7px; left: 3px; }
  .app-window__grid, .budget-story__grid { grid-template-columns: 1fr; }
  .app-window__grid > *, .budget-story__grid > *, .feature-row > * { min-width: 0; }
  .app-window__visual, .budget-story__visual { min-height: 620px; }
  .feature-row { grid-template-columns: 1fr; min-height: auto; }
  .feature-row:nth-child(even) .feature-row__copy, .feature-row:nth-child(even) .feature-row__visual { order: initial; }
  .feature-row__copy { padding: 56px 28px 30px; }
  .feature-row h3 { overflow-wrap: anywhere; }
  .feature-row__visual { min-height: 580px; }
  .trust-cards article { grid-template-columns: 46px 1fr; }
  .trust-cards article p { grid-column: 2; }
  .post-grid, .team-grid, .archive-features__grid { grid-template-columns: 1fr; }
  .download-cta__inner { grid-template-columns: 1fr; align-items: start; }
  .site-footer__nav { gap: 28px; }
  .page-hero { padding-top: 170px; }
  .page-hero::after { width: 76%; }
  .page-hero__grid { gap: 30px; }
  .page-hero h1, .legal-hero h1, .article-hero h1, .about-hero h1, .download-page h1, .error-page h1 { font-size: clamp(48px, 13vw, 76px); }
  .archive-features__grid { border-left: 0; }
  .archive-feature-card { min-height: 340px; border-left: 1px solid var(--line); }
  .feature-detail__hero { min-height: auto; }
  .feature-detail__hero-grid { grid-template-columns: 1fr; min-height: auto; padding-top: 180px; }
  .feature-detail__visual { height: 600px; }
  .feature-detail__rail, .faq-page__aside, .legal-layout > aside { position: static; }
  .feature-detail__rail { display: none; }
  .faq-page { grid-template-columns: 1fr; }
  .about-hero__mark { justify-self: start; width: 210px; }
  .contact-section { grid-template-columns: 1fr; }
  .download-page__grid { grid-template-columns: 1fr; min-height: auto; padding-top: 160px; }
  .download-page__visual { height: 650px; min-height: 0; }
  .legal-hero { padding-top: 180px; }
  .legal-hero__inner { align-items: flex-start; flex-direction: column; }
  .article-hero { text-align: left; }
  .error-page { align-content: center; gap: 25px; }
  .error-page__number { font-size: 150px; }
}

@media (max-width: 520px) {
  :root { --shell: calc(100vw - 28px); }
  .button { width: 100%; }
  .store-buttons { display: grid; }
  .store-button { width: 100%; }
  .hero__copy { text-align: left; }
  .hero h1 { font-size: 50px; }
  .hero-product { height: 570px; }
  .hero-product .phone-stage, .phone-stage--budget { width: 100%; }
  .hero-product__card--balance { left: -4px; }
  .hero-product__card--signal { right: -2px; }
  .hero__foot span { width: 100%; }
  .app-window__visual, .budget-story__visual { min-height: 520px; }
  .app-window__copy h2 { font-size: clamp(34px, 9.5vw, 42px); }
  .phone-stage--window .device-frame, .phone-stage--budget .device-frame { width: 250px; }
  .transaction-chip, .care-message { transform: scale(.82); }
  .transaction-chip--out { left: -20px; }
  .transaction-chip--in { right: -25px; }
  .trust-cards article { gap: 14px; }
  .faq-item button { gap: 15px; padding: 22px 0; }
  .faq-item__answer > div { padding-right: 0; }
  .site-footer__nav { grid-template-columns: 1fr; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
  .back-to-top { margin-left: 0; }
  .szumma-form { grid-template-columns: 1fr; }
  .contact-section__form { padding: 28px 20px; }
  .company-data dl > div { grid-template-columns: 1fr; gap: 0; }
  .download-page__visual { height: 560px; }
  .phone-stage--download .device-frame { width: 290px; }
  .legal-hero__inner .button { width: auto; }
}

@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; }
}

@media print {
  .site-header, .site-footer, .download-cta, .legal-layout aside { display: none !important; }
  .legal-hero { padding: 30px 0; color: #000; background: #fff; }
  .legal-hero h1 { color: #000; font-size: 38px; }
  .legal-layout { display: block; width: 100%; padding: 0; }
  .entry-content--legal p, .entry-content--legal li { color: #000; font-size: 10pt; }
}
