/* DealPrint house template — lifted from the hand-built 901 Holdings draft.
   Teal signal on near-black and institutional navy; mono uppercase eyebrows at
   .18em; 500-weight headings at -.03em; tabular stat figures; the 2px teal
   dash instead of a bullet; cardRadius bracketing card rows; 8px-inset
   rounded-32 panels. Nothing here fetches: no imports, no remote images. */

:root {
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', Menlo, 'Roboto Mono', 'JetBrains Mono', Consolas, monospace;
  --ink: #0f0f0f;
  --paper: #ffffff;
  --card: #f0f8f9;
  --card-ring: rgba(212, 234, 237, 0.9);
  --teal: #7dd6df;
  --teal-deep: #016666;
  --eyebrow: #1a5d63;
  --muted: #5a7380;
  --navy: #22364e;
  --light: #f0f8f9;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

.frame { max-width: 1600px; margin: 0 auto; }
.shell { max-width: 1280px; margin: 0 auto; padding: 0 32px; position: relative; }

/* ---- shared type ---- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--eyebrow);
}
.eyebrow.teal { color: var(--teal); }
.eyebrow.center { text-align: center; }
.h2 {
  margin: 14px 0 0;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.h2.light { color: var(--light); }
.h2.center { text-align: center; }
.section { padding: 104px 0; }
.section.pad-bottom { padding: 0 0 104px; }
.section.center { text-align: center; }
.text-link { color: var(--eyebrow); text-decoration: underline; text-underline-offset: 3px; }
.teal-link { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }

/* ---- the 2px teal dash instead of a bullet ---- */
.dash-list { list-style: none; margin: 0; padding: 16px 0 0; }
.dash-list li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 14px;
  align-items: start;
  padding: 9px 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
}
.dash { height: 2px; background: var(--teal); margin-top: 11px; }
.dash-list.muted li { color: var(--muted); }
.dash-list.muted .dash { background: rgba(15, 15, 15, 0.18); }

/* ---- reserved photo slots: labelled, dashed, never an <img> ---- */
.hero-slot, .founder-photo, .gallery-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  border: 1.5px dashed rgba(125, 214, 223, 0.65);
}
.hero-slot span, .founder-photo span, .gallery-slot span {
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

/* ---- hero: 8px-inset rounded-32 navy panel ---- */
.hero-wrap { padding: 8px 8px 0; }
.hero-panel {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(145deg, #31506f 0%, #26405c 38%, #22364e 70%, #1a2b3f 100%);
  box-shadow: inset 0 0 0 1px rgba(240, 248, 249, 0.1);
}
.topnav { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; flex-wrap: wrap; gap: 10px; }
.brand {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--light);
  text-decoration: none;
  text-transform: uppercase;
}
.brand.small { font-size: 15px; }
.topnav-links { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; }
.nav-link {
  padding: 9px 15px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(240, 248, 249, 0.85);
  text-decoration: none;
}
.nav-link:hover { background: rgba(240, 248, 249, 0.12); color: var(--light); }
.nav-cta {
  margin-left: 12px;
  padding: 10px 20px;
  border-radius: 9999px;
  background: var(--teal);
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(15, 15, 15, 0.18);
}
.nav-cta:hover { background: #a6e3e9; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding: 64px 0 88px;
}
.hero-h1 {
  margin: 0;
  font-size: clamp(48px, 5.4vw, 80px);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--light);
  text-wrap: balance;
}
.hero-lead {
  margin: 30px 0 0;
  max-width: 560px;
  font-size: 19px;
  line-height: 1.5;
  font-weight: 500;
  color: rgba(240, 248, 249, 0.82);
  white-space: pre-line;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.btn-light {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 9999px;
  background: var(--light);
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(15, 15, 15, 0.2);
}
.btn-light:hover { background: #a6e3e9; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 9999px;
  background: rgba(240, 248, 249, 0.1);
  color: var(--light);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(240, 248, 249, 0.22);
}
.btn-ghost:hover { background: rgba(240, 248, 249, 0.2); }

.rep-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(240, 248, 249, 0.14);
  max-width: 560px;
}
.rep-label, .rep-note {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.rep-label { color: var(--teal); }
.rep-note { color: rgba(240, 248, 249, 0.55); }
.rep-link { color: var(--light); font-size: 15px; font-weight: 600; text-decoration: none; }
a.rep-link:hover { opacity: 0.85; }

.hero-media {
  height: 440px;
  border-radius: 24px;
  background: rgba(240, 248, 249, 0.07);
  box-shadow: inset 0 0 0 1px rgba(240, 248, 249, 0.16);
  overflow: hidden;
}
.hero-slot span { color: #a6e3e9; }
.hero-img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- criteria stats: cardRadius bracketing the row ---- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin: 52px 0 64px;
}
.stat-card {
  padding: 28px;
  border-radius: 16px;
  background: var(--card);
  box-shadow: 0 0 0 1px var(--card-ring);
}
.stat-grid .stat-card:first-child { border-radius: 32px 16px 16px 32px; }
.stat-grid .stat-card:last-child { border-radius: 16px 32px 32px 16px; }
.stat-value {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.stat-label {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.45;
  color: var(--teal-deep);
}

.cols { display: grid; grid-template-columns: 1fr 1fr; gap: 44px 56px; align-items: start; }
.col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-deep);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(15, 15, 15, 0.08);
}
/* An empty list hides its whole column, heading included. */
.col:has(> ul:empty) { display: none; }

