:root {
  --bg: #0b0b0f;
  --bg-alt: #12121a;
  --text: #f2f3f7;
  --muted: #9ea2b0;
  --accent: #a3ffe4;
  --accent-2: #6272ff;
  --container-width: min(1080px, 92vw);
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at top right, rgba(98, 114, 255, 0.15), transparent 45%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--accent);
}

.container {
  width: var(--container-width);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(11, 11, 15, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-size: 0.95rem;
}

.primary-nav .cta {
  padding: 0.45rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  transition: all 0.2s ease;
}

.primary-nav .cta:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  padding: 7rem 0 5rem;
}

.hero .container {
  display: grid;
  gap: 4rem;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.hero-content .eyebrow,
.section-heading .eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--muted);
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 4vw + 1rem, 4rem);
  line-height: 1.1;
  margin: 1.5rem 0;
}

.lede {
  max-width: 36ch;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.75rem 1.75rem;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0b0b0f;
  box-shadow: 0 10px 30px rgba(163, 255, 228, 0.2);
}

.button.primary:hover {
  transform: translateY(-2px);
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.gradient-orb {
  width: clamp(260px, 40vw, 400px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(163, 255, 228, 0.8), rgba(98, 114, 255, 0.75), rgba(11, 11, 15, 0.5));
  filter: blur(0px);
  box-shadow: 0 0 120px rgba(98, 114, 255, 0.4);
}

.section {
  padding: 5rem 0;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  font-family: "Playfair Display", serif;
  margin: 0.75rem 0 0;
}

.work-grid,
.journal-grid {
  margin-top: 3rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.project-card,
.journal-card {
  padding: 2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.project-card:hover,
.journal-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.12);
}

.project-tag,
.journal-date {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--muted);
}

.project-card h3,
.journal-card h3 {
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.project-link,
.journal-link {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  margin-top: 1.5rem;
  font-weight: 500;
  color: var(--accent);
}

.about {
  background: linear-gradient(180deg, rgba(12, 12, 18, 0.6), rgba(12, 12, 18, 0.9));
}

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

.about-intro h2 {
  margin: 0.75rem 0 1rem;
  font-family: "Playfair Display", serif;
}

.about-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

.about-list li {
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.12);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4rem 0 3rem;
}

.site-footer .container {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: end;
}

.footer-cta h2 {
  margin: 0 0 1rem;
  font-family: "Playfair Display", serif;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--muted);
}

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

@media (max-width: 640px) {
  .primary-nav {
    display: none;
  }

  .hero {
    padding-top: 5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }
}
