/* HoldCo design tokens + shared components (nav, footer, buttons, eyebrow) */
:root {
  --ink: #16211D;
  --ink-2: #1B2823;
  --ink-soft: #2C3A34;
  --paper: #F3F4F0;
  --paper-2: #E9EBE3;
  --paper-3: #DFE2D8;
  --line: #C7CCBE;
  --line-soft: #D6DACD;
  --jade: #1E8A63;
  --jade-bright: #28A87A;
  --amber: #C08A2E;
  --red: #B4503C;
  --muted: #5E6A63;
  --muted-2: #7A857D;
  --muted-3: #9BA79E;
  --f-display: "Space Grotesk", sans-serif;
  --f-body: "Inter", sans-serif;
  --f-mono: "JetBrains Mono", monospace;
  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 48px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none }
::selection { background: var(--jade); color: var(--paper) }
:focus-visible { outline: 2px solid var(--jade); outline-offset: 2px; border-radius: 2px }
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad) }

/* Eyebrow */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: .6em;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--jade) }
.eyebrow.light { color: #9FB0A8 }
.step { font-family: var(--f-mono); font-weight: 600; color: var(--jade) }

/* Nav */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243,244,240,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px }
.brand {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -.01em;
  display: flex;
  align-items: center;
  gap: 9px;
}
.brand svg { width: 16px; height: 16px; display: block }
.nav-links { display: flex; align-items: center; gap: 26px; font-size: 14.5px; color: var(--muted) }
.nav-links a { transition: color .2s }
.nav-links a:not(.nav-cta):hover { color: var(--ink) }
.nav-cta {
  font-family: var(--f-mono);
  font-size: 13px;
  padding: 9px 16px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  color: var(--ink);
  transition: background .2s, color .2s;
}
.nav-cta:hover { background: var(--ink); color: var(--paper) }
@media(max-width:820px) { .nav-links a:not(.nav-cta) { display: none } }

/* Buttons */
.btn {
  font-family: var(--f-mono);
  font-size: 14px;
  padding: 14px 24px;
  border-radius: 2px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: all .2s;
  border: 1px solid transparent;
}
.btn svg { width: 15px; height: 15px }
.btn-primary { background: var(--jade); color: var(--paper) }
.btn-primary:hover { background: var(--jade-bright) }
.btn-ghost { border-color: var(--line); color: var(--ink) }
.btn-ghost:hover { border-color: var(--ink) }

/* Section shell */
section { padding-top: clamp(60px,7.5vw,96px); padding-bottom: clamp(60px,7.5vw,96px) }
.sec-head { max-width: 60ch }
.sec-head h2 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(28px,4vw,42px);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-top: 16px;
}
.sec-head p { margin-top: 16px; color: var(--muted); font-size: clamp(16px,1.4vw,18px); max-width: 54ch }

/* Footer */
footer {
  background: var(--ink);
  color: #8A968E;
  padding: 56px 0 26px;
  border-top: 1px solid #2C3A34;
}
.foot-top {
  display: grid;
  grid-template-columns: 1.5fr 3fr;
  gap: 44px;
  padding-bottom: 40px;
  border-bottom: 1px solid #2C3A34;
}
@media(max-width:820px) { .foot-top { grid-template-columns: 1fr; gap: 36px } }
.foot-brand .brand {
  color: var(--paper);
  font-size: 19px;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  font-family: var(--f-display);
  font-weight: 700;
}
.foot-brand .brand svg { width: 17px; height: 17px }
.foot-tag { font-family: var(--f-body); font-size: 14px; color: #8A968E; max-width: 32ch; line-height: 1.55 }
.foot-social { display: flex; gap: 10px; margin-top: 20px }
.foot-social a {
  width: 34px; height: 34px;
  border: 1px solid #2C3A34;
  border-radius: 4px;
  display: grid; place-items: center;
  color: #8A968E;
  transition: color .2s, border-color .2s;
}
.foot-social a:hover { color: var(--paper); border-color: #3C4B43 }
.foot-social svg { width: 16px; height: 16px }
.foot-cols { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px }
@media(max-width:620px) { .foot-cols { grid-template-columns: repeat(2,1fr); gap: 30px 20px } }
.foot-col .fc-h {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #5E6E66;
  margin-bottom: 15px;
}
.foot-col a { display: block; font-size: 14px; color: #9FAAA2; margin-bottom: 11px; transition: color .2s }
.foot-col a:hover { color: var(--paper) }
.foot-col a .soon {
  font-family: var(--f-mono);
  font-size: 8px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid #4A3F28;
  border-radius: 2px;
  padding: 1px 5px;
  margin-left: 6px;
  vertical-align: middle;
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 24px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: .03em;
  color: #7A857D;
}
.foot-bottom a { color: #7A857D; transition: color .2s }
.foot-bottom a:hover { color: var(--paper) }
.foot-status { display: inline-flex; align-items: center; gap: 8px }
.foot-status .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--jade-bright) }

/* Reduced motion */
@media(prefers-reduced-motion:reduce) {
  * { animation: none !important; transition: none !important }
}