/* ---- partners ---- */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 14px;
  margin-top: 48px;
}
.founder-card {
  border-radius: 16px;
  background: var(--card);
  box-shadow: 0 0 0 1px var(--card-ring);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.partners-grid .founder-card:first-child { border-radius: 32px 16px 16px 32px; }
.partners-grid .founder-card:last-child { border-radius: 16px 32px 32px 16px; }
.founder-media { height: 300px; background: #ddf6fa; position: relative; overflow: hidden; }
.founder-img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 500px;
  min-width: 100%;
  object-fit: cover;
  display: block;
}
.founder-photo { width: 100%; height: 100%; border-radius: 0; }
.founder-photo span { color: var(--muted); }
.founder-body { padding: 34px 36px 36px; }
.founder-name { margin: 0; font-size: 26px; font-weight: 500; letter-spacing: -0.02em; color: var(--ink); }
.founder-role {
  margin: 10px 0 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--eyebrow);
}
.founder-bio { margin: 0 0 14px; font-size: 16px; line-height: 1.6; color: var(--ink); white-space: pre-line; }
.founder-linkline { margin: 0 0 20px; font-size: 15px; line-height: 1.6; }
.founder-personal {
  padding-top: 18px;
  border-top: 1px solid rgba(15, 15, 15, 0.08);
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}
#partners:has(.partners-grid:empty) { display: none; }

/* ---- principles ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin-top: 48px;
}
.why-card {
  padding: 34px 32px;
  border-radius: 16px;
  background: var(--card);
  box-shadow: 0 0 0 1px var(--card-ring);
  transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1), background-color 200ms;
}
.why-grid .why-card:first-child { border-radius: 32px 16px 16px 16px; }
.why-grid .why-card:last-child { border-radius: 16px 16px 32px 16px; }
.why-card:hover { background: #ddf6fa; transform: translateY(-4px); }
.tick { width: 26px; height: 2px; background: var(--teal); margin-bottom: 20px; }
.why-h3 { margin: 0 0 10px; font-size: 19px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.why-p { margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--muted); white-space: pre-line; }
#why:has(.why-grid:empty) { display: none; }

/* ---- story ---- */
.story-band { padding: 96px 0; background: #f0f2f5; position: relative; overflow: hidden; }
.story-block { max-width: 720px; margin: 0 auto; }
.story-block + .story-block { margin-top: 64px; }
.story-body { margin: 34px auto 0; }
.story-p { margin: 0; font-size: 17px; line-height: 1.7; color: var(--ink); white-space: pre-line; }
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 720px;
  margin: 40px auto 0;
}
.shot {
  height: 200px;
  border-radius: 20px;
  background: var(--paper);
  box-shadow: 0 0 0 1px rgba(15, 15, 15, 0.06);
  overflow: hidden;
  margin: 0;
}
.shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-slot span { color: var(--muted); }
#story:has(.story-list:empty) .story-list { display: none; }

/* ---- brokers: near-black rounded panel with corner registration ticks ---- */
.brokers-wrap { padding: 8px; }
.brokers-panel {
  border-radius: 32px;
  background: var(--ink);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.corner {
  position: absolute;
  width: 9px;
  height: 9px;
  background:
    linear-gradient(var(--teal) 0 0) center / 9px 1px no-repeat,
    linear-gradient(var(--teal) 0 0) center / 1px 9px no-repeat;
  opacity: 0.55;
}
.corner.tl { top: 20px; left: 20px; }
.corner.tr { top: 20px; right: 20px; }
.corner.bl { bottom: 20px; left: 20px; }
.corner.br { bottom: 20px; right: 20px; }
.brokers-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; margin-top: 44px; align-items: start; }
.brokers-p { margin: 0 0 18px; font-size: 16.5px; line-height: 1.7; color: rgba(240, 248, 249, 0.78); }
.brokers-cta { margin-top: 28px; }
.cred-rows { margin-top: 8px; }
.cred-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(240, 248, 249, 0.1);
  font-size: 16px;
  line-height: 1.5;
}
.cred-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  padding-top: 3px;
}
.cred-value { color: #e8f0f5; }
.package-card {
  padding: 32px;
  border-radius: 24px;
  background: var(--navy);
  box-shadow: 0 0 0 1px rgba(240, 248, 249, 0.1);
}
.package-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.6;
  color: var(--teal);
}
.package-list { list-style: none; margin: 18px 0 0; padding: 0; }
.package-list li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 14px;
  align-items: start;
  padding: 11px 0;
  border-bottom: 1px solid rgba(240, 248, 249, 0.1);
  font-size: 16px;
  line-height: 1.5;
  color: #e8f0f5;
}
.package-list li:last-child { border-bottom: none; }
.package-card:has(> ul:empty) { display: none; }

/* ---- contact ---- */
.contact-cards { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 44px; }
.contact-card {
  padding: 30px 44px;
  border-radius: 20px;
  background: var(--card);
  box-shadow: 0 0 0 1px var(--card-ring);
}
.contact-name { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.contact-card .text-link { display: block; margin-top: 8px; font-size: 15px; }

/* ---- footer ---- */
.footer { background: var(--navy); padding: 40px 0; }
.footer-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; align-items: center; }
.footer-left { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-note { font-size: 13.5px; color: rgba(240, 248, 249, 0.55); }

/* ---- small screens ---- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; padding: 40px 0 56px; }
  .hero-media { height: 320px; }
  .cols { grid-template-columns: 1fr; }
  .brokers-grid { grid-template-columns: 1fr; gap: 36px; }
  .gallery { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .section.pad-bottom { padding: 0 0 72px; }
  .cred-row { grid-template-columns: 1fr; gap: 4px; }
}
