:root {
  --ink: #0d1f1d;
  --muted-ink: #536361;
  --deep: #043a36;
  --deep-2: #022b28;
  --teal: #075e56;
  --mint: #c5e77e;
  --cream: #f7f5ee;
  --sand: #ebe5d8;
  --white: #ffffff;
  --line: rgba(13, 31, 29, 0.12);
  --shadow: 0 24px 70px rgba(4, 58, 54, 0.16);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2.1rem, 4.8vw, 4.8rem);
}

h3 {
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--mint);
  color: var(--deep-2);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 18px 0 auto;
  z-index: 30;
  transition: transform 240ms ease, background 240ms ease;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 12px 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--white);
  background: rgba(2, 43, 40, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
}

.site-header.is-scrolled .nav-shell {
  color: var(--ink);
  background: rgba(247, 245, 238, 0.92);
  border-color: rgba(13, 31, 29, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  color: currentColor;
  opacity: 0.9;
  transition: background 180ms ease, opacity 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
  background: rgba(197, 231, 126, 0.18);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: currentColor;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
}

.section {
  padding: clamp(84px, 12vw, 150px) 0;
}

.section-dark {
  color: var(--white);
  background: var(--deep-2);
}

.hero {
  position: relative;
  min-height: max(100svh, 780px);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding-top: clamp(140px, 14vh, 180px);
  padding-bottom: clamp(110px, 13vh, 170px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 22%, rgba(10, 92, 84, 0.92), transparent 36%),
    radial-gradient(circle at 78% 18%, rgba(197, 231, 126, 0.16), transparent 30%),
    linear-gradient(135deg, #064d46 0%, #043a36 43%, #022420 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 0.25;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
}

.hero-bg svg {
  width: 100%;
  height: 100%;
}

.hero-bg path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 1.7;
}

.hero-bg path:nth-child(2) {
  stroke: rgba(197, 231, 126, 0.24);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.55fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.75;
}

.eyebrow-light,
.hero .eyebrow,
.contact-section .eyebrow {
  color: var(--mint);
}

.hero-intro {
  max-width: 720px;
  margin-top: 28px;
  color: rgba(247, 245, 238, 0.78);
  font-size: clamp(1.06rem, 1.7vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  background: var(--mint);
  color: var(--deep-2);
  box-shadow: 0 18px 45px rgba(197, 231, 126, 0.25);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 24px 55px rgba(197, 231, 126, 0.32);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.hero-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.card-topline {
  margin-bottom: 24px;
  color: var(--mint);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-proof-list {
  display: grid;
  gap: 18px;
}

.hero-proof-list li {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-proof-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.hero-proof-list span {
  color: rgba(247, 245, 238, 0.72);
}

.two-column,
.split-feature,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.section-heading p:not(.eyebrow),
.copy-block,
.copy-card p,
.service-card p,
.model-card p,
.difference-item p,
.value-card p,
.contact-copy p,
.site-footer p {
  color: var(--muted-ink);
  font-size: 1.05rem;
}

.section-dark .section-heading p:not(.eyebrow),
.section-dark .model-card p,
.section-dark .model-card li {
  color: rgba(247, 245, 238, 0.72);
}

.section-heading.narrow {
  max-width: 780px;
  margin-bottom: 44px;
}

.section-heading.narrow p:not(.eyebrow) {
  margin-top: 20px;
  max-width: 680px;
}

.copy-block {
  display: grid;
  gap: 20px;
  padding-top: 12px;
  font-size: 1.17rem;
}

.muted {
  background: var(--sand);
}

.copy-card {
  padding: clamp(28px, 5vw, 48px);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
}

.copy-card h3 {
  margin-bottom: 16px;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
}

.copy-card p + p {
  margin-top: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.value-card,
.difference-item {
  position: relative;
  min-height: 245px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 15px 48px rgba(4, 58, 54, 0.06);
  overflow: hidden;
}

.service-card::after,
.value-card::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(197, 231, 126, 0.24);
}

.service-card .icon {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--teal);
  font-weight: 900;
  letter-spacing: 0.16em;
}

.service-card h3,
.value-card h3,
.difference-item h3 {
  margin-bottom: 12px;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.model-card {
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.model-number {
  display: inline-flex;
  width: 52px;
  height: 52px;
  margin-bottom: 80px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--deep-2);
  font-weight: 900;
}

.model-card h3 {
  margin-bottom: 16px;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
}

.model-card ul {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.model-card li {
  position: relative;
  padding-left: 28px;
}

.model-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
}

.difference-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.difference-item {
  min-height: auto;
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.value-card {
  min-height: 220px;
  background: var(--cream);
}


.team-section {
  position: relative;
  overflow: hidden;
}

.team-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(197, 231, 126, 0.22), transparent 24%),
    radial-gradient(circle at 88% 20%, rgba(7, 94, 86, 0.10), transparent 28%);
  pointer-events: none;
}

.team-section .container {
  position: relative;
  z-index: 1;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.founder-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(13, 31, 29, 0.10);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.founder-photo,
.founder-placeholder {
  min-height: clamp(360px, 42vw, 520px);
  background: linear-gradient(135deg, var(--deep), var(--deep-2));
}

.founder-photo picture,
.founder-photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.founder-photo img {
  object-fit: cover;
  object-position: 50% 18%;
}

.founder-placeholder {
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.founder-placeholder::before {
  content: "";
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(circle at 22% 26%, rgba(197, 231, 126, 0.38), transparent 24%),
    linear-gradient(135deg, rgba(255,255,255,0.10), transparent 48%);
}

.founder-placeholder::after {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
}

.founder-placeholder span {
  position: relative;
  z-index: 1;
  color: var(--mint);
  font-size: clamp(1.7rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.founder-copy {
  padding: clamp(26px, 4.5vw, 42px);
}

.team-kicker {
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.founder-copy h3 {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.founder-role {
  margin-bottom: 18px;
  color: var(--teal);
  font-weight: 800;
}

.founder-copy p:not(.team-kicker):not(.founder-role) {
  color: var(--muted-ink);
  font-size: 1.04rem;
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.expertise-tags li {
  padding: 9px 12px;
  border: 1px solid rgba(7, 94, 86, 0.14);
  border-radius: 999px;
  background: rgba(197, 231, 126, 0.18);
  color: var(--deep-2);
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-section {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 10%, rgba(197, 231, 126, 0.18), transparent 28%),
    linear-gradient(135deg, var(--deep) 0%, var(--deep-2) 100%);
  overflow: hidden;
}

.contact-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 92px 92px;
  opacity: 0.32;
}

.contact-grid {
  position: relative;
  z-index: 1;
  align-items: center;
}

.contact-copy h2 {
  max-width: 720px;
}

.contact-copy p {
  margin-top: 22px;
  color: rgba(247, 245, 238, 0.72);
  font-size: 1.18rem;
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-links a {
  width: fit-content;
  color: var(--mint);
  font-weight: 800;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  text-decoration: underline;
  outline: none;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 5vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(20px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
}

.form-row {
  display: grid;
  gap: 8px;
}

label {
  font-weight: 800;
  color: rgba(247, 245, 238, 0.88);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 14px 16px;
  outline: none;
  transition: border 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

select option {
  color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 4px rgba(197, 231, 126, 0.16);
  background: rgba(255, 255, 255, 0.14);
}

textarea {
  resize: vertical;
}

.form-note {
  color: rgba(247, 245, 238, 0.62);
  font-size: 0.92rem;
}

.site-footer {
  padding: 34px 0;
  background: #071d1a;
  color: rgba(247, 245, 238, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-brand {
  margin-bottom: 8px;
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.footer-links a {
  font-weight: 800;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--mint);
  outline: none;
}

.copyright {
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .two-column,
  .split-feature,
  .team-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .reverse-on-mobile .section-heading {
    order: -1;
  }

  .services-grid,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-card {
    max-width: 640px;
  }

  .founder-card {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .site-header {
    inset: 12px 0 auto;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .nav-shell {
    border-radius: 28px;
    padding-left: 18px;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    display: none;
    width: 100%;
    padding-top: 8px;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 12px 10px;
  }

  .hero {
    min-height: auto;
    padding-top: 150px;
    padding-bottom: 96px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .services-grid,
  .model-grid,
  .difference-list,
  .values-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .value-card,
  .difference-item {
    min-height: auto;
  }

  .founder-photo,
  .founder-placeholder {
    min-height: 360px;
  }

  .model-number {
    margin-bottom: 44px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .copyright {
    text-align: left;
  }
}


/* v7 refinement: keep founder portraits supportive rather than dominant */
.founder-card,
.team-card,
.profile-card {
  display: grid;
  grid-template-columns: minmax(190px, 300px) minmax(0, 1fr);
  gap: clamp(22px, 3vw, 34px);
  align-items: center;
}

.founder-card .founder-image,
.team-card .founder-image,
.profile-card .founder-image,
.founder-card .profile-image,
.team-card .profile-image,
.profile-card .profile-image {
  width: min(100%, 300px);
  max-width: 300px;
  justify-self: center;
}

.founder-card img,
.team-card img,
.profile-card img {
  max-height: 360px;
  width: 100%;
  object-fit: cover;
}

.founder-portrait,
.team-portrait,
.profile-portrait {
  width: min(100%, 300px);
  max-width: 300px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  justify-self: center;
}

.team-placeholder,
.founder-placeholder {
  min-height: 360px;
}

@media (max-width: 980px) {
  .founder-card,
  .team-card,
  .profile-card {
    grid-template-columns: 1fr;
  }

  .founder-card .founder-image,
  .team-card .founder-image,
  .profile-card .profile-image,
  .founder-portrait,
  .team-portrait,
  .profile-portrait {
    max-width: 280px;
  }
}

@media (max-width: 640px) {
  .founder-card .founder-image,
  .team-card .founder-image,
  .profile-card .profile-image,
  .founder-portrait,
  .team-portrait,
  .profile-portrait {
    max-width: 240px;
  }

  .founder-card img,
  .team-card img,
  .profile-card img {
    max-height: 300px;
  }
}


/* v9: centred founder-card layout with portrait above bio */
.team-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(197, 231, 126, 0.20), transparent 24%),
    linear-gradient(180deg, var(--sand) 0%, var(--cream) 100%);
}

.team-section::before {
  opacity: 0.5;
}

.team-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.founder-card {
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-rows: auto 1fr !important;
  gap: 0 !important;
  align-content: start;
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(13, 31, 29, 0.10);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76));
  box-shadow: 0 24px 70px rgba(4, 58, 54, 0.12);
}

.founder-photo,
.founder-placeholder {
  width: min(100%, 235px) !important;
  max-width: 235px !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 6px auto 28px !important;
  padding: 8px;
  border: 1px solid rgba(7, 94, 86, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 14%, rgba(197, 231, 126, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(7, 94, 86, 0.12), rgba(255, 255, 255, 0.58));
  box-shadow: 0 18px 46px rgba(4, 58, 54, 0.14);
}

.founder-photo picture {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 22px;
}

.founder-photo img,
.founder-portrait {
  display: block;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  max-height: none !important;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: 22px;
}

.founder-copy {
  padding: 0 !important;
  text-align: center;
}

.team-kicker {
  margin-bottom: 10px;
}

.founder-copy h3 {
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.founder-role {
  max-width: 520px;
  margin: 10px auto 18px;
}

.founder-copy p:not(.team-kicker):not(.founder-role) {
  max-width: 620px;
  margin-inline: auto;
}

.expertise-tags {
  justify-content: center;
  margin-top: 24px;
}

.founder-placeholder {
  display: grid;
  min-height: 294px !important;
  place-items: center;
  position: relative;
}

.founder-placeholder::after {
  inset: 8px;
  border-radius: 22px;
}

.founder-placeholder span {
  font-size: clamp(1.4rem, 3vw, 2.35rem);
  text-align: center;
}

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

  .founder-card {
    max-width: 720px;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .founder-card {
    padding: 22px;
  }

  .founder-photo,
  .founder-placeholder {
    max-width: 210px !important;
    margin-bottom: 24px !important;
  }

  .founder-placeholder {
    min-height: 264px !important;
  }

  .founder-copy {
    text-align: left;
  }

  .expertise-tags {
    justify-content: flex-start;
  }
}
