:root {
  --navy: #062f61;
  --navy-deep: #021d3d;
  --teal: #00a6aa;
  --teal-light: #91ddd3;
  --gold: #f4ae4b;
  --paper: #f4f7f5;
  --paper-deep: #e9efec;
  --ink: #0b2035;
  --muted: #576878;
  --line: rgba(6, 47, 97, 0.15);
  --content: min(1180px, calc(100vw - 80px));
  --sans: Inter, Avenir Next, Avenir, Helvetica Neue, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { display: block; max-width: 100%; }

.content-width { width: var(--content); margin-inline: auto; }

.site-header {
  position: relative;
  z-index: 10;
  width: var(--content);
  height: 112px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.site-header nav { display: flex; align-items: center; gap: 34px; }
.site-header nav a {
  position: relative;
  color: var(--navy);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.site-header nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}
.site-header nav a:hover::after,
.site-header nav a.is-current::after { transform: scaleX(1); }
.site-header nav .nav-product { color: var(--teal); }

.mini-brand { width: 42px; }
.mini-brand img { width: 100%; }
.brand-lockup { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-lockup__mark { width: 38px; height: 38px; object-fit: contain; }
.brand-lockup__wordmark { width: 94px; height: auto; }

/* Home */
.home { min-height: 100svh; overflow: hidden; }
.site-header--home { border-bottom-color: rgba(6, 47, 97, 0.1); }
.ambient { position: fixed; inset: 0; overflow: hidden; pointer-events: none; }
.ambient__glow { position: absolute; border-radius: 50%; filter: blur(18px); opacity: 0.65; }
.ambient__glow--teal {
  width: 56vw; height: 56vw; left: -24vw; bottom: -30vw;
  background: radial-gradient(circle, rgba(0,166,170,.23), transparent 68%);
}
.ambient__glow--gold {
  width: 48vw; height: 48vw; right: -25vw; top: -25vw;
  background: radial-gradient(circle, rgba(244,174,75,.2), transparent 66%);
}
.ambient__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(6,47,97,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(6,47,97,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent 5%, black 46%, transparent 100%);
}

.hero {
  position: relative;
  z-index: 2;
  min-height: calc(100svh - 112px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px 115px;
  text-align: center;
}
.hero__identity { display: flex; flex-direction: column; align-items: center; }
.hero__mark { width: clamp(150px, 15vw, 210px); }
.hero__wordmark { width: clamp(220px, 23vw, 320px); margin-top: 26px; }
.hero h1 {
  margin: 42px 0 0;
  color: var(--navy);
  font-size: clamp(27px, 3.1vw, 46px);
  font-weight: 360;
  line-height: 1.18;
  letter-spacing: -0.035em;
}
.hero__actions { display: flex; align-items: center; gap: 30px; margin-top: 36px; }
.text-link {
  color: var(--navy);
  font-size: 13px;
  font-weight: 680;
  text-decoration: none;
  border-bottom: 1px solid rgba(6,47,97,.3);
  padding-bottom: 6px;
  transition: color 180ms ease, border-color 180ms ease;
}
.text-link:hover { color: var(--teal); border-color: var(--teal); }
.text-link--quiet { color: var(--muted); border-color: transparent; }
.hero-note {
  position: fixed;
  z-index: 2;
  right: 40px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-note span { width: 30px; height: 1px; background: var(--teal); }

/* About */
.about-hero { padding: 110px 0 105px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 34px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow span { color: var(--gold); }
.about-hero h1 {
  max-width: 1050px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(45px, 6.4vw, 88px);
  font-weight: 370;
  line-height: .98;
  letter-spacing: -.06em;
}
.about-hero h1 em { color: var(--teal); font-style: normal; }
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 90px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.about-intro p { margin-top: 0; }
.about-intro__lead { color: var(--navy); font-size: clamp(24px, 2.5vw, 34px); line-height: 1.35; letter-spacing: -.025em; }
.about-intro__body { color: var(--muted); font-size: 16px; line-height: 1.75; }
.about-intro__body p + p { margin-top: 22px; }

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.principles article { min-height: 290px; padding: 44px 38px 44px 0; }
.principles article + article { padding-left: 38px; border-left: 1px solid var(--line); }
.principle-number { color: var(--gold); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.principles h2 { max-width: 240px; margin: 66px 0 16px; color: var(--navy); font-size: 22px; font-weight: 560; letter-spacing: -.025em; }
.principles p { max-width: 280px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.people { padding: 135px 0 130px; }
.section-heading { display: grid; grid-template-columns: 1fr 2fr; align-items: start; margin-bottom: 74px; }
.section-heading h2 { margin: 0; color: var(--navy); font-size: clamp(38px, 4.7vw, 66px); font-weight: 380; line-height: 1.05; letter-spacing: -.045em; }
.people-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 74px; }
.person__photo-wrap { position: relative; height: 480px; overflow: hidden; background: var(--paper-deep); }
.person__photo-wrap::after { content: ""; position: absolute; inset: auto 0 0; height: 2px; background: linear-gradient(90deg, var(--teal), var(--gold)); }
.person__photo { width: 100%; height: 100%; object-fit: cover; object-position: center 24%; filter: saturate(.86) contrast(1.02); transition: transform 500ms cubic-bezier(.2,.7,.2,1), filter 500ms ease; }
.person:hover .person__photo { transform: scale(1.018); filter: saturate(1) contrast(1.02); }
.person__copy { padding: 30px 8px 0; }
.person__role { margin: 0 0 9px; color: var(--teal); font-size: 10px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.person h3 { margin: 0 0 23px; color: var(--navy); font-size: 31px; font-weight: 520; letter-spacing: -.035em; }
.person__copy > p:not(.person__role) { margin: 0 0 14px; color: var(--muted); font-size: 14px; line-height: 1.72; }
.profile-link { display: inline-block; margin-top: 9px; color: var(--navy); font-size: 12px; font-weight: 700; text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: 5px; }
.profile-link:hover { color: var(--teal); border-color: var(--teal); }

.product {
  min-height: 530px;
  margin-bottom: 130px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  background: var(--navy-deep);
  color: white;
  overflow: hidden;
}
.product__copy { padding: 74px 58px; }
.product__copy h2 { margin: 0 0 20px; font-size: clamp(48px, 5vw, 70px); font-weight: 380; letter-spacing: -.05em; }
.product__copy > p:not(.eyebrow) { max-width: 480px; margin: 0; color: rgba(255,255,255,.67); font-size: 15px; line-height: 1.72; }
.button { display: inline-flex; gap: 28px; align-items: center; margin-top: 32px; padding: 14px 18px; background: var(--teal); color: white; font-size: 12px; font-weight: 750; text-decoration: none; transition: background 180ms ease, transform 180ms ease; }
.button:hover { background: #00b7b7; transform: translateY(-2px); }
.product__visual { position: relative; min-height: 500px; background: radial-gradient(circle at 90% 10%, rgba(244,174,75,.2), transparent 32%), linear-gradient(145deg, rgba(0,166,170,.18), transparent 55%); }
.roster-card { position: absolute; width: min(88%, 590px); left: 5%; top: 105px; padding: 24px; transform: rotate(-4deg); background: rgba(244,247,245,.97); box-shadow: 0 35px 80px rgba(0,0,0,.26); }
.roster-card__top { display: flex; gap: 6px; padding-bottom: 20px; border-bottom: 1px solid rgba(6,47,97,.12); }
.roster-card__top span { width: 7px; height: 7px; border-radius: 50%; background: var(--paper-deep); }
.roster-card__top span:first-child { background: var(--gold); }
.roster-card__body { display: grid; grid-template-columns: 100px 1fr; gap: 16px 22px; align-items: center; padding: 28px 4px 12px; }
.roster-label { width: 80px; height: 7px; background: rgba(6,47,97,.16); border-radius: 8px; }
.roster-label--short { width: 58px; }
.roster-days { display: grid; grid-template-columns: repeat(5, 1fr); gap: 9px; }
.roster-days i { height: 44px; background: rgba(0,166,170,.13); border-radius: 4px; }
.roster-days i:nth-child(2n) { background: rgba(6,47,97,.09); }
.roster-days:nth-child(4) i:nth-child(3), .roster-days:nth-child(6) i:first-child { background: rgba(244,174,75,.38); }
.optimal-badge { position: absolute; right: 7%; bottom: 72px; display: flex; flex-direction: column; padding: 17px 24px; background: var(--teal); color: white; box-shadow: 0 18px 40px rgba(0,0,0,.24); }
.optimal-badge strong { font-size: 15px; font-weight: 700; }
.optimal-badge span { margin-top: 3px; font-size: 9px; letter-spacing: .06em; opacity: .72; }

footer { padding: 48px 0; border-top: 1px solid var(--line); }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: end; }
.footer-inner > p { margin: 0; color: var(--muted); font-size: 11px; }
.footer-inner > p:nth-child(2) { text-align: center; }
.footer-inner > p:last-child { text-align: right; }
.brand-lockup--footer .brand-lockup__mark { width: 29px; height: 29px; }
.brand-lockup--footer .brand-lockup__wordmark { width: 76px; }

@media (max-width: 800px) {
  :root { --content: min(calc(100vw - 36px), 660px); }
  .site-header { height: 82px; }
  .site-header nav { gap: 20px; }
  .home .site-header nav a:first-child { display: none; }
  .hero { min-height: calc(100svh - 82px); padding-bottom: 76px; }
  .hero__mark { width: 132px; }
  .hero__wordmark { width: 218px; margin-top: 19px; }
  .hero h1 { margin-top: 34px; }
  .hero__actions { flex-direction: column; gap: 19px; margin-top: 28px; }
  .hero-note { right: 18px; bottom: 18px; max-width: 240px; text-align: right; line-height: 1.5; }
  .about-hero { padding: 76px 0 80px; }
  .about-intro { grid-template-columns: 1fr; gap: 20px; margin-top: 58px; padding-top: 34px; }
  .principles { grid-template-columns: 1fr; }
  .principles article { min-height: 0; padding: 34px 4px 36px; }
  .principles article + article { padding: 34px 4px 36px; border-left: 0; border-top: 1px solid var(--line); }
  .principles h2 { margin-top: 34px; }
  .people { padding: 90px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; margin-bottom: 50px; }
  .people-grid { grid-template-columns: 1fr; gap: 74px; }
  .person__photo-wrap { height: min(116vw, 540px); }
  .product { grid-template-columns: 1fr; margin-bottom: 80px; }
  .product__copy { padding: 52px 28px; }
  .product__visual { min-height: 370px; }
  .roster-card { top: 60px; }
  .roster-card__body { grid-template-columns: 68px 1fr; gap: 12px; }
  .optimal-badge { bottom: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-inner > p:nth-child(2), .footer-inner > p:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

.proof-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.proof-item {
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
    letter-spacing: 0.03em;
    white-space: nowrap;
}
