:root {
  --ink: #0b1d2d;
  --teal: #2f5f66;
  --slate: #62727f;
  --brass: #c99b3c;
  --paper: #f7f4ee;
  --paper-deep: #eee8dc;
  --red: #d1412d;
  --white: #ffffff;
  --border: #ded8cd;
  --shadow: 0 24px 80px rgba(11, 29, 45, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "IBM Plex Sans", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: -0.03em; }
.brand-mark { width: 38px; height: 38px; display: inline-flex; flex: 0 0 auto; }
.brand-mark svg { width: 100%; height: 100%; }
.brand-mark rect { fill: var(--ink); }
.brand-mark path { fill: none; stroke: var(--paper); stroke-width: 7; stroke-linecap: round; }
.brand-mark circle { fill: var(--red); stroke: var(--paper); stroke-width: 4; }
.brand-wordmark { font-size: 1.12rem; white-space: nowrap; }
.brand-wordmark span:last-child { color: var(--teal); }

.nav { display: flex; align-items: center; gap: 24px; font-size: 0.94rem; color: var(--slate); font-weight: 500; }
.nav a:hover { color: var(--ink); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font: inherit;
  font-weight: 700;
  font-size: 0.96rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(11, 29, 45, 0.14);
  transition: transform 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-1px); background: #102940; }
.button-small { min-height: 42px; padding: 0 18px; font-size: 0.9rem; }
.text-link { font-weight: 700; color: var(--teal); border-bottom: 1px solid rgba(47, 95, 102, 0.35); }
.text-link:hover { border-color: var(--teal); }

.section { padding: clamp(64px, 8vw, 112px) 0; scroll-margin-top: 92px; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.hero { padding-top: clamp(76px, 10vw, 128px); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr); gap: clamp(36px, 6vw, 72px); align-items: center; }
.eyebrow {
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
}
.hero h1 { max-width: 760px; font-size: clamp(3rem, 7vw, 5.65rem); line-height: 0.96; letter-spacing: -0.07em; margin-bottom: 26px; }
.hero-text { max-width: 640px; font-size: clamp(1.16rem, 2vw, 1.34rem); color: var(--slate); line-height: 1.56; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }

.hero-visual { min-height: 440px; display: flex; align-items: center; justify-content: center; }
.intelligence-card {
  position: relative;
  width: min(100%, 520px);
  border: 1px solid var(--border);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255,255,255,0.94), rgba(238,232,220,0.86));
  overflow: hidden;
  box-shadow: var(--shadow);
}
.intelligence-card::before {
  content: "";
  position: absolute;
  inset: -120px -80px auto auto;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,155,60,0.20), rgba(201,155,60,0));
  pointer-events: none;
}
.visual-chrome {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.56);
}
.chrome-mark { width: 8px; height: 8px; border-radius: 2px; background: var(--red); transform: rotate(45deg); }
.visual-chrome p {
  margin: 0 0 0 8px;
  color: var(--slate);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.system-map { position: relative; padding: 22px 22px 14px; }
.system-graphic { display: block; width: 100%; height: auto; }
.map-surface { fill: rgba(247,244,238,0.72); }
.map-grid { fill: url(#heroGrid); stroke: none; opacity: 0.58; }
.map-grid + path, .map-grid path { stroke: var(--border); }
.system-graphic defs + .map-surface + .map-grid { stroke: var(--border); }
.system-graphic pattern path { stroke: var(--border); stroke-width: 1; }
.soft-route {
  fill: none;
  stroke: rgba(47,95,102,0.18);
  stroke-width: 34;
  stroke-linecap: round;
}
.orbit-dot { fill: var(--paper); stroke-width: 2.5; }
.orbit-dot-assets { stroke: var(--teal); }
.orbit-dot-pathways { stroke: var(--brass); }
.orbit-dot-decisions { stroke: var(--red); }
.orbit-link {
  fill: none;
  stroke: var(--slate);
  stroke-width: 2;
  stroke-dasharray: 1 6;
  stroke-linecap: round;
  opacity: 0.55;
}
.main-route {
  fill: none;
  stroke: var(--ink);
  stroke-width: 10;
  stroke-linecap: round;
}
.node { fill: var(--paper); stroke: var(--teal); stroke-width: 5; }
.node-b { stroke: var(--brass); }
.node-c { stroke: var(--ink); }
.node-ring { fill: var(--paper); stroke: var(--ink); stroke-width: 7; }
.node-destination { fill: var(--red); }
.map-chip {
  position: absolute;
  display: grid;
  grid-template-columns: 12px auto;
  column-gap: 10px;
  align-items: start;
  min-width: 142px;
  padding: 12px 14px;
  border: 1px solid rgba(222,216,205,0.88);
  border-radius: 16px;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 36px rgba(11,29,45,0.08);
}
.map-chip span { width: 11px; height: 11px; border-radius: 999px; background: var(--teal); margin-top: 5px; }
.map-chip strong { display: block; line-height: 1.1; font-size: 0.9rem; color: var(--ink); }
.map-chip small { grid-column: 2; color: var(--slate); font-size: 0.76rem; line-height: 1.25; }
.chip-one { left: 38px; top: 42px; }
.chip-two { right: 34px; bottom: 92px; }
.chip-three { left: 80px; bottom: 44px; }
.chip-two span { background: var(--brass); }
.chip-three span { background: var(--red); }
.insight-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-top: 1px solid var(--border);
  background: var(--border);
}
.insight-strip div { padding: 18px 16px; background: rgba(255,255,255,0.72); }
.insight-strip strong { display: block; font-size: 0.92rem; line-height: 1.2; color: var(--ink); }
.insight-strip span { display: block; margin-top: 2px; color: var(--slate); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.10em; font-weight: 700; }

.split { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(32px, 6vw, 76px); align-items: start; }
h2 { font-size: clamp(2.1rem, 4.8vw, 3.4rem); line-height: 1.04; letter-spacing: -0.055em; margin-bottom: 24px; }
.body-stack p, .large-copy { color: var(--slate); font-size: 1.12rem; line-height: 1.72; }
.body-stack p:last-child { margin-bottom: 0; }
.problem-section { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(255, 255, 255, 0.28); }

.section-heading { max-width: 820px; margin-bottom: 34px; }
.section-heading.narrow { max-width: 760px; }
.card-grid { display: grid; gap: 22px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.card {
  position: relative;
  min-height: 236px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.66);
}
.card-icon { display: inline-flex; width: 44px; height: 44px; margin-bottom: 26px; }
.card-icon svg { width: 100%; height: 100%; }
h3 { font-size: 1.38rem; line-height: 1.18; letter-spacing: -0.03em; margin-bottom: 14px; }
.card p { color: var(--slate); margin-bottom: 0; }

.offer-section { background: rgba(255, 255, 255, 0.34); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.offer-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr); gap: clamp(32px, 6vw, 72px); align-items: start; }
.capability-panel {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(11, 29, 45, 0.07);
}
.capability-panel h3 { margin-bottom: 20px; }
.capability-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; color: var(--slate); font-weight: 500; }
.capability-list li { position: relative; padding-left: 28px; }
.capability-list li::before { content: ""; position: absolute; left: 0; top: 0.63em; width: 10px; height: 10px; border-radius: 50%; background: var(--brass); box-shadow: 0 0 0 5px rgba(201, 155, 60, 0.14); }

