:root {
  --bg: #040605;
  --panel: rgba(8, 12, 10, 0.68);
  --panel-strong: rgba(8, 10, 9, 0.82);
  --line: rgba(101, 255, 171, 0.52);
  --line-soft: rgba(101, 255, 171, 0.22);
  --text: #f4fff8;
  --muted: rgba(228, 255, 238, 0.78);
  --green: #61ff9d;
  --green-bright: #a4ffc7;
  --dark: #07110b;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
  --radius: 28px;
  --radius-small: 18px;
  --display: "Archivo Black", Impact, sans-serif;
  --body: "Manrope", Arial, sans-serif;
  --mono: "IBM Plex Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(67, 255, 143, 0.12), transparent 24%),
    linear-gradient(180deg, #020302 0%, #07110a 48%, #030504 100%);
  font-family: var(--body);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 14%, transparent 86%, rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 110px);
  opacity: 0.5;
  z-index: 5;
}

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

a,
button {
  color: inherit;
}

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

::selection {
  background: rgba(97, 255, 157, 0.35);
  color: #001107;
}

.page-shell {
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 2vw, 2rem);
  background: rgba(4, 7, 5, 0.86);
  border-bottom: 1px solid rgba(101, 255, 171, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.brand,
.site-footer__brand {
  font-family: var(--display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.brand {
  font-size: 1.8rem;
  color: var(--green-bright);
  text-shadow: 0 0 18px rgba(97, 255, 157, 0.5);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.site-nav a,
.eyebrow,
.section-tag,
.panel__topline,
.metric-list span,
.job-meta,
.mini-card__label,
.profile-range,
.comparison__title,
.ticker__track span {
  font-family: var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
}

.header-actions,
.cta-row,
.job-actions,
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.cta {
  position: relative;
  overflow: hidden;
  padding: 0.9rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.cta::after {
  content: attr(data-hover);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transform: translateY(120%);
  transition: transform 180ms ease;
  background: rgba(97, 255, 157, 0.12);
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(97, 255, 157, 0.28);
  border-color: rgba(164, 255, 199, 0.9);
}

.cta:hover::after,
.cta:focus-visible::after {
  transform: translateY(0);
}

.cta--primary {
  background: rgba(97, 255, 157, 0.12);
}

.cta--ghost,
.chip--dark {
  background: rgba(4, 7, 5, 0.7);
}

.floating-notifications {
  position: fixed;
  right: 1rem;
  bottom: 5.5rem;
  z-index: 18;
  display: grid;
  gap: 0.8rem;
  pointer-events: none;
}

.toast {
  width: min(320px, calc(100vw - 2rem));
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(12, 16, 13, 0.8);
  box-shadow: var(--shadow);
  font-size: 0.95rem;
  transform: translateX(0);
  transition: transform 400ms ease, opacity 400ms ease;
}

.toast.is-shifted {
  transform: translateX(16px);
}

main {
  padding-bottom: 4.5rem;
}

.scene {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: clamp(1rem, 2vw, 1.5rem);
}

.scene__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.scene__inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  gap: 1.4rem;
  width: min(1400px, 100%);
  padding: clamp(1rem, 2vw, 1.6rem);
}

.section-heading {
  max-width: 50rem;
}

.section-heading h1,
.section-heading h2,
.panel h2,
.panel h3 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.95;
}

.section-heading h1 {
  font-size: clamp(4rem, 14vw, 8.4rem);
  text-shadow: 0 0 28px rgba(97, 255, 157, 0.45);
}

.section-heading h2 {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
}

.eyebrow,
.section-tag,
.panel__topline,
.job-meta,
.profile-range,
.mini-card__label {
  color: var(--green-bright);
}

.section-tag {
  margin-top: 0.6rem;
  font-size: 0.8rem;
}

.content-grid,
.jobs-grid,
.resume-grid,
.review-grid,
.future-grid,
.eom-grid {
  display: grid;
  gap: 1.2rem;
}

.content-grid--hero,
.future-grid {
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.8fr);
}

.jobs-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.resume-grid,
.review-grid,
.eom-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(17, 22, 18, 0.74), rgba(7, 11, 9, 0.82)),
    rgba(9, 14, 11, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.panel::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid var(--line-soft);
  border-radius: calc(var(--radius) - 10px);
  pointer-events: none;
}

.panel--copy,
.panel--status,
.panel--profile,
.panel--kpi,
.panel--award {
  padding: clamp(1.2rem, 2vw, 1.8rem);
}

.panel--job {
  padding: 1.15rem;
}

.panel__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
  font-size: 0.74rem;
}

