/* L. Boyer & Associates — layout adapted from reference design system; decorative assets via CDN */

@font-face {
  font-family: "Feature Display";
  src: url("https://d2q86wmri3hsp2.cloudfront.net/assets/feature_display/Feature_Display_Family/FeatureDisplay-Light-Trial-dc3825d025d8ed0937fe5c6494ba8b30e74c18dacdc2b996b430ca2174be93d4.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Feature Display";
  src: url("https://d2q86wmri3hsp2.cloudfront.net/assets/feature_display/Feature_Display_Family/FeatureDisplay-LightItalic-Trial-40a88a859c999ce6d00ffc083605e38693b5bb147968a49fd7a678b2c72e2c0e.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Feature Display";
  src: url("https://d2q86wmri3hsp2.cloudfront.net/assets/feature_display/Feature_Display_Family/FeatureDisplay-Regular-Trial-cee095fd0f5e88c0d2d579634442544ea05b85bf841221856833dcfe1ab23000.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Neue Montreal";
  src: url("https://d2q86wmri3hsp2.cloudfront.net/assets/montreal/NeueMontreal-Regular-94bbc90559398826cc2e1bf35b01312589512727cf1b2dc2a59eaa3fc51542ad.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Neue Montreal";
  src: url("https://d2q86wmri3hsp2.cloudfront.net/assets/montreal/NeueMontreal-Medium-3d28dde2df23f991cc048d1c3d789e1b6e59ea52b7e1ae13f1be62247823dc0f.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Neue Montreal";
  src: url("https://d2q86wmri3hsp2.cloudfront.net/assets/montreal/NeueMontreal-Bold-6fd352df5cc3c1d79e517d214db5ba0f5380e96d5a9dfba35e179f597df033a4.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: #fff;
  --black: #2d2d2d;
  --gray: #f5f5f0;
  --gray2: #ebebe6;
  --gray3: #9b9b98;
  --gray4: #7a7a7a;
  --gray5: #696969;
  --gold: #c09123;
  --font-display: "Feature Display", serif;
  --font-sans: "Neue Montreal", system-ui, sans-serif;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --nav-h: 72px;
  --container-pad: 20px;
  --max: 1620px;
}

@media (min-width: 1117px) {
  :root {
    --container-pad: 80px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.hero,
.section--gray,
.founder-section,
.partners-section,
.personas-section,
.faq-section,
.cta-dark,
.footer-contact {
  scroll-margin-top: calc(var(--nav-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--black);
  background: var(--gray);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.body--black {
  background: var(--black);
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

.u-pad {
  padding-inline: var(--container-pad);
}

.u-container {
  width: 100%;
  max-width: calc(var(--max) + 2 * var(--container-pad));
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* —— Header —— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 8px var(--container-pad) 0;
  transition: background 0.35s ease, border-color 0.35s ease;
}

.site-header.is-on-light {
  background: rgba(245, 245, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray2);
}

.site-header.is-on-dark {
  background: transparent;
  border-bottom: 1px solid transparent;
}

.header__menu {
  justify-self: start;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0;
}

.header__menu span {
  display: block;
  height: 2px;
  width: 22px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header.is-on-dark .header__menu,
.site-header.is-on-dark .header__user {
  color: var(--white);
}

.site-header.is-on-light .header__menu,
.site-header.is-on-light .header__user {
  color: var(--black);
}

.site-header.is-on-dark .header__logo-img {
  filter: brightness(0) invert(1);
}

.header__logo {
  justify-self: center;
  display: flex;
  align-items: center;
}

.header__logo-img {
  height: 22px;
  width: auto;
}

.header__logo-text {
  font-family: var(--font-display);
  font-size: clamp(13px, 2vw, 20px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-align: center;
  max-width: min(300px, 46vw);
  display: block;
}

.site-header.is-on-dark .header__logo-text {
  color: var(--white);
}

.site-header.is-on-light .header__logo-text {
  color: var(--black);
}

.marquee .marquee-text {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
}

.partners-marquee__track .marquee-text-partner {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(45, 45, 45, 0.55);
  white-space: nowrap;
}

.header__user {
  justify-self: end;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__user img {
  width: 28px;
  height: 28px;
}

/* —— Full-screen menu —— */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--black);
  color: var(--white);
  padding: var(--nav-h) var(--container-pad) 48px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.nav-overlay__close {
  position: absolute;
  top: 16px;
  right: var(--container-pad);
  width: 44px;
  height: 44px;
  border: none;
  background: url("https://d2q86wmri3hsp2.cloudfront.net/assets/redesign_2025/x-white-109ed79aaa67c74c8bbf8e11dbaccaee15526d1db59c2532b4ec74bd575b1a4d.svg") center / 18px no-repeat;
  cursor: pointer;
  opacity: 0.9;
}

.nav-overlay__grid {
  display: grid;
  gap: 48px;
  margin-top: 32px;
  flex: 1;
  align-content: start;
}

@media (min-width: 768px) {
  .nav-overlay__grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 720px;
  }
}

.nav-overlay h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray3);
  margin: 0 0 20px;
}

.nav-overlay nav a {
  display: block;
  font-size: 28px;
  font-family: var(--font-display);
  font-weight: 300;
  margin-bottom: 12px;
  opacity: 0.95;
}

.nav-overlay nav a:hover {
  color: var(--gold);
}

.nav-overlay__socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.nav-overlay__socials a {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-overlay__socials img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.nav-overlay__cta {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 32px;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:hover {
  background: #302d1c;
  border-color: #302d1c;
}

.btn--light {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn--light:hover {
  background: var(--gray2);
  border-color: var(--gray2);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn--light .btn__icon {
  background: var(--black);
  color: var(--white);
}

.btn__icon svg {
  width: 8px;
  height: 8px;
  fill: var(--black);
}

.btn--light .btn__icon svg {
  fill: var(--white);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn--ghost-dark:hover {
  background: var(--black);
  color: var(--white);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  color: var(--white);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media video,
.hero__media .hero__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.hero__center {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: calc(var(--nav-h) + 16px) var(--container-pad) 32px;
}

.hero__inner {
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 24px;
  font-weight: 500;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(42px, 8vw, 88px);
  line-height: 1.02;
  letter-spacing: -2px;
  margin: 0 0 24px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gray3);
}

.hero__lead {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 36px;
  font-weight: 400;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  color: var(--white);
  font-size: 20px;
  line-height: 1;
}

/* Marquee */
.marquee-wrap {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 40s linear infinite;
  align-items: center;
}

.marquee img {
  height: 28px;
  width: auto;
  opacity: 0.85;
  filter: brightness(0) invert(1);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* —— Headings (marketing) —— */
.section-heading {
  font-family: var(--font-sans);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -2px;
  margin: 0 0 16px;
  color: var(--black);
}

.section-heading--display {
  font-family: var(--font-display);
  font-weight: 300;
}

.section-heading em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  color: var(--gray4);
}

.section-heading.white,
.section-heading.white em {
  color: var(--white);
}

.section-heading.white em {
  color: var(--gray3);
}

.centered {
  text-align: center;
}

.p-default {
  color: rgba(45, 45, 45, 0.8);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 24px;
  max-width: 640px;
}

.p-default.centered {
  margin-inline: auto;
}

/* —— Value carousel section —— */
.section--gray {
  background: var(--gray);
  padding: 100px 0 80px;
}

.value-intro {
  text-align: center;
  margin-bottom: 48px;
}

.value-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray5);
  margin: 0 0 16px;
  font-weight: 500;
}

.value-swiper-wrap {
  position: relative;
  margin: 0 calc(-1 * var(--container-pad));
  padding: 0 var(--container-pad);
}

@media (min-width: 900px) {
  .value-swiper-wrap {
    margin: 0;
  }
}

.value-card {
  height: 100%;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--gray2);
  min-height: 200px;
}

.value-card h4 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 300;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
}

.value-card p {
  margin: 0;
  font-size: 15px;
  color: var(--gray5);
  line-height: 1.5;
}

.value-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.value-nav button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--black);
  background: var(--white);
  font-size: 18px;
  line-height: 1;
  transition: background 0.2s, color 0.2s;
}

.value-nav button:hover:not(:disabled) {
  background: var(--black);
  color: var(--white);
}

.value-nav button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* —— Stats —— */
.stats-section {
  background: var(--black);
  color: var(--white);
  padding: 100px 0;
  text-align: center;
}

.stats-section .section-heading {
  margin-bottom: 56px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 24px;
}

@media (min-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 300;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.stat-established {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  color: var(--gold);
}

.stat-established .stat-num {
  display: inline;
}

.stat-money {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  color: var(--gold);
}

.stat-money .stat-num {
  display: inline;
}

.stat-prefix,
.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 300;
}

.stat-label {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: var(--gray3);
  max-width: 200px;
  margin-inline: auto;
}

/* —— Benefit categories (accordion + swiper) —— */
.benefits-stack {
  background: var(--gray);
}

.benefit-cat {
  border-bottom: 1px solid var(--gray2);
}

.benefit-cat__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px var(--container-pad);
  background: var(--gray);
  border: none;
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
  transition: background 0.2s;
}

.benefit-cat__trigger:hover {
  background: var(--gray2);
}

.benefit-cat__trigger span.num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 22px;
  margin-right: 8px;
}

.benefit-cat__chev {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--black);
  flex-shrink: 0;
  position: relative;
}

.benefit-cat__chev::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  transform: translate(-50%, -60%) rotate(45deg);
  transition: transform 0.3s ease;
}

.benefit-cat.is-open .benefit-cat__chev::after {
  transform: translate(-50%, -30%) rotate(-135deg);
}

.benefit-cat__panel {
  display: none;
  background: var(--black);
  color: var(--white);
}

.benefit-cat.is-open .benefit-cat__panel {
  display: block;
}

.benefit-cat__hero {
  min-height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.benefit-cat__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.75) 100%);
}

.benefit-cat__hero-inner {
  position: relative;
  z-index: 1;
  padding: 48px var(--container-pad) 32px;
}

.featured-row {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray3);
  margin-bottom: 16px;
  font-weight: 500;
}

.brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 32px;
}

.brand-row img {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.benefit-cat__body {
  padding: 48px var(--container-pad) 64px;
}

.benefit-cat__body .section-heading {
  color: var(--white);
  text-align: left;
}

.benefit-cat__body .section-heading em {
  color: var(--gray3);
}

.benefit-cat__body ul {
  margin: 0 0 32px;
  padding-left: 1.2em;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.55;
}

.benefit-cat__body li {
  margin-bottom: 12px;
}

.benefit-slide-swiper {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 40px;
  padding-bottom: 36px;
}

.benefit-slide-swiper .swiper-slide {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  position: relative;
}

.benefit-slide-swiper .slide-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  font-size: 15px;
  font-weight: 500;
}

.benefit-slide-swiper .swiper-pagination-bullet {
  background: var(--white);
  opacity: 0.35;
}

.benefit-slide-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--gold);
}

