:root {
  --ink: #121a32;
  --ink-soft: #4d5677;
  --surface: #fffef8;
  --surface-2: #f6f2e7;
  --line: #d8d2c1;
  --brand: #1f5bff;
  --brand-2: #0ea5a4;
  --focus: #f59e0b;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 12% 0%, #efe9ff 0%, var(--surface) 38%),
    linear-gradient(180deg, #fffef8 0%, #f7f5ed 100%);
}

.grain {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(18, 26, 50, 0.08) 0.5px, transparent 0.5px);
  background-size: 3px 3px;
  opacity: 0.22;
  pointer-events: none;
  z-index: -1;
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 12px;
}

.logo {
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0.3px;
}

.topbar nav {
  display: flex;
  gap: 18px;
}

.topbar nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.95rem;
}

.topbar nav a:hover {
  color: var(--ink);
}

.hero-band {
  background: #082c25;
  margin-top: 14px;
  padding: 56px 0 64px;
}

.hero {
  padding: 0;
}

.kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 0.76rem;
  color: var(--brand);
  font-weight: 800;
}

h1,
h2,
h3,
h4 {
  font-family: "Fraunces", serif;
}

h1 {
  margin: 14px 0 12px;
  max-width: 12ch;
  font-size: clamp(2.3rem, 5.7vw, 5.2rem);
  line-height: 0.98;
  font-weight: 700;
}

.hero-copy-panel {
  background: #114036;
  border: 1px solid #2b6f60;
  border-radius: 24px;
  padding: clamp(22px, 3vw, 36px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.hero h1 {
  margin: 0 0 12px;
  color: #f6faf8;
}

.lead {
  margin: 0 0 8px;
  max-width: 66ch;
  color: #edf7f3;
  line-height: 1.7;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.supporting {
  margin: 0;
  max-width: 70ch;
  color: #cde2db;
  line-height: 1.6;
  font-size: clamp(0.88rem, 1.25vw, 1rem);
}

.stats {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.metric-card {
  padding: 18px;
  border: 1px solid #2f7262;
  border-radius: 16px;
  background: #175044;
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.stats h3 {
  margin: 0;
  font-size: 2rem;
  color: #f8fcfa;
}

.stats p {
  margin: 6px 0 0;
  color: #e1eee9;
  font-size: 0.92rem;
  line-height: 1.5;
}

.portfolio {
  padding: 18px 0 36px;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.venture {
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 40px rgba(18, 26, 50, 0.08);
}

.venture img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.venture .content {
  padding: 20px;
}

.badge {
  margin: 0;
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: #eef3ff;
  color: #1a48ca;
}

.venture h2 {
  margin: 12px 0 8px;
  font-size: clamp(1.55rem, 3.1vw, 2.3rem);
}

.venture p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.venture ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--ink);
  line-height: 1.7;
}

.love {
  background: linear-gradient(180deg, #ffffff 0%, #fff9fb 100%);
}

.strategy {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  background: linear-gradient(140deg, #162e7a 0%, #0d766f 100%);
  color: #f8fafc;
}

.strategy .kicker {
  color: #c9dcff;
}

.strategy h2 {
  margin: 10px 0 0;
  font-size: clamp(1.7rem, 4.2vw, 3.1rem);
  max-width: 15ch;
}

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

.sequence article {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 14px;
  padding: 16px;
}

.sequence span {
  display: inline-block;
  margin-bottom: 8px;
  color: #fde68a;
  font-weight: 800;
  font-size: 0.92rem;
}

.sequence h4 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.sequence p {
  margin: 0;
  color: #dbeafe;
  line-height: 1.62;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  padding: 24px 0 40px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .stats {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-copy-panel {
    padding: 20px;
  }

  .strategy {
    padding: 20px;
  }

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