.quote-line,
.quote-answer,
.big-quote {
  font-family: var(--display);
  text-transform: uppercase;
}

.quote-line {
  margin: 0 0 0.35rem;
  font-size: clamp(1.2rem, 3vw, 2rem);
}

.quote-answer {
  margin: 0 0 1rem;
  color: var(--green);
  font-size: clamp(1.6rem, 4vw, 3rem);
}

.panel p,
.panel li {
  line-height: 1.7;
}

.metric-list,
.resume-points,
.rank-list,
.praise-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.metric-list {
  display: grid;
  gap: 0.85rem;
}

.metric-list li,
.rank-list li,
.award-stats div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.metric-list strong,
.rank-list strong,
.award-stats strong {
  color: var(--green-bright);
}

.mini-card {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-small);
  background: rgba(19, 22, 20, 0.72);
}

.badge,
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge {
  border: 1px solid rgba(164, 255, 199, 0.5);
  background: rgba(97, 255, 157, 0.15);
}

.badge--verified::before {
  content: "✓";
  margin-right: 0.35rem;
}

.badge--pulse {
  animation: pulse 1.6s infinite;
}

.job-task {
  margin: 0.4rem 0 0.2rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.job-pay {
  margin: 0 0 0.7rem;
  color: var(--muted);
}

.chip {
  border: 1px solid var(--line);
  background: rgba(97, 255, 157, 0.1);
}

.profile-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.profile-role {
  margin: 0;
  color: var(--green-bright);
  font-family: var(--mono);
  text-transform: uppercase;
}

.resume-points {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.resume-points li::before,
.praise-list li::before {
  content: ">";
  margin-right: 0.5rem;
  color: var(--green);
}

.skill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.skill-cloud span {
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(101, 255, 171, 0.28);
  border-radius: 999px;
  background: rgba(8, 11, 9, 0.76);
}

.progress-stack {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.progress-stack span,
.bar {
  display: block;
}

.bar {
  margin-top: 0.45rem;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.bar span {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #3ef08b, #aaffc8);
  box-shadow: 0 0 18px rgba(97, 255, 157, 0.45);
  animation: fill-bar 1.8s ease forwards;
  animation-delay: 0.2s;
}

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

.big-quote {
  margin: 1.4rem 0 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--green-bright);
}

.award-stats {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.praise-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.cta-row--section {
  justify-content: flex-start;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem clamp(1rem, 2vw, 2rem) 6rem;
  background: #040605;
  border-top: 1px solid rgba(101, 255, 171, 0.14);
}

.site-footer__brand {
  margin: 0 0 0.25rem;
  font-size: 1.5rem;
  color: var(--green-bright);
}

.site-footer p {
  margin: 0;
}

.site-footer__links a {
  color: var(--muted);
  text-decoration: none;
}

.ticker {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 22;
  overflow: hidden;
  border-top: 1px solid rgba(101, 255, 171, 0.28);
  background: rgba(2, 4, 3, 0.94);
}

.ticker__track {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding: 0.85rem 0;
  animation: ticker 22s linear infinite;
}

.ticker__track span {
  font-size: 0.78rem;
  color: var(--green-bright);
  white-space: nowrap;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 rgba(97, 255, 157, 0.1); }
  50% { box-shadow: 0 0 22px rgba(97, 255, 157, 0.32); }
}

@keyframes fill-bar {
  to { width: var(--fill); }
}

@media (max-width: 1080px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: center;
  }

  .content-grid--hero,
  .future-grid,
  .jobs-grid,
  .resume-grid,
  .review-grid,
  .eom-grid,
  .comparison {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding-bottom: 1.1rem;
  }

  .scene {
    min-height: auto;
    padding: 0.75rem;
  }

  .scene__inner {
    padding: 0.75rem;
  }

  .section-heading h1 {
    font-size: clamp(3.2rem, 20vw, 4.8rem);
  }

  .section-heading h2 {
    font-size: clamp(2.1rem, 11vw, 3.4rem);
  }

  .profile-head,
  .panel__topline,
  .metric-list li,
  .rank-list li,
  .award-stats div,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-notifications {
    right: 0.75rem;
    left: 0.75rem;
  }

  .toast {
    width: auto;
  }
}