.benefit-subgrid {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}

@media (min-width: 700px) {
  .benefit-subgrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefit-detail {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
}

.benefit-detail summary {
  padding: 16px 20px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.benefit-detail summary::-webkit-details-marker {
  display: none;
}

.benefit-detail summary::after {
  content: "+";
  color: var(--gold);
  font-size: 20px;
  font-weight: 300;
}

.benefit-detail[open] summary::after {
  content: "−";
}

.benefit-detail p {
  margin: 0;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--gray3);
  line-height: 1.5;
}

.benefit-fine {
  font-size: 13px;
  color: var(--gray4);
  margin-bottom: 24px;
}

/* —— Partners —— */
.partners-section {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}

.partners-section .section-heading {
  max-width: 900px;
  margin-inline: auto;
}

.partners-marquee {
  margin: 48px 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.partners-marquee__track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 50s linear infinite;
  align-items: center;
}

.partners-marquee__track img {
  height: 32px;
  width: auto;
  opacity: 0.75;
}

/* —— Testimonials —— */
.testimonials-section {
  padding: 100px 0;
  background: var(--gray);
}

.trust-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.trust-head img {
  height: 28px;
}

.trust-head__score {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
}

.testimonials-section .section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.t-swiper {
  padding-bottom: 48px;
}

.quote-slide {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--gray2);
  height: auto;
}

