* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #000000;
  --surface: #0a0a0a;
  --surface2: #101010;

  --text: #f5f5f5;
  --muted: #8c8c8c;

  --border: rgba(255, 255, 255, 0.08);

  --accent: #dcff74;
  --accent2: #5ef2c4;

  --display: "Syne", sans-serif;
  --mono: "DM Mono", monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);

  font-family: var(--mono);

  overflow-x: hidden;
}

body::before {
  content: "";

  position: fixed;
  inset: 0;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);

  background-size: 64px 64px;

  pointer-events: none;

  z-index: -1;
}

.container {
  width: min(1200px, 92%);
  margin: auto;
}

section {
  padding: 120px 0;
}

/* NAVBAR */

nav {
  position: fixed;

  width: 100%;

  top: 0;

  z-index: 999;

  border-bottom: 1px solid var(--border);

  background: rgba(9, 9, 9, 0.85);

  backdrop-filter: blur(14px);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 22px 0;
}

.logo {
  font-family: var(--display);

  font-size: 1.1rem;

  font-weight: 800;

  letter-spacing: -0.03em;
}

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

.nav-tag {
  color: var(--muted);

  font-size: 12px;

  letter-spacing: 0.1em;

  text-transform: uppercase;
}

/* HERO */

.hero {
  min-height: 100vh;

  display: flex;
  align-items: center;
}

.eyebrow {
  color: var(--accent2);

  text-transform: uppercase;

  letter-spacing: 0.25em;

  font-size: 11px;

  margin-bottom: 25px;
}

.hero h1 {
  font-family: var(--display);

  font-size: clamp(3rem, 7vw, 6rem);

  line-height: 0.92;

  margin-bottom: 30px;

  letter-spacing: -0.07em;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  max-width: 760px;

  color: var(--muted);

  line-height: 2;

  font-size: 15px;

  margin-bottom: 60px;
}

.hero-stats {
  display: flex;

  gap: 60px;

  flex-wrap: wrap;

  border-top: 1px solid var(--border);

  padding-top: 40px;
}

.stat h2 {
  font-family: var(--display);

  font-size: 2.8rem;

  margin-bottom: 5px;
}

.stat span {
  color: var(--muted);

  text-transform: uppercase;

  letter-spacing: 0.15em;

  font-size: 11px;
}

/* SECTION HEADER */

.section-header {
  margin-bottom: 70px;
}

.section-header span {
  color: var(--accent2);

  text-transform: uppercase;

  letter-spacing: 0.25em;

  font-size: 11px;
}

.section-header h2 {
  font-family: var(--display);

  font-size: clamp(2rem, 5vw, 4.5rem);

  margin-top: 20px;

  letter-spacing: -0.05em;
}

/* ABOUT */

.about-box {
  border: 1px solid var(--border);

  background: var(--surface);

  padding: 60px;

  border-left: 4px solid var(--accent);
}

.about-box p {
  color: var(--muted);

  line-height: 2;

  margin-bottom: 25px;

  font-size: 15px;
}

/* TEAM MEMBERS */

.member-section {
  min-height: 100vh;

  display: flex;
  align-items: center;

  border-top: 1px solid var(--border);
}

.member-grid {
  display: grid;

  grid-template-columns: 280px 1fr;

  gap: 80px;

  width: 100%;
}

.member-left {
  position: sticky;

  top: 120px;

  align-self: start;
}

.member-index {
  font-family: var(--display);

  font-size: 5rem;

  line-height: 1;

  color: rgba(255, 255, 255, 0.05);

  margin-bottom: 20px;
}

.member-role {
  color: var(--accent2);

  text-transform: uppercase;

  letter-spacing: 0.2em;

  font-size: 11px;
}

.member-right h2 {
  font-family: var(--display);

  font-size: clamp(2.5rem, 6vw, 5rem);

  line-height: 0.92;

  margin-bottom: 30px;

  letter-spacing: -0.06em;
}

.member-bio {
  max-width: 760px;

  color: var(--muted);

  line-height: 2;

  margin-bottom: 40px;

  font-size: 15px;
}

.member-skills {
  display: flex;

  gap: 12px;

  flex-wrap: wrap;

  margin-bottom: 50px;
}

.member-skills span {
  border: 1px solid var(--border);

  padding: 10px 16px;

  color: var(--accent);

  font-size: 11px;
}

.member-projects {
  display: flex;

  flex-direction: column;

  gap: 22px;

  margin-bottom: 45px;
}

.member-project {
  border-left: 2px solid var(--accent);

  padding-left: 22px;

  font-size: 1.05rem;

  line-height: 1.7;
}

.member-contact {
  display: inline-block;

  color: var(--accent);

  text-decoration: none;

  border-bottom: 1px solid rgba(220, 255, 116, 0.3);

  padding-bottom: 5px;

  transition: 0.3s;
}

.member-contact:hover {
  transform: translateX(4px);
}

/* CONTACT */

.contact-box {
  border: 1px solid var(--border);

  background: var(--surface);

  padding: 90px;

  text-align: center;
}

.contact-grid {
  display: flex;

  justify-content: center;

  gap: 80px;

  flex-wrap: wrap;

  margin-top: 50px;
}

.contact-item {
  text-align: left;
}

.contact-label {
  color: var(--accent2);

  text-transform: uppercase;

  letter-spacing: 0.2em;

  font-size: 11px;

  margin-bottom: 12px;
}

.contact-item a {
  color: white;

  text-decoration: none;

  font-size: 1.1rem;

  transition: 0.3s;
}

.contact-item a:hover {
  color: var(--accent);
}
.contact-box h2 {
  font-family: var(--display);

  font-size: clamp(2rem, 5vw, 4rem);

  margin-bottom: 25px;
}

.contact-box p {
  color: var(--muted);

  max-width: 700px;

  margin: auto;

  line-height: 2;

  margin-bottom: 40px;
}

.btn {
  display: inline-block;

  background: var(--accent);

  color: black;

  padding: 18px 35px;

  text-decoration: none;

  font-weight: bold;

  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-4px);
}

/* FOOTER */

footer {
  border-top: 1px solid var(--border);

  padding: 40px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;

  flex-wrap: wrap;

  gap: 20px;
}

.footer-inner p {
  color: var(--muted);

  font-size: 12px;
}

/* RESPONSIVE */

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

    gap: 40px;
  }

  .member-left {
    position: relative;

    top: 0;
  }

  .member-index {
    font-size: 5rem;
  }

  .about-box,
  .contact-box {
    padding: 40px;
  }
}

/* ========================= */
/* SERVICES */
/* ========================= */

.services-section {
  border-top: 1px solid var(--border);
}

.services-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 30px;
}

.service-card {
  border: 1px solid var(--border);

  background: var(--surface);

  padding: 45px;

  transition: 0.3s;

  position: relative;

  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);

  border-color: rgba(255, 255, 255, 0.16);
}

.service-index {
  font-family: var(--display);

  font-size: 4rem;

  line-height: 1;

  color: rgba(255, 255, 255, 0.05);

  margin-bottom: 30px;
}

.service-card h3 {
  font-family: var(--display);

  font-size: 2rem;

  margin-bottom: 25px;

  line-height: 1.1;
}

.service-card p {
  color: var(--muted);

  line-height: 2;

  font-size: 14px;
}

/* RESPONSIVE */

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