:root {
  color-scheme: light;
  --bg: #f8fafc;
  --surface: #ffffff;
  --ink: #102033;
  --slate: #1e293b;
  --muted: #64748b;
  --line: #dbe4ef;
  --blue: #0057b8;
  --navy: #073b73;
  --gold: #d9a441;
  --green: #16a34a;
  --red: #dc2626;
  --shadow: 0 24px 70px rgba(7, 59, 115, 0.16);
  --soft-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(217, 164, 65, 0.16), transparent 30rem),
    radial-gradient(circle at 84% 0%, rgba(0, 87, 184, 0.12), transparent 28rem),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(219, 228, 239, 0.8);
  background: rgba(248, 250, 252, 0.86);
  backdrop-filter: blur(20px);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(0, 87, 184, 0.14);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--blue);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-weight: 750;
  box-shadow: 0 16px 30px rgba(0, 87, 184, 0.22);
}

.button.secondary {
  background: var(--surface);
  color: var(--navy);
  border-color: var(--line);
  box-shadow: none;
}

.button.gold {
  background: var(--gold);
  color: #14100a;
  box-shadow: 0 16px 30px rgba(217, 164, 65, 0.22);
}

.hero {
  max-width: 1180px;
  margin: 0 auto;
  min-height: calc(100vh - 72px);
  padding: 70px 24px 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border: 1px solid rgba(217, 164, 65, 0.42);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 750;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(46px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

.lead {
  max-width: 640px;
  color: var(--slate);
  font-size: 20px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin-top: 34px;
}

.trust-pill {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
  font-size: 13px;
}

.trust-pill strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.orbit-card {
  position: absolute;
  z-index: 3;
  width: 210px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(219, 228, 239, 0.88);
  box-shadow: var(--soft-shadow);
}

.orbit-card.top {
  top: 48px;
  left: 0;
}

.orbit-card.bottom {
  right: 8px;
  bottom: 86px;
}

.metric-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.metric-value {
  margin-top: 6px;
  color: var(--navy);
  font-size: 28px;
  font-weight: 850;
}

.phone {
  position: absolute;
  top: 12px;
  left: 50%;
  width: min(340px, 72vw);
  height: 690px;
  transform: translateX(-50%) rotate(2deg);
  padding: 14px;
  border-radius: 48px;
  background: linear-gradient(145deg, #05172d, #0b315f);
  box-shadow: var(--shadow);
}

.phone::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 50%;
  width: 96px;
  height: 25px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #071527;
  z-index: 2;
}

.phone-screen {
  height: 100%;
  overflow: hidden;
  border-radius: 36px;
  background: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.app-shot {
  padding: 28px 18px 18px;
}

.app-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 24px 0 20px;
}

.app-title {
  color: var(--navy);
  font-size: 24px;
  font-weight: 850;
}

.mini-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.net-worth-card {
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--navy), #0a60ba);
  color: #fff;
  box-shadow: 0 18px 38px rgba(7, 59, 115, 0.2);
}

.net-worth-card small {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.net-worth {
  margin: 4px 0 10px;
  font-size: 38px;
  font-weight: 900;
}

.growth {
  color: #9af0b5;
  font-size: 13px;
  font-weight: 750;
}

.chart {
  position: relative;
  height: 136px;
  margin: 20px 0 6px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.25);
}

.chart svg {
  width: 100%;
  height: 100%;
}

.chart path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.progress-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.mini-stat {
  padding: 12px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.mini-stat span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.mini-stat strong {
  color: var(--navy);
  font-size: 17px;
}

.app-list {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.app-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.app-row span {
  color: var(--muted);
  font-size: 12px;
}

.app-row strong {
  color: var(--slate);
}

.tabbar {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 28px;
  display: flex;
  justify-content: space-around;
  padding: 13px 10px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
}

.tabbar span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #cbd5e1;
}

.tabbar span.active {
  width: 32px;
  background: var(--blue);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 76px 24px;
}

.section-header {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-header h2 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
}

.section-header p {
  color: var(--muted);
  font-size: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card,
.legal-card,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
}

.feature-card {
  padding: 24px;
}

.feature-card .icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: rgba(217, 164, 65, 0.18);
  font-weight: 900;
}

.feature-card h3 {
  margin-bottom: 8px;
  color: var(--slate);
  font-size: 20px;
}

.feature-card p {
  color: var(--muted);
}

.showcase {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mock-shot {
  min-height: 390px;
  padding: 18px;
  border-radius: 32px;
  background: #111827;
  box-shadow: var(--shadow);
  color: #fff;
}

.mock-shot.light {
  background: #fff;
  color: var(--slate);
  border: 1px solid var(--line);
}

.mock-shot h3 {
  font-size: 24px;
  color: inherit;
}

.bar-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.bar {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.light .bar {
  background: #edf2f7;
}

.bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
}

.dark-card {
  padding: 32px;
  border-radius: 34px;
  background: linear-gradient(135deg, #071527, #073b73);
  color: #fff;
  box-shadow: var(--shadow);
}

.dark-card h2 {
  color: #fff;
  font-size: clamp(32px, 4vw, 52px);
}

.dark-card p {
  color: rgba(255, 255, 255, 0.76);
}

.scenario-list {
  margin-top: 26px;
  display: grid;
  gap: 12px;
}

.scenario-item {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.scenario-item strong {
  color: #fff;
}

.scenario-item span {
  color: #8df3ad;
  font-weight: 800;
}

.legal-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.legal-card {
  padding: 24px;
}

.legal-card h3 {
  color: var(--navy);
}

.legal-card p {
  color: var(--muted);
}

.cta-panel {
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(0, 87, 184, 0.08), rgba(217, 164, 65, 0.12)),
    #fff;
}

.cta-panel h2 {
  color: var(--navy);
  font-size: clamp(30px, 4vw, 48px);
}

.cta-panel p {
  color: var(--muted);
  margin-bottom: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  text-decoration: none;
}

.legal-page {
  max-width: 880px;
  margin: 0 auto;
  padding: 64px 24px 90px;
}

.legal-page h1 {
  font-size: clamp(38px, 5vw, 64px);
}

.legal-page h2 {
  margin-top: 34px;
  color: var(--navy);
}

.legal-page p,
.legal-page li {
  color: var(--slate);
}

.legal-page .note {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--muted);
}

@media (max-width: 940px) {
  .hero,
  .showcase,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-visual {
    min-height: 680px;
  }

  .feature-grid,
  .legal-strip {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    text-align: left;
  }
}

@media (max-width: 700px) {
  .nav {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .trust-row,
  .mock-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 620px;
  }

  .phone {
    height: 620px;
  }

  .orbit-card {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
  }
}