.quote-slide .stars {
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 14px;
  margin-bottom: 12px;
}

.quote-slide h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 300;
  margin: 0 0 12px;
}

.quote-slide blockquote {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  color: var(--gray5);
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 300;
}

.quote-slide footer {
  margin-top: 20px;
  font-size: 14px;
  color: var(--gray4);
  font-style: normal;
  font-family: var(--font-sans);
}

.t-pagination .swiper-pagination-bullet {
  background: var(--black);
  opacity: 0.2;
}

.t-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

/* —— Personas —— */
.personas-section {
  padding: 100px 0;
  background: var(--white);
}

.personas-section .value-label {
  text-align: center;
}

.personas-section .section-heading {
  text-align: center;
}

.personas-section > .u-container > .p-default {
  text-align: center;
  margin-inline: auto;
}

.persona-grid {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 900px) {
  .persona-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.persona-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray2);
  background: var(--gray);
  display: flex;
  flex-direction: column;
}

.persona-card__img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}

.persona-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.persona-card__label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray5);
  margin-bottom: 8px;
  font-weight: 500;
}

.persona-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  margin: 0 0 12px;
  line-height: 1.2;
}

.persona-card__expand {
  margin-top: auto;
  padding-top: 16px;
}

.persona-card__more {
  display: none;
  padding-top: 16px;
  border-top: 1px solid var(--gray2);
  margin-top: 16px;
}

