:root {
  --accent: #00d4aa;
  --accent-dark: #009a7d;
  --accent-soft: #4ae8c2;
  --amber: #f59e0b;
  --amber-rgb: 245, 158, 11;
  --background: #0a0a0b;
  --surface: #111114;
  --text: #f5f5f7;
  --text-secondary: #d4d4d8;
  --muted: #a1a1aa;
  --border: rgba(245, 245, 247, 0.08);
  --border-subtle: rgba(245, 245, 247, 0.05);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

::selection {
  background: rgba(0, 212, 170, 0.25);
  color: var(--text);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(10, 10, 11, 0.8);
  border-bottom: 1px solid var(--border-subtle);
}

.site-header-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  transition: opacity 200ms ease;
}

.logo:hover {
  opacity: 0.8;
}

.logo img {
  height: 28px;
  width: auto;
}

.header-link {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 200ms ease;
  padding: 8px 0;
}

.header-link:hover {
  color: var(--accent);
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(0, 212, 170, 0.08) 0%, transparent 60%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  left: -200px;
  bottom: -100px;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.04) 0%, transparent 60%);
}

.hero-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 120px 0 80px;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 800px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 8px;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
}

h1 .accent {
  color: var(--accent);
  position: relative;
}

.hero-text {
  max-width: 480px;
  margin: 24px 0 0;
  color: var(--text-secondary);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.65;
  letter-spacing: -0.01em;
}

.section {
  position: relative;
  padding: 60px 0;
  border-top: 1px solid var(--border);
}

.section-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.section-header {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 32px;
  align-items: start;
  max-width: 800px;
}

.section-label {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  padding-top: 0;
  margin-top: 12px;
}

.section-content {
  max-width: 680px;
}

.section-content h2 {
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text);
}

.team-section {
  padding-bottom: 60px;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.team-card {
  background: rgba(17, 17, 20, 0.6);
  border: 1px solid rgba(245, 245, 247, 0.06);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 300ms ease;
}

.team-card:hover {
  border-color: rgba(0, 212, 170, 0.12);
}

.team-photo {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.12), rgba(0, 212, 170, 0.04));
  border: 1px solid rgba(0, 212, 170, 0.2);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-photo.amber {
  background: linear-gradient(135deg, rgba(var(--amber-rgb), 0.12), rgba(var(--amber-rgb), 0.04));
  border-color: rgba(var(--amber-rgb), 0.2);
}

.team-info {
  flex: 1;
  min-width: 0;
}

.team-info h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}

.team-role {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.team-bio {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.team-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: opacity 200ms ease;
}

.team-link:hover {
  color: var(--accent-soft);
}

@media (max-width: 900px) {
  .hero-inner {
    padding: 100px 0 60px;
  }

  .section {
    padding: 48px 0;
  }

  .section-header {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 20px;
  }

  .team-section {
    padding-bottom: 60px;
  }
}

@media (max-width: 600px) {
  .site-header-inner {
    width: calc(100% - 32px);
    padding: 14px 0;
  }

  .header-link {
    display: none;
  }

  .hero-inner {
    width: calc(100% - 32px);
    padding: 90px 0 50px;
  }

  .hero {
    min-height: auto;
  }

  .section {
    padding: 40px 0;
  }

  .section-inner {
    width: calc(100% - 32px);
  }

  .team-card {
    padding: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .team-photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
  }

  .footer-inner {
    width: calc(100% - 32px);
  }
}
