:root {
  --bg: #020617;
  --bg-alt: #020817;
  --card: #020617;
  --accent: #22c55e;
  --accent-strong: #22c55e;
  --accent-soft: rgba(34, 197, 94, 0.1);
  --accent-alt: #38bdf8;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --border: rgba(15, 23, 42, 0.9);
  --radius-lg: 18px;
  --radius-md: 10px;
  --shadow-soft: 0 25px 60px rgba(0, 0, 0, 0.75);
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

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

body {
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at top, rgba(34, 197, 94, 0.08), transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(56, 189, 248, 0.09), transparent 55%),
    #020617;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(
      rgba(15, 23, 42, 0.8) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(15, 23, 42, 0.9) 1px,
      transparent 1px
    );
  background-size: 80px 80px;
  opacity: 0.35;
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: -1;
}

/* Layout */

.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */

.site-header {
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
  background: radial-gradient(circle at top left, #020617, #020617f5);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0.5rem;
  gap: 1.5rem;
}

.brand {
  position: relative;
}

.brand-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: var(--muted);
  background: radial-gradient(circle at top left, #020617, #020617);
}

.brand-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent-strong);
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.8);
}

.name {
  font-size: 1.6rem;
  margin: 0;
  margin-top: 0.35rem;
}

.role {
  margin: 0.15rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.location {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.main-nav {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.main-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.main-nav a:hover {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(148, 163, 184, 0.6);
  color: var(--text);
}

/* Sections */

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), #020617);
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

.section h2 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.section h2::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-strong), var(--accent-alt));
  box-shadow:
    0 0 20px rgba(34, 197, 94, 0.7),
    0 0 14px rgba(56, 189, 248, 0.4);
}

/* Text */

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

/* Items (experience, etc.) */

.item {
  background: radial-gradient(circle at top left, #020617, #020617);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.95);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(34, 197, 94, 0.08),
    rgba(56, 189, 248, 0.04),
    transparent
  );
  opacity: 0.9;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.item h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}

.item-meta {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
  color: #a5b4fc;
}

.item-extra {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
}

/* Grid */

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

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

/* Tags */

.tag-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-list li {
  font-size: 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 1), #020617);
}

/* Button */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #4f46e5, #22c55e);
  color: #f9fafb;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.7);
}

.button:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  padding: 1.8rem 0 2.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

/* Links */

a {
  color: #38bdf8;
}

a:hover {
  color: #7dd3fc;
}

/* Hero */

.hero {
  padding: 3.75rem 0 2.75rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.9fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: stretch;
}

.hero-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.hero-title {
  font-size: 2.1rem;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.hero-highlight {
  color: var(--accent-strong);
  text-shadow:
    0 0 12px rgba(34, 197, 94, 0.8),
    0 0 28px rgba(34, 197, 94, 0.4);
}

.hero-text {
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.3rem;
  margin-top: 1.6rem;
}

.hero-inline-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-panel {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.9);
  background: radial-gradient(circle at top left, #020617, #020617);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  font-size: 0.85rem;
}

.hero-panel-header {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.9rem;
  background: linear-gradient(90deg, #020617, #020617);
  border-bottom: 1px solid rgba(15, 23, 42, 1);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.dot.red {
  background: #ef4444;
}

.dot.amber {
  background: #facc15;
}

.dot.green {
  background: #22c55e;
}

.hero-panel-title {
  margin-left: 0.4rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-panel-body {
  padding: 0.9rem 1rem 1rem;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.4rem 0;
  border-bottom: 1px dashed rgba(31, 41, 55, 0.7);
}

.metric-row:last-child {
  border-bottom: none;
}

.metric-label {
  font-family: "JetBrains Mono", Consolas, ui-monospace, SFMono-Regular,
    Menlo, Monaco, "Courier New", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(148, 163, 184, 0.9);
}

.metric-value {
  font-size: 0.82rem;
  color: #e5e7eb;
}

/* Responsive */

@media (max-width: 720px) {
  .header-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    justify-content: flex-start;
  }

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

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

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

  .hero {
    padding-top: 3rem;
  }

  .section {
    padding: 2.5rem 0;
  }
}

