:root {
  --ink: #171625;
  --ink-soft: #4f4d60;
  --muted: #767487;
  --surface: #ffffff;
  --canvas: #f7f7fb;
  --line: #e8e7ef;
  --violet: #6257f6;
  --violet-dark: #352b92;
  --violet-soft: #eeecff;
  --teal: #08a884;
  --coral: #f05b72;
  --orange: #f4a327;
  --radius-lg: 36px;
  --shadow: 0 24px 70px rgba(38, 32, 92, .12);
}

.language-switch {
  min-width: 44px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(80, 69, 209, .18);
  border-radius: 999px;
  color: var(--violet-700);
  background: rgba(255, 255, 255, .78);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.site-offline {
  min-height: 100vh;
  padding: 32px;
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
  background: var(--page);
}

.site-offline[hidden] { display: none; }
.site-offline h1 { margin: 24px 0 8px; }
.site-offline p { color: var(--muted); }
body.site-disabled > :not(.site-offline) { display: none !important; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--canvas); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 100; top: 10px; left: 10px; padding: 10px 14px; border-radius: 10px; color: #fff; background: var(--ink); transform: translateY(-140%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; z-index: 50; top: 0; right: 0; left: 0; border-bottom: 1px solid transparent; transition: .25s ease; }
.site-header.scrolled { border-color: rgba(232,231,239,.85); background: rgba(255,255,255,.86); box-shadow: 0 8px 30px rgba(29,24,73,.06); backdrop-filter: blur(18px); }
.nav-wrap { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); font-size: 20px; font-weight: 840; letter-spacing: -.04em; text-decoration: none; }
.brand img { width: 42px; height: 42px; border-radius: 13px; box-shadow: 0 9px 24px rgba(74,58,213,.22); }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { color: var(--ink-soft); font-size: 14px; font-weight: 700; text-decoration: none; transition: color .2s; }
.main-nav a:hover { color: var(--violet); }
.main-nav .nav-cta { padding: 12px 18px; border-radius: 999px; color: #fff; background: var(--ink); }
.main-nav .nav-cta:hover { color: #fff; background: var(--violet); }
.menu-button { display: none; width: 44px; height: 44px; padding: 11px; border: 0; border-radius: 14px; background: #fff; box-shadow: 0 8px 24px rgba(23,22,37,.08); }
.menu-button span:not(.sr-only) { display: block; height: 2px; margin: 4px 0; border-radius: 5px; background: var(--ink); }

.hero { position: relative; min-height: 780px; padding: 150px 0 90px; overflow: hidden; background: radial-gradient(circle at 84% 20%, #ece9ff 0, rgba(236,233,255,0) 34%), linear-gradient(180deg, #fff 0%, #f7f7fb 100%); }
.hero::before { position: absolute; top: 120px; right: -140px; width: 600px; height: 600px; border: 1px solid rgba(98,87,246,.08); border-radius: 50%; content: ""; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-orb-one { top: 160px; left: -120px; width: 240px; height: 240px; background: rgba(112,97,255,.08); }
.hero-orb-two { right: 32%; bottom: 70px; width: 90px; height: 90px; background: rgba(8,168,132,.08); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr); align-items: center; gap: 48px; }
.eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: 9px; color: var(--violet); font-size: 12px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 2px; border-radius: 99px; background: var(--violet); }
.hero h1 { max-width: 690px; margin: 22px 0 24px; font-size: clamp(52px, 6.7vw, 88px); line-height: .98; letter-spacing: -.07em; }
.hero h1 em { color: var(--violet); font-style: normal; }
.hero-lead { max-width: 650px; margin: 0; color: var(--ink-soft); font-size: 18px; line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 16px; padding: 0 22px; border: 1px solid var(--line); border-radius: 16px; font-size: 14px; font-weight: 800; text-decoration: none; transition: .22s ease; }
.button-primary { border-color: var(--violet); color: #fff; background: var(--violet); box-shadow: 0 16px 32px rgba(98,87,246,.24); }
.button-primary:hover { background: #5045e5; transform: translateY(-2px); }
.button-ghost { background: rgba(255,255,255,.74); }
.button-ghost:hover { border-color: #c9c5ec; background: #fff; }
.hero-notes { display: flex; flex-wrap: wrap; gap: 20px; margin: 25px 0 0; padding: 0; color: var(--muted); font-size: 12px; font-weight: 650; list-style: none; }
.hero-notes i { display: inline-grid; width: 19px; height: 19px; margin-right: 5px; place-items: center; border-radius: 50%; color: var(--teal); background: #e5f8f3; font-style: normal; }

.product-stage { position: relative; display: grid; min-height: 680px; place-items: center; }
.product-stage::before { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: linear-gradient(135deg, #dedaff 0%, #f5f3ff 68%); content: ""; }
.phone-showcase { position: relative; z-index: 2; width: min(350px, 84vw); margin: 0; }
.phone-shell { position: relative; padding: 7px; border: 6px solid #181720; border-radius: 48px; background: #181720; box-shadow: 0 40px 86px rgba(38,27,106,.28), inset 0 0 0 1px rgba(255,255,255,.13); transform: rotate(1.3deg); }
.phone-shell::before { position: absolute; z-index: 5; top: 15px; left: 50%; width: 16px; height: 16px; border-radius: 50%; background: #0d0d13; box-shadow: inset 0 0 0 3px #262432, 0 0 0 1px rgba(255,255,255,.13); content: ""; transform: translateX(-50%); }
.phone-screen { min-height: 640px; padding: 12px 15px 14px; overflow: hidden; border-radius: 37px; background: #f8f8fd; }
.app-status { display: flex; align-items: center; justify-content: space-between; padding: 1px 9px 11px; color: #262532; font-size: 7px; letter-spacing: .02em; }
.app-status span { font-size: 6px; letter-spacing: -.08em; }
.app-toolbar { display: grid; grid-template-columns: 29px 29px minmax(0,1fr) 12px 29px 29px 29px; gap: 5px; align-items: center; }
.app-square, .app-workspace-icon { display: grid; width: 29px; height: 29px; place-items: center; border: 1px solid #efedf6; border-radius: 10px; background: #fff; box-shadow: 0 5px 13px rgba(51,45,89,.06); font-size: 10px; font-weight: 800; }
.app-grid-icon { color: #282632; font-size: 8px; line-height: .55; letter-spacing: 2px; }
.app-workspace-icon { border: 0; color: #fff; background: linear-gradient(135deg,#756aff,#5145e5); box-shadow: 0 7px 16px rgba(91,78,232,.27); }
.app-workspace { min-width: 0; }
.app-workspace strong, .app-workspace small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.app-workspace strong { color: #696777; font-size: 8px; }
.app-workspace small { margin-top: 2px; color: #aaa8b5; font-size: 6px; }
.app-chevron { color: #7f7c8c; font-size: 12px; }
.phone-heading { margin: 20px 1px 14px; }
.phone-heading h3 { margin: 0 0 15px; color: #171620; font-size: 22px; line-height: 1.08; letter-spacing: -.055em; }
.phone-heading h3 span { display: block; }
.phone-heading > div { display: flex; align-items: center; justify-content: space-between; }
.phone-heading small { color: #aaa8b4; font-size: 7px; }
.phone-heading b { color: #5f55cd; font-size: 8px; }
.app-balance-card { position: relative; min-height: 110px; padding: 16px 17px; overflow: hidden; border-radius: 23px; color: #fff; background: linear-gradient(135deg,#756bff 0%,#5347e7 100%); box-shadow: 0 15px 28px rgba(88,75,226,.25); }
.app-balance-title, .app-balance-meta { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; }
.app-balance-title { font-size: 9px; }
.app-balance-title .wallet-mark { display: grid; width: 25px; height: 25px; margin-right: 7px; place-items: center; border-radius: 9px; background: rgba(255,255,255,.18); }
.app-balance-title strong { margin-right: auto; }
.app-balance-title b { letter-spacing: 1px; }
.app-balance-value { position: relative; z-index: 2; display: block; margin: 18px 0 8px; font-size: 27px; letter-spacing: -.055em; }
.app-balance-meta { color: rgba(255,255,255,.77); font-size: 6px; }
.balance-orb { position: absolute; border-radius: 50%; background: rgba(255,255,255,.09); }
.balance-orb-one { top: -28px; right: -16px; width: 120px; height: 120px; }
.balance-orb-two { right: 18px; bottom: -48px; width: 100px; height: 100px; }
.app-summary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 11px 0; }
.app-summary { display: grid; min-height: 88px; padding: 12px; border: 1px solid #efedf5; border-radius: 19px; background: #fff; box-shadow: 0 8px 22px rgba(52,47,84,.05); }
.app-summary > span { display: grid; width: 25px; height: 25px; place-items: center; border-radius: 50%; font-size: 13px; font-weight: 900; }
.app-summary small { margin-top: 7px; color: #94919f; font-size: 7px; }
.app-summary strong { margin-top: 2px; color: #706e7b; font-size: 15px; }
.app-summary em { margin-top: 3px; font-size: 6px; font-style: normal; font-weight: 800; }
.app-summary.income > span { color: #00a783; background: #e7f8f3; }.app-summary.income em { color: #00a783; }
.app-summary.expense > span { color: #f35472; background: #ffedf1; }.app-summary.expense em { color: #f35472; }
.app-cashflow-card { padding: 13px 14px 11px; border: 1px solid #efedf5; border-radius: 20px; background: #fff; box-shadow: 0 8px 22px rgba(52,47,84,.05); }
.app-cashflow-title { display: flex; align-items: start; justify-content: space-between; }
.app-cashflow-title strong, .app-cashflow-title small { display: block; }
.app-cashflow-title strong { color: #74717e; font-size: 11px; }
.app-cashflow-title small { margin-top: 3px; color: #aaa7b3; font-size: 6px; }
.app-cashflow-title b { color: #5f55e8; font-size: 7px; }
.app-periods { display: grid; grid-template-columns: repeat(4,1fr); gap: 4px; margin: 11px 0 9px; }
.app-periods span { padding: 5px 2px; border: 1px solid #e5e2ec; border-radius: 8px; color: #9693a0; font-size: 5px; font-weight: 800; text-align: center; }
.app-periods .active { border-color: #958dff; color: #5c52df; background: #eeecff; }
.app-chart { display: flex; height: 55px; align-items: end; gap: 8px; padding: 4px 8px 0; border-bottom: 1px solid #eeecf4; background: repeating-linear-gradient(to bottom,transparent 0,transparent 17px,#f0eef5 18px); }
.app-chart i { flex: 1; height: var(--h); border-radius: 5px 5px 1px 1px; background: linear-gradient(180deg,#776cff,#b8b3ff); }
.app-chart i:nth-child(3n) { background: linear-gradient(180deg,#ff718a,#ffc2cc); }
.app-chart-key { display: flex; gap: 15px; margin-top: 7px; color: #a09daa; font-size: 5px; }
.app-chart-key span { display: flex; align-items: center; gap: 4px; }
.app-chart-key i { width: 6px; height: 6px; border-radius: 2px; background: #756aff; }.app-chart-key span + span i { background: #ff718a; }
.app-bottom-nav { grid-template-columns: repeat(4,1fr) 42px !important; margin-top: 10px !important; padding: 7px 7px 6px; border: 1px solid #efedf5; border-radius: 18px; background: rgba(255,255,255,.96); box-shadow: 0 8px 24px rgba(53,47,89,.1); }
.app-bottom-nav span, .app-bottom-nav b { font-size: 11px; }
.app-bottom-nav .plus { width: 39px; height: 39px; }
.phone-top, .mini-brand, .chart-head, .visual-head, .dash-head { display: flex; align-items: center; justify-content: space-between; }
.mini-brand { justify-content: flex-start; gap: 7px; font-size: 11px; font-weight: 800; }
.mini-brand img { width: 28px; height: 28px; border-radius: 8px; }
.avatar { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; color: #fff; background: var(--ink); font-size: 9px; font-weight: 800; }
.phone-welcome { margin: 23px 0 14px; color: var(--muted); font-size: 18px; line-height: 1.2; }
.phone-welcome strong { color: var(--ink); font-size: 24px; letter-spacing: -.045em; }
.balance-card { position: relative; min-height: 132px; padding: 18px; overflow: hidden; border-radius: 23px; color: #fff; background: linear-gradient(135deg, #493daf, #7267ff); box-shadow: 0 16px 32px rgba(75,63,181,.26); }
.balance-card span:not(.balance-glow) { display: block; font-size: 11px; opacity: .78; }
.balance-card strong { display: block; margin: 13px 0 7px; font-size: 28px; letter-spacing: -.05em; }
.balance-card small { color: #bcffec; font-size: 9px; }
.balance-glow { position: absolute; top: -30px; right: -25px; width: 130px; height: 130px; border-radius: 50%; background: rgba(255,255,255,.1); }
.phone-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin: 11px 0; }
.phone-metrics > div { position: relative; padding: 13px 12px 12px 26px; border: 1px solid #eeedf4; border-radius: 16px; background: #fff; }
.phone-metrics small, .phone-metrics strong { display: block; }
.phone-metrics small { color: var(--muted); font-size: 9px; }
.phone-metrics strong { margin-top: 5px; font-size: 13px; }
.metric-dot { position: absolute; top: 15px; left: 12px; width: 7px; height: 7px; border-radius: 50%; }
.green { color: var(--teal); }.coral { color: var(--coral); }
.metric-dot.green { background: var(--teal); }.metric-dot.coral { background: var(--coral); }
.chart-card { padding: 13px; border: 1px solid #eeedf4; border-radius: 18px; background: #fff; }
.chart-head { font-size: 10px; }.chart-head span { color: var(--muted); font-size: 8px; }
.bars { display: flex; height: 68px; align-items: end; gap: 7px; padding: 10px 3px 0; }
.bars i { flex: 1; height: var(--h); border-radius: 5px 5px 2px 2px; background: linear-gradient(180deg, #766bff, #b9b4ff); }
.phone-nav { display: grid; grid-template-columns: 1fr 1fr 44px 1fr 1fr; align-items: center; margin-top: 12px; color: #9b99aa; font-size: 14px; text-align: center; }
.phone-nav b { color: var(--violet); }.phone-nav small { display: block; margin-top: 3px; font-size: 6px; font-weight: 700; }
.phone-nav .plus { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; color: #fff; background: var(--violet); font-size: 24px; box-shadow: 0 8px 18px rgba(98,87,246,.27); }
.float-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.82); border-radius: 18px; background: rgba(255,255,255,.9); box-shadow: 0 18px 48px rgba(41,34,92,.14); backdrop-filter: blur(15px); }
.float-card small, .float-card strong { display: block; }.float-card small { margin-bottom: 3px; color: var(--muted); font-size: 9px; }.float-card strong { font-size: 12px; }
.float-card-income { top: 88px; right: -4px; }.float-card-budget { bottom: 72px; left: -8px; }
.float-icon { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 11px; font-weight: 900; }.float-icon.up { color: var(--teal); background: #e3f8f2; }
.ring { display: grid; width: 38px; height: 38px; place-items: center; border: 5px solid #d8d4ff; border-top-color: var(--violet); border-radius: 50%; color: var(--violet); font-size: 8px; }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid div { position: relative; padding: 28px 24px; }
.trust-grid div + div::before { position: absolute; top: 24px; bottom: 24px; left: 0; width: 1px; background: var(--line); content: ""; }
.trust-grid strong, .trust-grid span { display: block; }.trust-grid strong { margin-bottom: 5px; font-size: 14px; }.trust-grid span { color: var(--muted); font-size: 11px; line-height: 1.5; }

.section { padding: 110px 0; }
.section-heading { max-width: 670px; margin-bottom: 48px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2, .feature-copy h2, .security-copy h2, .download-card h2 { margin: 14px 0 18px; font-size: clamp(38px, 5vw, 62px); line-height: 1.04; letter-spacing: -.06em; }
.section-heading p, .feature-copy > p, .security-copy > p, .download-card p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.products { background: #fff; }
.product-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-cards .product-card { padding: 36px; }
.product-cards .product-card h3 { font-size: clamp(30px, 3vw, 44px); }
.product-card { position: relative; min-height: 540px; padding: 42px; overflow: hidden; border-radius: var(--radius-lg); }
.product-card::after { position: absolute; right: -80px; bottom: -90px; width: 310px; height: 310px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; content: ""; }
.personal-card { color: #fff; background: linear-gradient(145deg, #252061, #5146c8 62%, #6c62ef); }
.company-card { color: #fff; background: linear-gradient(145deg, #004a4b, #008d78 58%, #10b28b); }
.family-card { color: #fff; background: linear-gradient(145deg, #174f32, #3e9b4b 58%, #70bd54); }
.product-card-top { display: flex; align-items: center; justify-content: space-between; }
.product-badge { padding: 8px 12px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(255,255,255,.1); font-size: 11px; font-weight: 800; }
.product-symbol { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 17px; background: rgba(255,255,255,.12); font-size: 25px; }
.product-card h3 { max-width: 460px; margin: 50px 0 16px; font-size: clamp(32px, 4vw, 50px); line-height: 1.05; letter-spacing: -.055em; }
.product-card > p { max-width: 510px; color: rgba(255,255,255,.76); line-height: 1.7; }
.product-card ul { display: grid; gap: 11px; margin: 26px 0 32px; padding: 0; list-style: none; }
.product-card li { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 650; }.product-card li::before { content: "✓"; color: #c9fff1; }
.product-card > a { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 18px; padding-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,.42); color: #fff; font-size: 13px; font-weight: 800; text-decoration: none; }

.split-layout { display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 90px; }
.split-layout.reverse { grid-template-columns: .96fr 1.04fr; }
.feature-visual { position: relative; min-height: 570px; display: grid; place-items: center; border-radius: 44px; overflow: hidden; }
.personal-visual { background: linear-gradient(145deg, #eae7ff, #f8f7ff); }.company-visual { background: linear-gradient(145deg, #dcf7ef, #f3fbf8); }
.visual-window, .dashboard-window { width: min(430px, calc(100% - 48px)); padding: 22px; border: 1px solid rgba(255,255,255,.86); border-radius: 28px; background: rgba(255,255,255,.88); box-shadow: var(--shadow); backdrop-filter: blur(10px); transform: rotate(-2deg); }
.visual-head { padding-bottom: 18px; border-bottom: 1px solid var(--line); font-weight: 800; }.visual-head b { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 11px; color: #fff; background: var(--violet); }
.total-row { padding: 24px 4px 18px; }.total-row small, .total-row strong { display: block; }.total-row small { color: var(--muted); }.total-row strong { margin-top: 6px; font-size: 34px; letter-spacing: -.05em; }
.account-stack { display: grid; gap: 11px; }.account-card { position: relative; padding: 20px; overflow: hidden; border-radius: 20px; color: #fff; }.account-card span, .account-card strong, .account-card small { display: block; }.account-card span { font-size: 12px; opacity: .8; }.account-card strong { margin: 8px 0 4px; font-size: 24px; }.account-card small { font-size: 9px; opacity: .68; }.account-card.purple { background: linear-gradient(135deg,#5d51e8,#8278ff); }.account-card.green { margin-left: 28px; background: linear-gradient(135deg,#008c74,#19b590); }.account-card.dark { margin-left: 56px; background: linear-gradient(135deg,#242232,#4b485f); }
.feature-copy { max-width: 540px; }.feature-copy h2 { font-size: clamp(40px, 4.5vw, 64px); }
.feature-list { display: grid; gap: 5px; margin-top: 34px; }.feature-list > div { display: grid; grid-template-columns: 42px 1fr; gap: 13px; padding: 17px 0; border-top: 1px solid var(--line); }.feature-list b { color: var(--violet); font-size: 11px; }.feature-list strong, .feature-list small { display: block; }.feature-list strong { margin-bottom: 5px; }.feature-list small { color: var(--muted); line-height: 1.55; }
.company-detail { background: #fff; }
.family-detail { background: linear-gradient(180deg, #f7fbf5 0%, #fff 100%); }
.family-visual { background: linear-gradient(145deg, #dff4d9, #f5fbf2); }
.family-window { width: min(430px, calc(100% - 48px)); padding: 22px; border: 1px solid rgba(255,255,255,.9); border-radius: 28px; background: rgba(255,255,255,.9); box-shadow: var(--shadow); transform: rotate(-1.5deg); }
.family-window-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid var(--line); font-weight: 800; }
.family-window-head small { color: var(--muted); }
.family-balance { margin: 14px 0; padding: 24px; border-radius: 22px; color: #fff; background: linear-gradient(135deg,#28913e,#65b84e); }
.family-balance small, .family-balance strong, .family-balance span { display: block; }
.family-balance strong { margin: 8px 0; font-size: 34px; }
.family-balance span { color: rgba(255,255,255,.78); font-size: 10px; }
.family-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.family-metrics div { padding: 16px; border-radius: 16px; background: #f3f8f1; }
.family-metrics small, .family-metrics strong { display: block; }
.family-metrics small { color: var(--muted); font-size: 9px; }
.family-metrics strong { margin-top: 6px; }
.family-members { display: flex; align-items: center; margin-top: 14px; padding: 14px; border: 1px solid var(--line); border-radius: 17px; }
.family-members span { display: flex; align-items: center; margin-right: -5px; color: var(--muted); font-size: 0; }
.family-members i, .family-members b { display: grid; width: 36px; height: 36px; place-items: center; border: 3px solid #fff; border-radius: 50%; color: #2d6637; background: #dff4d9; font-size: 10px; font-style: normal; }
.family-members b { margin-left: 8px; border: 0; color: #fff; background: #45a650; }
.dashboard-window { transform: rotate(2deg); }.dash-head { padding-bottom: 16px; border-bottom: 1px solid var(--line); font-weight: 800; }.dash-head small { color: var(--muted); }.dash-hero { margin: 14px 0; padding: 22px; border-radius: 22px; color: #fff; background: linear-gradient(135deg,#007b69,#14b58f); }.dash-hero small, .dash-hero strong, .dash-hero span { display: block; }.dash-hero strong { margin: 8px 0; font-size: 34px; }.dash-hero span { color: #bfffea; font-size: 11px; }
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }.dash-grid div { padding: 15px; border-radius: 15px; background: #f5f5fa; }.dash-grid small, .dash-grid strong { display: block; }.dash-grid small { color: var(--muted); font-size: 9px; }.dash-grid strong { margin-top: 6px; font-size: 15px; }
.activity-list { margin-top: 14px; padding: 15px; border: 1px solid var(--line); border-radius: 16px; }.activity-list > b { display: block; margin-bottom: 10px; font-size: 12px; }.activity-list span { display: grid; grid-template-columns: 24px 1fr auto; align-items: center; padding: 8px 0; border-top: 1px solid #f0eff4; font-size: 10px; }.activity-list i { font-style: normal; }.activity-list em { color: var(--muted); font-style: normal; }

.feature-grid-section { background: #f4f3f9; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-grid article { min-height: 260px; padding: 30px; border: 1px solid var(--line); border-radius: 27px; background: #fff; transition: .22s ease; }.feature-grid article:hover { box-shadow: 0 18px 50px rgba(35,29,79,.08); transform: translateY(-4px); }
.tile-icon { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 15px; font-size: 20px; }.tile-icon.violet { color: var(--violet); background: #eeecff; }.tile-icon.teal { color: #008e76; background: #e3f7f2; }.tile-icon.orange { color: #d98100; background: #fff2da; }.tile-icon.rose { color: #df4965; background: #ffe9ee; }.tile-icon.blue { color: #327de3; background: #e8f2ff; }.tile-icon.green { color: #1b965d; background: #e6f7ed; }
.feature-grid h3 { margin: 42px 0 10px; font-size: 20px; letter-spacing: -.025em; }.feature-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.brochure-section { padding: 72px 0; background: #fff; }
.brochure-section[hidden] { display: none; }
.brochure-card { position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px; padding: 42px 46px; overflow: hidden; border: 1px solid #dedbff; border-radius: 34px; background: linear-gradient(135deg,#f7f6ff,#eefcff); box-shadow: 0 22px 60px rgba(54,45,132,.09); }
.brochure-card::after { position: absolute; top: -130px; right: 14%; width: 310px; height: 310px; border: 1px solid rgba(91,80,244,.12); border-radius: 50%; content: ""; }
.brochure-icon { position: relative; z-index: 1; display: grid; width: 86px; height: 98px; place-items: center; border-radius: 15px 24px 15px 15px; color: #fff; background: linear-gradient(145deg,#6758f5,#2c92e9); box-shadow: 0 17px 34px rgba(91,80,244,.23); }
.brochure-icon::after { position: absolute; top: 0; right: 0; border-width: 0 0 18px 18px; border-style: solid; border-color: transparent transparent rgba(255,255,255,.35) transparent; content: ""; }
.brochure-icon span { font-size: 18px; font-weight: 900; letter-spacing: .04em; }
.brochure-copy { position: relative; z-index: 1; }
.brochure-copy h2 { margin: 9px 0 9px; font-size: clamp(28px,3vw,42px); line-height: 1.1; letter-spacing: -.04em; }
.brochure-copy p { max-width: 600px; margin: 0; color: var(--muted); line-height: 1.65; }
.brochure-actions { position: relative; z-index: 1; display: grid; min-width: 190px; gap: 9px; }
.brochure-actions .button { justify-content: center; min-height: 48px; }

.security-section { padding-top: 80px; background: #fff; }
.security-card { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; padding: 70px; overflow: hidden; border-radius: 42px; color: #fff; background: linear-gradient(135deg,#211b5d,#4238ae 60%,#5e52eb); }
.security-card::before { position: absolute; top: -170px; right: -80px; width: 500px; height: 500px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; content: ""; }
.section-kicker.light { color: #c8c3ff; }.security-copy { position: relative; z-index: 2; }.security-copy h2 { font-size: clamp(40px,4.6vw,65px); }.security-copy > p { color: rgba(255,255,255,.68); }.security-copy a { display: inline-flex; gap: 18px; margin-top: 28px; color: #fff; font-size: 13px; font-weight: 800; text-decoration: none; }
.security-points { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }.security-points div { display: flex; gap: 13px; padding: 22px; border: 1px solid rgba(255,255,255,.12); border-radius: 20px; background: rgba(255,255,255,.07); }.security-points span { color: #bdb7ff; font-size: 10px; font-weight: 800; }.security-points p { margin: 0; color: rgba(255,255,255,.64); font-size: 11px; line-height: 1.6; }.security-points strong { display: block; margin-bottom: 4px; color: #fff; font-size: 14px; }

.faq-section { background: #fff; }.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: start; }.text-link { display: inline-block; margin-top: 22px; color: var(--violet); font-weight: 800; text-decoration: none; }.faq-list { border-top: 1px solid var(--line); }.faq-list details { border-bottom: 1px solid var(--line); }.faq-list summary { position: relative; padding: 24px 46px 24px 0; cursor: pointer; font-weight: 800; list-style: none; }.faq-list summary::-webkit-details-marker { display: none; }.faq-list summary::after { position: absolute; top: 22px; right: 4px; content: "+"; color: var(--violet); font-size: 24px; font-weight: 400; }.faq-list details[open] summary::after { content: "−"; }.faq-list p { margin: -5px 40px 24px 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.download-section { padding: 30px 0 100px; background: #fff; }.download-card { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; padding: 64px 70px; border-radius: 42px; color: #fff; background: linear-gradient(130deg,#0d0c16,#28243c); }.download-card h2 { font-size: clamp(40px,5vw,66px); }.download-card p { max-width: 560px; color: rgba(255,255,255,.62); }.store-area { display: grid; gap: 14px; }.store-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }.store-button { display: flex; min-height: 72px; align-items: center; gap: 13px; padding: 12px 16px; border: 1px solid rgba(255,255,255,.32); border-radius: 15px; color: #fff; background: #050505; text-decoration: none; box-shadow: 0 12px 28px rgba(0,0,0,.22); transition: transform .2s ease, border-color .2s ease; }.store-button:hover { border-color: rgba(255,255,255,.72); transform: translateY(-2px); }.store-logo { flex: 0 0 auto; width: 31px; height: 34px; }.apple-logo { width: 32px; }.store-button span { display: block; line-height: 1; }.store-button small { display: block; margin-bottom: 5px; color: rgba(255,255,255,.82); font-size: 8px; font-weight: 650; letter-spacing: .07em; }.store-button strong { display: block; font-size: 17px; letter-spacing: -.02em; }.store-note { color: rgba(255,255,255,.46); line-height: 1.5; }

.site-footer { padding: 68px 0 28px; color: #b4b2c0; background: #111019; }.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; }.footer-brand .brand { color: #fff; }.footer-brand p { max-width: 320px; line-height: 1.7; }.footer-grid > div:not(.footer-brand) { display: grid; align-content: start; gap: 12px; }.footer-grid strong { margin-bottom: 8px; color: #fff; font-size: 13px; }.footer-grid a { color: #9a98a7; font-size: 12px; text-decoration: none; }.footer-grid a:hover { color: #fff; }.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); font-size: 11px; }
.cookie-banner { position: fixed; z-index: 60; right: 22px; bottom: 22px; left: 22px; display: grid; width: min(980px, calc(100% - 44px)); margin: 0 auto; grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding: 22px 24px; border: 1px solid rgba(101,88,245,.18); border-radius: 24px; background: rgba(255,255,255,.96); box-shadow: 0 24px 70px rgba(34,29,76,.2); backdrop-filter: blur(18px); }
.cookie-banner[hidden] { display: none; }
.cookie-banner strong { display: block; margin-bottom: 6px; font-size: 15px; }
.cookie-banner p { max-width: 680px; margin: 0 0 5px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.cookie-banner a { color: var(--violet); font-size: 12px; font-weight: 750; }
.cookie-actions { display: flex; gap: 9px; }
.cookie-actions .button { min-height: 44px; padding: 0 16px; border-radius: 13px; white-space: nowrap; }

@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; }.hero-copy { max-width: 760px; }.product-stage { margin-top: -10px; }.product-cards, .split-layout, .split-layout.reverse, .security-card, .faq-layout, .download-card { grid-template-columns: 1fr; }.split-layout, .split-layout.reverse { gap: 55px; }.split-layout.reverse .feature-copy { order: 2; }.split-layout.reverse .feature-visual { order: 1; }.feature-copy { max-width: 750px; }.security-card, .download-card { gap: 44px; }.feature-grid { grid-template-columns: 1fr 1fr; }.trust-grid { grid-template-columns: 1fr 1fr; }.trust-grid div:nth-child(3)::before { display: none; }.footer-grid { grid-template-columns: 2fr 1fr 1fr; }.footer-grid > div:last-child { grid-column: 2; }.brochure-card { grid-template-columns: auto 1fr; }.brochure-actions { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1180px); }.nav-wrap { min-height: 68px; }.main-nav { position: absolute; top: 66px; right: 14px; left: 14px; display: none; padding: 16px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow); }.main-nav.open { display: grid; }.main-nav a { padding: 10px 8px; }.main-nav .nav-cta { text-align: center; }.menu-button { display: block; }
  .hero { min-height: auto; padding: 120px 0 55px; }.hero-grid { gap: 24px; }.hero h1 { font-size: clamp(48px,15vw,70px); }.hero-lead { font-size: 16px; }.hero-actions .button { width: 100%; }.hero-notes { gap: 11px; }.product-stage { min-height: 650px; transform: scale(.9); margin: -30px -20px; }.float-card-income { right: -10px; }.float-card-budget { left: -10px; }.brochure-section { padding: 54px 0; }.brochure-card { grid-template-columns: 1fr; gap: 22px; padding: 30px 24px; text-align: center; }.brochure-icon { width: 66px; height: 76px; margin: 0 auto; }.brochure-actions { grid-column: auto; grid-template-columns: 1fr; }.brochure-copy p { margin-inline: auto; }
  .trust-grid { grid-template-columns: 1fr; }.trust-grid div { padding: 20px 10px; }.trust-grid div + div::before { top: 0; right: 0; bottom: auto; width: auto; height: 1px; }.section { padding: 78px 0; }.product-cards, .feature-grid, .security-points, .store-buttons, .footer-grid { grid-template-columns: 1fr; }.product-card { min-height: auto; padding: 30px 25px; border-radius: 28px; }.product-card h3 { margin-top: 35px; }.feature-visual { min-height: 500px; border-radius: 30px; }.visual-window, .dashboard-window { width: calc(100% - 28px); }.account-card.green { margin-left: 15px; }.account-card.dark { margin-left: 30px; }.security-card, .download-card { width: calc(100% - 20px); padding: 38px 24px; border-radius: 30px; }.footer-grid > div:last-child { grid-column: auto; }.footer-bottom { display: grid; }.section-heading h2, .feature-copy h2, .security-copy h2, .download-card h2 { font-size: 40px; }.faq-layout { gap: 30px; }
  .cookie-banner { right: 12px; bottom: 12px; left: 12px; width: calc(100% - 24px); grid-template-columns: 1fr; gap: 14px; padding: 18px; border-radius: 20px; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-actions .button { width: 100%; font-size: 12px; }
}

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