/* ============================================================
   IPR — Cofounder profile (digital business card)
   Amy Nguyen · ported from "Amy Profile v2" design bundle.
   Mobile-first card, max 460px, onyx ground, iron accent.
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap");

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("/assets/fonts/BricolageGrotesque-Variable.ttf") format("truetype-variations");
  font-weight: 200 800;
  font-stretch: 75% 100%;
  font-display: swap;
}

:root {
  /* brand primitives */
  --onyx: #131711;
  --onyx-deep: #0c0f0b;
  --snow: #f7f2f3;
  --iron: #a61c01;
  --evergreen: #23331f;
  --chartreuse: #eeff41;
  --iron-soft: #c5421f;

  /* snow alphas */
  --snow-72: rgba(247, 242, 243, 0.72);
  --snow-40: rgba(247, 242, 243, 0.40);
  --snow-24: rgba(247, 242, 243, 0.24);
  --snow-12: rgba(247, 242, 243, 0.12);
  --snow-06: rgba(247, 242, 243, 0.06);

  /* semantic */
  --text-secondary: var(--snow-72);
  --text-muted: var(--snow-40);
  --border-strong: var(--snow-24);
  --surface-card: rgba(247, 242, 243, 0.04);

  /* type */
  --font-display: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Space Grotesk", ui-monospace, "SF Mono", Menlo, monospace;

  /* radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-pill: 2em;

  /* motion / shadow */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 0.25s;
  --shadow-lg: 0 24px 60px rgba(12, 15, 11, 0.22);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--onyx-deep); }

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;       /* card sits in the body, between header + footer */
  font-family: var(--font-body);
  color: var(--snow);
  background: var(--onyx-deep);
  -webkit-font-smoothing: antialiased;
  padding-top: 58px;         /* clear the fixed site nav */
}

/* ---------- site chrome: header + footer that wrap the card,
   so a profile page is structured like every other page ---------- */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px clamp(18px, 4vw, 40px);
  background: linear-gradient(to bottom, rgba(12, 15, 11, 0.9), rgba(12, 15, 11, 0));
  backdrop-filter: blur(4px);
}
.site-nav__logo {
  font-family: var(--font-display); font-weight: 800; font-size: 1.4rem;
  letter-spacing: -0.02em; color: var(--snow); text-decoration: none;
}
.site-nav__links { display: flex; align-items: center; gap: clamp(0.85rem, 2.2vw, 1.9rem); }
.site-nav__links a {
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none; cursor: pointer;
  background: none; border: none;
  transition: color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.site-nav__links a:hover { color: var(--snow); }
.site-nav__cta {
  border: 1px solid var(--snow-12); border-radius: 2em;
  padding: 0.6em 1.1em; color: var(--snow) !important;
}
.site-nav__cta:hover { background: var(--iron); border-color: var(--iron); }

.site-foot {
  position: relative; z-index: 1;
  width: 100%; max-width: 1080px; margin-top: 8px;
  padding: 30px clamp(20px, 4vw, 48px) 34px;
  border-top: 1px solid var(--snow-12);
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px;
}
.site-foot__logo {
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
  color: var(--snow); text-decoration: none;
}
.site-foot__nav { display: flex; gap: 18px; }
.site-foot__nav a {
  font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-secondary); text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}
.site-foot__nav a:hover { color: var(--snow); }
.site-foot__tag {
  margin-left: auto;
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-muted);
}
@media (max-width: 560px) {
  .site-nav__links a:not(.site-nav__cta):not(.site-nav__team) { display: none; }
  .site-nav__links { gap: 0.9rem; }
  .site-foot__tag { margin-left: 0; flex-basis: 100%; }
}

/* ---------- atmospheric backdrop ----------
   Same teal/evergreen glow + vignette + grain as the homepage and the
   team roster, so a profile card feels part of the site, not a separate
   document. Fixed overlays — they don't touch the card layout. */
.page-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(90, 180, 205, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 120%, rgba(35, 51, 31, 0.45) 0%, transparent 60%),
    var(--onyx-deep);
}
.vignette {
  position: fixed; inset: 0; z-index: 3; pointer-events: none;
  background: radial-gradient(ellipse at 50% 45%, transparent 50%, rgba(12, 15, 11, 0.7) 100%);
}
.grain {
  position: fixed; inset: 0; z-index: 4; pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

::selection { background: var(--iron); color: var(--snow); }

/* entrance */
@keyframes ipr-rise { from { transform: translateY(14px); } to { transform: translateY(0); } }
@keyframes ipr-sheet { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes ipr-fade { from { opacity: 0; } to { opacity: 1; } }
.rise { animation: ipr-rise .6s var(--ease-out); }

/* ---------- card shell ---------- */
.card {
  width: 100%;
  max-width: 460px;
  background: rgba(19, 23, 17, 0.86);
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-left: 1px solid var(--snow-06);
  border-right: 1px solid var(--snow-06);
}

/* ---------- shared atoms ---------- */
.dot { color: var(--iron); }

.wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--snow);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--iron);
  margin: 0;
}

.tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.4em 0.8em;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  line-height: 1;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-strong);
  flex: 0 0 auto;
}

.btn {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
  padding: 0.7em 1.4em;
  font-size: 0.85rem;
}
.btn--primary { background: var(--iron); color: var(--snow); border-color: var(--iron); }
.btn--primary:hover { background: var(--iron-soft); border-color: var(--iron-soft); }
.btn--secondary { background: transparent; color: var(--snow); border-color: var(--border-strong); }
.btn--secondary:hover { border-color: var(--snow-40); }
.btn--hero { width: 100%; white-space: nowrap; height: 50px; font-size: 0.9rem; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 22px 26px 30px;
  overflow: hidden;
  border-bottom: 1px solid var(--snow-12);
}
.hero__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* logo now lives in the site nav; badge sits top-left */
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border: 1px solid var(--snow-12);
  border-radius: var(--radius-pill);
  padding: 6px 12px;
}
.badge__pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--iron);
  box-shadow: 0 0 0 3px rgba(166, 28, 1, 0.22);
}

.hero__id {
  position: relative;
  margin-top: 26px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.hero__photo {
  flex-shrink: 0;
  width: 112px;
  height: 138px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--snow-12);
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 16%;
  filter: grayscale(1) contrast(1.12) brightness(0.95);
}
.hero__meta { flex: 1; min-width: 0; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.5;
  display: block;
}
.hero__name {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 2.7rem;
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-top: 8px;
}
.hero__loc {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.hero__primary { position: relative; margin-top: 24px; }
.hero__actions {
  position: relative;
  margin-top: 10px;
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.quick {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  background: transparent;
  border: 1px solid var(--snow-12);
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
}
.quick:hover { color: var(--snow); border-color: var(--border-strong); }

/* ---------- generic section ---------- */
.section { padding: 30px 26px 0; }
.section--first { padding-top: 32px; }

.stats {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 22px 0;
  border-top: 1px solid var(--snow-12);
  border-bottom: 1px solid var(--snow-12);
}
.stat__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--snow);
}
.stat__value .unit { font-size: 1.1rem; color: var(--text-secondary); }
.stat__key {
  margin-top: 9px;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
}

.lede {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.18rem;
  line-height: 1.36;
  letter-spacing: -0.01em;
  color: var(--snow);
  text-wrap: pretty;
}
.credentials {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--snow-12);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.7;
}

.approach__head {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.45rem;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--snow);
  text-wrap: pretty;
}
.approach__body {
  margin: 16px 0 0;
  font-size: 1rem;
  line-height: 1.62;
  color: var(--text-secondary);
  text-wrap: pretty;
}
.approach__body + .approach__body { margin-top: 14px; }

.tags {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ---------- testimonial ---------- */
.testimonial {
  padding: 34px 26px 0;
}
.testimonial__quote {
  border-left: 2px solid var(--iron);
  padding: 4px 0 4px 18px;
}
.testimonial__quote p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.18rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--snow);
  text-wrap: pretty;
}
.testimonial__by {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---------- intake cta card ---------- */
.cta { padding: 34px 26px 0; }
.cta__inner {
  position: relative;
  border: 1px solid var(--snow-12);
  background: var(--surface-card);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  overflow: hidden;
}
.cta__kicker {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--iron);
}
.cta__title {
  margin-top: 14px;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.7rem;
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 300px;
}
.cta__sub {
  margin: 12px 0 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-secondary);
}
.cta__btn { margin-top: 20px; }
.link-muted {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}
.cta .link-muted { margin-top: 16px; }
.link-muted:hover { color: var(--snow); }

