:root {
  color-scheme: light;
  --ink: #18201d;
  --muted: #68726d;
  --line: #dbe2dc;
  --panel: #ffffff;
  --soft: #eef3ef;
  --green: #123f32;
  --green-dark: #0d3a2e;
  --gold: #f4c76a;
  --blue: #295c88;
  --bg: #f7f8f4;
}

* {
  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;
  color: var(--ink);
  background: var(--bg);
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(244, 199, 106, 0.22);
  background: rgba(247, 248, 244, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.nav-cta,
.button,
.card-button,
.waitlist button {
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.nav-cta {
  padding: 10px 14px;
  color: var(--green-dark);
  background: var(--gold);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(42px, 8vw, 90px) clamp(18px, 6vw, 80px);
  color: #f7f8f4;
  background:
    linear-gradient(115deg, rgba(18, 63, 50, 0.96), rgba(18, 63, 50, 0.82) 48%, rgba(24, 32, 29, 0.58)),
    url("assets/hero-deal-room.png") center / cover no-repeat;
}

.hero-copy {
  max-width: 760px;
}

.hero-logo {
  width: min(360px, 78vw);
  height: auto;
  margin-bottom: 26px;
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  margin-bottom: 22px;
  max-width: 760px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
}

.lead {
  max-width: 640px;
  color: #3f4a45;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero .eyebrow {
  color: var(--gold);
}

.hero h1 {
  color: #fff;
}

.hero .lead {
  color: #d7e0d9;
}

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

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

.proof-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(244, 199, 106, 0.34);
  border-radius: 999px;
  color: #f7f8f4;
  background: rgba(247, 248, 244, 0.08);
  font-size: 13px;
  font-weight: 750;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
}

.button.primary {
  color: var(--green-dark);
  background: var(--gold);
}

.button.secondary {
  border: 1px solid rgba(244, 199, 106, 0.34);
  color: var(--ink);
  background: #fff;
}

.deal-snapshot {
  padding: 26px;
  border: 1px solid rgba(244, 199, 106, 0.22);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.visual-snapshot img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 18px;
  background: var(--soft);
}

.snapshot-header,
.card-top,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.snapshot-header {
  justify-content: flex-start;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.muted,
.funded,
.section-heading p,
.deal-card p,
.split p,
.join p {
  color: var(--muted);
  line-height: 1.55;
}

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

.metrics div {
  padding: 14px;
  border-radius: 8px;
  background: var(--soft);
}

.metric-label,
dt {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.metrics strong {
  font-size: 20px;
}

.progress {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #d8dfd8;
}

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

.funded {
  margin: 10px 0 0;
  font-size: 14px;
}

.role-strip,
.workspace,
.split,
.trust,
.brand-band,
.join {
  padding: clamp(44px, 7vw, 86px) clamp(18px, 6vw, 80px);
}

.role-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 0;
  background: var(--line);
}

.role-strip div {
  display: grid;
  gap: 8px;
  padding: 28px;
  background: #fff;
}

.brand-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr) auto;
  gap: 22px;
  align-items: center;
  color: #f7f8f4;
  background: var(--green);
}

.brand-band .eyebrow {
  color: var(--gold);
}

.brand-band h2 {
  margin-bottom: 0;
  color: #fff;
}

.brand-band p {
  margin: 0;
  color: #d7e0d9;
  line-height: 1.55;
}

.brand-band .button.secondary {
  white-space: nowrap;
  color: var(--green-dark);
  border-color: var(--gold);
  background: var(--gold);
}

.role-strip span,
.trust-grid span,
.steps span {
  color: var(--muted);
  line-height: 1.45;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
}

.filter.active {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}

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

.deal-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 22px;
  border: 1px solid rgba(18, 63, 50, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(24, 32, 29, 0.06);
}

.pill,
.risk {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.pill {
  color: var(--green-dark);
  background: #dff0e6;
}

.pill.blue {
  color: var(--blue);
  background: #e2edf6;
}

.risk {
  color: #795416;
  background: #f4e5c4;
}

dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: auto 0 20px;
}

dd {
  margin: 0;
  font-weight: 850;
}

.card-button {
  min-height: 44px;
  color: var(--green-dark);
  background: var(--gold);
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 6vw, 72px);
  background: #fff;
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-weight: 850;
}

.steps strong,
.steps span {
  grid-column: 2;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.trust-grid div {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid rgba(18, 63, 50, 0.12);
  border-radius: 8px;
  background: #fff;
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--green-dark);
  background: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.join {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 460px);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
  background: var(--ink);
  color: #fff;
}

.join .eyebrow {
  color: #93d6b1;
}

.join p {
  color: #c2cbc5;
}

.waitlist {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

label {
  display: grid;
  gap: 8px;
  color: #4b5650;
  font-weight: 750;
}

select,
input {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.waitlist button {
  min-height: 48px;
  color: var(--green-dark);
  background: var(--gold);
}

footer {
  padding: 22px clamp(18px, 6vw, 80px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #fff;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero,
  .split,
  .brand-band,
  .join {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .role-strip,
  .deal-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .topbar {
    align-items: flex-start;
    min-height: 64px;
  }

  .nav-cta {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  .metrics,
  dl {
    grid-template-columns: 1fr;
  }

  .deal-card {
    min-height: 0;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
