:root {
  color-scheme: light;
  --ink: #0f172a;
  --muted: #475569;
  --accent: #f97316;
  --accent-dark: #c2410c;
  --surface: #ffffff;
  --surface-alt: #f8fafc;
  --stroke: rgba(148, 163, 184, 0.45);
  --gradient: radial-gradient(circle at top, #fff1e6 0%, #f8fafc 50%, #eef2ff 100%);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Archivo", sans-serif;
  color: var(--ink);
  background: var(--gradient);
}

main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  padding: 36px 6vw 48px;
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.intro {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.intro-logo {
  width: min(520px, 80vw);
  height: auto;
}

.intro-card {
  max-width: 640px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 8px;
  padding: 20px 24px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  color: var(--muted);
  line-height: 1.7;
}

h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  margin: 0 0 16px;
}

.projects {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 0;
  padding-top: 20px;
}

.section-heading p {
  color: var(--muted);
  max-width: 560px;
  margin: 0;
}

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

.project-card {
  background: var(--surface);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
}

.project-media {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--stroke);
}

.project-media img {
  height: 90px;
  width: auto;
  max-width: 70%;
  object-fit: contain;
}

.project-media img.logo-large {
  height: 180px;
}

.project-body {
  padding: 20px 18px 24px;
}

.project-body h3 {
  margin-bottom: 10px;
}

.project-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--ink);
}

.project-link:hover {
  color: var(--accent-dark);
}

@media (max-width: 900px) {
}
