:root {
  --accent: #ff004c;
  --accent-soft: #ffe9f0;
  --wine: #6f002c;
  --ink: #0a0a0a;
  --ink-2: #2a2a2a;
  --muted: #6b6b6b;
  --line: #e8e4dc;
  --cream: #f6f2ea;
  --cream-2: #efe9dd;
  --paper: #ffffff;
  --serif: "DM Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --sans: "DM Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "Menlo", monospace;
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  background: var(--paper);
  color: var(--ink);
}
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection {
  background: var(--accent);
  color: #fff;
}
a {
  color: inherit;
}
img {
  display: block;
}

/* ── nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(24px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  text-decoration: none;
}
.nav-logo svg.mark {
  width: 32px;
  height: 28px;
  display: block;
}
.nav-logo svg.wordmark {
  height: 22px;
  width: auto;
  display: block;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
}
.nav-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-meta .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 18%, transparent);
  animation: pulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 22%, transparent);
  }
  50% {
    box-shadow: 0 0 0 8px color-mix(in oklab, var(--accent) 0%, transparent);
  }
}
.nav-cta {
  font: 500 13px/1 var(--sans);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--accent);
}
@media (max-width: 600px) {
  .nav-meta {
    display: none;
  }
}

/* ── layout ── */
.wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: clamp(24px, 5vw, 72px);
  padding-right: clamp(24px, 5vw, 72px);
}
section {
  position: relative;
}
.section-pad {
  padding: clamp(80px, 12vh, 160px) 0;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--accent);
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
h1 {
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.94;
  font-weight: 600;
}
h2 {
  font-size: clamp(40px, 5.6vw, 80px);
  line-height: 1;
  letter-spacing: -0.03em;
}
h3 {
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.lede {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.45;
  color: var(--ink-2);
  text-wrap: pretty;
  letter-spacing: -0.005em;
}
p {
  text-wrap: pretty;
}

/* ── hero ── */
.hero {
  padding: clamp(60px, 10vh, 120px) 0 clamp(80px, 12vh, 140px);
  position: relative;
  overflow: hidden;
}
.hero > .wrap {
  position: relative;
  z-index: 1;
}

.hero-confidential {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-confidential .pill {
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: var(--paper);
}
.hero h1 {
  margin-top: 40px;
  max-width: 16ch;
}
.hero h1 .period {
  color: var(--accent);
}

.hero-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 60px);
  margin-top: clamp(48px, 7vh, 72px);
}
@media (min-width: 880px) {
  .hero-body {
    grid-template-columns: 1.4fr 1fr;
  }
}
.hero-lede {
  max-width: 56ch;
}
.hero-lede p {
  margin: 0 0 1em;
}
.hero-lede p:last-child {
  margin-bottom: 0;
}

.hero-aside {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-aside-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-aside-line {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink-2);
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 12px;
}

.btn {
  font: 500 14px/1 var(--sans);
  letter-spacing: 0.01em;
  padding: 16px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease,
    border-color 0.2s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--ink);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
}
.btn-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}
.btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* Hero bleed image — full viewport width strip below the text block */
.hero-bleed {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: clamp(48px, 8vh, 96px);
  aspect-ratio: 16 / 9;
  background: var(--cream-2);
  overflow: hidden;
}
@media (max-width: 720px) {
  .hero-bleed {
    aspect-ratio: 4 / 5;
  }
}
.hero-bleed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Placeholder state when hero image is missing */
.hero-bleed--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px dashed rgba(0, 0, 0, 0.18);
}
.hero-bleed--empty .placeholder-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(0, 0, 0, 0.3);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-bleed--empty svg {
  opacity: 0.4;
}

/* ── ticker ── */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--paper);
}
.ticker-track {
  display: flex;
  gap: 60px;
  padding: 18px 0;
  animation: ticker 38s linear infinite;
  width: max-content;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 60px;
  white-space: nowrap;
}
.ticker-item::after {
  content: "✦";
  color: var(--accent);
  margin-left: 60px;
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── vision ── */
.vision {
  background: var(--cream);
}
.vision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 80px);
}
@media (min-width: 960px) {
  .vision-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}
.vision-head {
  position: sticky;
  top: 100px;
  align-self: start;
  @media (max-width: 960px) {
   position: static;
  }
}
.vision-head h2 {
  max-width: 14ch;
}
.vision-copy p {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(19px, 1.5vw, 22px);
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 1.2em;
  text-wrap: pretty;
  letter-spacing: -0.005em;
}
.vision-copy p:last-child {
  margin-bottom: 0;
}
.vision-copy em {
  font-style: normal;
  color: var(--accent);
  font-weight: 600;
}
.vision-stats {
  margin-top: 56px;
  border-top: 1px solid color-mix(in oklab, var(--ink) 14%, transparent);
  padding-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
}
.stat-num {
  font-family: var(--sans);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 600;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.04em;
}
.stat-label {
  font-size: 13px;
  color: var(--ink-2);
  margin-top: 8px;
  line-height: 1.4;
  max-width: 28ch;
}

