:root {
  --bg: #08070a;
  --bg-soft: #0d0c11;
  --bg-card: #131119;
  --line: rgba(var(--accent-rgb), 0.14);
  --line-strong: rgba(var(--accent-rgb), 0.32);
  --ink: #f4f0e7;
  --muted: #b2aca1;
  --muted-soft: #807a70;
  --gold: #cda85f;
  --gold-bright: #ecd594;
  --gold-deep: #b08a3f;
  --accent-rgb: 205, 168, 95;
  --card-2: #0f0e14;
  --on-accent: #1d1606;
  --nav-bg: rgba(8, 7, 10, 0.72);
  --font-display: "Fraunces", Georgia, serif;
  --radius: 18px;
  --maxw: 1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* subtle film grain for a premium, printed feel */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- shared type ---------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.74rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 26px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  max-width: 26ch;
}

.gold-text {
  background: linear-gradient(115deg, var(--gold-bright), var(--gold) 55%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(120deg, var(--gold-bright), var(--gold));
  color: var(--on-accent);
  font-weight: 600;
  font-size: 0.97rem;
  letter-spacing: 0.01em;
  padding: 15px 30px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 34px -14px rgba(var(--accent-rgb), 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(var(--accent-rgb), 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.3); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  box-shadow: none;
}
.btn--ghost:hover { background: rgba(var(--accent-rgb), 0.06); border-color: var(--gold); box-shadow: none; }
.btn--small { padding: 11px 20px; font-size: 0.86rem; }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}
.brand__img { height: 52px; width: auto; display: block; }
.brand__img--footer { height: 40px; }
.brand__mark { color: var(--gold); font-size: 1.05rem; flex-shrink: 0; }
.brand__name { font-size: 1.05rem; white-space: nowrap; font-family: var(--font-display); }
.nav__links { display: flex; gap: 34px; }
.nav__links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.15s ease;
}
.nav__links a:hover { color: var(--gold-bright); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 150px 0 110px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(820px 520px at 78% -8%, rgba(var(--accent-rgb), 0.20), transparent 62%),
    radial-gradient(680px 460px at 8% 6%, rgba(var(--accent-rgb), 0.08), transparent 58%),
    radial-gradient(1100px 700px at 50% 120%, rgba(var(--accent-rgb), 0.10), transparent 60%);
}
.hero .container { position: relative; z-index: 1; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  max-width: 19ch;
}
.hero__lede {
  max-width: 60ch;
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  color: var(--muted);
  margin-bottom: 44px;
}
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 88px; }
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-strong);
  padding-top: 44px;
}
.stat { padding: 0 34px; }
.stat:first-child { padding-left: 0; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  background: linear-gradient(120deg, var(--gold-bright), var(--gold) 60%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label { display: block; color: var(--muted-soft); font-size: 0.9rem; margin-top: 10px; max-width: 26ch; }

/* ---------- problem ---------- */
.problem { padding: 130px 0; }
.problem__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}
.problem__body p { color: var(--muted); font-size: 1.08rem; margin-bottom: 22px; }
.problem__body p:last-child { margin-bottom: 0; }
.problem__body strong { color: var(--ink); font-weight: 600; }
.pull {
  font-family: var(--font-display) !important;
  color: var(--ink) !important;
  font-size: 1.5rem !important;
  font-weight: 400;
  line-height: 1.4;
  border-left: 2px solid var(--gold);
  padding-left: 26px;
  margin-top: 36px !important;
}

/* ---------- services ---------- */
.services { padding: 130px 0; background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.services .section-title { margin-bottom: 22px; }
.section-lede { max-width: 64ch; color: var(--muted); font-size: 1.12rem; margin-bottom: 60px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  position: relative;
  background: linear-gradient(180deg, var(--bg-card), var(--card-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 34px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(var(--accent-rgb), 0.12);
}
.card__num {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 22px;
  letter-spacing: 0.04em;
}
.card h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.42rem; margin-bottom: 16px; letter-spacing: -0.01em; }
.card p { color: var(--muted); font-size: 0.98rem; margin-bottom: 26px; }
.card__list { list-style: none; display: grid; gap: 12px; }
.card__list li {
  color: var(--muted);
  font-size: 0.92rem;
  padding-left: 24px;
  position: relative;
}
.card__list li::before {
  content: "▰";
  color: var(--gold);
  position: absolute;
  left: 0;
  font-size: 0.62rem;
  top: 4px;
}
.card--flat p { margin-bottom: 0; }
.cards--six { gap: 24px; }

/* ---------- differentiator / edge ---------- */
.edge { position: relative; padding: 124px 0; text-align: center; overflow: hidden; }
.edge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(720px 380px at 50% 45%, rgba(var(--accent-rgb), 0.09), transparent 70%);
}
.edge__inner { position: relative; max-width: 800px; margin: 0 auto; }
.edge .eyebrow { justify-content: center; }
.edge__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 26px;
}
.edge__text { color: var(--muted); font-size: 1.15rem; line-height: 1.7; }
.edge__functions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 30px 0;
}
.chip {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.84rem;
  color: var(--muted);
  letter-spacing: 0.02em;
  background: rgba(var(--accent-rgb), 0.04);
}

