/* Homepage editorial spread.
   Two deliberate reads, not a content-card grid. */

.v3-notes {
  padding: var(--section) 0;
  border-top: 1px solid var(--line);
}

.v3-notes-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.v3-notes-head-copy {
  max-width: 760px;
}

.v3-notes-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6.3vw, 5.6rem);
  font-weight: 520;
  line-height: .94;
  letter-spacing: -.058em;
}

.v3-notes-head p:not(.v3-kicker) {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.v3-notes-all {
  flex: 0 0 auto;
  padding-bottom: 4px;
  color: var(--muted) !important;
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  font-size: .88rem;
  font-weight: 600;
  transition: color 150ms ease, border-color 150ms ease, opacity 150ms ease;
}

.v3-notes-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, .78fr);
  gap: 14px;
  margin-top: clamp(44px, 6vw, 72px);
}

.v3-note-story {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  color: inherit;
  text-decoration: none;
  isolation: isolate;
  transition: opacity 150ms ease, border-color 180ms ease, background-color 180ms ease;
}

.v3-note-arrow {
  position: absolute;
  z-index: 4;
  top: 27px;
  right: 28px;
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.v3-note-label {
  display: block;
  margin-bottom: 14px;
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .085em;
  text-transform: uppercase;
}

.v3-note-story h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4.5vw, 4rem);
  font-weight: 520;
  line-height: .98;
  letter-spacing: -.052em;
  text-wrap: balance;
}

.v3-note-story p {
  max-width: 540px;
  margin: 18px 0 0;
  font-size: .96rem;
  line-height: 1.62;
}

/* Founder story: the human moment in the page. */
.v3-note-founder {
  background: #111214;
  color: #fff !important;
}

.v3-note-founder-media,
.v3-note-founder::after {
  position: absolute;
  inset: 0;
}

.v3-note-founder-media {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(1) saturate(.3) contrast(.96) brightness(.78);
  transform: scale(1.005);
  transition: transform 500ms cubic-bezier(.2,.65,.25,1), filter 350ms ease;
}

.v3-note-founder::after {
  content: "";
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 10, 11, .16) 8%, rgba(10, 10, 11, .18) 38%, rgba(10, 10, 11, .9) 100%),
    linear-gradient(90deg, rgba(10, 10, 11, .28), transparent 64%);
}

.v3-note-founder .v3-note-arrow {
  color: rgba(255,255,255,.88);
}

.v3-note-founder-copy {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  padding: clamp(28px, 4vw, 42px);
}

.v3-note-founder .v3-note-label {
  color: rgba(255,255,255,.62);
}

.v3-note-founder p {
  color: rgba(255,255,255,.74);
}

/* Safety story: the thesis is the visual, not a generic security icon. */
.v3-note-safety {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.7vw, 40px);
  background: color-mix(in srgb, var(--surface-soft) 72%, var(--page));
}

.v3-note-safety .v3-note-arrow {
  color: var(--muted);
}

.v3-note-thesis {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 0 42px;
  color: color-mix(in srgb, var(--text) 11%, transparent);
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6.5vw, 6rem);
  font-weight: 650;
  line-height: .82;
  letter-spacing: -.07em;
  text-transform: uppercase;
  user-select: none;
}

.v3-note-thesis span:last-child {
  margin-top: .18em;
}

.v3-note-safety-copy {
  position: relative;
  z-index: 2;
  padding-top: 26px;
  border-top: 1px solid var(--line-strong);
}

.v3-note-safety .v3-note-label {
  color: var(--faint);
}

.v3-note-safety h3 {
  max-width: 520px;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
}

.v3-note-safety p {
  color: var(--muted);
}

@media (hover: hover) and (pointer: fine) {
  .v3-notes-all:hover {
    color: var(--text) !important;
    border-bottom-color: var(--text);
  }

  .v3-note-story:hover .v3-note-arrow {
    transform: translate(3px, -3px);
  }

  .v3-note-founder:hover .v3-note-founder-media {
    transform: scale(1.025);
    filter: grayscale(.92) saturate(.38) contrast(.98) brightness(.8);
  }

  .v3-note-safety:hover {
    border-color: var(--line-strong);
    background: color-mix(in srgb, var(--surface-soft) 88%, var(--page));
  }
}

@media (max-width: 900px) {
  .v3-notes-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
  }

  .v3-note-story {
    min-height: 480px;
  }
}

@media (max-width: 720px) {
  .v3-notes-head {
    display: block;
  }

  .v3-notes-all {
    display: inline-flex;
    margin-top: 26px;
  }

  .v3-notes-grid {
    grid-template-columns: 1fr;
  }

  .v3-note-founder {
    min-height: 500px;
  }

  .v3-note-safety {
    min-height: 410px;
  }
}

@media (max-width: 520px) {
  .v3-note-story {
    border-radius: 22px;
  }

  .v3-note-founder {
    min-height: 460px;
  }

  .v3-note-founder-copy,
  .v3-note-safety {
    padding: 24px;
  }

  .v3-note-arrow {
    top: 23px;
    right: 24px;
  }

  .v3-note-thesis {
    padding-top: 62px;
    font-size: clamp(3.25rem, 17vw, 4.8rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .v3-note-story,
  .v3-note-arrow,
  .v3-note-founder-media,
  .v3-notes-all {
    transition: none !important;
  }
}