:root {
  --bg: #070a0f;
  --navy: #122033;
  --panel: #111822;
  --panel-2: #162234;
  --text: #f4f2ed;
  --muted: #aeb6c2;
  --soft: #7e8998;
  --line: rgba(255,255,255,.12);
  --accent: #ffbd4a;
  --accent-blue: #4ba3ff;
  --accent-red: #d92835;
  --accent-2: #d9d1c3;
  --max: 1120px;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(0,0,0,.38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 0%, rgba(255,189,74,.18), transparent 28rem),
    radial-gradient(circle at 94% 10%, rgba(75,163,255,.14), transparent 34rem),
    radial-gradient(circle at 74% 82%, rgba(217,40,53,.10), transparent 30rem),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(7,10,15,.82);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 780;
  letter-spacing: -.02em;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: rgba(255,255,255,.92);
  border-radius: 8px;
  padding: 3px;
}

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

.nav-links a { white-space: nowrap; }

.button, button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,189,74,.48);
  background: rgba(255,189,74,.13);
  color: var(--text);
  min-height: 46px;
  padding: 0 19px;
  border-radius: 999px;
  font-weight: 680;
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
  cursor: pointer;
}

.button:hover, button:hover { background: rgba(255,189,74,.2); color: var(--text); }

.button.secondary {
  border-color: var(--line);
  background: rgba(255,255,255,.045);
  color: var(--muted);
}

.button.blue {
  border-color: rgba(75,163,255,.45);
  background: rgba(75,163,255,.12);
}

.hero { padding: 96px 0 74px; }

.kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 820;
  margin-bottom: 18px;
}

h1, h2, h3 {
  line-height: 1.06;
  margin: 0;
  letter-spacing: -.045em;
}

h1 { font-size: clamp(46px, 8vw, 88px); max-width: 980px; }
h2 { font-size: clamp(34px, 5vw, 58px); }
h3 { font-size: 24px; letter-spacing: -.025em; }

.lede {
  margin: 24px 0 0;
  max-width: 780px;
  font-size: clamp(18px, 2.2vw, 23px);
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.grid { display: grid; gap: 20px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.section { padding: 70px 0; }
.section.tight { padding: 38px 0; }

.card {
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.027)), var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.card.subtle { background: rgba(255,255,255,.035); box-shadow: none; }
.card p { color: var(--muted); }
.card p:last-child { margin-bottom: 0; }

.hero-brand-card {
  margin-top: 44px;
  display: grid;
  gap: 18px;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
}

.hero-logo-card {
  min-height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-card img {
  max-width: 230px;
  max-height: 190px;
  width: 100%;
  object-fit: contain;
}

.product-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-head {
  min-height: 96px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.product-logo-wide {
  max-width: 100%;
  max-height: 92px;
  object-fit: contain;
  object-position: left center;
}

.product-logo-mark {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin-right: 15px;
}

.product-label {
  color: var(--accent);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.product-card h3 { font-size: clamp(32px, 4vw, 44px); }
.product-card .tagline { font-size: 20px; color: var(--text); margin: 18px 0 8px; }
.product-card p { margin-bottom: 24px; }

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 38px;
  align-items: start;
}

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

.list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
  color: var(--muted);
}

.list strong { color: var(--text); }

.quote {
  font-size: clamp(28px, 4.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.045em;
  color: var(--accent-2);
}

.page-header {
  padding: 78px 0 44px;
  border-bottom: 1px solid var(--line);
}

.page-header h1 { font-size: clamp(42px, 6vw, 72px); }

.page-lockup {
  display: block;
  max-width: min(620px, 100%);
  max-height: 220px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 30px;
}

.page-lockup.peak {
  max-width: min(560px, 100%);
}

.page-lockup.stance {
  max-width: 160px;
  background: rgba(255,255,255,.92);
  border-radius: 14px;
  padding: 8px;
}

.content { padding: 54px 0 80px; }
.content article { max-width: 900px; }
.content h2 { font-size: 30px; margin: 38px 0 14px; }
.content h3 { margin: 30px 0 10px; }
.content p, .content li { color: var(--muted); }
.content a { color: var(--accent); }

.form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.form-row {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
}

input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.055);
  color: var(--text);
  padding: 13px 14px;
  font: inherit;
}

textarea { min-height: 140px; resize: vertical; }
select option { color: #0b0d10; }

.footer {
  border-top: 1px solid var(--line);
  padding: 38px 0;
  color: var(--soft);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  background: rgba(255,255,255,.92);
  border-radius: 7px;
  padding: 3px;
}

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

.notice {
  font-size: 13px;
  color: var(--soft);
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 24px;
}

.small { color: var(--soft); font-size: 14px; }

.domain-pill {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  margin-bottom: 18px;
}

/* Product dropdown navigation */
.dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  cursor: pointer;
}

.dropdown-toggle::after {
  content: "▾";
  font-size: 11px;
  color: var(--soft);
  transform: translateY(1px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 210px;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(13, 17, 24, .98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
  z-index: 50;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  white-space: nowrap;
}

.dropdown-menu a:hover {
  color: var(--text);
  background: rgba(255,255,255,.055);
}

/* Brighter Stance Ventures logo presentation on dark backgrounds */
.logo-card-light {
  background: #f4f2ed !important;
  border-color: rgba(255,255,255,.24) !important;
}

.logo-card-light img {
  max-width: 250px;
  max-height: 205px;
  filter: none !important;
  opacity: 1 !important;
}

@media (max-width: 800px) {

  .dropdown {
    display: block;
  }

  .dropdown-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 8px;
    box-shadow: none;
    background: rgba(255,255,255,.035);
  }

  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    display: block;
  }


  .nav-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .hero { padding: 64px 0 52px; }

  .grid.two, .grid.three, .split, .form-row, .hero-brand-card {
    grid-template-columns: 1fr;
  }

  .product-card { min-height: auto; }
  .product-logo-wide { max-height: 78px; }
  .container { width: min(var(--max), calc(100% - 28px)); }
}