/* ---------- win-rate callout ---------- */
.callout { padding: 100px 0; }
.callout__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 58px 44px;
  background:
    radial-gradient(620px 300px at 50% 0%, rgba(var(--accent-rgb), 0.10), transparent 70%),
    linear-gradient(180deg, var(--bg-card), var(--card-2));
}
.callout__inner h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.callout__inner p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 56ch;
  margin: 0 auto 30px;
}

/* ---------- results ---------- */
.results { padding: 130px 0; }
.results .section-title { margin-bottom: 60px; }
.results__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.result {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  background: linear-gradient(165deg, rgba(var(--accent-rgb), 0.06), transparent 70%);
}
.result__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  background: linear-gradient(120deg, var(--gold-bright), var(--gold) 60%, var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.result p { color: var(--muted); font-size: 0.93rem; }
.quote {
  position: relative;
  max-width: 72ch;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}
.quote::before {
  content: "\201C";
  display: block;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 18px;
}
.quote p {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.1vw, 1.7rem);
  line-height: 1.5;
  letter-spacing: -0.005em;
}
.quote footer { color: var(--gold); margin-top: 26px; font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* ---------- process ---------- */
.process { padding: 130px 0; background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process .section-title { margin-bottom: 64px; }
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.steps--three { grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step { position: relative; padding-top: 8px; }
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 24px;
  box-shadow: inset 0 0 24px -10px rgba(var(--accent-rgb), 0.4);
}
.step h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.2rem; margin-bottom: 12px; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* ---------- founders ---------- */
.founders { padding: 130px 0; }
.founders .section-title { margin-bottom: 60px; }
.founder-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.founder {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 52px 44px;
  background: linear-gradient(180deg, var(--bg-card), var(--card-2));
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.founder:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.portrait {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  margin: 0 auto 26px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(120% 120% at 30% 20%, #221f29, #100f15);
  box-shadow: 0 0 0 1px rgba(var(--accent-rgb), 0.45), 0 0 0 8px rgba(var(--accent-rgb), 0.05), 0 18px 50px -20px rgba(var(--accent-rgb), 0.35);
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait__mono {
  font-family: var(--font-display);
  font-size: 2.7rem;
  letter-spacing: 0.02em;
  background: linear-gradient(120deg, var(--gold-bright), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.founder h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.55rem; letter-spacing: -0.01em; }
.founder__role { color: var(--gold); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 8px; margin-bottom: 22px; }
.founder p { color: var(--muted); margin-bottom: 22px; font-size: 1rem; }
.founder__meta { color: var(--muted-soft); font-size: 0.85rem; letter-spacing: 0.02em; margin-bottom: 18px !important; }
.founder__link {
  display: inline-block;
  color: var(--gold-bright);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}
.founder__link:hover { color: var(--ink); }

/* ---------- cta ---------- */
.cta {
  position: relative;
  padding: 150px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  text-align: center;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(760px 440px at 50% 130%, rgba(var(--accent-rgb), 0.18), transparent 62%);
}
.cta__inner { position: relative; max-width: 680px; }
.cta h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 26px;
}
.cta p { color: var(--muted); font-size: 1.12rem; margin-bottom: 40px; }
.cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- contact ---------- */
.contact {
  position: relative;
  padding: 150px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(760px 460px at 80% 120%, rgba(var(--accent-rgb), 0.16), transparent 62%);
}
.contact__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact__intro .section-title { margin-bottom: 22px; }
.contact__lede { color: var(--muted); font-size: 1.12rem; margin-bottom: 28px; max-width: 42ch; }
.contact__email { color: var(--muted-soft); font-size: 0.96rem; }
.contact__email a { color: var(--gold-bright); text-decoration: none; border-bottom: 1px solid var(--line-strong); padding-bottom: 2px; }
.contact__email a:hover { color: var(--ink); border-color: var(--gold); }

.form {
  display: grid;
  gap: 20px;
  background: linear-gradient(180deg, var(--bg-card), var(--card-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 42px;
}
.field { display: grid; gap: 9px; }
.field label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.98rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field textarea { resize: vertical; min-height: 112px; line-height: 1.6; }
.field input::placeholder,
.field textarea::placeholder { color: var(--muted-soft); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(var(--accent-rgb), 0.05);
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23cda85f' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.field select option { color: #17120a; }
.form__submit { justify-self: start; margin-top: 6px; }
.hidden-field { display: none; }
.form__status { margin-top: 4px; font-size: 0.96rem; font-weight: 500; line-height: 1.5; }
.form__status--ok { color: var(--gold-deep); }
.form__status--err { color: #c0392b; }
.field__hint { text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--muted-soft); }

/* multi-pick chips */
.choices { display: flex; flex-wrap: wrap; gap: 10px; }
.choice { cursor: pointer; line-height: 0; }
.choice input { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.choice span {
  display: inline-block;
  line-height: 1.2;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
  background: rgba(var(--accent-rgb), 0.03);
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
  user-select: none;
}
.choice:hover span { border-color: var(--gold); color: var(--ink); }
.choice input:checked + span {
  border-color: var(--gold);
  background: rgba(var(--accent-rgb), 0.14);
  color: var(--ink);
  font-weight: 500;
}
.choice input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 40px 0; }
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.brand--footer { font-size: 1rem; }
.footer__tag { color: var(--muted-soft); font-size: 0.9rem; }
.footer__emails { display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.footer__email { color: var(--muted-soft); font-size: 0.9rem; text-decoration: none; }
.footer__email:hover { color: var(--gold-bright); }
.footer__sep { color: var(--muted-soft); opacity: 0.5; }
.footer__copy { color: var(--muted-soft); font-size: 0.84rem; letter-spacing: 0.02em; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .hero { padding: 110px 0 80px; }
  .hero__stats { grid-template-columns: 1fr; gap: 28px; }
  .stat { padding: 0; }
  .stat + .stat { border-left: none; border-top: 1px solid var(--line); padding-top: 24px; }
  .problem__grid { grid-template-columns: 1fr; gap: 32px; }
  .cards, .cards--six { grid-template-columns: repeat(2, 1fr); }
  .results__grid { grid-template-columns: repeat(2, 1fr); }
  .steps, .steps--three { grid-template-columns: repeat(2, 1fr); }
  .founder-grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact__lede { max-width: none; }
  .problem, .services, .results, .process, .founders, .cta, .contact { padding: 90px 0; }
}
@media (max-width: 640px) {
  .nav .btn--small { display: none; }
}
@media (max-width: 560px) {
  .cards, .cards--six { grid-template-columns: 1fr; }
  .results__grid { grid-template-columns: 1fr; }
  .steps, .steps--three { grid-template-columns: 1fr; }
  .container { padding: 0 24px; }
  .founder { padding: 44px 28px; }
  .form { padding: 30px 24px; }
}
