@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

#hero {
  min-height: 60svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

#hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 5px; height: 100%;
  background: var(--accent);
}

.hero-watermark {
  position: absolute;
  bottom: -0.12em;
  left: -0.04em;
  font-family: var(--cond);
  font-size: 28vw;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--ink);
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
  line-height: 1;
  user-select: none;
  white-space: nowrap;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: clamp(3rem, 8vh, 6rem);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease both 0.1s;
}

.hero-eyebrow-line {
  flex: 0 0 40px;
  height: 2px;
  background: var(--accent);
}

.hero-headline {
  font-family: var(--cond);
  font-size: clamp(5rem, 14vw, 14rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.hl-outer { display: block; overflow: hidden; }
.hl-line {
  display: block;
  animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hl-line:nth-child(1) { animation-delay: 0.2s; }
.hl-line:nth-child(2) { animation-delay: 0.38s; }

.hero-headline em { font-style: normal; color: var(--accent); }

.hero-sub-row {
  margin-top: 2.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease both 0.7s;
}

.hero-sub {
  max-width: 48ch;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
}

.hero-sub strong { color: var(--ink); }

.hero-corner {
  position: absolute;
  width: 28px; height: 28px;
  border-color: var(--border-hi);
  border-style: solid;
  pointer-events: none;
}

.hero-corner-tl { top: 80px; left: var(--gutter); border-width: 1px 0 0 1px; }
.hero-corner-br { bottom: 30px; right: calc(var(--gutter) + 8px); border-width: 0 1px 1px 0; }

#team {
  padding-block: clamp(5rem, 9vw, 9rem);
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}

.founder-card {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}

.founder-card:hover { background: var(--surface); }

.founder-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.founder-card:hover::after { transform: scaleX(1); }

.founder-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.founder-photo-placeholder .placeholder-icon {
  width: 64px;
  height: 64px;
  border: 1px solid var(--border-hi);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-photo-placeholder .placeholder-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--border-hi);
  fill: none;
  stroke-width: 1.5;
}

.founder-photo-placeholder span {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--border-hi);
}

.founder-photo-number {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.founder-body {
  padding: 2rem 2rem 2.5rem;
}

.founder-discipline {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.founder-name {
  font-family: var(--cond);
  font-size: clamp(1.75rem, 2.5vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.founder-bio {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.founder-bio strong { color: var(--ink); }

.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.founder-tag {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.3rem 0.6rem;
  transition: border-color 0.15s, color 0.15s;
}

.founder-card:hover .founder-tag {
  border-color: var(--border-hi);
}

.founder-email {
  display: inline-block;
  margin-top: 1.25rem;
  font-family: var(--mono);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
}

.founder-email:hover { border-bottom-color: var(--accent); }

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

#why {
  background: var(--ink);
  border-block: 1px solid var(--ink);
  padding-block: clamp(5rem, 9vw, 10rem);
  position: relative;
  overflow: hidden;
}

#why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244,241,235,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,241,235,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.why-watermark {
  position: absolute;
  bottom: -0.1em;
  right: -0.05em;
  font-family: var(--cond);
  font-size: 22vw;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(244,241,235,0.03);
  pointer-events: none;
  line-height: 1;
  user-select: none;
}

.why-inner {
  position: relative;
  z-index: 2;
}

.why-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.why-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--accent);
}

.why-heading {
  font-family: var(--cond);
  font-size: clamp(3rem, 7vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--cream);
  max-width: 16ch;
  margin-bottom: 4rem;
}

.why-heading em { font-style: normal; color: var(--accent); }

.why-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(244,241,235,0.1);
  border: 1px solid rgba(244,241,235,0.1);
  margin-bottom: 4rem;
}

.why-col {
  background: var(--ink);
  padding: 2.5rem;
  position: relative;
}

.why-col-num {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.why-col-title {
  font-family: var(--cond);
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.why-col-body {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(244,241,235,0.55);
}

.why-col-body strong { color: rgba(244,241,235,0.85); }

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

.why-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(244,241,235,0.1);
  padding-top: 3rem;
}

.why-cta-text {
  font-family: var(--cond);
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--cream);
  line-height: 1.1;
  max-width: 28ch;
}

.why-cta-text em { font-style: normal; color: var(--accent); }

#disciplines {
  border-bottom: 1px solid var(--border);
}

.disciplines-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--border);
}

.discipline-item {
  border-right: 1px solid var(--border);
  padding: 2.5rem 2rem;
  position: relative;
}

.discipline-item::before {
  content: attr(data-index);
  position: absolute;
  top: 2.5rem; right: 2rem;
  font-family: var(--cond);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--border);
  pointer-events: none;
}

.discipline-name {
  font-family: var(--cond);
  font-size: 2.2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.75rem;
  position: relative;
}

.discipline-owner {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.discipline-text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--muted);
}

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

[data-theme="dark"] #why { background: #0A0908; border-color: #0A0908; }
[data-theme="dark"] .why-col { background: #0A0908; }
[data-theme="dark"] .why-columns { background: rgba(244,241,235,0.06); border-color: rgba(244,241,235,0.06); }
