:root {
  --ink: #171620;
  --muted: #6f6b7e;
  --line: rgba(30, 26, 48, .1);
  --paper: #f8f7fc;
  --white: #fff;
  --purple: #6657f4;
  --purple-deep: #4e3fe1;
  --mint: #21c99a;
  --coral: #f6646b;
  --shadow: 0 32px 80px rgba(45, 38, 94, .15);
  --radius: 30px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image: linear-gradient(rgba(62, 53, 110, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(62, 53, 110, .025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 75%);
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { display: block; max-width: 100%; }
.section-shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.page-glow { position: absolute; z-index: -2; width: 620px; height: 620px; border-radius: 50%; filter: blur(8px); pointer-events: none; }
.page-glow-a { top: -260px; right: -180px; background: radial-gradient(circle, rgba(134, 116, 255, .26), rgba(134, 116, 255, 0) 70%); }
.page-glow-b { top: 720px; left: -350px; background: radial-gradient(circle, rgba(86, 224, 190, .16), rgba(86, 224, 190, 0) 70%); }

.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 48px));
  height: 68px;
  padding: 9px 12px 9px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 22px;
  background: rgba(248, 247, 252, .68);
  box-shadow: 0 12px 30px rgba(33, 29, 61, .06);
  backdrop-filter: blur(20px) saturate(1.3);
  transform: translateX(-50%);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { background: rgba(255, 255, 255, .9); box-shadow: 0 16px 40px rgba(33, 29, 61, .11); }
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 18px; font-weight: 800; letter-spacing: -.02em; }
.brand-mark { width: 42px; height: 42px; border-radius: 14px; overflow: hidden; background: #e8e6ed; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .05); }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a { padding: 12px 15px; border-radius: 13px; color: #514e5e; font-size: 14px; font-weight: 650; transition: .2s ease; }
.site-nav a:hover { color: var(--ink); background: rgba(103, 87, 244, .07); }
.site-nav .nav-download { padding-inline: 20px; color: #fff; background: var(--ink); }
.site-nav .nav-download:hover { color: #fff; background: var(--purple); transform: translateY(-1px); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 13px; background: #fff; }
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 5px auto; border-radius: 2px; background: var(--ink); transition: .2s ease; }

.hero { min-height: 830px; padding-top: 150px; display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 52px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: #696576; font-size: 13px; font-weight: 760; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow span { width: 24px; height: 2px; border-radius: 2px; background: var(--purple); }
.hero h1, .section-heading h2, .security h2, .download h2 { margin: 23px 0; letter-spacing: -.065em; line-height: .98; }
.hero h1 { font-size: clamp(58px, 7vw, 92px); }
.hero h1 em { color: var(--purple); font-style: normal; }
.hero-lead { max-width: 600px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.85; }
.hero-actions { margin-top: 36px; display: flex; align-items: center; gap: 13px; flex-wrap: wrap; }
.button { min-height: 56px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid transparent; border-radius: 17px; font-size: 15px; font-weight: 750; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.button:hover { transform: translateY(-3px); }
.button-primary { color: #fff; background: var(--ink); box-shadow: 0 16px 30px rgba(24, 22, 32, .2); }
.button-primary:hover { background: var(--purple); box-shadow: 0 18px 36px rgba(102, 87, 244, .28); }
.button-secondary { border-color: var(--line); background: rgba(255, 255, 255, .65); }
.button-secondary:hover { background: #fff; box-shadow: 0 14px 30px rgba(32, 28, 58, .08); }
.android-symbol { font-size: 11px; transform: rotate(45deg); }
.hero-meta { margin-top: 27px; display: flex; gap: 18px; flex-wrap: wrap; color: #777382; font-size: 12px; }
.hero-meta span { display: inline-flex; align-items: center; gap: 5px; }
.hero-meta i { color: var(--mint); font-style: normal; font-weight: 900; }

.hero-visual { position: relative; min-height: 650px; display: grid; place-items: center; perspective: 1200px; }
.phone { position: relative; width: 360px; padding: 10px; border: 2px solid #25232e; border-radius: 56px; background: #23212b; box-shadow: 0 45px 90px rgba(43, 37, 90, .24), 0 8px 22px rgba(0, 0, 0, .18); }
.phone::after { content: ""; position: absolute; top: 14px; left: 50%; width: 92px; height: 26px; border-radius: 18px; background: #17151d; transform: translateX(-50%); }
.phone-hero { transform: rotate(3deg); transition: transform .2s ease-out; }
.phone-screen { height: 635px; padding: 18px 17px 16px; overflow: hidden; border-radius: 46px; background: linear-gradient(180deg, #fbfbff, #f2f1f8); }
.statusbar { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; font-size: 10px; }
.statusbar span { font-size: 8px; letter-spacing: 1px; }
.app-topline { margin-top: 22px; display: flex; justify-content: space-between; align-items: center; }
.mini-brand { display: flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 800; }
.mini-brand img { width: 27px; height: 27px; border-radius: 9px; object-fit: cover; }
.avatar-dot { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--ink); font-size: 10px; }
.screen-greeting { margin-top: 22px; color: #9a96a6; font-size: 10px; }
.net-title { margin-top: 4px; font-size: 17px; font-weight: 800; }
.net-title span { color: var(--purple); font-size: 12px; }
.net-value { margin-top: 9px; font-size: 31px; font-weight: 850; letter-spacing: -.045em; }
.net-delta { margin-top: 8px; color: #f25662; font-size: 11px; font-weight: 700; }
.net-delta span { margin-left: 8px; color: #8d899a; font-weight: 500; }
.chart-box { height: 128px; margin-top: 10px; }
.chart-box svg { width: 100%; height: 100%; overflow: visible; }
.chart-area { fill: url(#chartFill); }
.chart-line { fill: none; stroke: var(--purple); stroke-width: 4; stroke-linecap: round; }
.chart-box circle { fill: #fff; stroke: var(--purple); stroke-width: 4; }
.asset-list { display: grid; gap: 9px; }
.asset-row { min-height: 65px; padding: 11px 12px; display: grid; grid-template-columns: 38px 1fr auto; gap: 10px; align-items: center; border: 1px solid rgba(32, 28, 58, .04); border-radius: 17px; background: rgba(255, 255, 255, .9); box-shadow: 0 8px 22px rgba(47, 41, 85, .06); }
.asset-icon { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 11px; color: #fff; font-size: 11px; font-weight: 800; }
.mint { background: #20c696; }.blue { background: #4386ec; }.violet { background: #7562ef; }
.asset-row span b, .asset-row span small { display: block; }
.asset-row b { font-size: 11px; }.asset-row small { margin-top: 3px; color: #9995a4; font-size: 8px; }.asset-row > strong { font-size: 12px; }
.app-dock { position: absolute; left: 27px; right: 27px; bottom: 25px; height: 58px; padding: 7px 11px; display: flex; justify-content: space-between; align-items: center; border: 1px solid rgba(255, 255, 255, .85); border-radius: 23px; background: rgba(255, 255, 255, .82); box-shadow: 0 12px 36px rgba(38, 34, 66, .12); backdrop-filter: blur(16px); }
.app-dock span { min-width: 40px; display: grid; place-items: center; color: #898594; font-size: 15px; }
.app-dock b { margin-top: 3px; font-size: 7px; }.app-dock .active { color: var(--purple); }.app-dock .dock-add { min-width: 39px; height: 39px; border-radius: 50%; color: #fff; background: var(--ink); font-size: 22px; transform: translateY(-9px); }
.floating-note { position: absolute; z-index: 3; padding: 14px 18px; border: 1px solid rgba(255, 255, 255, .84); border-radius: 17px; background: rgba(255, 255, 255, .8); box-shadow: 0 18px 42px rgba(40, 33, 91, .14); backdrop-filter: blur(18px); animation: float 4.6s ease-in-out infinite; }
.floating-note span, .floating-note strong { display: block; }.floating-note span { color: #8e899a; font-size: 10px; }.floating-note strong { margin-top: 4px; font-size: 14px; }
.note-a { top: 145px; right: -2px; }.note-a strong { color: var(--mint); }.note-b { left: 8px; bottom: 130px; display: flex; align-items: center; gap: 8px; animation-delay: -2s; }.note-b strong { margin: 0; font-size: 11px; }.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--purple); box-shadow: 0 0 0 6px rgba(102, 87, 244, .12); }
.orbit { position: absolute; border: 1px solid rgba(103, 87, 244, .12); border-radius: 50%; }.orbit-one { width: 530px; height: 530px; }.orbit-two { width: 420px; height: 420px; border-style: dashed; animation: spin 28s linear infinite; }

.trust-strip { min-height: 120px; margin-top: 20px; padding: 22px 12px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; border-block: 1px solid var(--line); }
.trust-strip div { padding: 8px 32px; border-right: 1px solid var(--line); }.trust-strip div:last-child { border: 0; }
.trust-strip strong, .trust-strip span { display: block; }.trust-strip strong { font-size: 18px; }.trust-strip span { margin-top: 6px; color: var(--muted); font-size: 12px; }

.showcase, .features, .security, .download { padding-top: 150px; }
.section-heading { max-width: 760px; }
.section-heading h2, .security h2, .download h2 { font-size: clamp(46px, 5.5vw, 76px); }
.section-heading p { max-width: 660px; color: var(--muted); font-size: 17px; line-height: 1.8; }
.section-heading.center { margin-inline: auto; text-align: center; }.section-heading.center .eyebrow { justify-content: center; }
.showcase-tabs { margin-top: 65px; display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); }
.showcase-tabs button { position: relative; padding: 20px 8px; border: 0; color: #9994a4; background: transparent; cursor: pointer; font-weight: 700; transition: color .25s ease; }
.showcase-tabs button::after { content: ""; position: absolute; left: 50%; bottom: -1px; width: 0; height: 3px; border-radius: 4px 4px 0 0; background: var(--purple); transform: translateX(-50%); transition: width .3s ease; }
.showcase-tabs button span { margin-right: 9px; font-size: 11px; }.showcase-tabs button.is-active { color: var(--ink); }.showcase-tabs button.is-active::after { width: 100%; }
.showcase-stage { min-height: 690px; display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 50px; border-radius: 0 0 36px 36px; background: linear-gradient(135deg, rgba(255, 255, 255, .7), rgba(238, 235, 255, .65)); overflow: hidden; }
.showcase-copy { position: relative; min-height: 420px; padding-left: 58px; }
.showcase-copy-panel { position: absolute; inset: 0 0 0 58px; display: flex; flex-direction: column; justify-content: center; opacity: 0; visibility: hidden; transform: translateY(18px); transition: .35s ease; }
.showcase-copy-panel.is-active { opacity: 1; visibility: visible; transform: none; }
.panel-kicker { color: var(--purple); font-size: 12px; font-weight: 800; letter-spacing: .14em; }
.showcase-copy h3 { max-width: 480px; margin: 14px 0; font-size: 38px; letter-spacing: -.045em; line-height: 1.15; }
.showcase-copy p { max-width: 490px; margin: 0; color: var(--muted); line-height: 1.8; }
.showcase-copy ul { margin: 25px 0 0; padding: 0; display: grid; gap: 11px; list-style: none; }.showcase-copy li { color: #494555; font-size: 13px; }.showcase-copy li::before { content: "✓"; margin-right: 9px; color: var(--mint); font-weight: 900; }
.showcase-device-wrap { min-height: 690px; display: grid; place-items: center; background: radial-gradient(circle at 50% 45%, rgba(111, 92, 255, .17), transparent 60%); }
.showcase-device { position: relative; width: 340px; height: 600px; padding: 10px; border: 2px solid #24222c; border-radius: 48px; background: #211f28; box-shadow: 0 42px 80px rgba(43, 35, 91, .25); overflow: hidden; }
.device-camera { position: absolute; z-index: 5; top: 15px; left: 50%; width: 82px; height: 23px; border-radius: 16px; background: #17151d; transform: translateX(-50%); }
.showcase-screen { position: absolute; inset: 10px; padding: 17px; border-radius: 38px; background: #f8f8fc; opacity: 0; visibility: hidden; transform: scale(.97) translateY(12px); transition: .4s cubic-bezier(.2,.75,.25,1); overflow: hidden; }
.showcase-screen.is-active { opacity: 1; visibility: visible; transform: none; }
.mini-status { margin-bottom: 24px; display: flex; justify-content: space-between; font-size: 9px; }.mini-status span { font-size: 7px; }
.mini-page-title { display: flex; align-items: center; justify-content: space-between; font-size: 25px; font-weight: 850; letter-spacing: -.04em; }.mini-page-title b { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--ink); font-size: 21px; }
.balance-card, .forecast-card { margin-top: 20px; padding: 19px; border-radius: 22px; color: #fff; background: linear-gradient(135deg, #6253ec, #8173ff); box-shadow: 0 17px 32px rgba(99, 83, 236, .22); }.balance-card small, .balance-card strong, .balance-card span { display: block; }.balance-card small { font-size: 10px; opacity: .75; }.balance-card strong { margin: 7px 0; font-size: 27px; }.balance-card span { color: #a8f7df; font-size: 10px; }
.section-label { margin: 24px 3px 10px; display: flex; justify-content: space-between; font-size: 13px; font-weight: 800; }.section-label span { color: #9994a3; font-size: 9px; font-weight: 500; }
.mini-account { min-height: 64px; padding: 10px 3px; display: grid; grid-template-columns: 37px 1fr auto; gap: 9px; align-items: center; border-bottom: 1px solid #e8e6ed; }.mini-account i { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: #fff; background: #282530; font-size: 10px; font-style: normal; font-weight: 850; }.mini-account i.za { background: #25a96f; }.mini-account i.wx { background: #16b564; }.mini-account i.ib { background: #d44a47; }.mini-account span b, .mini-account span small, .mini-account > strong { display: block; }.mini-account span b { font-size: 10px; }.mini-account span small { margin-top: 4px; color: #9b97a5; font-size: 7px; }.mini-account > strong { font-size: 10px; }.mini-account.muted > strong { color: #e45560; }
.mini-back-title { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 850; }.mini-back-title b { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: #e8e6ee; font-size: 28px; font-weight: 400; }
.mock-search { height: 48px; margin-top: 22px; padding: 0 8px 0 15px; display: flex; align-items: center; justify-content: space-between; border: 2px solid var(--purple); border-radius: 15px; background: #fff; }.mock-search span { color: #4a4654; font-size: 11px; }.mock-search b { padding: 8px 12px; border-radius: 10px; color: #fff; background: var(--purple); font-size: 9px; }
.search-result { margin-top: 9px; padding: 12px 13px; display: flex; justify-content: space-between; align-items: center; border: 1px solid #e7e4f1; border-radius: 14px; background: #fff; box-shadow: 0 10px 20px rgba(44, 38, 78, .06); }.search-result span b, .search-result span small { display: block; }.search-result span b { font-size: 11px; }.search-result span small { margin-top: 3px; color: #9691a1; font-size: 8px; }.search-result > strong { color: var(--purple); font-size: 8px; }
.sync-card { margin-top: 18px; padding: 17px; border-radius: 20px; background: var(--ink); color: #fff; box-shadow: 0 18px 32px rgba(23,22,32,.2); }.sync-card > span { color: #7aebc8; font-size: 9px; font-weight: 800; }.sync-card h4 { margin: 8px 0 13px; font-size: 15px; }.sync-card > div { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }.sync-card div span { padding: 10px; border-radius: 12px; background: rgba(255,255,255,.08); }.sync-card small,.sync-card b { display: block; }.sync-card small { opacity: .6; font-size: 7px; }.sync-card b { margin-top: 4px; font-size: 13px; }.gain { color: #41d6a8 !important; }.sync-card p { margin: 11px 0 0; color: #aca8b5; font-size: 8px; }
.holding-position, .dividend-pill { margin-top: 13px; padding: 14px; display: flex; justify-content: space-between; align-items: center; border-radius: 16px; background: #fff; }.holding-position span b,.holding-position span small,.holding-position > strong,.holding-position > strong small { display: block; }.holding-position span b { font-size: 12px; }.holding-position span small { margin-top: 4px; color: #928e9c; font-size: 8px; }.holding-position > strong { text-align: right; font-size: 12px; }.holding-position > strong small { margin-top: 4px; font-size: 8px; }
.dividend-pill { justify-content: flex-start; gap: 10px; }.dividend-pill > span { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 10px; color: #fff; background: #f0a621; font-size: 10px; font-weight: 850; }.dividend-pill p { flex: 1; margin: 0; }.dividend-pill p b,.dividend-pill p small { display: block; }.dividend-pill p b { font-size: 9px; }.dividend-pill p small { margin-top: 3px; color: #9a96a5; font-size: 7px; }.dividend-pill > strong { font-size: 10px; }
.card-stack { position: relative; height: 245px; margin-top: 18px; }.card-stack img { position: absolute; left: 50%; width: 270px; border-radius: 16px; box-shadow: 0 18px 34px rgba(20,18,28,.24); transform: translateX(-50%); }.card-stack img:nth-child(1) { top: 60px; z-index: 3; }.card-stack img:nth-child(2) { top: 30px; z-index: 2; transform: translateX(-50%) scale(.93); filter: brightness(.92); }.card-stack img:nth-child(3) { top: 0; z-index: 1; transform: translateX(-50%) scale(.86); filter: brightness(.85); }
.card-caption { margin: 6px 3px 0; display: flex; justify-content: space-between; align-items: end; }.card-caption b,.card-caption small { display: block; }.card-caption b { font-size: 11px; }.card-caption small { margin-top: 4px; color: #9692a0; font-size: 7px; }.card-caption > strong { font-size: 11px; }
.activity-card { margin-top: 20px; padding: 15px; border-radius: 17px; background: #fff; box-shadow: 0 10px 25px rgba(36,31,68,.07); }.activity-card > div:first-child { display: flex; justify-content: space-between; }.activity-card span b,.activity-card span small { display: block; }.activity-card span b { font-size: 10px; }.activity-card span small { margin-top: 4px; color: #908c9b; font-size: 7px; }.activity-card > div > strong { color: var(--purple); font-size: 11px; }.progress { height: 7px; margin-top: 12px; border-radius: 99px; background: #e8e5f4; overflow: hidden; }.progress i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #6657f4, #8b7cff); }.activity-card p { margin: 8px 0 0; color: #807b8b; font-size: 8px; }
.forecast-card small,.forecast-card strong,.forecast-card span { display:block; }.forecast-card small { font-size:9px; opacity:.72; }.forecast-card strong { margin:7px 0 12px; font-size:24px; }.forecast-card div { height:6px; border-radius:99px; background:rgba(255,255,255,.25); }.forecast-card div i { display:block; width:68%; height:100%; border-radius:inherit; background:#7ff0ce; }.forecast-card span { margin-top:8px; font-size:8px; opacity:.72; }
.timeline-date { margin: 23px 4px 8px; display:flex; justify-content:space-between; font-size:9px; font-weight:800; }.timeline-date span { color:#9692a1; font-weight:500; }.timeline-row { min-height:64px; padding:12px 3px; display:grid; grid-template-columns:10px 1fr auto; gap:10px; align-items:center; border-bottom:1px solid #e8e6ed; }.timeline-row > i { width:8px; height:8px; border-radius:50%; background:#f15c64; box-shadow:0 0 0 4px rgba(241,92,100,.1); }.timeline-row span b,.timeline-row span small { display:block; }.timeline-row span b { font-size:10px; }.timeline-row span small { margin-top:4px; color:#9692a0; font-size:7px; }.timeline-row > strong { color:#e8525e; font-size:9px; }.timeline-row.income > i { background:#1ec593; box-shadow:0 0 0 4px rgba(30,197,147,.1); }.timeline-row.income > strong { color:#17ad81; }.timeline-row.reminder > i { background:#f0a621; box-shadow:0 0 0 4px rgba(240,166,33,.1); }.timeline-row.reminder > strong { color:#393541; }

.feature-grid { margin-top: 70px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { position: relative; min-height: 315px; padding: 31px; border: 1px solid rgba(255,255,255,.8); border-radius: 28px; background: rgba(255,255,255,.72); box-shadow: 0 16px 50px rgba(43,36,88,.06); overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }.feature-card:hover { transform: translateY(-7px); box-shadow: 0 25px 60px rgba(43,36,88,.11); }.feature-card > span { position:absolute; top:32px; right:32px; color:#aaa6b2; font-size:11px; font-weight:800; }.feature-icon { width:52px; height:52px; display:grid; place-items:center; border-radius:17px; color:#fff; font-size:22px; font-weight:800; }.feature-icon.lilac { background:#6858ef; }.feature-icon.mint { background:#20be92; }.feature-icon.coral { background:#f1646c; }.feature-icon.sky { background:#4388ec; }.feature-icon.amber { background:#f0a621; }.feature-card h3 { margin:45px 0 12px; font-size:24px; letter-spacing:-.035em; }.feature-card p { margin:0; color:var(--muted); font-size:14px; line-height:1.75; }.feature-large { grid-row: span 2; min-height:648px; color:#fff; background:var(--ink); }.feature-large p { color:#aba7b2; }.feature-large h3 { margin-top:70px; font-size:38px; }.feature-large::after { content:""; position:absolute; right:-130px; bottom:-150px; width:400px; height:400px; border-radius:50%; background:radial-gradient(circle,rgba(112,93,255,.5),transparent 65%); }.allocation { position:absolute; z-index:1; left:31px; right:31px; bottom:50px; height:160px; display:flex; align-items:flex-end; gap:7px; }.allocation i { display:block; flex:var(--w); height:var(--h); max-height:150px; border-radius:12px 12px 4px 4px; background:var(--c); }.feature-wide { grid-column: span 2; }.reminder-chips { margin-top:30px; display:flex; gap:8px; flex-wrap:wrap; }.reminder-chips i { padding:9px 12px; border-radius:12px; color:#5c5768; background:#f0eef6; font-size:9px; font-style:normal; font-weight:700; }

.security-card { min-height: 520px; padding: 70px; display:grid; grid-template-columns:1.1fr .9fr; align-items:center; border-radius:42px; color:#fff; background:var(--ink); overflow:hidden; }.security .eyebrow.light { color:#aaa6b3; }.security .eyebrow.light span { background:#7df0ce; }.security h2 { margin-block:23px; }.security-copy > p { max-width:600px; color:#aba7b2; line-height:1.8; }.security-points { margin-top:30px; display:flex; gap:12px; flex-wrap:wrap; }.security-points span { padding:10px 13px; border:1px solid rgba(255,255,255,.1); border-radius:12px; color:#d7d4dc; font-size:11px; }.security-points i { margin-right:5px; color:#6ee7c3; font-style:normal; }.security-visual { position:relative; min-height:360px; display:grid; place-items:center; }.shield-ring { position:absolute; border:1px solid rgba(119,237,202,.18); border-radius:50%; }.ring-a { width:330px; height:330px; }.ring-b { width:230px; height:230px; border-style:dashed; animation:spin 24s linear infinite reverse; }.shield-core { position:relative; width:150px; height:150px; border:1px solid rgba(255,255,255,.18); border-radius:48px; background:linear-gradient(145deg,#33303d,#1e1c25); box-shadow:0 30px 60px rgba(0,0,0,.34); transform:rotate(45deg); overflow:hidden; }.shield-core img { width:100%; height:100%; object-fit:cover; transform:rotate(-45deg) scale(1.25); }.shield-core span { position:absolute; right:8px; bottom:8px; width:36px; height:36px; display:grid; place-items:center; border-radius:50%; color:#15241f; background:#76edca; font-weight:900; transform:rotate(-45deg); }

.download { padding-bottom:130px; }.download-card { position:relative; min-height:570px; padding:75px; display:grid; grid-template-columns:1.1fr .9fr; align-items:center; border-radius:42px; background:linear-gradient(135deg,#efecff,#e9f9f4); overflow:hidden; }.download-card::before { content:""; position:absolute; inset:0; background-image:radial-gradient(rgba(104,87,244,.12) 1px,transparent 1px); background-size:22px 22px; mask-image:linear-gradient(90deg,transparent,#000); }.download-copy { position:relative; z-index:2; }.download h2 { margin-block:23px; }.download-copy > p { max-width:590px; color:var(--muted); line-height:1.8; }.download-actions { margin-top:30px; display:flex; gap:12px; align-items:stretch; flex-wrap:wrap; }.button-download { min-width:270px; justify-content:flex-start; }.download-icon { width:31px; height:31px; display:grid; place-items:center; border-radius:50%; color:var(--ink); background:#fff; font-size:20px; }.button-download b,.button-download small { display:block; }.button-download small { margin-top:3px; color:#aaa6b3; font-size:9px; font-weight:500; }.ios-soon { min-width:120px; padding:10px 18px; display:flex; flex-direction:column; justify-content:center; border:1px solid rgba(39,34,67,.1); border-radius:17px; background:rgba(255,255,255,.6); }.ios-soon b { font-size:13px; }.ios-soon small { margin-top:3px; color:#9691a1; font-size:9px; }.install-note { font-size:11px; }.download-logo { position:relative; z-index:2; display:grid; place-items:center; }.download-logo::before { content:""; position:absolute; width:360px; height:360px; border:1px solid rgba(102,87,244,.15); border-radius:50%; }.download-logo div { position:relative; z-index:1; width:230px; padding:20px 20px 25px; text-align:center; border:1px solid rgba(255,255,255,.85); border-radius:48px; background:rgba(255,255,255,.72); box-shadow:0 28px 60px rgba(76,61,148,.15); backdrop-filter:blur(15px); }.download-logo img { width:150px; height:150px; margin:auto; border-radius:38px; object-fit:cover; }.download-logo span,.download-logo small { display:block; }.download-logo span { margin-top:18px; font-size:24px; font-weight:900; }.download-logo small { margin-top:5px; color:#8e899a; font-size:9px; letter-spacing:.15em; }

.site-footer { min-height:115px; padding-block:25px; display:flex; align-items:center; justify-content:space-between; border-top:1px solid var(--line); }.site-footer p,.site-footer > span { color:#898593; font-size:11px; }.site-footer .brand { font-size:15px; }.site-footer .brand-mark { width:34px; height:34px; border-radius:11px; }

.reveal { opacity:0; transform:translateY(24px); transition:opacity .7s ease,transform .7s ease; }.reveal.is-visible { opacity:1; transform:none; }
@keyframes float { 0%,100%{transform:translateY(0)}50%{transform:translateY(-9px)} }
@keyframes spin { to{transform:rotate(360deg)} }

@media (max-width: 980px) {
  .hero { grid-template-columns:1fr; padding-top:160px; text-align:center; }.hero-copy { display:flex; flex-direction:column; align-items:center; }.hero-visual { margin-top:20px; }.trust-strip { grid-template-columns:repeat(2,1fr); }.trust-strip div:nth-child(2) { border-right:0; }.showcase-stage { grid-template-columns:1fr; padding:45px 20px 60px; }.showcase-copy { min-height:330px; padding:0; }.showcase-copy-panel { inset:0; text-align:center; align-items:center; }.showcase-device-wrap { min-height:620px; }.feature-grid { grid-template-columns:1fr 1fr; }.feature-large { grid-row:span 2; }.feature-wide { grid-column:auto; }.security-card,.download-card { grid-template-columns:1fr; gap:50px; padding:60px; }.security-visual { grid-row:1; }.download-logo { grid-row:1; }.site-footer { flex-wrap:wrap; gap:15px; }
}

@media (max-width: 680px) {
  .section-shell { width:min(100% - 28px,1180px); }.site-header { top:10px; width:calc(100% - 20px); height:60px; padding:8px 9px 8px 13px; border-radius:18px; }.brand { font-size:16px; }.brand-mark { width:38px; height:38px; border-radius:12px; }.menu-toggle { display:block; }.site-nav { position:absolute; top:67px; left:0; right:0; padding:9px; display:grid; border:1px solid rgba(255,255,255,.8); border-radius:18px; background:rgba(255,255,255,.95); box-shadow:0 20px 40px rgba(33,29,61,.15); opacity:0; visibility:hidden; transform:translateY(-8px); transition:.22s ease; }.site-nav.is-open { opacity:1; visibility:visible; transform:none; }.site-nav a { text-align:center; }.menu-toggle[aria-expanded="true"] span:first-child { transform:translateY(3.5px) rotate(45deg); }.menu-toggle[aria-expanded="true"] span:last-child { transform:translateY(-3.5px) rotate(-45deg); }
  .hero { min-height:auto; padding-top:125px; gap:20px; }.hero h1 { font-size:55px; }.hero-lead { font-size:15px; line-height:1.75; }.hero-actions { width:100%; display:grid; }.button { width:100%; }.hero-meta { justify-content:center; }.hero-visual { min-height:590px; transform:scale(.88); margin-inline:-30px; }.floating-note.note-a { right:-13px; }.floating-note.note-b { left:-8px; }.orbit-one { width:470px; height:470px; }.orbit-two { width:390px; height:390px; }
  .trust-strip { margin-top:-35px; grid-template-columns:1fr 1fr; }.trust-strip div { padding:17px 12px; }.trust-strip strong { font-size:14px; }.trust-strip span { font-size:9px; }
  .showcase,.features,.security,.download { padding-top:100px; }.section-heading h2,.security h2,.download h2 { font-size:43px; }.section-heading p { font-size:14px; }.showcase-tabs { margin-top:38px; grid-template-columns:repeat(2,1fr); border-bottom:0; gap:7px; }.showcase-tabs button { padding:13px 7px; border-radius:12px; background:#eeecf4; font-size:11px; }.showcase-tabs button::after { display:none; }.showcase-tabs button.is-active { color:#fff; background:var(--ink); }.showcase-stage { min-height:950px; padding:25px 8px 50px; border-radius:25px; }.showcase-copy { min-height:320px; }.showcase-copy-panel { padding:12px 20px; }.showcase-copy h3 { font-size:30px; }.showcase-copy p { font-size:13px; }.showcase-device-wrap { min-height:610px; background:none; }.showcase-device { transform:scale(.92); }
  .feature-grid { grid-template-columns:1fr; margin-top:40px; }.feature-card,.feature-large { min-height:310px; }.feature-large { min-height:490px; }.feature-wide { grid-column:auto; }.feature-large h3 { margin-top:45px; }.allocation { height:110px; bottom:30px; }
  .security-card,.download-card { padding:38px 25px; border-radius:28px; }.security-card { gap:15px; }.security-visual { min-height:300px; transform:scale(.8); }.security-points { gap:7px; }.security-points span { font-size:9px; }.download-logo { transform:scale(.82); }.download-actions { display:grid; }.download-actions > * { width:100%; }.ios-soon { min-height:58px; }.site-footer { padding-block:30px; justify-content:center; text-align:center; }.site-footer p { width:100%; order:3; }
}

@media (max-width: 680px) {
  .page-glow {
    display: none;
  }

  .hero h1 {
    font-size: clamp(44px, 14vw, 54px);
    line-height: 1.02;
  }

  .hero-visual {
    width: 100%;
    min-height: 540px;
    margin-inline: 0;
    overflow: hidden;
    transform: none;
  }

  .phone-hero {
    width: min(340px, calc(100vw - 42px));
    transform: none !important;
  }

  .phone-screen {
    height: 600px;
  }

  .orbit-one {
    width: 350px;
    height: 350px;
  }

  .orbit-two {
    width: 300px;
    height: 300px;
  }

  .floating-note {
    max-width: 132px;
    padding: 10px 12px;
  }

  .floating-note.note-a {
    top: 110px;
    right: 4px;
  }

  .floating-note.note-b {
    bottom: 72px;
    left: 4px;
  }

  .showcase-stage {
    min-height: 900px;
    overflow: hidden;
  }

  .showcase-device {
    width: min(330px, calc(100vw - 44px));
    transform: none;
  }

  .security-card,
  .download-card {
    overflow: hidden;
  }
}

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