.persona-card.is-expanded .persona-card__more {
  display: block;
}

.persona-card__more ul {
  margin: 0 0 20px;
  padding-left: 1.2em;
  color: var(--gray5);
  font-size: 15px;
}

.persona-card__more li {
  margin-bottom: 8px;
}

.expand-btn {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--black);
  border-radius: 999px;
  background: var(--white);
  font-weight: 500;
  font-size: 14px;
}


/* —— FAQ —— */
.faq-section {
  padding: 100px 0;
  background: var(--gray);
}

.faq-section .section-heading {
  margin-bottom: 8px;
}

.faq-intro {
  max-width: 520px;
  margin-bottom: 8px;
  color: var(--gray5);
}

.faq-link {
  display: inline-block;
  margin-bottom: 32px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-item {
  border-bottom: 1px solid var(--gray2);
}

.faq-item summary {
  padding: 22px 0;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--gold);
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 0 22px;
  color: var(--gray5);
  font-size: 16px;
  line-height: 1.55;
  max-width: 720px;
}

/* —— Final CTA —— */
.cta-dark {
  background: var(--black);
  color: var(--white);
  padding: 100px 0;
  text-align: center;
}

.cta-dark .section-heading {
  color: var(--white);
  margin-bottom: 32px;
}

/* —— Footer —— */
.site-footer {
  background: var(--gray);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin-top: -20px;
  position: relative;
  z-index: 2;
  padding: 80px var(--container-pad) 120px;
  overflow: hidden;
}

.footer-newsletter h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 24px;
  letter-spacing: -1px;
}

.footer-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
  max-width: 520px;
}

.footer-form input {
  flex: 1;
  min-width: 200px;
  padding: 16px 20px;
  border: 1px solid var(--gray2);
  border-radius: var(--radius-sm);
  font: inherit;
  background: var(--white);
}

