* { box-sizing: border-box; }

html { background: #000; }

body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.about-page {
  min-height: 100vh;
  background: #000;
}

.about-shell {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: 24px 20px 52px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 92px;
}

.brand-link { display: inline-flex; align-items: center; }

.brand-logo {
  height: 22px;
  display: block;
  object-fit: contain;
}

.brand-text {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  font-weight: 500;
}

.nav-links a { transition: color 180ms ease, border-color 180ms ease, background 180ms ease; }

.nav-links a:hover,
.nav-links a[aria-current="page"] { color: #fff; }

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(47,111,237,0.8);
  border-radius: 999px;
  color: #fff;
  background: rgba(47,111,237,0.10);
  box-shadow: 0 0 24px rgba(47,111,237,0.12);
}

.about-hero { margin-bottom: 62px; }

.about-kicker {
  margin: 0 0 18px;
  color: #2F6FED;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.about-hero h1 {
  margin: 0;
  font-size: clamp(56px, 12vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.075em;
  font-weight: 700;
}

.about-category {
  max-width: 720px;
  margin: 24px 0 0;
  color: #fff;
  font-size: clamp(22px, 4.8vw, 38px);
  line-height: 1.14;
  letter-spacing: -0.055em;
  font-weight: 700;
}

.about-copy {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 44px;
  max-width: 760px;
}

.about-copy p {
  margin: 0 0 24px;
  color: rgba(255,255,255,0.68);
  font-size: clamp(18px, 3vw, 24px);
  line-height: 1.55;
  letter-spacing: -0.035em;
}

.about-copy .lead {
  color: #fff;
  font-weight: 600;
}

.statement-block { margin-top: 52px; }

.statement-block h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.statement-block p { margin-bottom: 0; }

.closing-line {
  margin-top: 64px !important;
  color: #fff !important;
  font-size: clamp(24px, 4.5vw, 40px) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.05em !important;
  font-weight: 700 !important;
}

.closing-line span { color: #2F6FED; }

.about-footer {
  margin-top: 76px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,0.54);
  font-size: 14px;
  line-height: 1.5;
}

.about-footer strong {
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .about-shell { padding: 44px 32px 72px; }
}

@media (max-width: 720px) {
  .site-nav {
    justify-content: flex-end;
    margin-bottom: 70px;
  }

  .brand-link { display: none; }

  .nav-links {
    gap: 16px;
    font-size: 13px;
  }

  .nav-links a:nth-child(1),
  .nav-links a:nth-child(2),
  .nav-links a:nth-child(3) { display: none; }

  .about-hero { margin-bottom: 52px; }

  .about-copy { padding-top: 36px; }
}


.contact-block p:first-of-type {
  margin-bottom: 10px;
}

.contact-email {
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid rgba(47,111,237,0.85);
  transition: color 180ms ease, border-color 180ms ease;
}

.contact-email:hover {
  color: #2F6FED;
  border-color: #2F6FED;
}
