@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700&family=Manrope:wght@300;400;500;600;700&display=swap");

:root {
  --bg: #0b0f1c;
  --bg-dark: #080b14;
  --surface: #11182b;
  --surface-2: #0f1424;
  --surface-3: #141c33;
  --text: #f2f5fb;
  --muted: #b4bfd4;
  --accent: #ff9f1c;
  --accent-2: #2ec4b6;
  --accent-3: #ff6b6b;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: radial-gradient(1000px circle at 10% 10%, rgba(46, 196, 182, 0.16), transparent 60%),
    radial-gradient(900px circle at 90% 20%, rgba(255, 159, 28, 0.14), transparent 55%),
    radial-gradient(700px circle at 60% 90%, rgba(255, 107, 107, 0.12), transparent 60%),
    linear-gradient(160deg, var(--bg) 0%, #0d1528 55%, #0a0e1b 100%);
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.25;
  mix-blend-mode: screen;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(500px circle at 20% 40%, rgba(46, 196, 182, 0.08), transparent 65%),
    radial-gradient(600px circle at 80% 60%, rgba(255, 159, 28, 0.1), transparent 70%);
  opacity: 0.6;
  z-index: 0;
}

.skip-link {
  position: absolute;
  left: 20px;
  top: -40px;
  background: var(--accent);
  color: #101423;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: top 0.2s ease;
  z-index: 5;
}

.skip-link:focus {
  top: 20px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  background: rgba(9, 13, 23, 0.85);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(46, 196, 182, 0.3), rgba(255, 159, 28, 0.35));
  color: var(--text);
  font-family: "Fraunces", serif;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 14px;
}

.brand-text span:last-child {
  color: var(--muted);
  font-weight: 500;
  font-size: 12px;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #101423;
  font-weight: 700;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.4px;
}

main {
  position: relative;
  z-index: 1;
  padding: 0 6vw 80px;
}

section {
  max-width: var(--max-width);
  margin: 0 auto 90px;
}

.hero {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  padding-top: 70px;
}

.hero-content h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(36px, 4vw, 60px);
  margin: 16px 0 10px;
  line-height: 1.05;
}

.hero-content h1 span {
  display: block;
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 500;
  color: var(--muted);
  margin-top: 12px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}

.hero-subtitle {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0 24px;
}

.button {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: var(--accent-2);
  color: #0b0f1c;
  box-shadow: 0 16px 30px rgba(46, 196, 182, 0.22);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.portrait-card {
  padding: 24px;
  background: rgba(15, 20, 36, 0.75);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: center;
}

.portrait-photo {
  width: min(260px, 80vw);
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(140deg, rgba(46, 196, 182, 0.2), rgba(255, 159, 28, 0.25));
  display: grid;
  place-items: center;
}

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

.portrait-caption {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(28px, 3vw, 42px);
  margin: 10px 0 14px;
}

.section-heading p {
  color: var(--muted);
  line-height: 1.6;
}

.about-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.about-card {
  padding: 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(17, 24, 43, 0.8);
}

.about-card h3 {
  margin-top: 0;
  font-size: 20px;
}

.about-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.about-card li {
  padding-left: 18px;
  position: relative;
}

.about-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
}

.card-grid,
.work-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card,
.work-card,
.leadership-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(17, 24, 43, 0.72);
  border: 1px solid var(--border);
  min-height: 180px;
}

.card h3,
.work-card h3,
.leadership-card h3 {
  margin-top: 0;
  font-size: 18px;
}

.card p,
.work-card p,
.leadership-card p {
  color: var(--muted);
  line-height: 1.55;
}

.leadership-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.connect-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(46, 196, 182, 0.2), rgba(255, 159, 28, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: center;
}

.connect-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer {
  padding: 30px 6vw 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-cta {
    margin-left: auto;
  }
}

@media (max-width: 700px) {
  .nav {
    justify-content: center;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .hero {
    padding-top: 40px;
  }

  .connect-actions {
    flex-direction: column;
  }

  .footer {
    flex-direction: column;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
