:root {
  --bg: #0a0d14;
  --surface: #131a28;
  --surface-alt: #101624;
  --text: #eef3ff;
  --muted: #adb9d8;
  --primary: #5eead4;
  --primary-dark: #14b8a6;
  --stroke: #24314d;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Barlow", sans-serif;
  background: radial-gradient(circle at top right, #13203d 0%, var(--bg) 45%);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: start;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.85rem;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 4.6vw, 3.3rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

p {
  margin-top: 0;
}

.intro {
  max-width: 64ch;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.65rem 1rem;
  border-radius: 0.6rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 160ms ease;
}

.btn-primary {
  background: var(--primary);
  color: #04241f;
}

.btn-primary:hover {
  background: #7bf1df;
}

.btn-secondary {
  border-color: var(--stroke);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.hero-card {
  background: linear-gradient(160deg, var(--surface) 0%, #0c1320 100%);
  border: 1px solid var(--stroke);
  border-radius: 1rem;
  padding: 1.3rem 1.4rem;
  box-shadow: var(--shadow);
}

.hero-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.hero-card li {
  margin-bottom: 0.5rem;
  color: var(--muted);
}

.hero-card strong {
  color: var(--text);
}

.section {
  padding: 2.8rem 0;
}

.alt {
  background: linear-gradient(180deg, rgba(9, 13, 23, 0.45) 0%, rgba(16, 22, 36, 0.65) 100%);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.chips span {
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  background: var(--surface-alt);
  border: 1px solid var(--stroke);
  border-radius: 0.8rem;
  padding: 1rem 1rem 0.85rem;
}

.meta {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.timeline-item p:last-child {
  color: var(--muted);
  margin-bottom: 0;
}

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

.project-card {
  background: var(--surface-alt);
  border: 1px solid var(--stroke);
  border-radius: 0.8rem;
  padding: 1rem;
}

.project-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0.55rem;
  border: 1px solid var(--stroke);
  margin-bottom: 0.8rem;
}

.project-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.project-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}

.project-card a:hover {
  text-decoration: underline;
}

.plain-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.footer {
  border-top: 1px solid var(--stroke);
  padding: 1.3rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer p {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 0.85rem;
}

.footer-links a {
  color: var(--primary);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

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