/* ---------- reach ---------- */
.reach__list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reach__item {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  color: var(--snow);
}
.reach__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--snow-12);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.reach__primary { font-size: 0.98rem; }
.reach__label {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.elsewhere {
  margin-top: 24px;
  border-top: 1px solid var(--snow-12);
}
.elsewhere__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 2px;
  border-bottom: 1px solid var(--snow-12);
  text-decoration: none;
  color: var(--snow);
  transition: padding-left var(--dur-fast) var(--ease-out);
}
.elsewhere__row:last-child { border-bottom: none; }
.elsewhere__row:hover { padding-left: 8px; }
.elsewhere__title { font-size: 1.02rem; letter-spacing: -0.01em; }
.elsewhere__sub {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.elsewhere__arrow { color: var(--iron); font-size: 1.1rem; }

/* ---------- footer ---------- */
.footer {
  margin-top: 34px;
  padding: 26px;
  border-top: 1px solid var(--snow-12);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
/* footer becomes navigable: logo + Home/Team links lead back into the site */
.footer { flex-wrap: wrap; gap: 14px 20px; }
.footer__nav { display: flex; gap: 18px; }
.footer__nav a {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}
.footer__nav a:hover { color: var(--snow); }
/* the IPR wordmark is now a link home — keep it looking like the wordmark */
a.wordmark { text-decoration: none; transition: opacity var(--dur-fast) var(--ease-out); }
a.wordmark:hover { opacity: 0.65; }

/* ---------- toast ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  background: var(--snow);
  color: var(--onyx);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lg);
  z-index: 60;
  animation: ipr-fade .2s ease;
  white-space: nowrap;
}

/* ---------- intake sheet ---------- */
.sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 15, 11, 0.7);
  backdrop-filter: blur(2px);
  z-index: 50;
  animation: ipr-fade .2s ease;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.sheet {
  width: 100%;
  max-width: 460px;
  background: var(--onyx);
  border-top: 1px solid var(--snow-12);
  border-radius: 10px 10px 0 0;
  max-height: 92vh;
  overflow-y: auto;
  animation: ipr-sheet .4s var(--ease-out);
}
.sheet__head {
  position: sticky;
  top: 0;
  background: var(--onyx);
  padding: 20px 26px 14px;
  border-bottom: 1px solid var(--snow-12);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  z-index: 2;
}
.sheet__kicker {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--iron);
}
.sheet__title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  margin-top: 6px;
}
.sheet__close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--snow-12);
  background: transparent;
  font-size: 18px;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1;
  flex-shrink: 0;
}
.progress {
  display: flex;
  gap: 6px;
  padding: 18px 26px 0;
}
.progress span {
  height: 2px;
  flex: 1;
  background: var(--snow-12);
  transition: background var(--dur-fast) var(--ease-out);
}
.progress span.on { background: var(--iron); }

.sheet__body { padding: 24px 26px 28px; }
.step { display: none; }
.step.active { display: block; }
.step__count {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}
.step__q {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.step__q + .step__q { margin-top: 26px; }
.step__hint {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}
.opt {
  text-transform: none;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  font-weight: 400;
}

.chips {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chips--wrap {
  margin-top: 16px;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  transition: all var(--dur-fast) var(--ease-out);
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--snow-12);
}
.chip:hover { border-color: var(--border-strong); }
.chip.on { background: var(--iron); color: var(--snow); border-color: var(--iron); }

.field { margin-top: 20px; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}
.field input, .field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-strong);
  border-radius: 0;
  padding: 0.6rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--snow);
  outline: none;
  transition: border-color var(--dur-fast) var(--ease-out);
  resize: vertical;
}
.field input:focus, .field textarea:focus { border-bottom-color: var(--iron); }

.form-err {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--iron-soft);
}

.success { text-align: center; padding: 16px 0 6px; }
.success__check {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--iron);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 0 44px rgba(166, 28, 1, 0.4);
}
.success__title {
  margin-top: 20px;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: -0.025em;
}
.success__sub {
  margin: 12px 0 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-secondary);
}
.success__sub strong { color: var(--snow); font-weight: 500; }
.success__save { margin-top: 22px; display: flex; justify-content: center; }

.sheet__nav {
  position: sticky;
  bottom: 0;
  background: var(--onyx);
  border-top: 1px solid var(--snow-12);
  padding: 16px 26px 22px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.sheet__nav .btn--primary { flex: 1; white-space: nowrap; }

[hidden] { display: none !important; }

/* ============================================================
   Desktop / web view — the mobile card becomes a two-column
   layout: a sticky identity rail on the left, content on the right.
   Keyed off the shared classes, so all three cofounder pages get it.
   ============================================================ */
@media (min-width: 900px) {
  .card {
    max-width: 1080px;
    overflow: visible;          /* let the sticky rail stick to the viewport */
    display: flex;
    align-items: flex-start;
  }

  /* ---- Left identity rail (sticky, natural height) ---- */
  .hero {
    flex: 0 0 400px;
    position: sticky;
    top: 58px;
    align-self: flex-start;
    padding: 44px 38px;
    border-right: none;
    border-bottom: none;
    display: flex;
    flex-direction: column;
  }
  .hero__id { margin-top: 36px; }
  .hero__photo { width: 132px; height: 164px; }
  .hero__name { font-size: 3.1rem; }
  .hero__primary { margin-top: 30px; }

  /* ---- Right content column — the tall element, carries the divider ---- */
  .card__body {
    flex: 1 1 auto;
    min-width: 0;
    border-left: 1px solid var(--snow-12);
  }
  .card__body .section { padding: 40px 48px 0; }
  .card__body .section--first { padding-top: 48px; }
  .card__body .testimonial { padding: 44px 48px 0; }
  .card__body .cta { padding: 44px 48px 0; }
  .card__body .footer { margin-top: 48px; padding: 30px 48px; }

  /* A touch more presence for the long-form blocks at width. */
  .approach__head { font-size: 1.7rem; }
  .lede { font-size: 1.3rem; }
  .cta__inner { padding: 34px 32px; }

  /* Intake opens as a centered modal rather than a bottom sheet. */
  .sheet-overlay { align-items: center; padding: 28px; }
  .sheet {
    max-width: 540px;
    border: 1px solid var(--snow-12);
    border-radius: 12px;
    max-height: 86vh;
  }
}
