:root {
  --bg: #f8fafc;
  --text: #020617;
  --muted: #475569;
  --line: #e2e8f0;
  --panel: #ffffff;
  --dark: #020617;
  --green: #16a34a;
  --blue: #0066cc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

main {
  min-height: 100vh;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px;
  border-bottom: 1px solid var(--line);
}

.hero__content {
  align-self: center;
}

.eyebrow,
.expand-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border: 1px solid var(--line);
  background: #f8fafc;
  padding: 9px 12px;
  color: #334155;
  font-size: 14px;
  font-weight: 650;
}

.eyebrow__icon {
  color: var(--text);
}

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

h1 {
  max-width: 760px;
  margin-top: 20px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero__text {
  max-width: 690px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 560px;
  margin-top: 34px;
}

.stat {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 18px;
  box-shadow: 0 1px 2px rgb(15 23 42 / 0.04);
}

.stat strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: #64748b;
  font-size: 14px;
}

.contact-card {
  align-self: center;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 24px;
  box-shadow: 0 18px 50px rgb(15 23 42 / 0.1);
}

.contact-card__photo {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  background: #e2e8f0;
}

.contact-card__body {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-card__body h2 {
  margin: 0;
}

.contact-card__body p:not(.section-kicker) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-list a {
  border: 1px solid #cbd5e1;
  padding: 10px 13px;
  color: #1e293b;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.contact-list a:hover {
  border-color: var(--text);
  color: var(--text);
}

.board {
  min-height: 340px;
  border: 1px solid #1e293b;
  background: var(--dark);
  padding: 22px;
  color: white;
  box-shadow: 0 24px 70px rgb(15 23 42 / 0.18);
}

.board__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgb(255 255 255 / 0.12);
  padding-bottom: 18px;
}

.board__header strong,
.board__header span {
  display: block;
}

.board__header strong {
  font-size: 15px;
}

.board__header span {
  margin-top: 4px;
  color: #94a3b8;
  font-size: 12px;
}

.board__items {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.board-card {
  border: 1px solid rgb(255 255 255 / 0.12);
  background: rgb(255 255 255 / 0.06);
  padding: 16px;
}

.board-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.board-card__identity {
  display: flex;
  align-items: center;
  gap: 12px;
}

.board-card__number {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 999px;
  color: white;
  font-weight: 800;
}

.board-card__name {
  font-weight: 700;
}

.board-card__label {
  margin-top: 3px;
  color: #94a3b8;
  font-size: 12px;
}

.board-card__bars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.board-card__bars span {
  height: 8px;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.2);
}

.projects-section,
.other-platforms,
.next-step {
  max-width: 1280px;
  margin: 0 auto;
  padding: 52px 24px;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.section-kicker {
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h2 {
  margin-top: 8px;
  font-size: 34px;
  line-height: 1.15;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.project-card {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 26px;
  box-shadow: 0 1px 2px rgb(15 23 42 / 0.04);
}

.project-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.project-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.project-card__dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
}

.status {
  border: 1px solid;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
}

.status--done {
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: #166534;
}

.status--in-progress {
  border-color: #fde68a;
  background: #fffbeb;
  color: #92400e;
}

.status--coming-next {
  border-color: var(--line);
  background: #f8fafc;
  color: #334155;
}

h3 {
  font-size: 26px;
  line-height: 1.2;
}

.tagline {
  margin-top: 8px;
  color: #64748b;
  font-size: 14px;
  font-weight: 650;
}

.open-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #cbd5e1;
  padding: 9px 12px;
  color: #1e293b;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.open-link:hover {
  border-color: var(--text);
  color: var(--text);
}

.summary {
  color: #334155;
  font-size: 16px;
  line-height: 1.75;
}

.project-card__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 26px;
}

.detail-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-weight: 800;
}

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

ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  display: flex;
  gap: 10px;
  color: #334155;
  font-size: 14px;
  line-height: 1.55;
}

li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--accent);
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
  border-top: 1px solid #f1f5f9;
  padding-top: 20px;
}

.tech-list span {
  border: 1px solid var(--line);
  background: #f8fafc;
  padding: 6px 10px;
  color: #334155;
  font-size: 12px;
  font-weight: 700;
}

.other-platforms {
  border: 1px solid #fde68a;
  background: #fef3c7;
  color: #78350f;
  margin-bottom: 52px;
  padding: 30px;
}

.other-platforms .section-kicker,
.other-platforms h2,
.other-platforms p {
  max-width: 760px;
}

.other-platforms p:last-child {
  margin-top: 16px;
  color: #92400e;
  font-size: 16px;
  line-height: 1.7;
}

.next-step {
  padding-top: 0;
}

.next-step {
  margin-bottom: 52px;
}

.next-step {
  background: transparent;
}

.next-step .section-kicker,
.next-step h2,
.next-step p {
  max-width: 760px;
}

.next-step {
  border: 1px solid #bbf7d0;
  background: #dcfce7;
  color: #14532d;
  padding: 30px;
}

.next-step p:last-child {
  margin-top: 16px;
  color: #166534;
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .hero,
  .project-grid,
  .project-card__details {
    grid-template-columns: 1fr;
  }

  .section-header {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .hero,
  .projects-section,
  .other-platforms,
  .next-step {
    padding-left: 16px;
    padding-right: 16px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .project-card__header {
    flex-direction: column;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }
}
