
:root {
  --bg: #050816;
  --bg-alt: #0b1020;
  --accent: #00c38a;
  --accent-soft: rgba(0,195,138,0.14);
  --text-main: #f5f7fb;
  --text-muted: #9aa4c6;
  --border-subtle: rgba(255,255,255,0.04);
  --danger: #ff6b6b;
  --max-width: 1120px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 45px rgba(0,0,0,0.55);
  --shadow-subtle: 0 10px 26px rgba(0,0,0,0.35);
  --nav-height: 70px;
  --transition-fast: 0.18s ease-out;
  --transition-med: 0.25s ease-out;
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
               "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  background: radial-gradient(circle at top, #151a32 0, #050816 55%, #02030a 100%);
  color: var(--text-main);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.main-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(5,8,22,0.94), rgba(5,8,22,0.78));
  border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 32px;
  height: 32px;
  border-radius: 11px;
  background: radial-gradient(circle at 30% 20%, #00f5ff 0, #00c38a 42%, #0099ff 100%);
  box-shadow: 0 12px 28px rgba(0, 195, 138, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 15px;
}

.brand-sub {
  font-size: 11px;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--text-muted);
  transition: color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.nav-links a:hover {
  background: rgba(255,255,255,0.04);
  color: #ffffff;
  transform: translateY(-1px);
}

.nav-cta {
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #00f5a0, #00c38a);
  color: #020308;
  font-weight: 600;
  font-size: 13px;
  box-shadow: var(--shadow-subtle);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.nav-cta:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: var(--shadow-soft);
}

.nav-cta span {
  font-size: 14px;
}

main {
  flex: 1;
}

.section-shell {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 34px 18px 40px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 3.2fr) minmax(0, 2.4fr);
  gap: 40px;
  padding-top: 34px;
  padding-bottom: 40px;
}

.hero-main-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,195,138,0.09);
  border-radius: 999px;
  padding: 4px 11px 4px 5px;
  border: 1px solid rgba(0,195,138,0.28);
  margin-bottom: 14px;
}

.hero-kicker-dot {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #00f5ff 0, #00c38a 40%, #0066ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.hero-main-kicker span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.hero-title {
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero-title span {
  color: #00f5a0;
}

.hero-sub {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 460px;
  margin-bottom: 20px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 11px;
  color: var(--text-muted);
}

.hero-badge strong {
  color: #ffffff;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.btn-primary {
  border-radius: 999px;
  padding: 9px 18px;
  border: none;
  background: linear-gradient(135deg, #00f5a0, #00c38a);
  color: #020308;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 22px 55px rgba(0,0,0,0.65);
}

.btn-secondary {
  border-radius: 999px;
  padding: 9px 16px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(7,11,30,0.75);
  color: var(--text-main);
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background var(--transition-med), border-color var(--transition-med), transform var(--transition-med);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.32);
  transform: translateY(-1px);
}

.hero-footnote {
  font-size: 11px;
  color: var(--text-muted);
}

.hero-grid-right {
  position: relative;
  align-self: center;
}

.hero-card {
  position: relative;
  border-radius: 22px;
  padding: 18px 18px 16px;
  background: radial-gradient(circle at top left, rgba(0,195,138,0.2) 0, rgba(5,8,22,0.95) 35%, #050816 85%);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0,195,138,0.32);
  overflow: hidden;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.hero-card-title {
  font-size: 13px;
  font-weight: 600;
}

.hero-pill {
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(0,0,0,0.42);
  border: 1px solid rgba(255,255,255,0.14);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-pill span.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #00f5a0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 10px;
}

.metric-chip {
  background: rgba(3,7,23,0.7);
  border-radius: 14px;
  padding: 8px 9px;
  border: 1px solid rgba(255,255,255,0.08);
}

.metric-label {
  font-size: 11px;
  color: var(--text-muted);
}

.metric-value {
  margin-top: 3px;
  font-size: 14px;
  font-weight: 600;
}

.metric-sub {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 2px;
}

.hero-equity-bar {
  margin-top: 6px;
  margin-bottom: 10px;
}

.hero-equity-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.hero-equity-bar-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(0,0,0,0.45);
  overflow: hidden;
}

.hero-equity-bar-fill {
  width: 68%;
  height: 100%;
  background: linear-gradient(90deg, #00f5a0, #00c38a, #00b4ff);
}

.hero-mini-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: var(--text-muted);
}

.hero-mini-footer span strong {
  color: #ffffff;
}

.tagline-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
  font-size: 11px;
  color: var(--text-muted);
}

.tagline-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tagline-row span::before {
  content: "•";
  color: rgba(255,255,255,0.3);
}

.section-heading {
  font-size: 20px;
  margin-bottom: 6px;
}

.section-kicker {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.section-intro {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 600px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.card {
  border-radius: var(--radius-lg);
  padding: 14px 14px 16px;
  background: rgba(3,7,23,0.9);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 18px 35px rgba(0,0,0,0.55);
}

.card h3 {
  font-size: 14px;
  margin: 2px 0 6px;
}

.card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

.card-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.chip {
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 11px;
  color: var(--text-muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
  gap: 22px;
  margin-top: 22px;
}

.list {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.highlight-box {
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  background: rgba(3,7,23,0.9);
  border: 1px solid rgba(0,195,138,0.28);
  box-shadow: 0 16px 38px rgba(0,0,0,0.6);
}

.highlight-box h3 {
  font-size: 14px;
  margin: 0 0 6px;
}

.highlight-box p {
  font-size: 13px;
  color: var(--text-muted);
}

.badge-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.badge-soft {
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 11px;
  background: rgba(0,195,138,0.12);
  color: #a7ffe0;
  border: 1px solid rgba(0,195,138,0.4);
}

.risk-box {
  border-radius: 16px;
  background: rgba(38,13,16,0.9);
  border: 1px solid rgba(255,107,107,0.55);
  padding: 14px 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.7);
}

.risk-box h3 {
  font-size: 14px;
  margin: 0 0 6px;
  color: #ffd6d6;
}

.risk-box p {
  font-size: 12px;
  color: #ffb3b3;
  line-height: 1.6;
}

.risk-box ul {
  margin: 8px 0 0;
  padding-left: 18px;
  font-size: 12px;
  color: #ffb3b3;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 22px;
  margin-top: 22px;
}

.contact-card {
  border-radius: var(--radius-lg);
  padding: 16px 16px 18px;
  background: rgba(3,7,23,0.9);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 18px 40px rgba(0,0,0,0.7);
}

.contact-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
}

.contact-card p {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--text-muted);
}

.contact-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}

.contact-meta div {
  display: flex;
  gap: 6px;
  margin-bottom: 4px;
}

.contact-meta span.label {
  color: #ffffff;
}

.contact-side {
  font-size: 12px;
  color: var(--text-muted);
}

.contact-side strong {
  color: #ffffff;
}

.footer-shell {
  border-top: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top, #101528 0, #050816 55%, #020309 100%);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 18px 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 11px;
  color: var(--text-muted);
}

.footer-inner a {
  color: var(--text-muted);
}

.footer-inner a:hover {
  color: #ffffff;
}

@media (max-width: 840px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-grid-right {
    order: -1;
  }
  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .split,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  nav {
    backdrop-filter: blur(14px);
  }
  .nav-inner {
    padding-inline: 14px;
  }
  .nav-links {
    display: none;
  }
  .hero {
    padding-top: 22px;
  }
  .hero-card {
    margin-top: 8px;
  }
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
}
