:root {
  --black: #070809;
  --black-2: #11100e;
  --panel: #181512;
  --paper: #fffaf3;
  --paper-2: #fff5e9;
  --text: #15120f;
  --muted: #6f6258;
  --line: #ecd8c0;
  --line-dark: rgba(255, 255, 255, 0.13);
  --orange: #ff6a00;
  --orange-2: #ff3f13;
  --gold: #ffb21a;
  --glow: rgba(255, 133, 24, 0.38);
  --wrap: 910px;
  --shadow: 0 18px 50px rgba(100, 59, 24, 0.12);
}

* { box-sizing: border-box; }

html {
  overflow-y: scroll;
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--text);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, sans-serif;
  letter-spacing: 0;
  margin: 0;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }

.site-header {
  background: rgba(5, 6, 7, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 30;
}

.header-inner {
  align-items: center;
  display: grid;
  grid-template-columns: 190px 1fr 190px;
  height: 100%;
  margin: 0 auto;
  max-width: var(--wrap);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 9px;
  justify-self: start;
  min-width: 150px;
}

.brand img {
  border-radius: 10px;
  height: 38px;
  width: 38px;
}

.brand strong {
  display: block;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
}

.brand span span {
  color: rgba(255, 255, 255, 0.66);
  display: block;
  font-size: 10px;
  margin-top: 3px;
}

.nav {
  align-items: center;
  display: flex;
  gap: 38px;
  justify-content: center;
}

.nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
  padding: 22px 0 18px;
  position: relative;
}

.nav a.active,
.nav a:hover {
  color: var(--orange);
}

.nav a.active::after {
  background: linear-gradient(90deg, var(--orange), var(--gold));
  bottom: 10px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 100%;
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-self: end;
  min-width: 172px;
}

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  line-height: 1;
  padding: 0 18px;
  white-space: nowrap;
}

