:root {
  --ink:        #0A0A0A;
  --ink-soft:   #44403C;
  --ink-muted:  #78716C;
  --teal:       #0D9488;   /* graphic only: nav rule, hero rule, card top borders */
  --teal-text:  #0F766E;   /* any teal TEXT */
  --teal-light: #14B8A6;
  --teal-glow:  #2DD4BF;
  --rule:       #E7E5E4;
  --paper:      #FFFFFF;
  --black:      #0A0A0A;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

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

p {
  margin: 0;
}

h1, h2 {
  margin: 0;
  font-weight: 500;
}

/* ---------- Nav ---------- */

nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--paper);
  border-bottom: 2px solid var(--teal);
}

.nav-mark {
  width: 27px;
  height: 30px;
}

.nav-word {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.6px;
  color: var(--ink);
}

/* ---------- Eyebrow / small label pattern ---------- */

.eyebrow {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: var(--teal);
  margin: 0 0 16px;
}

.eyebrow--glow {
  color: var(--teal-glow);
}

/* ---------- Hero ---------- */

.hero {
  text-align: center;
  padding: 68px 24px 88px;
  max-width: 720px;
  margin: 0 auto;
}

.hero-lockup {
  margin: 0 auto;
  padding: 30px;
}

.hero-lockup img {
  margin: 0 auto;
  height: 260px;
  width: auto;
}

.hero-wordmark {
  display: none;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1.6px;
  margin-top: 16px;
}

.hero-rule {
  width: 48px;
  height: 3px;
  background: var(--teal);
  margin: 32px auto 20px;
}

.tagline {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--teal-text);
  margin-bottom: 24px;
}

.hero-copy {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- Pillars ---------- */

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px 96px;
}

.pillar {
  padding: 0 40px;
  border-left: 0.5px solid var(--rule);
}

.pillar:first-child {
  border-left: none;
  padding-left: 0;
}

.pillar:last-child {
  padding-right: 0;
}

.pillar-num {
  display: block;
  font-size: 36px;
  font-weight: 400;
  color: var(--teal-text);
  margin-bottom: 12px;
}

.pillar-heading {
  font-size: 20px;
  margin-bottom: 12px;
}

.pillar p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ---------- Statement band ---------- */

.statement {
  background: var(--black);
  color: var(--paper);
  padding: 96px 32px;
}

.statement-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.statement-mark {
  flex: none;
  width: 200px;
  height: 140px;
}

.statement-copy p:not(.eyebrow) {
  font-size: 17px;
  line-height: 1.65;
  color: #D6D3D1;
  max-width: 560px;
}

/* ---------- Ventures ---------- */

.ventures {
  max-width: 1160px;
  margin: 0 auto;
  padding: 96px 32px;
}

.venture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.venture-card {
  border: 0.5px solid var(--rule);
  border-top: 2px solid var(--teal);
  border-radius: 0;
  padding: 28px 24px;
}

.venture-heading {
  font-size: 18px;
  margin-bottom: 10px;
}

.venture-card p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.ventures-note {
  margin-top: 32px;
  font-size: 14px;
  color: var(--ink-muted);
}

/* ---------- Footer ---------- */

footer {
  border-top: 0.5px solid var(--rule);
  padding: 32px;
}

.footer-row {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--ink);
}

.footer-tag {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--ink-muted);
}

.footer-copyright {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--ink-muted);
}

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
  .hero {
    padding: 72px 24px 64px;
  }

  .hero-lockup img {
    height: 170px;
  }

  .pillars {
    grid-template-columns: 1fr;
    padding: 0 32px 64px;
  }

  .pillar {
    border-left: none;
    border-top: 0.5px solid var(--rule);
    padding: 40px 0;
  }

  .pillar:first-child {
    border-top: none;
    padding-top: 0;
  }

  .statement-inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .statement-copy p:not(.eyebrow) {
    max-width: none;
  }

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

  .footer-row {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 479px) {
  .hero-lockup img {
    height: 120px;
  }

  .hero-wordmark {
    display: block;
  }
}