.audience-section { background: var(--ink); color: var(--paper); }
.audience-section .eyebrow { color: #d7b86a; }
.audience-section h2 { max-width: 880px; }
.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.audience-card { padding: 28px; border: 1px solid rgba(247, 244, 238, 0.16); border-radius: 24px; background: rgba(255, 255, 255, 0.05); }
.audience-card h3 { color: var(--paper); }
.audience-card p { color: rgba(247, 244, 238, 0.72); margin-bottom: 0; }

.compact-section { padding-top: clamp(52px, 7vw, 88px); }
.product-card { min-height: 268px; background: var(--white); }
.product-label { color: var(--teal) !important; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; margin-bottom: 20px !important; }
.credibility-section { border-top: 1px solid var(--border); background: rgba(255, 255, 255, 0.24); }
.credibility-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.78fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.credibility-copy h2 { max-width: 780px; }
.credential-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.credential-row span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  color: var(--slate);
  font-size: 0.9rem;
  font-weight: 600;
}
.founder-card {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(247,244,238,0.9));
  box-shadow: 0 22px 60px rgba(11, 29, 45, 0.10);
}
.founder-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 22px;
  filter: grayscale(1) contrast(1.04);
}
.founder-card figcaption {
  display: grid;
  gap: 2px;
  padding: 16px 6px 2px;
}
.founder-card strong {
  font-size: 1.04rem;
  letter-spacing: -0.02em;
}
.founder-card span {
  color: var(--slate);
  font-size: 0.94rem;
}

.final-cta { padding-top: 44px; }
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 6vw, 70px);
  align-items: start;
  padding: clamp(32px, 6vw, 64px);
  border-radius: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.cta-copy p:not(.eyebrow) { color: var(--slate); font-size: 1.12rem; line-height: 1.72; }
.briefing-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.briefing-form label { display: grid; gap: 8px; color: var(--ink); font-weight: 700; font-size: 0.9rem; }
.briefing-form input,
.briefing-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 13px 14px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  outline: none;
}
.briefing-form input:focus,
.briefing-form textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(47, 95, 102, 0.12); }
.full-width { grid-column: 1 / -1; }
.briefing-form .button { width: max-content; }
.form-note { margin: 0; align-self: center; color: var(--slate); font-size: 0.92rem; }
.form-note a { color: var(--teal); font-weight: 700; }