.btn.primary {
  background: linear-gradient(135deg, #ff4b1e, #ffad14);
  box-shadow: 0 10px 24px rgba(255, 105, 12, 0.28);
  color: #fff;
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.mobile-menu { display: none; }

.page-main {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 106, 0, 0.06), transparent 28%),
    linear-gradient(180deg, #fffaf5, #fffdf9 45%, #fff8ef);
}

.wrap {
  margin: 0 auto;
  max-width: var(--wrap);
}

.dark-hero {
  background:
    radial-gradient(circle at 78% 72%, rgba(255, 141, 22, 0.45), transparent 17%),
    linear-gradient(115deg, rgba(255, 111, 0, 0.09) 0%, transparent 34%),
    #080a0c;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.dark-hero::before,
.tech-panel::before,
.black-band::before {
  background:
    linear-gradient(90deg, rgba(255, 138, 22, 0.11) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 138, 22, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
  opacity: 0.45;
  position: absolute;
}

.dark-hero::after {
  border: 1px solid rgba(255, 152, 34, 0.32);
  border-left-color: transparent;
  border-radius: 50%;
  bottom: -126px;
  content: "";
  height: 250px;
  position: absolute;
  right: -90px;
  transform: rotate(-13deg);
  width: 520px;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 38px;
  grid-template-columns: minmax(0, 0.95fr) minmax(350px, 0.95fr);
  min-height: 370px;
  padding: 28px 0 32px;
  position: relative;
  z-index: 1;
}

.home-hero .hero-grid {
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.94fr);
}

.home-hero .hero-copy h1 {
  font-size: 34px;
}

.hero-visual {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0;
  min-height: 330px;
  position: relative;
  z-index: 1;
}

.hero-visual img {
  filter: drop-shadow(0 22px 48px rgba(255, 122, 12, 0.2));
  height: auto;
  max-width: none;
  transform: translateX(10px);
  width: min(560px, 118%);
}

.hero-grid > *,
.split-head > *,
.geo-grid > *,
.trust-grid > *,
.calculator-band > *,
.flow-panel > *,
.download-band-large > * {
  min-width: 0;
}

.hero-grid.about {
  min-height: 430px;
}

.download-hero .hero-grid {
  min-height: 390px;
}

.eyebrow,
.pill {
  align-items: center;
  color: var(--orange);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  gap: 8px;
  margin: 0 0 18px;
}

.pill {
  border: 1px solid rgba(255, 153, 31, 0.74);
  border-radius: 999px;
  padding: 7px 14px;
}

.eyebrow::before,
.pill::before {
  background: linear-gradient(90deg, var(--gold), var(--orange));
  border-radius: 999px;
  content: "";
  height: 5px;
  width: 18px;
}

h1, h2, h3, p { margin-top: 0; }

.hero-copy h1 {
  font-size: 36px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.14;
  margin-bottom: 16px;
}

.hero-copy h1 .line {
  display: block;
}

.download-hero .hero-copy h1 {
  font-size: 46px;
}

.hero-copy h1 em,
.section-title em {
  color: var(--orange);
  font-style: normal;
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.72;
  margin-bottom: 20px;
}

.hero-buttons,
.hero-metrics {
  display: flex;
  gap: 14px;
}

.hero-metrics {
  gap: 30px;
  margin-top: 22px;
}

.metric {
  color: rgba(255, 255, 255, 0.64);
  font-size: 10.5px;
  line-height: 1.55;
}

.metric i {
  align-items: center;
  background: rgba(255, 142, 20, 0.12);
  border: 1px solid rgba(255, 157, 28, 0.48);
  border-radius: 999px;
  color: var(--gold);
  display: flex;
  font-style: normal;
  height: 22px;
  justify-content: center;
  margin-bottom: 8px;
  width: 22px;
}

.metric strong {
  color: #fff;
  display: block;
  font-size: 12px;
  margin-bottom: 3px;
}

.hero-board {
  background: linear-gradient(145deg, rgba(40, 32, 25, 0.92), rgba(12, 13, 14, 0.96));
  border: 1px solid rgba(255, 182, 68, 0.48);
  border-radius: 19px;
  box-shadow: 0 0 46px rgba(255, 130, 13, 0.24);
  padding: 14px;
  position: relative;
  transform: rotate(-3deg);
}

.hero-board::after,
.phone-card::after,
.floating-card::after {
  background: radial-gradient(circle, rgba(255,255,255,0.98), transparent 58%);
  content: "";
  height: 84px;
  opacity: 0.38;
  position: absolute;
  right: -23px;
  top: -24px;
  width: 84px;
}

.board-tabs,
.track-row,
.platform-row {
  display: flex;
  gap: 12px;
}

.board-tabs {
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  margin-bottom: 12px;
  padding-bottom: 9px;
}

.board-tabs span:first-child {
  color: #fff;
  position: relative;
}

.board-tabs span:first-child::after {
  background: var(--orange);
  bottom: -11px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 100%;
}

.money-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.money-card,
.track-card,
.platform-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 10px;
  padding: 12px;
}

.money-card span,
.track-card span {
  color: rgba(255,255,255,0.68);
  display: block;
  font-size: 12px;
}

.money-card strong {
  color: var(--orange);
  display: block;
  font-size: 24px;
  margin-top: 6px;
}

.track-card {
  margin-top: 12px;
}

.track-line {
  background: rgba(255,255,255,0.16);
  border-radius: 999px;
  height: 5px;
  margin: 14px 0 10px;
  position: relative;
}

.track-line i {
  background: linear-gradient(90deg, var(--orange), var(--gold));
  border-radius: inherit;
  display: block;
  height: 100%;
  width: 68%;
}

.track-row {
  color: rgba(255,255,255,0.68);
  font-size: 11px;
  justify-content: space-between;
}

.platform-row {
  margin-top: 12px;
}

.platform-row span,
.platform-chip {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  color: rgba(255,255,255,0.86);
  font-size: 12px;
  padding: 8px 13px;
}

.section {
  padding: 18px 0;
}

.section.tight { padding-top: 8px; }

.section-head {
  margin-bottom: 18px;
}

.section-title {
  font-size: 26px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.22;
  margin-bottom: 12px;
}

.section-desc {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  max-width: 560px;
}

.split-head {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: 270px 1fr;
}

.cards-3,
.cards-2,
.cards-6 {
  display: grid;
  gap: 16px;
}

.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.cards-6 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.card h3 {
  font-size: 17px;
  font-weight: 950;
  margin-bottom: 6px;
}

.card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.58;
  margin-bottom: 0;
}