/* ── build ── */
.build {
  background: var(--wine);
  color: #f3ece8;
}
.build h2 {
  color: #fff;
}
.build .eyebrow {
  color: #ffb3cc;
}
.build .eyebrow::before {
  background: #ffb3cc;
}
.build-intro {
  max-width: 60ch;
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.45;
  color: #f3ece8;
  margin: 36px 0 80px;
  text-wrap: pretty;
  letter-spacing: -0.01em;
}
.channels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 880px) {
  .channels {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}
.channel {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  padding: 36px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: rgba(255, 255, 255, 0.02);
  transition: background 0.25s ease, border-color 0.25s ease;
  min-height: 380px;
}

.channel-num {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.channel-glyph {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
}
.channel-glyph svg {
  width: 26px;
  height: 26px;
}
.channel h3 {
  color: #fff;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 34px;
  margin: 0;
  letter-spacing: -0.03em;
}
.channel p {
  color: rgba(243, 236, 232, 0.78);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}
.channel-meta {
  margin-top: auto;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243, 236, 232, 0.55);
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* ── team ── */
.team h2 {
  max-width: 18ch;
  margin-bottom: 16px;
}
.team-intro {
  font-family: var(--sans);
  font-size: clamp(20px, 1.6vw, 24px);
  color: var(--muted);
  max-width: 56ch;
  margin: 0 0 72px;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 32px;
}
@media (min-width: 720px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 24px;
  }
}

.member {
  display: flex;
  flex-direction: column;
}
.member-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  margin-bottom: 22px;
  object-fit: cover;
  object-position: top center;
  background: var(--cream-2);
  border: 1px solid var(--line);
  filter: grayscale(1) contrast(1.02);
  color: transparent; /* hide alt text on broken images */
}
.member-name {
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1.15;
}
.member-role {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}
.member-role:last-child {
  margin-bottom: 16px;
}

a.member-role {
  color: var(--ink);
  text-decoration: none !important;
  padding : 2px 0;
  text-transform: none;
}
a.member-role:hover {
  color: var(--accent);
  text-decoration: underline !important;
}
.member-bio {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}
.member-bio strong {
  color: var(--ink);
  font-weight: 600;
}

/* ── CTA ── */
.cta {
  background: var(--ink);
  color: #f3ece8;
  position: relative;
  overflow: hidden;
}
.cta h2 {
  color: #fff;
  max-width: 14ch;
}
.cta .eyebrow {
  color: var(--accent);
}
.cta .eyebrow::before {
  background: var(--accent);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (min-width: 960px) {
  .cta-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.cta-copy p {
  font-family: var(--sans);
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.45;
  color: rgba(243, 236, 232, 0.85);
  margin: 28px 0 0;
  max-width: 44ch;
  letter-spacing: -0.005em;
}
.cta-copy .free-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  margin-bottom: 18px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: #fff;
  font: 500 12px/1 var(--sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 36px;
}
.form-label {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(243, 236, 232, 0.65);
  margin-bottom: 10px;
}
.field-group {
  margin-bottom: 24px;
}
.field {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font: 400 17px/1.4 var(--sans);
  padding: 10px 0;
  outline: none;
  transition: border-color 0.2s ease;
}
.field:focus {
  border-bottom-color: var(--accent);
}
.field::placeholder {
  color: rgba(243, 236, 232, 0.4);
}
.checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
  user-select: none;
  transition: all 0.18s ease;
}
.check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.check .dot-c {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.18s ease;
}
.check.is-on {
  border-color: var(--accent);
  background: rgba(255, 0, 76, 0.08);
}
.check.is-on .dot-c {
  background: var(--accent);
  border-color: var(--accent);
}
.form-foot {
  margin-top: 18px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(243, 236, 232, 0.55);
}

/* Typeform card */
.tf-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.tf-card-inner {
  text-align: center;
  width: 100%;
}
.tf-trigger {
  border: 0;
  font-size: 16px;
  padding: 20px 36px;
  cursor: pointer;
}

/* Faint mark behind CTA */
.cta-mark {
  position: absolute;
  left: -120px;
  bottom: -180px;
  width: 540px;
  height: 540px;
  color: var(--accent);
  opacity: 0.06;
  pointer-events: none;
}
.cta-mark svg {
  width: 100%;
  height: 100%;
}

/* ── footer ── */
footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 48px 0;
}
.foot-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.foot-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  text-decoration: none;
}
.foot-logo svg.wordmark {
  height: 20px;
  width: auto;
  display: block;
}
.foot-meta {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.foot-meta a {
  text-decoration: none;
  color: var(--ink-2);
}
.foot-meta a:hover {
  color: var(--accent);
}

.wrap-trippleM {
  position: relative;
}
.wrap-trippleM::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40vw;
  min-width: 1080px;
  height: 40vw;
  min-height: 1080px;
  transform: translate(42%, 42%);
  background-image: url("./assets/triplem-mark-accent.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.3;
  pointer-events: none;

  @media (max-width: 960px) {
    display: none;
  }
}
