:root {
  color-scheme: light;
  --ink: #080c16;
  --panel: #121827;
  --panel-2: #1a2235;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, .78);
  --line: rgba(15, 23, 42, .12);
  --line-dark: rgba(255, 255, 255, .14);
  --fg: #0b1020;
  --muted: #526176;
  --subtle: #748399;
  --accent: #315cff;
  --accent-2: #00c2ff;
  --coral: #ff7a00;
  --income: #00a878;
  --danger: #ef3f36;
  --bg: #edf3fb;
  --font-sans: "Manrope", "Avenir Next", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Bricolage Grotesque", "Manrope", sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

* { box-sizing: border-box; }

html { min-height: 100%; background: var(--bg); }

body {
  min-height: 100vh;
  margin: 0;
  color: var(--fg);
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at 8% -6%, rgba(49, 92, 255, .20), transparent 28rem),
    radial-gradient(circle at 94% 10%, rgba(0, 194, 255, .18), transparent 30rem),
    radial-gradient(circle at 80% 92%, rgba(255, 122, 0, .14), transparent 32rem),
    linear-gradient(145deg, #f7fbff, var(--bg) 48%, #fff7ed);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 46px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  text-decoration: none;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  box-shadow: 0 14px 34px rgba(49, 92, 255, .28);
}

.nav {
  display: inline-flex;
  gap: 8px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 10px 28px rgba(15, 23, 42, .08);
  backdrop-filter: blur(16px);
}

.nav a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 10px;
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
}

.nav a.active {
  color: var(--fg);
  background: var(--surface);
}

.hero {
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
  gap: 28px;
  min-height: 430px;
  padding: 38px;
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  color: #f7f9ff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, var(--ink), #17337d 58%, #315cff 100%);
  box-shadow: 0 30px 80px rgba(15, 23, 42, .28);
}

.hero::before {
  content: "";
  position: absolute;
  right: -88px;
  top: -108px;
  width: 260px;
  height: 260px;
  border: 44px solid rgba(255, 122, 0, .88);
  border-radius: 24px;
  transform: rotate(18deg);
}

.hero::after {
  content: "";
  position: absolute;
  right: 108px;
  bottom: -132px;
  width: 180px;
  height: 180px;
  border-radius: 22px;
  background: rgba(0, 194, 255, .78);
  transform: rotate(-14deg);
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #8fb3ff;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow i {
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background:
    linear-gradient(90deg, transparent 24%, var(--accent) 24% 38%, transparent 38%),
    linear-gradient(90deg, transparent 52%, var(--accent-2) 52% 68%, transparent 68%),
    linear-gradient(135deg, #111c42, #030712);
  box-shadow: 0 8px 18px rgba(49, 92, 255, .38);
}

h1 {
  max-width: 740px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 780;
  line-height: .94;
  letter-spacing: -.04em;
}

.lead {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(247, 249, 255, .72);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #3f70ff, var(--accent));
  box-shadow: 0 12px 28px rgba(49, 92, 255, .34);
  text-decoration: none;
  font-size: 13px;
  font-weight: 850;
}

.button.secondary {
  color: rgba(255, 255, 255, .86);
  background: rgba(255, 255, 255, .10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
}

.hero-panel {
  align-self: end;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  background: rgba(18, 24, 39, .72);
  box-shadow: 0 18px 46px rgba(2, 6, 23, .28), inset 0 1px 0 rgba(255, 255, 255, .12);
  backdrop-filter: blur(22px);
  padding: 18px;
}

.metric {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: end;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.metric span {
  color: rgba(255, 255, 255, .54);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.metric strong {
  display: block;
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1;
  letter-spacing: -.04em;
}

.chip {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border-radius: 99px;
  padding: 0 10px;
  color: #b7f34a;
  background: rgba(183, 243, 74, .13);
  font-size: 11px;
  font-weight: 850;
}

.bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 8px;
  height: 116px;
  margin-top: 18px;
}

.bars i {
  display: block;
  border-radius: 9px 9px 4px 4px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  box-shadow: 0 10px 24px rgba(0, 194, 255, .18);
}

.bars i:nth-child(1) { height: 44%; }
.bars i:nth-child(2) { height: 70%; background: linear-gradient(180deg, var(--coral), #ff9d2e); }
.bars i:nth-child(3) { height: 56%; }
.bars i:nth-child(4) { height: 82%; }
.bars i:nth-child(5) { height: 64%; background: linear-gradient(180deg, var(--income), #2be0a1); }
.bars i:nth-child(6) { height: 92%; }

.content {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 20px;
  margin-top: 22px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-soft);
  box-shadow: 0 18px 48px rgba(15, 23, 42, .10);
  backdrop-filter: blur(18px);
  padding: 24px;
}

.card.dark {
  color: #f7f9ff;
  background: linear-gradient(135deg, var(--ink), var(--panel));
  border-color: var(--line-dark);
}

.section-label {
  margin: 0 0 13px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .10em;
  text-transform: uppercase;
}

h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -.025em;
}

h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

p,
li {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
}

.dark p,
.dark li { color: rgba(247, 249, 255, .68); }

p { margin: 0; }
p + p { margin-top: 10px; }

.stack {
  display: grid;
  gap: 12px;
}

.info-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .58);
}

.icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--accent);
  background: rgba(49, 92, 255, .12);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
}

.list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 20px;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: var(--coral);
}

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

.privacy-item {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, .58);
}

.privacy-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--fg);
  font-size: 14px;
}

.privacy-item em {
  color: var(--income);
  font-style: normal;
  font-size: 12px;
  font-weight: 850;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding: 18px 4px 0;
  color: var(--subtle);
  font-size: 12px;
}

.footer a {
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.footer-open {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer a:hover {
  color: var(--fg);
}

@media (max-width: 820px) {
  .topbar,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .content,
  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding: 28px 22px;
  }

  .hero-panel { align-self: stretch; }
}

@media (max-width: 520px) {
  .shell {
    width: min(100% - 24px, 1120px);
    padding-top: 18px;
  }

  .nav { width: 100%; }
  .nav a { flex: 1; justify-content: center; }

  .hero { border-radius: 20px; }
  .card { padding: 20px; border-radius: 16px; }
  h1 { font-size: 42px; }
  h2 { font-size: 24px; }
}