.icon {
  align-items: center;
  background: linear-gradient(135deg, #ffbc1b, #ff461f);
  border-radius: 12px;
  box-shadow: 0 14px 28px rgba(255, 106, 0, 0.2);
  color: #fff;
  display: flex;
  font-size: 20px;
  font-weight: 950;
  height: 38px;
  justify-content: center;
  margin-bottom: 12px;
  width: 38px;
}

.icon.soft {
  background: #fff0dd;
  box-shadow: none;
  color: var(--orange);
}

.calculator-band,
.black-band {
  background:
    radial-gradient(circle at 90% 18%, rgba(255, 160, 40, 0.22), transparent 24%),
    linear-gradient(135deg, #171411, #0b0c0d);
  border-radius: 14px;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.calculator-band {
  align-items: center;
  display: grid;
  gap: 22px;
  grid-template-columns: 1.15fr 0.85fr;
  padding: 17px 22px;
}

.calc-row {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: 66px 1fr 60px;
  margin: 6px 0;
}

.calc-row span {
  color: rgba(255,255,255,0.74);
  font-size: 12px;
}

.meter {
  background: rgba(255,255,255,0.16);
  border-radius: 999px;
  height: 5px;
}

.meter i {
  background: linear-gradient(90deg, var(--orange), var(--gold));
  border-radius: inherit;
  display: block;
  height: 100%;
}

.calc-result {
  border: 1px solid rgba(255, 183, 70, 0.62);
  border-radius: 12px;
  box-shadow: inset 0 0 26px rgba(255, 135, 18, 0.24);
  padding: 14px;
}

.calc-result span {
  color: rgba(255,255,255,0.78);
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
}

.calc-result strong {
  color: var(--gold);
  display: block;
  font-size: 30px;
  line-height: 1;
}

.calc-result p {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  margin: 8px 0 0;
}

.flow-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 142px 1fr 122px;
  overflow: hidden;
}

.flow-tabs {
  border-right: 1px solid var(--line);
  padding: 12px;
}

.flow-tab {
  background: #fffaf4;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #5e5148;
  cursor: pointer;
  display: block;
  font-weight: 900;
  margin-bottom: 8px;
  padding: 10px 14px;
  text-align: left;
  width: 100%;
}

.flow-tab.active {
  border-color: var(--orange);
  color: var(--orange);
}

.flow-copy {
  padding: 20px 24px;
}

.flow-copy h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.flow-copy ul {
  margin: 0;
  padding-left: 18px;
}

.flow-copy li {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.flow-art {
  align-items: center;
  background: linear-gradient(135deg, #fff7ed, #fff);
  color: rgba(255, 106, 0, 0.28);
  display: flex;
  font-size: 58px;
  font-weight: 950;
  justify-content: center;
}

.platform-cloud {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(6, 1fr);
}

.platform-cloud span {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 12px 26px rgba(108, 64, 24, 0.08);
  display: flex;
  font-size: 14px;
  font-weight: 900;
  gap: 8px;
  justify-content: center;
  min-height: 42px;
}

.platform-cloud span::before {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  border-radius: 50%;
  content: "";
  height: 18px;
  width: 18px;
}

.geo-band,
.trust-band {
  background:
    radial-gradient(circle at 0% 50%, rgba(255, 132, 16, 0.28), transparent 28%),
    linear-gradient(135deg, #1b1714, #0b0b0b);
  color: #fff;
  padding: 28px 0;
}

.geo-grid,
.trust-grid {
  align-items: center;
  display: grid;
  gap: 38px;
  grid-template-columns: 0.95fr 1.25fr;
}

.geo-grid .section-title,
.trust-grid .section-title {
  color: #fff;
}

.geo-grid .section-desc,
.trust-grid .section-desc {
  color: rgba(255,255,255,0.72);
}

.fact-list,
.trust-list {
  display: grid;
  gap: 10px;
}

.fact-item,
.trust-item {
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 9px;
  display: grid;
  gap: 16px;
  grid-template-columns: 130px 1fr 20px;
  padding: 10px 14px;
}

.fact-item strong,
.trust-item strong {
  color: #fff;
  font-size: 14px;
}

.fact-item p,
.trust-item p {
  color: rgba(255,255,255,0.68);
  font-size: 12px;
  line-height: 1.7;
  margin: 0;
}

.fact-item::after {
  color: var(--gold);
  content: "⌄";
}

.orange-cta,
.download-panel {
  background:
    radial-gradient(circle at 82% 48%, rgba(255,255,255,0.24), transparent 17%),
    linear-gradient(110deg, #ff4b1e, #ffb000);
  border-radius: 10px;
  color: #fff;
  overflow: hidden;
}

.orange-cta {
  align-items: center;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 82px;
  padding: 14px 28px;
}

.orange-cta h2,
.download-panel h2 {
  font-size: 23px;
  margin-bottom: 8px;
}

.orange-cta p,
.download-panel p {
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  margin: 0;
}

.qr-box {
  background: #fff;
  border-radius: 8px;
  color: #24160f;
  padding: 6px;
  text-align: center;
}

.qr-box img {
  height: 60px;
  margin: 0 auto 6px;
  width: 60px;
}

.qr-box strong {
  font-size: 11px;
}

.faq-list {
  display: grid;
  gap: 0;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-bottom: 0;
  padding: 10px 16px;
}

.faq-list details:first-child {
  border-radius: 8px 8px 0 0;
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
  border-radius: 0 0 8px 8px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.faq-list p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
  margin: 10px 0 0;
}

.light-hero {
  background:
    radial-gradient(circle at 82% 38%, rgba(255, 184, 50, 0.22), transparent 28%),
    linear-gradient(180deg, #fff7ed, #fffdf9);
  overflow: hidden;
}

.light-hero .hero-grid {
  color: var(--text);
  min-height: 390px;
}

.light-hero .hero-copy h1 {
  color: var(--text);
}

.light-hero .hero-copy p {
  color: var(--muted);
}

.light-hero .hero-buttons .btn.secondary {
  background: #1d1a17;
  border-color: #1d1a17;
  box-shadow: 0 10px 24px rgba(29, 26, 23, 0.18);
  color: #fff;
}

.light-hero .metric {
  color: #5f5146;
}

.light-hero .metric strong {
  color: #201711;
}

.light-hero .metric i {
  background: #fff7e8;
  border-color: rgba(255, 139, 16, 0.42);
  color: var(--orange);
}

.product-dashboard {
  display: grid;
  gap: 12px;
}

.search-box {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  color: #b0a59b;
  display: flex;
  gap: 12px;
  height: 58px;
  padding: 0 12px;
}

.search-box button {
  background: linear-gradient(135deg, #ff4b1e, var(--orange));
  border: 0;
  border-radius: 9px;
  color: #fff;
  font-weight: 900;
  height: 38px;
  margin-left: auto;
  padding: 0 18px;
}

.product-mini-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.mini-card,
.order-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 17px;
}

.mini-card.dark {
  background: #171512;
  color: #fff;
}

.mini-card span,
.order-card span {
  color: var(--muted);
  display: block;
  font-size: 12px;
}

.mini-card.dark span {
  color: rgba(255,255,255,0.7);
}

.mini-card strong {
  color: var(--orange);
  display: block;
  font-size: 25px;
  margin-top: 7px;
}

.order-card {
  grid-column: 1 / -1;
}

.process-grid {
  display: grid;
  gap: 44px;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}

.process-grid::before {
  border-top: 1px dashed rgba(255, 140, 16, 0.5);
  content: "";
  left: 70px;
  position: absolute;
  right: 70px;
  top: 36px;
}

.process-card {
  min-height: 118px;
  position: relative;
}

.step-badge {
  align-items: center;
  background: linear-gradient(135deg, #ff4b1e, var(--gold));
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 15px;
  font-weight: 950;
  height: 38px;
  justify-content: center;
  margin-bottom: 14px;
  position: relative;
  width: 38px;
  z-index: 1;
}

.black-band {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  padding: 20px 28px;
}

.black-band article {
  border-right: 1px solid rgba(255,255,255,0.18);
  min-height: 72px;
  padding-right: 18px;
}

.black-band article:last-child {
  border-right: 0;
}

.black-band strong {
  color: #fff;
  display: block;
  font-size: 15px;
  margin-bottom: 7px;
}

.black-band p {
  color: rgba(255,255,255,0.68);
  font-size: 12px;
  line-height: 1.65;
  margin: 0;
}

.about-cards .card {
  min-height: 210px;
}

.big-glyph {
  align-items: center;
  background: #fff0dc;
  border-radius: 9px;
  color: #e6491b;
  display: flex;
  font-size: 24px;
  font-weight: 950;
  height: 50px;
  justify-content: center;
  margin-bottom: 22px;
  width: 50px;
}

.floating-stack {
  height: 260px;
  position: relative;
}

.floating-card {
  background: linear-gradient(145deg, rgba(53, 43, 33, 0.96), rgba(17, 16, 15, 0.98));
  border: 1px solid rgba(255, 168, 48, 0.42);
  border-radius: 12px;
  box-shadow: 0 0 42px rgba(255, 130, 13, 0.22);
  color: #fff;
  min-width: 220px;
  padding: 18px;
  position: absolute;
}

.floating-card strong {
  color: var(--gold);
  display: block;
  font-size: 25px;
  margin-top: 8px;
}

.floating-card.one { right: 34px; top: 0; transform: rotate(2deg); }
.floating-card.two { left: 10px; top: 105px; transform: rotate(6deg); }
.floating-card.three { bottom: 0; right: 0; transform: rotate(4deg); }

.trust-item {
  grid-template-columns: 72px 1fr;
  min-height: 72px;
}

.trust-icon {
  align-items: center;
  border: 1px solid rgba(255, 178, 26, 0.42);
  border-radius: 50%;
  color: var(--gold);
  display: flex;
  font-size: 24px;
  height: 56px;
  justify-content: center;
  width: 56px;
}

.download-panel {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: 1fr 220px;
  padding: 28px 48px;
}

.download-panel .qr-box img {
  height: 128px;
  width: 128px;
}

.download-card-row {
  margin-top: 18px;
}

.assurance {
  grid-template-columns: repeat(3, 1fr);
}

.phone-art {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 290px;
  position: relative;
}

.phone-card {
  background: linear-gradient(150deg, rgba(40, 35, 30, 0.9), rgba(8, 9, 10, 0.96));
  border: 1px solid rgba(255, 178, 26, 0.54);
  border-radius: 30px;
  box-shadow: 0 0 50px rgba(255, 126, 12, 0.28);
  height: 260px;
  padding: 64px 36px;
  position: relative;
  transform: rotate(4deg);
  width: 160px;
}

.phone-card::before {
  align-items: center;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border-radius: 14px;
  color: #fff;
  content: "↓";
  display: flex;
  font-size: 56px;
  font-weight: 950;
  height: 86px;
  justify-content: center;
  width: 86px;
}

.store-float {
  align-items: center;
  background: rgba(42, 34, 27, 0.98);
  border: 1px solid rgba(255, 160, 38, 0.4);
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.25);
  color: #fff;
  display: flex;
  font-size: 26px;
  font-weight: 950;
  height: 72px;
  justify-content: center;
  position: absolute;
  width: 72px;
}

.store-float.apple { left: 58px; top: 100px; }
.store-float.android { bottom: 22px; left: 150px; color: #a7d94a; }
.store-float.grid { right: 70px; top: 112px; color: var(--gold); }

.download-band-large {
  background: linear-gradient(110deg, #ff4b1e, #ffb000);
  border-radius: 16px;
  color: #fff;
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 172px;
  padding: 30px 46px;
}

.download-band-large h2 {
  font-size: 30px;
  margin-bottom: 12px;
}

.download-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.ghost-btn {
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  height: 42px;
  padding: 0 18px;
}

.site-footer {
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 105, 10, 0.12), transparent 20%),
    #12100f;
  color: #fff;
  padding: 20px 0 12px;
}

.footer-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: 1fr 130px 130px;
  margin: 0 auto;
  max-width: var(--wrap);
}

.site-footer .brand {
  margin-bottom: 8px;
}

.site-footer .brand img {
  height: 32px;
  width: 32px;
}

.site-footer p,
.site-footer a {
  color: rgba(255,255,255,0.72);
  font-size: 12px;
}

.footer-links {
  display: grid;
  gap: 7px;
}

.footer-links strong {
  color: #fff;
  font-size: 13px;
  margin-bottom: 2px;
}

.footer-links a.active {
  color: var(--orange);
  font-weight: 900;
}

.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.48);
  font-size: 12px;
  margin: 14px auto 0;
  max-width: var(--wrap);
  padding-top: 10px;
  text-align: center;
}

.footer-legal a {
  color: rgba(255,255,255,0.62);
}

.modal {
  align-items: center;
  background: rgba(0,0,0,0.68);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 60;
}

.modal.open { display: flex; }

.modal-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: 360px;
  padding: 28px;
  position: relative;
  text-align: center;
  width: 100%;
}

.modal-close {
  background: #fff1df;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 22px;
  height: 34px;
  position: absolute;
  right: 14px;
  top: 14px;
  width: 34px;
}

.modal-card img {
  height: 210px;
  margin: 18px auto;
  width: 210px;
}

@media (max-width: 960px) {
  :root { --wrap: calc(100% - 36px); }
  .site-header { height: auto; min-height: 64px; }
  .header-inner {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    position: relative;
  }
  .mobile-menu { display: inline-flex; }
  .header-actions { min-width: 0; }
  .header-actions .secondary:not(.mobile-menu),
  .header-actions .primary { display: none; }
  .nav {
    background: #090a0b;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: none;
    gap: 0;
    left: 0;
    padding: 10px 18px 18px;
    position: absolute;
    right: 0;
    top: 64px;
  }
  .nav.open { display: grid; }
  .nav a { padding: 12px 0; }
  .hero-grid,
  .split-head,
  .geo-grid,
  .trust-grid,
  .download-panel,
  .download-band-large {
    grid-template-columns: 1fr;
  }
  .hero-grid,
  .hero-grid.about,
  .download-hero .hero-grid {
    min-height: 0;
  }
  .hero-copy h1,
  .download-hero .hero-copy h1 {
    font-size: 34px;
  }
  .hero-visual {
    min-height: 0;
  }
  .hero-visual img {
    max-width: 100%;
    transform: none;
    width: min(520px, 100%);
  }
  .cards-3,
  .cards-6,
  .cards-2,
  .platform-cloud,
  .black-band,
  .assurance {
    grid-template-columns: 1fr;
  }
  .calculator-band,
  .faq-list {
    margin-left: 0;
  }
  .calculator-band,
  .flow-panel,
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-grid::before { display: none; }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