.site-footer { padding: 48px 0 34px; border-top: 1px solid var(--border); }
.footer-grid { display: flex; justify-content: space-between; gap: 32px; align-items: flex-start; }
.footer-brand .brand-mark { width: 34px; height: 34px; }
.footer-line { color: var(--slate); margin: 14px 0 0; }
.small-line { margin-top: 4px; }
.footer-links { display: grid; grid-template-columns: repeat(2, max-content); column-gap: 28px; row-gap: 10px; color: var(--slate); font-weight: 600; }
.footer-links a:hover { color: var(--ink); }
.copyright { color: var(--slate); font-size: 0.92rem; margin-top: 34px; }

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

@media (max-width: 860px) {
  .site-header { min-height: 70px; }
  .brand-wordmark { font-size: 1rem; }
  .hero-grid, .split, .card-grid.three, .card-grid.two, .offer-grid, .cta-grid, .audience-grid, .credibility-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 60px; }
  .hero-visual { min-height: 320px; }
  .intelligence-card { border-radius: 24px; }
  .map-chip { transform: scale(0.92); transform-origin: center; }
  .card { min-height: auto; }
  .footer-grid { flex-direction: column; }
}

@media (max-width: 560px) {
  .site-header { padding-left: 18px; padding-right: 18px; }
  .site-header .button { display: none; }
  .container { width: min(100% - 32px, 1120px); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .text-link { align-self: center; }
  .hero-visual { min-height: 260px; }
  .map-chip { display: none; }
  .insight-strip { grid-template-columns: 1fr; }
  .card, .capability-panel, .audience-card, .cta-grid { border-radius: 20px; padding: 24px; }
  .briefing-form { grid-template-columns: 1fr; }
  .briefing-form .button { width: 100%; }
  .footer-links { grid-template-columns: 1fr; }
}

.section-intro {
  max-width: 760px;
  color: var(--slate);
  font-size: 1.08rem;
  line-height: 1.7;
  margin: -10px 0 0;
}

.offerings-section {
  background: linear-gradient(180deg, var(--paper), rgba(255,255,255,0.38));
}

.offerings-grid .product-card {
  display: flex;
  flex-direction: column;
}

.featured-product {
  border-color: rgba(47, 95, 102, 0.35);
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(247,244,238,0.9));
  box-shadow: 0 20px 60px rgba(11, 29, 45, 0.08);
}

.featured-product .product-label { color: var(--red) !important; }

.card-link {
  display: inline-flex;
  width: max-content;
  margin-top: auto;
  padding-top: 22px;
  color: var(--teal);
  font-weight: 700;
  border-bottom: 1px solid rgba(47, 95, 102, 0.32);
}
.card-link:hover { border-color: var(--teal); color: var(--ink); }

.college-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--ink);
  color: var(--paper);
}
.college-section .eyebrow { color: #d7b86a; }
.college-section .large-copy { color: rgba(247,244,238,0.76); }
.college-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}
.college-panel {
  padding: 32px;
  border: 1px solid rgba(247,244,238,0.16);
  border-radius: 28px;
  background: rgba(255,255,255,0.06);
}
.college-panel h3 { color: var(--paper); }
.college-panel .capability-list { color: rgba(247,244,238,0.76); }
.college-panel .capability-list li::before { background: var(--red); box-shadow: 0 0 0 5px rgba(209,65,45,0.18); }
.college-actions { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; margin-top: 28px; }
.college-actions .button { background: var(--paper); color: var(--ink); box-shadow: none; }
.college-actions .button:hover { background: #fff; }
.college-actions .text-link { color: #d7b86a; border-color: rgba(215,184,106,0.38); }
.college-actions .text-link:hover { border-color: #d7b86a; }

@media (max-width: 860px) {
  .college-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .college-actions { align-items: stretch; flex-direction: column; }
  .college-actions .button { width: 100%; }
}


.hidden-field {
  display: none;
}


.legal-page .section {
  padding-top: clamp(56px, 8vw, 92px);
}

.legal-content {
  max-width: 820px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 18px 54px rgba(11, 29, 45, 0.07);
}

.legal-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
}

.legal-content h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  margin-top: 34px;
  margin-bottom: 12px;
}

.legal-content p,
.legal-content li {
  color: var(--slate);
  font-size: 1.05rem;
  line-height: 1.7;
}

.legal-content a:not(.button) {
  color: var(--teal);
  font-weight: 700;
  border-bottom: 1px solid rgba(47,95,102,0.3);
}
