:root {
  --bg: #09070f;
  --bg-soft: #141022;
  --panel: rgba(18, 14, 33, 0.88);
  --panel-2: rgba(26, 20, 46, 0.95);
  --text: #f7f2ff;
  --muted: #b8acd0;
  --line: rgba(255, 255, 255, 0.1);
  --pink: #ff4fd8;
  --cyan: #61f4ff;
  --lime: #b6ff6a;
  --yellow: #ffe66d;
  --shadow: 0 0 0 2px rgba(255, 255, 255, 0.06), 0 18px 60px rgba(0, 0, 0, 0.45);
  --radius: 20px;
  --pixel-border: 4px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "VT323", monospace;
  background:
    radial-gradient(circle at top left, rgba(255, 79, 216, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(97, 244, 255, 0.11), transparent 25%),
    linear-gradient(180deg, #08060d 0%, #0b0814 50%, #07060b 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 4px 4px;
  mix-blend-mode: soft-light;
  z-index: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7, 6, 11, 0.7);
  border-bottom: 1px solid var(--line);
}

.navbar {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-tag {
  font-family: "Press Start 2P", cursive;
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--yellow);
  text-shadow:
    2px 2px 0 rgba(0, 0, 0, 0.6),
    0 0 18px rgba(255, 230, 109, 0.2);
}

.brand-tag {
  transition: all 0.25s ease;
}

.brand-tag:hover {
  color: var(--yellow);
  text-shadow:
    0 0 8px rgba(255, 230, 109, 0.6),
    0 0 16px rgba(255, 79, 216, 0.4),
    0 0 24px rgba(97, 244, 255, 0.25);
  transform: translateY(-1px);
}

.desktop-nav,
.mobile-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.desktop-nav a,
.mobile-nav-links a {
  font-family: "Press Start 2P", cursive;
  font-size: 0.62rem;
  padding: 0.95rem 1rem;
  border: 2px solid transparent;
  transition: 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.mobile-nav-links a:hover,
.mobile-nav-links a:focus-visible {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(97, 244, 255, 0.07);
}

.menu-toggle {
  display: none;
  width: 54px;
  height: 54px;
  border: 2px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  width: 24px;
  height: 3px;
  background: var(--text);
  display: block;
  transition: 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(10, 8, 18, 0.96);
}

.mobile-menu.open {
  display: block;
}

.mobile-nav-links {
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.mobile-nav-links a {
  display: block;
  padding: 1rem;
  border-radius: 12px;
}

.hero {
  padding: 5rem 0 3rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow,
.section-label {
  font-family: "Press Start 2P", cursive;
  font-size: 0.58rem;
  color: var(--cyan);
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: "Press Start 2P", cursive;
  font-size: clamp(1.8rem, 4.6vw, 4.5rem);
  line-height: 1.3;
}

.hero h1 {
  position: relative;
}

.hero h1:hover {
  animation: glitchText 0.35s steps(2, end) infinite;
}

@keyframes glitchText {
  0% {
    transform: translate(0);
    text-shadow:
      2px 0 var(--pink),
      -2px 0 var(--cyan);
  }

  25% {
    transform: translate(-2px, 1px);
    text-shadow:
      -2px 0 var(--lime),
      2px 0 var(--pink);
  }

  50% {
    transform: translate(2px, -1px);
    text-shadow:
      2px 0 var(--cyan),
      -2px 0 var(--yellow);
  }

  100% {
    transform: translate(0);
    text-shadow:
      2px 0 var(--pink),
      -2px 0 var(--cyan);
  }
}

.highlight {
  color: var(--pink);
  text-shadow: 0 0 18px rgba(255, 79, 216, 0.18);
}

.highlight.alt {
  color: var(--lime);
  text-shadow: 0 0 18px rgba(182, 255, 106, 0.16);
}

.hero-text,
.panel p,
.project-card p,
.connect-box p {
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
  line-height: 1.4;
  color: var(--muted);
  margin: 0;
}

.hero-cta,
.connect-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.25rem;
  border-radius: 16px;
  border: 2px solid var(--line);
  font-family: "Press Start 2P", cursive;
  font-size: 0.6rem;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(180deg, rgba(255, 79, 216, 0.24), rgba(255, 79, 216, 0.1));
  border-color: rgba(255, 79, 216, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
}

.status-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.status-pill,
.chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-family: "Press Start 2P", cursive;
  font-size: 0.52rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.chip.ghost {
  color: var(--cyan);
}

.hero-card {
  position: relative;
}

.window {
  background: var(--panel);
  border: 2px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.window-top {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.window-top p {
  margin: 0 0 0 0.5rem;
  color: var(--muted);
  font-size: 1.2rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot.pink { background: var(--pink); }
.dot.yellow { background: var(--yellow); }
.dot.green { background: var(--lime); }

.terminal {
  padding: 1.25rem;
  min-height: 320px;
}

.terminal p {
  margin: 0 0 0.8rem;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  color: #d7ffda;
}

.prompt {
  color: var(--lime);
  margin-right: 0.4rem;
}

.blink-line {
  animation: flicker 1s step-end infinite;
}

.pixel-orb {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 110px;
  height: 110px;
  background:
    linear-gradient(45deg, var(--cyan) 25%, transparent 25%),
    linear-gradient(-45deg, var(--pink) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--lime) 75%),
    linear-gradient(-45deg, transparent 75%, var(--yellow) 75%);
  background-size: 22px 22px;
  background-position: 0 0, 0 11px, 11px -11px, -11px 0;
  border: 4px solid rgba(255,255,255,0.12);
  image-rendering: pixelated;
  box-shadow: var(--shadow);
  border-radius: 18px;
}

.skills-strip {
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.skills-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

.skill-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1rem;
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    var(--panel-2);
  box-shadow: var(--shadow);
  font-family: "Press Start 2P", cursive;
  font-size: 0.55rem;
  line-height: 1.6;
  color: var(--yellow);
  text-align: center;
}

.skill-badge:nth-child(2n) {
  color: var(--cyan);
}

.skill-badge:nth-child(3n) {
  color: var(--pink);
}

.skill-badge:nth-child(4n) {
  color: var(--lime);
}

@media (max-width: 768px) {
  .skills-strip {
    padding: 1rem 0;
  }

  .skills-strip-inner {
    gap: 0.7rem;
    justify-content: flex-start;
  }

  .skill-badge {
    min-height: 44px;
    padding: 0.75rem 0.85rem;
    font-size: 0.48rem;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .skill-badge {
    width: 100%;
    justify-content: center;
    font-size: 0.46rem;
  }
}

.section {
  padding: 5rem 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.75rem;
}

.section-heading h2,
.connect-box h2,
.project-card h3,
.panel h3 {
  margin: 0 0 0.75rem;
}

.section-heading h2,
.connect-box h2 {
  font-family: "Press Start 2P", cursive;
  font-size: clamp(1.1rem, 3vw, 2rem);
  line-height: 1.5;
}

.about-grid,
.projects-grid {
  display: grid;
  gap: 1.2rem;
}

.about-grid {
  grid-template-columns: repeat(3, 1fr);
}

.projects-grid {
  grid-template-columns: 1.1fr 1fr 0.8fr;
}

.panel,
.project-card,
.connect-box {
  background: var(--panel-2);
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.panel,
.project-card {
  padding: 1.3rem;
}

.panel h3,
.project-card h3 {
  font-family: "Press Start 2P", cursive;
  font-size: 0.82rem;
  line-height: 1.5;
}

.card-top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.featured {
  background:
    linear-gradient(180deg, rgba(255, 79, 216, 0.08), transparent 50%),
    var(--panel-2);
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  font-family: "Press Start 2P", cursive;
  font-size: 0.58rem;
  color: var(--cyan);
}

.connect-box {
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.site-footer {
  padding: 0 0 2.5rem;
}

.site-footer p {
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  color: var(--muted);
  font-size: 1.2rem;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-35%);
  }
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

@media (max-width: 980px) {
  .hero,
  .about-grid,
  .projects-grid,
  .connect-box {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-card {
    max-width: 720px;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .navbar {
    min-height: 74px;
  }

  .hero {
    padding-top: 2.5rem;
    gap: 1.5rem;
  }

  .hero h1 {
    font-size: clamp(1.45rem, 8vw, 2.4rem);
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-heading h2,
  .connect-box h2 {
    line-height: 1.6;
  }

  .btn {
    width: 100%;
  }

  .connect-actions {
    width: 100%;
  }

  .connect-actions .btn {
    width: 100%;
  }

  .status-bar {
    gap: 0.55rem;
  }

  .status-pill,
  .chip {
    border-radius: 14px;
  }

  .window-top p {
    font-size: 1rem;
  }

  .terminal {
    min-height: 250px;
  }

  .pixel-orb {
    width: 84px;
    height: 84px;
    right: -10px;
    bottom: -10px;
  }

  .site-footer p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(calc(100% - 1rem), var(--max-width));
  }

  .brand-tag,
  .desktop-nav a,
  .mobile-nav-links a,
  .btn,
  .eyebrow,
  .section-label,
  .text-link,
  .chip,
  .status-pill,
  .marquee {
    letter-spacing: 0.02em;
  }

  .panel,
  .project-card,
  .connect-box {
    border-radius: 18px;
  }

  .hero-text,
  .panel p,
  .project-card p,
  .connect-box p,
  .terminal p {
    font-size: 1.2rem;
  }
}

.desktop-nav a.active {
  border-color: var(--pink);
  color: var(--pink);
  background: rgba(255, 79, 216, 0.08);
}

.desktop-nav a.active {
  border-color: var(--pink);
  color: var(--pink);
  background: rgba(255, 79, 216, 0.08);
}

.project-level-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.project-level-card {
  background: var(--panel-2);
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
}

.featured-level {
  background:
    linear-gradient(180deg, rgba(97, 244, 255, 0.08), transparent 50%),
    var(--panel-2);
}

.level-header {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.level-preview {
  height: 220px;
  border-radius: 18px;
  border: 2px solid rgba(255,255,255,0.08);
  margin-bottom: 1rem;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
    rgba(0, 0, 0, 0.2);
}

.level-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 10px 10px;
  pointer-events: none;
}

.pulse-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.preview-ui {
  width: 85%;
  max-width: 280px;
  background: rgba(14, 18, 30, 0.92);
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.preview-bar,
.preview-block,
.preview-grid span,
.tattoo-card,
.system-window,
.system-line,
.system-tags span {
  border-radius: 8px;
}

.preview-bar {
  height: 18px;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  margin-bottom: 0.8rem;
}

.preview-block {
  height: 14px;
  background: rgba(255,255,255,0.16);
  margin-bottom: 0.6rem;
}

.preview-block.short {
  width: 62%;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin-top: 1rem;
}

.preview-grid span {
  display: block;
  height: 62px;
  background: rgba(97, 244, 255, 0.18);
  border: 1px solid rgba(97, 244, 255, 0.24);
}

.inkd-preview {
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
}

.tattoo-card {
  background:
    linear-gradient(180deg, rgba(255, 79, 216, 0.2), rgba(97, 244, 255, 0.08)),
    rgba(22, 16, 33, 0.95);
  border: 2px solid rgba(255,255,255,0.08);
  min-height: 80px;
  position: relative;
}

.tattoo-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 2px dashed rgba(255,255,255,0.18);
  border-radius: 8px;
}

.tattoo-card.small {
  min-height: 60px;
}

.tattoo-card.wide {
  grid-column: 1 / -1;
  min-height: 78px;
}

.system-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.system-window {
  width: 88%;
  max-width: 290px;
  background: rgba(10, 14, 24, 0.95);
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1rem;
}

.system-line {
  height: 14px;
  background: rgba(255,255,255,0.14);
  margin-bottom: 0.7rem;
}

.system-line.short {
  width: 58%;
}

.system-tags {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.system-tags span {
  display: block;
  width: 56px;
  height: 34px;
  background: rgba(182, 255, 106, 0.18);
  border: 1px solid rgba(182, 255, 106, 0.22);
}

.project-level-card h3 {
  font-family: "Press Start 2P", cursive;
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0 0 0.75rem;
}

.project-level-card p {
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  line-height: 1.4;
  color: var(--muted);
  margin: 0;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
  margin-bottom: 1.1rem;
}

.project-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-family: "Press Start 2P", cursive;
  font-size: 0.48rem;
  background: rgba(255,255,255,0.03);
  color: var(--text);
}

.project-btn {
  margin-top: auto;
  width: 100%;
}

.stat-panel {
  min-height: 100%;
}

@media (max-width: 980px) {
  .project-level-grid {
    grid-template-columns: 1fr;
  }

  .level-preview {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .project-level-card {
    padding: 1rem;
  }

  .level-preview {
    height: 180px;
  }

  .project-meta span {
    font-size: 0.45rem;
  }
}

@media (max-width: 480px) {
  .level-preview {
    height: 160px;
    border-radius: 14px;
  }

  .preview-ui,
  .system-window {
    width: 100%;
  }
}

/* =========================
   CHUNKY PIXEL WINDOWS ARROW
   ========================= */

body {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48' shape-rendering='crispEdges'%3E%3Cpath d='M4 2 L4 36 L14 28 L20 44 L28 41 L22 26 L36 26 Z' fill='%23ffffff' stroke='%23000000' stroke-width='4'/%3E%3C/svg%3E") 4 2, auto;
}

/* clickable colour change */
a,
button,
.btn,
.menu-toggle,
.menu-item,
.roulette-card,
.project-card,
.gallery-card,
input[type='submit'] {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48' shape-rendering='crispEdges'%3E%3Cpath d='M4 2 L4 36 L14 28 L20 44 L28 41 L22 26 L36 26 Z' fill='%23ffe66d' stroke='%23000000' stroke-width='4'/%3E%3C/svg%3E") 4 2, pointer;
}

/* optional: pink when actively clicking */
a:active,
button:active,
.btn:active,
.menu-item:active,
.roulette-card:active,
.project-card:active,
.gallery-card:active {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48' shape-rendering='crispEdges'%3E%3Cpath d='M4 2 L4 36 L14 28 L20 44 L28 41 L22 26 L36 26 Z' fill='%23ff4fd8' stroke='%23000000' stroke-width='4'/%3E%3C/svg%3E") 4 2, pointer;
}

@media (hover: none) {
  body,
  a,
  button {
    cursor: auto;
  }
}

/* =========================
   CV DOWNLOAD SECTION
   ========================= */

.cv-section {
  padding: 3rem 0;
}

.cv-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;

  padding: 1.5rem;
  border-radius: 22px;
  border: 2px solid rgba(255,255,255,0.08);

  background:
    linear-gradient(180deg, rgba(255, 79, 216, 0.08), transparent 60%),
    rgba(26, 20, 46, 0.95);

  box-shadow: var(--shadow);
}

.cv-copy h2 {
  margin: 0.7rem 0;
  font-family: "Press Start 2P", cursive;
  font-size: clamp(0.9rem, 2vw, 1.3rem);
  line-height: 1.6;
}

.cv-copy p {
  margin: 0;
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  color: var(--muted);
  line-height: 1.4;
}

.cv-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
}

/* CV BUTTON */
.btn-cv {
  min-height: 64px;
  padding: 1rem 1.4rem;
  border-radius: 16px;

  font-family: "Press Start 2P", cursive;
  font-size: 0.6rem;

  border: 2px solid rgba(255, 230, 109, 0.5);
  background: linear-gradient(
    180deg,
    rgba(255, 230, 109, 0.18),
    rgba(255, 230, 109, 0.08)
  );

  color: var(--yellow);
  text-align: center;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cv:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 12px rgba(255, 230, 109, 0.35),
    0 10px 30px rgba(0,0,0,0.4);
}

/* STATUS TEXT */
.cv-status {
  font-size: 1.1rem;
  color: var(--muted);
}

/* SUCCESS STATE */
.cv-status.success {
  color: var(--lime);
}

/* MOBILE */
@media (max-width: 768px) {
  .cv-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .cv-actions {
    width: 100%;
    align-items: stretch;
  }

  .btn-cv {
    width: 100%;
  }
}