/* Two Dudes and AI — palette inspired by poster: deep blues, crisp white, accent red */

:root {
  --bg-deep: #0a1628;
  --bg-card: #111f36;
  --bg-elevated: #152a47;
  --text: #e8f0ff;
  --text-muted: #9fb4d4;
  --accent-red: #e63946;
  --accent-blue: #4cc9f0;
  --accent-blue-dim: #2a8fb8;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 12px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Outfit", var(--font-sans);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(76, 201, 240, 0.12), transparent),
    radial-gradient(ellipse 80% 50% at 100% 50%, rgba(230, 57, 70, 0.06), transparent);
  min-height: 100vh;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent-blue);
  color: var(--bg-deep);
  padding: 0.5rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo-accent {
  color: var(--accent-blue);
}

.nav {
  display: flex;
  gap: 1.25rem;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: color 0.15s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
}

.hero {
  padding: 1.75rem 1.25rem 2.5rem;
}

.hero-wrap {
  max-width: 58rem;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
  min-width: 0;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 21rem);
    gap: clamp(1.25rem, 3vw, 2rem);
    align-items: center;
  }
}

@media (min-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 23rem);
    gap: 2rem;
  }
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

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

.lede {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  max-width: 42ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-red), #c1121f);
  color: #fff;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(230, 57, 70, 0.45);
}

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-poster {
  margin: 0;
  justify-self: center;
  width: 100%;
  max-width: 23rem;
  min-width: 0;
}

@media (max-width: 899px) {
  .hero-poster {
    max-width: min(20rem, 85vw);
  }
}

.hero-poster img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.section {
  padding: 3.5rem 1.5rem;
}

.section-inner {
  max-width: 800px;
  margin: 0 auto;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.section-intro {
  color: var(--text-muted);
  margin: 0 0 2rem;
}

.section-mission {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.mission-text {
  font-size: 1.2rem;
  line-height: 1.7;
  margin: 0;
  color: var(--text);
}

.section-projects .section-inner {
  max-width: 900px;
}

.project-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

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

.project-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.project-card h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0;
}

.project-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  flex: 1;
}

.badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  background: rgba(76, 201, 240, 0.15);
  color: var(--accent-blue);
}

.badge-soon {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

.badge-open {
  background: rgba(230, 57, 70, 0.15);
  color: #ff8a95;
}

.about-grid {
  max-width: 900px;
  display: grid;
  gap: 2rem;
}

@media (min-width: 700px) {
  .about-grid {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }
}

.bios {
  display: grid;
  gap: 1.25rem;
}

.bio {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.bio-summary {
  list-style: none;
  cursor: pointer;
  padding: 1.35rem 1.5rem;
  display: block;
  position: relative;
  transition: background 0.15s ease;
}

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

.bio-summary::marker {
  display: none;
  content: "";
}

.bio-summary:hover,
.bio-summary:focus-visible {
  background: rgba(255, 255, 255, 0.03);
}

.bio-summary:focus {
  outline: none;
}

.bio-summary:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: -2px;
}

.bio-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--accent-blue);
}

.bio-teaser {
  display: block;
  margin: 0 4rem 0 0;
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.bio-hint {
  position: absolute;
  right: 1.35rem;
  bottom: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 3rem;
  text-align: right;
}

.bio-hint-more,
.bio-hint-less {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bio-hint-more {
  color: var(--accent-blue-dim);
}

.bio-hint-less {
  display: none;
  color: var(--accent-blue);
}

.bio[open] .bio-hint-more {
  display: none;
}

.bio[open] .bio-hint-less {
  display: inline;
}

.bio-expanded {
  padding: 0 1.5rem 1.35rem;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.15);
}

.bio-expanded p {
  margin: 0;
  padding-top: 1rem;
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.6;
}
</think>
Fixing the `.bio-hint` styles — the previous edit was overly complex. Simplifying.

<｜tool▁calls▁begin｜><｜tool▁call▁begin｜>
Read

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 1.5rem 3rem;
  margin-top: 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-brand {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.65rem;
  font-weight: 600;
}

.footer-links a {
  color: var(--accent-blue);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  text-decoration: underline;
}

.footer-sep {
  color: var(--border);
  user-select: none;
}

.section-contact {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.contact-inner {
  max-width: 720px;
}

.contact-intro {
  margin-bottom: 1.5rem;
}

.contact-cards {
  display: grid;
  gap: 1rem;
}

@media (min-width: 520px) {
  .contact-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-person {
  padding: 1.35rem 1.4rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 1rem;
  color: var(--accent-blue);
  letter-spacing: -0.02em;
}

.contact-row {
  margin: 0 0 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-row:last-child {
  margin-bottom: 0;
}

.contact-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-link {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  word-break: break-word;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--accent-blue);
  text-decoration: underline;
}