.footer-form button {
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  border: none;
  background: var(--black);
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
}

.footer-apps {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 64px;
}

.footer-apps a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
}

.footer-apps img {
  width: 22px;
  height: 22px;
}

.footer-columns {
  display: grid;
  gap: 48px;
  margin-bottom: 80px;
}

@media (min-width: 768px) {
  .footer-columns {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-columns h4 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray4);
  margin: 0 0 20px;
  font-weight: 500;
}

.footer-columns nav a {
  display: block;
  margin-bottom: 10px;
  color: var(--black);
  font-size: 16px;
}

.footer-columns nav a:hover {
  color: var(--gold);
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
}

.footer-socials a {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--gray2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-socials img {
  width: 18px;
  height: 18px;
}

.footer-contact p {
  margin: 0 0 6px;
  color: var(--black);
  font-size: 15px;
}

.footer-contact a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-watermark {
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 96px);
  font-weight: 300;
  color: rgba(45, 45, 45, 0.06);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  text-align: center;
  max-width: 95%;
}

.footer-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--gray2);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray4);
  position: relative;
  z-index: 1;
}

.footer-bar a {
  margin-left: 20px;
  color: var(--gray4);
}

.footer-bar a:hover {
  color: var(--black);
}

/* —— Cookie (matches light card on dark hero) —— */
.cookie-modal {
  position: fixed;
  bottom: 24px;
  left: var(--container-pad);
  right: var(--container-pad);
  z-index: 100;
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  transform: translateY(120%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-modal.is-visible {
  transform: translateY(0);
}

.cookie-modal[hidden] {
  display: none !important;
}

.cookie-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: var(--gray4);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.cookie-modal p {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--gray5);
  padding-right: 24px;
}

.cookie-modal a {
  color: var(--black);
  font-weight: 600;
  text-decoration: underline;
}

.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal__actions .btn {
  flex: 1;
  min-width: 140px;
  justify-content: center;
}

.btn--outline-dark {
  background: var(--white);
  color: var(--black);
  border-color: var(--black);
}

.btn--outline-dark:hover {
  background: var(--black);
  color: var(--white);
}

/* Swiper pagination fix */
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 0 !important;
}

/* —— Founder —— */
.founder-section {
  padding: 100px 0;
  background: var(--white);
}

.founder-grid {
  display: grid;
  gap: 48px;
  align-items: start;
}

@media (min-width: 900px) {
  .founder-grid {
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
    gap: 72px;
  }
}

.founder-section__photo {
  display: block;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.founder-section__content .value-label {
  margin-bottom: 12px;
}

.founder-section__content .section-heading {
  margin-bottom: 28px;
}

.founder-section__bio p {
  color: rgba(45, 45, 45, 0.8);
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 20px;
}

.founder-section__bio p:last-child {
  margin-bottom: 0;
}

/* —— Simple inner pages (login, apply, etc.) —— */
.page-inner {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 48px) var(--container-pad) 80px;
  background: var(--gray);
}

.page-inner--dark {
  background: var(--black);
  color: var(--white);
}

.page-inner__back {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--gray5);
}

.page-inner--dark .page-inner__back {
  color: var(--gray3);
}

.page-inner h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 52px);
  letter-spacing: -1px;
  margin: 0 0 16px;
}

.page-inner .lead {
  color: var(--gray5);
  max-width: 560px;
  margin-bottom: 32px;
}

.page-inner--dark .lead {
  color: rgba(255, 255, 255, 0.7);
}

.form-stack {
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-stack label {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray5);
}

.page-inner--dark .form-stack label {
  color: var(--gray3);
}

.form-stack input {
  padding: 14px 16px;
  border: 1px solid var(--gray2);
  border-radius: var(--radius-sm);
  font: inherit;
  background: var(--white);
}

.page-inner--dark .form-stack input {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.form-stack .btn {
  justify-content: center;
  margin-top: 8px;
}
