/* =========================================================
   Ridham Pansara Portfolio Stylesheet
   Purpose: Dark cloud/DevOps portfolio UI with responsive
   layouts, reveal animations, interactive skill filters,
   tooltips, and polished card states.
========================================================= */

/* =========================================================
   01. Global Design Tokens
   - Centralized colors, layout width, and theme values.
========================================================= */
:root {
  --bg: #0d1117;
  --bg-panel: #131a23;
  --bg-panel-2: #0a0f15;
  --line: #1f2933;
  --text: #d7dee5;
  --text-dim: #7c8a99;
  --amber: #ff9d42;
  --teal: #4fd1c5;
  --red: #ff6b6b;
  --max: 1080px;
  --cursor-x: 50vw;
  --cursor-y: 22vh;
  --grid-shift-x: 0px;
  --grid-shift-y: 0px;
  --grid-react-opacity: 0;
}

/* =========================================================
   02. Reset and Base Page Styles
   - Removes default spacing and sets global typography.
========================================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Decorative fixed background grid. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(124, 138, 153, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 138, 153, 0.13) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.22;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.72) 44%,
    rgba(0, 0, 0, 0.26) 78%,
    transparent 100%
  );
}

/* Cursor-reactive grid overlay.
   Only a small area of the square grid reacts near the cursor and then
   gradually fades away into the normal background grid. */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(79, 209, 197, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 209, 197, 0.15) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: var(--grid-shift-x) var(--grid-shift-y);
  opacity: var(--grid-react-opacity);
  mask-image: radial-gradient(
    ellipse 170px 130px at var(--cursor-x) var(--cursor-y),
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.72) 34%,
    rgba(0, 0, 0, 0.34) 58%,
    rgba(0, 0, 0, 0.1) 76%,
    transparent 100%
  );
  transition: opacity 0.28s ease;
}

/* Monospace helper class for terminal-like text. */
.mono {
  font-family: 'JetBrains Mono', monospace;
}

a {
  color: inherit;
}

/* Main layout wrapper used across all sections. */
.wrap {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

/* =========================================================
   03. Global Reveal Animation
   - JavaScript adds .reveal-item to selected elements.
   - .is-visible is added when elements enter the viewport.
   - Used across the whole website, not only skills.
========================================================= */
.reveal-item {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    filter 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* =========================================================
   04. Navigation Bar
   - Sticky top bar with brand and section links.
========================================================= */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 17, 23, 0.85);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
}

/* Portfolio brand link in the title bar. */
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
}

/* Glowing dot beside brand name. */
.brand .dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--teal);
  animation: pulse 2s infinite;
}

/* Brand dot pulse animation. */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

/* Navigation links. */
.navlinks {
  display: flex;
  gap: 28px;
  color: var(--text-dim);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
}

.navlinks a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.navlinks a:hover {
  color: var(--amber);
}

.navlinks .num {
  margin-right: 4px;
  color: var(--text-dim);
  opacity: 0.5;
}

/* Hide full nav menu on smaller screens. */
@media (max-width: 720px) {
  .navlinks {
    display: none;
  }
}

/* =========================================================
   05. Hero Section
   - Main intro area with status, heading, buttons, terminal.
========================================================= */
/* Glowing status line above main heading. */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--teal);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  text-shadow: 0 0 10px rgba(79, 209, 197, 0.65);
  animation: statusGlow 2s infinite;
}

.eyebrow .bracket {
  color: var(--text-dim);
}

/* Status glow animation. */
@keyframes statusGlow {
  0%,
  100% {
    opacity: 1;
    text-shadow: 0 0 10px rgba(79, 209, 197, 0.65);
  }

  50% {
    opacity: 0.45;
    text-shadow: 0 0 3px rgba(79, 209, 197, 0.25);
  }
}

/* Main hero heading. */
h1 {
  margin-bottom: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(34px, 6vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1px;
}

h1 .accent {
  color: var(--amber);
}

/* Hero description paragraph. */
/* Button row below hero description. */
/* Shared button style. */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  text-decoration: none;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}

/* Primary CTA button. */
.btn-primary {
  color: #1a1206;
  background: var(--amber);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 157, 66, 0.25);
}

/* Secondary outline button. */
.btn-ghost {
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  color: var(--teal);
  border-color: var(--teal);
  transform: translateY(-2px);
}

/* =========================================================
   06. Terminal Component
   - Terminal-style hero console controlled by JavaScript.
========================================================= */
.console {
  overflow: hidden;
  background: var(--bg-panel-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Terminal top bar. */
.console-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: var(--bg-panel);
  border-bottom: 1px solid var(--line);
}

/* Terminal window control circles. */
.console-bar > span:not(.title) {
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.c1 {
  background: #ff5f56;
}

.c2 {
  background: #ffbd2e;
}

.c3 {
  background: #27c93f;
}

/* Terminal title. */
.console-bar .title {
  width: auto;
  height: auto;
  margin-left: 8px;
  color: var(--text-dim);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

/* Terminal output container. */
.console-body {
  min-height: 230px;
  overflow: hidden;
  padding: 20px 22px;
  color: #9fb0bf;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13.5px;
}

/* Terminal line entrance animation. */
.console-body .ln {
  margin-bottom: 7px;
  opacity: 0;
  transform: translateY(6px);
  animation: typeIn 0.35s forwards;
  white-space: pre-wrap;
}

/* Terminal text semantic colors. */
.console-body .prompt {
  color: var(--teal);
}

.console-body .path {
  color: var(--amber);
}

.console-body .warn {
  color: var(--amber);
  text-shadow: 0 0 10px rgba(255, 157, 66, 0.35);
}

.console-body .ok {
  color: var(--teal);
}

/* Terminal cursor. */
.cursor {
  display: inline-block;
  width: 7px;
  height: 1em;
  margin-left: 4px;
  background: var(--teal);
  vertical-align: -2px;
  animation: cursorBlink 0.9s steps(2, start) infinite;
}

/* Terminal line fade-up animation. */
@keyframes typeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Terminal cursor blink animation. */
@keyframes cursorBlink {
  0%,
  45% {
    opacity: 1;
  }

  46%,
  100% {
    opacity: 0;
  }
}

/* =========================================================
   07. Shared Section Layout
   - Common section spacing and section heading design.
========================================================= */
section {
  position: relative;
  padding: 70px 0;
  border-top: 1px solid var(--line);
}

/* Section heading row. */
.section-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 38px;
}

.section-num {
  color: var(--amber);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
}

.section-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.section-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* =========================================================
   08. About Section
   - Intro paragraphs and quick profile stat cards.
========================================================= */
.about-grid p {
  margin-bottom: 16px;
  color: var(--text-dim);
  text-align: justify;
}

.about-grid strong {
  color: var(--text);
}

/* Quick profile cards beside about text. */
/* About section mobile layout. */
@media (max-width: 760px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}



/* =========================================================
   09. Skills Section
   - Featured stack, filters, dashboard cards, skill rings,
   interactive tags, premium card design, and tooltips.
========================================================= */

/* Featured core stack strip. */
.featured-stack {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 16px 18px;
  background:
    linear-gradient(135deg, rgba(255, 157, 66, 0.1), rgba(79, 209, 197, 0.04)),
    var(--bg-panel);
  border: 1px solid rgba(255, 157, 66, 0.28);
  border-radius: 12px;
  box-shadow:
    0 0 22px rgba(255, 157, 66, 0.08),
    inset 0 0 20px rgba(255, 157, 66, 0.03);
}

.featured-stack:hover {
  border-color: rgba(255, 157, 66, 0.55);
  box-shadow:
    0 0 28px rgba(255, 157, 66, 0.16),
    inset 0 0 24px rgba(255, 157, 66, 0.04);
}

.featured-stack-icon {
  font-size: 18px;
  filter: drop-shadow(0 0 8px rgba(255, 157, 66, 0.45));
}

.featured-stack-title {
  color: var(--amber);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.featured-stack-item {
  color: var(--text);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 600;
}

.featured-stack-separator {
  color: var(--text-dim);
  opacity: 0.55;
}

/* Skill filter button row. */
.skill-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

/* Individual skill filter button. */
.skill-filter {
  padding: 8px 13px;
  color: var(--text-dim);
  background: var(--bg-panel-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.skill-filter:hover,
.skill-filter.active {
  color: var(--text);
  background: rgba(255, 157, 66, 0.1);
  border-color: rgba(255, 157, 66, 0.65);
  box-shadow: 0 0 16px rgba(255, 157, 66, 0.14);
  transform: translateY(-2px);
}

/* Prevent hover tooltips from being clipped inside skills. */
#skills .skills-grid,
#skills .skill-card,
#skills .tags {
  overflow: visible;
}

/* Dashboard grid for skill cards. */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  align-items: stretch;
  scroll-margin-top: 120px;
}

/* Base skill card. Reveal animation comes from .reveal-item. */
.skill-card {
  position: relative;
  grid-column: span 4;
  min-height: 185px;
  overflow: hidden;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 157, 66, 0.08), transparent 34%),
    linear-gradient(145deg, rgba(19, 26, 35, 0.98), rgba(10, 15, 21, 0.96));
  border: 1px solid rgba(124, 138, 153, 0.22);
  border-radius: 16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 14px 30px rgba(0, 0, 0, 0.18);
  scroll-margin-top: 120px;
}

/* Soft card shine line. */
.skill-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 157, 66, 0.45),
    transparent
  );
  opacity: 0.45;
}

/* Soft inner glow layer. */
.skill-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 157, 66, 0.08), transparent 26%),
    radial-gradient(circle at 10% 90%, rgba(79, 209, 197, 0.045), transparent 30%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

/* Wide dashboard card size. */
.skill-card.skill-card-wide {
  grid-column: span 6;
}

/* Featured dashboard card style. */
.skill-card.skill-card-featured {
  grid-column: span 6;
}

/* Dimmed state used by filter buttons. */
.skill-card.is-dimmed {
  opacity: 0.28;
  filter: grayscale(0.4);
}

/* Highlighted state used by selected filters. */
.skill-card.is-highlighted {
  border-color: rgba(255, 157, 66, 0.7);
  box-shadow:
    0 0 26px rgba(255, 157, 66, 0.16),
    0 18px 36px rgba(0, 0, 0, 0.28);
}

/* Card hover after global reveal is visible. */
.skill-card.reveal-item.is-visible:hover {
  border-color: rgba(255, 157, 66, 0.72);
  transform: translateY(-12px) scale(1.01);
  box-shadow:
    0 28px 52px rgba(0, 0, 0, 0.38),
    0 0 34px rgba(255, 157, 66, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Show inner glow on card hover. */
.skill-card.reveal-item.is-visible:hover::after {
  opacity: 1;
}

/* Header row inside each skill card. */
.skill-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

/* Skill category label. */
.skill-card .label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--amber);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Icon beside each skill category title. */
.skill-icon {
  font-size: 16px;
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(255, 157, 66, 0.28));
}

/* Percentage ring container. */
.skill-level {
  --level: 0;
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 43px;
  width: 43px;
  height: 43px;
  background:
    conic-gradient(
      var(--amber) calc(var(--level) * 1%),
      rgba(255, 157, 66, 0.12) 0
    );
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(255, 157, 66, 0.18);
}

/* Inner circle of percentage ring. */
.skill-level::before {
  content: "";
  position: absolute;
  inset: 5px;
  background: var(--bg-panel);
  border: 1px solid rgba(255, 157, 66, 0.14);
  border-radius: 50%;
}

/* Percentage text inside ring. */
.skill-level span {
  position: relative;
  z-index: 1;
  color: var(--text);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 800;
}

/* Tag/chip container. */
.tags {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

/* Skill-specific interactive tags. */
#skills .tag {
  position: relative;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  overflow: visible;
  padding: 6px 10px;
  color: var(--text-dim);
  background: rgba(10, 15, 21, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: default;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

/* Skill tag hover lift and glow. */
#skills .tag:hover {
  z-index: 50;
  color: var(--text);
  background: rgba(255, 157, 66, 0.12);
  border-color: rgba(255, 157, 66, 0.85);
  transform: translateY(-7px) scale(1.06);
  box-shadow:
    0 0 18px rgba(255, 157, 66, 0.28),
    0 12px 24px rgba(0, 0, 0, 0.34);
}

/* Tooltip text box shown from data-tooltip. */
#skills .tag::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  z-index: 100;
  width: max-content;
  max-width: 240px;
  padding: 8px 10px;
  color: var(--text);
  background: var(--bg-panel);
  border: 1px solid rgba(255, 157, 66, 0.45);
  border-radius: 8px;
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.4),
    0 0 18px rgba(255, 157, 66, 0.16);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 1.4;
  text-align: left;
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(6px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

/* Tooltip arrow. */
#skills .tag::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 4px);
  z-index: 101;
  width: 8px;
  height: 8px;
  background: var(--bg-panel);
  border-right: 1px solid rgba(255, 157, 66, 0.45);
  border-bottom: 1px solid rgba(255, 157, 66, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) rotate(45deg);
  transition: opacity 0.18s ease;
}

/* Tooltip visible state. */
#skills .tag:hover::after,
#skills .tag:hover::before {
  opacity: 1;
}

#skills .tag:hover::after {
  transform: translateX(-50%) translateY(0);
}

/* Hide tooltip shell when no data-tooltip exists. */
#skills .tag:not([data-tooltip])::before,
#skills .tag:not([data-tooltip])::after {
  display: none;
}


/* Currently learning card below skill cards. */
.learning-stack {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  margin-top: 24px;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 157, 66, 0.08), transparent 34%),
    linear-gradient(145deg, rgba(19, 26, 35, 0.98), rgba(10, 15, 21, 0.96));
  border: 1px solid rgba(124, 138, 153, 0.22);
  border-radius: 16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 14px 30px rgba(0, 0, 0, 0.18);
  scroll-margin-top: 120px;
}

/* Soft top shine line. */
.learning-stack::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 157, 66, 0.45),
    transparent
  );
  opacity: 0.45;
}

/* Soft inner glow layer. */
.learning-stack::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 157, 66, 0.08), transparent 26%),
    radial-gradient(circle at 10% 90%, rgba(79, 209, 197, 0.045), transparent 30%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

/* Same hover movement and lighting as skill cards. */
.learning-stack.reveal-item.is-visible:hover {
  border-color: rgba(255, 157, 66, 0.72);
  transform: translateY(-12px) scale(1.01);
  box-shadow:
    0 28px 52px rgba(0, 0, 0, 0.38),
    0 0 34px rgba(255, 157, 66, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.learning-stack.reveal-item.is-visible:hover::after {
  opacity: 1;
}

.learning-stack-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.learning-stack-icon {
  font-size: 22px;
  filter: drop-shadow(0 0 8px rgba(255, 157, 66, 0.35));
}

.learning-stack h3 {
  margin-bottom: 4px;
  color: var(--amber);
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.learning-stack p {
  color: var(--text-dim);
  font-size: 14px;
}

.learning-items {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.learning-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  color: var(--text-dim);
  background: rgba(10, 15, 21, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.learning-item:hover {
  color: var(--text);
  background: rgba(255, 157, 66, 0.12);
  border-color: rgba(255, 157, 66, 0.85);
  transform: translateY(-7px) scale(1.06);
  box-shadow:
    0 0 18px rgba(255, 157, 66, 0.28),
    0 12px 24px rgba(0, 0, 0, 0.34);
}




/* Skills tablet layout. */
@media (max-width: 1100px) {
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .skill-card,
  .skill-card.skill-card-wide,
  .skill-card.skill-card-featured {
    grid-column: span 1;
  }
}

/* Skills mobile layout. */
@media (max-width: 650px) {
  .skills-grid {
    grid-template-columns: 1fr;
  }

  .skill-card,
  .skill-card.skill-card-wide,
  .skill-card.skill-card-featured {
    grid-column: span 1;
    min-height: auto;
    padding: 20px;
  }

  .featured-stack {
    gap: 8px;
    padding: 14px;
  }

  .featured-stack-title,
  .featured-stack-item {
    font-size: 12px;
  }

  .featured-stack-separator {
    display: none;
  }

  .learning-stack {
    padding: 20px;
  }

  .learning-stack-head {
    flex-direction: column;
  }

  .learning-items {
    gap: 8px;
  }
}



/* =========================================================
   10. Projects Section
   - Project filters, premium cards, repo buttons, metrics,
   expandable details, architecture flow, and status pills.
========================================================= */
.project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.project-filter {
  padding: 8px 13px;
  color: var(--text-dim);
  background: var(--bg-panel-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.project-filter:hover,
.project-filter.active {
  color: var(--text);
  background: rgba(255, 157, 66, 0.1);
  border-color: rgba(255, 157, 66, 0.65);
  box-shadow: 0 0 16px rgba(255, 157, 66, 0.14);
  transform: translateY(-2px);
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  scroll-margin-top: 120px;
}

.project {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  padding: 20px 22px;
  background:
    radial-gradient(circle at top right, rgba(255, 157, 66, 0.08), transparent 34%),
    linear-gradient(145deg, rgba(19, 26, 35, 0.98), rgba(10, 15, 21, 0.96));
  border: 1px solid rgba(124, 138, 153, 0.22);
  border-radius: 16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 14px 30px rgba(0, 0, 0, 0.18);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.project::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 157, 66, 0.45),
    transparent
  );
  opacity: 0.45;
}

.project::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 157, 66, 0.08), transparent 26%),
    radial-gradient(circle at 10% 90%, rgba(79, 209, 197, 0.045), transparent 30%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.project.reveal-item.is-visible:hover {
  border-color: rgba(255, 157, 66, 0.72);
  transform: translateY(-10px) scale(1.005);
  box-shadow:
    0 28px 52px rgba(0, 0, 0, 0.38),
    0 0 34px rgba(255, 157, 66, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.project.reveal-item.is-visible:hover::after {
  opacity: 1;
}

.project.project-featured {
  border-color: rgba(255, 157, 66, 0.38);
  background:
    radial-gradient(circle at top right, rgba(255, 157, 66, 0.14), transparent 36%),
    linear-gradient(145deg, rgba(255, 157, 66, 0.08), rgba(79, 209, 197, 0.045)),
    var(--bg-panel);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 16px 34px rgba(0, 0, 0, 0.24),
    0 0 22px rgba(255, 157, 66, 0.06);
}

.project.is-hidden {
  display: none;
}

.project.is-dimmed {
  opacity: 0.28;
  filter: grayscale(0.4);
}

.project.is-highlighted {
  border-color: rgba(255, 157, 66, 0.7);
  box-shadow:
    0 0 26px rgba(255, 157, 66, 0.16),
    0 18px 36px rgba(0, 0, 0, 0.28);
}

.project-topline,
.project h3,
.project p,
.project-metrics,
.project .tags,
.project-actions,
.project-details {
  position: relative;
  z-index: 1;
}

.project-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  color: var(--amber);
  background: rgba(255, 157, 66, 0.1);
  border: 1px solid rgba(255, 157, 66, 0.32);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(255, 157, 66, 0.08);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.project .status {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  padding: 3px 9px;
  color: #27c93f;
  background: rgba(39, 201, 63, 0.08);
  border: 1px solid #1d3a26;
  border-radius: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
}

.project .status.local {
  color: var(--text-dim);
  background: rgba(124, 138, 153, 0.08);
  border: 1px solid var(--line);
}

.project h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  padding-right: 0;
  color: var(--amber);
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: 0.3px;
}

.project-icon {
  flex: 0 0 auto;
  font-size: 16px;
  filter: drop-shadow(0 0 8px rgba(255, 157, 66, 0.25));
}

.project p {
  margin-bottom: 12px;
  color: var(--text-dim);
  font-size: 13px;
}

.project-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 12px;
}

.project-metrics span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  color: var(--text);
  background: rgba(79, 209, 197, 0.06);
  border: 1px solid rgba(79, 209, 197, 0.2);
  border-radius: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
}

.project .tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 8px;
  color: var(--text-dim);
  background: rgba(10, 15, 21, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.project .tag:hover {
  color: var(--text);
  background: rgba(255, 157, 66, 0.12);
  border-color: rgba(255, 157, 66, 0.75);
  transform: translateY(-4px);
  box-shadow: 0 0 14px rgba(255, 157, 66, 0.16);
}

.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.project-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 10px;
  color: var(--text);
  background: rgba(255, 157, 66, 0.08);
  border: 1px solid rgba(255, 157, 66, 0.28);
  border-radius: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.project-link:hover {
  color: #1a1206;
  background: var(--amber);
  border-color: var(--amber);
  box-shadow: 0 12px 24px rgba(255, 157, 66, 0.18);
  transform: translateY(-3px);
}

.project-link-muted {
  color: var(--teal);
  background: rgba(79, 209, 197, 0.06);
  border-color: rgba(79, 209, 197, 0.22);
}

.project-link-disabled {
  color: var(--text-dim);
  background: rgba(124, 138, 153, 0.06);
  border-color: var(--line);
  cursor: not-allowed;
  opacity: 0.75;
}

.project-link-disabled:hover {
  color: var(--text-dim);
  background: rgba(124, 138, 153, 0.06);
  border-color: var(--line);
  box-shadow: none;
  transform: none;
}

.project-details {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(124, 138, 153, 0.18);
}

.project-details summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber);
  cursor: pointer;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
}

.project-details summary::marker {
  color: var(--amber);
}

.project-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.project-details-grid > div {
  padding: 11px;
  background: rgba(10, 15, 21, 0.62);
  border: 1px solid rgba(124, 138, 153, 0.16);
  border-radius: 10px;
}

.project-details h4 {
  margin-bottom: 5px;
  color: var(--teal);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.project-details p {
  margin-bottom: 0;
  font-size: 12px;
}

.architecture-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  padding: 10px;
  background: rgba(79, 209, 197, 0.045);
  border: 1px dashed rgba(79, 209, 197, 0.24);
  border-radius: 10px;
}

.architecture-flow span {
  color: var(--text);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
}

.architecture-flow span:nth-child(odd) {
  padding: 5px 8px;
  background: rgba(10, 15, 21, 0.76);
  border: 1px solid rgba(124, 138, 153, 0.2);
  border-radius: 7px;
}

@media (max-width: 820px) {
  .project-topline {
    flex-direction: column;
    align-items: flex-start;
  }

  .project .status {
    margin-left: 0;
  }

  .project-details-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .project {
    padding: 18px;
  }

  .project h3 {
    align-items: flex-start;
    font-size: 14px;
  }

  .project-link {
    width: 100%;
  }
}

/* =========================================================
   11. Timeline Section
   - Education timeline with vertical line and glowing dots.
========================================================= */
.timeline {
  position: relative;
  padding-left: 26px;
}

/* Timeline vertical line. */
.timeline::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 5px;
  width: 1px;
  background: var(--line);
}

/* Individual timeline item. */
/* Timeline dot. */
.tl-item::before {
  content: "";
  position: absolute;
  top: 5px;
  left: -26px;
  width: 9px;
  height: 9px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(79, 209, 197, 0.12);
}

.tl-date {
  margin-bottom: 4px;
  color: var(--amber);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
}

.tl-title {
  margin-bottom: 2px;
  font-weight: 600;
}

.tl-sub {
  color: var(--text-dim);
  font-size: 14px;
}


/* Education timeline hover polish. */
.tl-item {
  position: relative;
  margin-bottom: 26px;
  padding: 10px 12px;
  border-radius: 12px;
  transition:
    transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.tl-item.reveal-item.is-visible:hover {
  background: rgba(255, 157, 66, 0.035);
  transform: translateX(8px);
  box-shadow: 0 0 20px rgba(255, 157, 66, 0.06);
}

.tl-item.reveal-item.is-visible:hover::before {
  box-shadow:
    0 0 0 4px rgba(79, 209, 197, 0.16),
    0 0 18px rgba(79, 209, 197, 0.55);
}




/* =========================================================
   12. Certificates Section
   - Premium certificate cards with skill-card style hover.
========================================================= */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 30px;
}

/* Certificate card link. */
.cert {
  position: relative;
  display: block;
  min-height: 166px;
  overflow: hidden;
  padding: 20px 22px;
  background:
    radial-gradient(circle at top right, rgba(255, 157, 66, 0.08), transparent 34%),
    linear-gradient(145deg, rgba(19, 26, 35, 0.98), rgba(10, 15, 21, 0.96));
  border: 1px solid rgba(124, 138, 153, 0.22);
  border-radius: 16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 14px 30px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  scroll-margin-top: 120px;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

/* Soft shine line like skill cards. */
.cert::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 157, 66, 0.45),
    transparent
  );
  opacity: 0.45;
}

/* Inner glow layer like skill cards. */
.cert::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 157, 66, 0.08), transparent 26%),
    radial-gradient(circle at 10% 90%, rgba(79, 209, 197, 0.045), transparent 30%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

a.cert {
  cursor: pointer;
}

/* Same move-up and lighting animation as skill cards. */
.cert.reveal-item.is-visible:hover {
  border-color: rgba(255, 157, 66, 0.72);
  transform: translateY(-12px) scale(1.01);
  box-shadow:
    0 28px 52px rgba(0, 0, 0, 0.38),
    0 0 34px rgba(255, 157, 66, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cert.reveal-item.is-visible:hover::after {
  opacity: 1;
}

.cert .name,
.cert .meta,
.cert .view {
  position: relative;
  z-index: 1;
}

.cert .name {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.cert .meta {
  color: #8fa6bd;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  line-height: 1.55;
}

.cert .view {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  color: var(--amber);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
}

/* View link glow on card hover. */
.cert:hover .view {
  text-shadow: 0 0 12px rgba(255, 157, 66, 0.35);
}

/* Responsive certificate cards. */
@media (max-width: 650px) {
  .cert-grid {
    grid-template-columns: 1fr;
  }

  .cert {
    min-height: auto;
    padding: 18px;
  }
}

/* =========================================================
   13. Contact Section
   - Premium final CTA with recruiter-focused info cards,
   social links, and skill-card style motion/glow.
========================================================= */
.contact-box {
  position: relative;
  overflow: hidden;
  padding: 46px;
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(255, 157, 66, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(19, 26, 35, 0.98), rgba(10, 15, 21, 0.96));
  border: 1px solid rgba(124, 138, 153, 0.22);
  border-radius: 16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 14px 30px rgba(0, 0, 0, 0.18);
  scroll-margin-top: 120px;
}

/* Soft shine line like skill cards. */
.contact-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 157, 66, 0.45),
    transparent
  );
  opacity: 0.45;
}

/* Soft inner glow layer. */
.contact-box::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 157, 66, 0.1), transparent 26%),
    radial-gradient(circle at 10% 90%, rgba(79, 209, 197, 0.055), transparent 30%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.contact-box.reveal-item.is-visible:hover {
  border-color: rgba(255, 157, 66, 0.72);
  transform: translateY(-12px) scale(1.01);
  box-shadow:
    0 28px 52px rgba(0, 0, 0, 0.38),
    0 0 34px rgba(255, 157, 66, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.contact-box.reveal-item.is-visible:hover::after {
  opacity: 1;
}

.contact-box h2,
.contact-box p,
.contact-info-grid,
.contact-links {
  position: relative;
  z-index: 1;
}

.contact-box h2 {
  margin-bottom: 14px;
  color: var(--text);
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(24px, 4vw, 34px);
  letter-spacing: -0.4px;
}

.contact-box p {
  max-width: 760px;
  margin: 0 auto 28px;
  color: var(--text-dim);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 auto 28px;
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  min-height: 118px;
  padding: 18px 16px;
  background: rgba(10, 15, 21, 0.72);
  border: 1px solid rgba(124, 138, 153, 0.22);
  border-radius: 14px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.contact-info-card:hover {
  background: rgba(255, 157, 66, 0.08);
  border-color: rgba(255, 157, 66, 0.55);
  transform: translateY(-7px);
  box-shadow:
    0 0 20px rgba(255, 157, 66, 0.12),
    0 14px 28px rgba(0, 0, 0, 0.26);
}

.contact-info-icon {
  font-size: 22px;
  filter: drop-shadow(0 0 8px rgba(255, 157, 66, 0.3));
}

.contact-info-label {
  color: var(--teal);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.contact-info-card strong {
  color: var(--text);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contact-links .btn {
  flex: 0 1 auto;
  min-height: 42px;
  padding: 9px 14px;
  white-space: nowrap;
}

@media (max-width: 820px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .contact-box {
    padding: 30px 18px;
  }

  .contact-links {
    gap: 8px;
  }

  .contact-links .btn {
    width: auto;
    min-height: 38px;
    padding: 8px 10px;
    font-size: 11px;
    justify-content: center;
  }
}

/* =========================================================
   14. Footer
   - Small centered footer text.
========================================================= */
footer {
  padding: 30px 0;
  color: var(--text-dim);
  border-top: 1px solid var(--line);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-align: center;
}

/* =========================================================
   15. Accessibility and User Motion Preferences
   - Disables motion-heavy transitions for users who prefer it.
========================================================= */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal-item,
  .skill-card,
  .terminal-showcase,
  .contact-box,
  .contact-info-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .skill-card.reveal-item.is-visible:hover,
  .terminal-showcase.reveal-item.is-visible:hover,
  .contact-box.reveal-item.is-visible:hover,
  .contact-info-card:hover,
  #skills .tag:hover,
  .skill-filter:hover,
  .skill-filter.active,
  .btn-primary:hover,
  .btn-ghost:hover,
  a.cert:hover {
    transform: none;
  }

  #skills .tag,
  .skill-filter,
  .contact-info-card,
  .btn,
  .cert {
    transition: none;
  }
}

/* =========================================================
   16. Text Selection
   - Branded selection color.
========================================================= */
::selection {
  background: var(--amber);
  color: #1a1206;
}


/* =========================================================
   17. Hero and About Premium Upgrade
   - Adds recruiter-focused hero dashboard, interactive
   terminal controls, tech chips, and skill-card style about.
========================================================= */
.cloud-dashboard,
.about-card,
.stat-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 157, 66, 0.08), transparent 34%),
    linear-gradient(145deg, rgba(19, 26, 35, 0.98), rgba(10, 15, 21, 0.96));
  border: 1px solid rgba(124, 138, 153, 0.22);
  border-radius: 16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 14px 30px rgba(0, 0, 0, 0.18);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.cloud-dashboard::before,
.about-card::before,
.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 157, 66, 0.45),
    transparent
  );
  opacity: 0.45;
}

.cloud-dashboard::after,
.about-card::after,
.stat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 157, 66, 0.08), transparent 26%),
    radial-gradient(circle at 10% 90%, rgba(79, 209, 197, 0.045), transparent 30%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.cloud-dashboard {
  padding: 24px;
}

.cloud-dashboard > *,
.about-card > *,
.stat-card > * {
  position: relative;
  z-index: 1;
}

.dashboard-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.dashboard-kicker,
.terminal-kicker {
  color: var(--teal);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.dashboard-live {
  color: #27c93f;
  background: rgba(39, 201, 63, 0.08);
  border: 1px solid #1d3a26;
  border-radius: 999px;
  padding: 3px 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
}

.dashboard-title {
  margin-bottom: 14px;
  color: var(--amber);
  font-family: 'JetBrains Mono', monospace;
  font-size: 17px;
  font-weight: 800;
}

.dashboard-flow,
.dashboard-stack {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.dashboard-flow {
  margin-bottom: 18px;
  padding: 12px;
  background: rgba(79, 209, 197, 0.045);
  border: 1px dashed rgba(79, 209, 197, 0.24);
  border-radius: 12px;
}

.dashboard-flow span,
.dashboard-stack span {
  color: var(--text);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
}

.dashboard-flow span:nth-child(odd),
.dashboard-stack span {
  padding: 6px 9px;
  background: rgba(10, 15, 21, 0.76);
  border: 1px solid rgba(124, 138, 153, 0.2);
  border-radius: 8px;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.dashboard-metrics div {
  padding: 13px 10px;
  background: rgba(10, 15, 21, 0.62);
  border: 1px solid rgba(124, 138, 153, 0.16);
  border-radius: 12px;
}

.metric-value,
.metric-label {
  display: block;
}

.metric-value {
  color: var(--amber);
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  font-weight: 800;
}

.metric-label {
  margin-top: 3px;
  color: var(--text-dim);
  font-size: 11px;
  line-height: 1.4;
}

.cloud-dashboard.reveal-item.is-visible:hover,
.about-card.reveal-item.is-visible:hover,
.stat-card.reveal-item.is-visible:hover {
  border-color: rgba(255, 157, 66, 0.72);
  transform: translateY(-12px) scale(1.01);
  box-shadow:
    0 28px 52px rgba(0, 0, 0, 0.38),
    0 0 34px rgba(255, 157, 66, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cloud-dashboard.reveal-item.is-visible:hover::after,
.about-card.reveal-item.is-visible:hover::after,
.stat-card.reveal-item.is-visible:hover::after {
  opacity: 1;
}

.terminal-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  overflow: hidden;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 157, 66, 0.08), transparent 34%),
    linear-gradient(145deg, rgba(19, 26, 35, 0.98), rgba(10, 15, 21, 0.96));
  border: 1px solid rgba(124, 138, 153, 0.22);
  border-radius: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 18px 44px rgba(0, 0, 0, 0.24);
}

.terminal-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 157, 66, 0.45),
    transparent
  );
  opacity: 0.45;
}

.terminal-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 157, 66, 0.08), transparent 26%),
    radial-gradient(circle at 10% 90%, rgba(79, 209, 197, 0.045), transparent 30%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.terminal-showcase.reveal-item.is-visible:hover {
  border-color: rgba(255, 157, 66, 0.72);
  transform: translateY(-10px) scale(1.005);
  box-shadow:
    0 28px 52px rgba(0, 0, 0, 0.38),
    0 0 34px rgba(255, 157, 66, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.terminal-showcase.reveal-item.is-visible:hover::after {
  opacity: 1;
}

.terminal-showcase > * {
  position: relative;
  z-index: 1;
}

.terminal-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.terminal-copy strong {
  display: block;
  color: var(--text);
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.35;
}

.terminal-showcase .console {
  grid-column: 1 / -1;
  border-color: rgba(79, 209, 197, 0.18);
  border-radius: 16px;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.42),
    0 0 28px rgba(79, 209, 197, 0.045);
}

.terminal-showcase .console-bar {
  padding: 12px 16px;
}

.terminal-showcase .console-body {
  min-height: 250px;
  max-height: 310px;
  overflow-y: auto;
  padding: 22px 24px;
  scrollbar-width: thin;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 24px;
  align-items: stretch;
}

.about-card {
  padding: 26px;
}

.about-card p {
  margin-bottom: 16px;
  color: var(--text-dim);
  text-align: justify;
}

.about-stats {
  display: grid;
  gap: 14px;
}

.stat-card {
  margin-bottom: 0;
  padding: 18px 20px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.stat-card .k {
  color: var(--teal);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 800;
  letter-spacing: 0.8px;
}

.stat-card .k span {
  filter: drop-shadow(0 0 8px rgba(255, 157, 66, 0.3));
}

.stat-card .v {
  margin-top: 7px;
  font-size: 13px;
  color: var(--text);
  font-family: "JetBrains Mono", monospace;
}

@media (max-width: 980px) {
  .hero-grid,
  .terminal-showcase,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .cloud-dashboard {
    max-width: 100%;
  }

  .terminal-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 650px) {
  header.hero {
    padding: 64px 0 48px;
  }

  .hero-grid {
    gap: 28px;
  }

  .dashboard-metrics {
    grid-template-columns: 1fr;
  }

  .terminal-showcase {
    padding: 18px;
  }

  .terminal-showcase .console {
    border-radius: 12px;
  }

  .terminal-showcase .console-body {
    min-height: 260px;
    font-size: 12px;
  }

  .terminal-control {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
  }

  .about-card {
    padding: 20px;
  }
}

/* Removed Hero/About tags from latest design cleanup. */
.hero-stack,
.hero-proof-row,
.about-badge,
.about-highlights {
  display: none;
}





/* =========================================================
   Hero Layout Fix
   - Removes dashboard layout pressure.
   - Places terminal beside the name/headline.
   - Keeps intro and buttons below like the earlier version.
========================================================= */

/* Hide removed tag sections safely if HTML still contains them. */
.hero-stack,
.hero-proof-row,
.cloud-dashboard,
.about-badge,
.about-highlights {
  display: none;
}

/* Terminal card beside hero heading. */
/* Tablet layout: terminal goes below heading and becomes full width. */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-terminal-card {
    max-width: 100%;
  }

  .terminal-actions {
    justify-content: flex-start;
    max-width: none;
  }

  .hero-sub {
    max-width: 100%;
  }
}

/* Mobile layout. */
@media (max-width: 650px) {
  header.hero {
    padding: 62px 0 48px;
  }

  .hero-terminal-card {
    padding: 16px;
  }

  .terminal-top {
    flex-direction: column;
  }

  .terminal-actions {
    width: 100%;
  }

  .terminal-control {
    flex: 1 1 calc(50% - 7px);
    text-align: center;
  }

  .hero-terminal-card .console-body {
    min-height: 250px;
    max-height: 300px;
    font-size: 12px;
  }
}


/* =========================================================
   18. Final Hero Terminal Position Fix
   - Terminal now appears below intro/buttons and above About.
   - Cloud dashboard and side-terminal layout are disabled.
========================================================= */

/* Hero is now a clean vertical intro instead of side-by-side grid. */
.hero-grid {
  display: block;
  grid-template-columns: minmax(0, 1.1fr) minmax(430px, 0.9fr);
  gap: 36px;
  align-items: center;
  margin-bottom: 0;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--teal);
  animation: pulse 2s infinite;
}

/* Keep removed sections hidden if old HTML is still cached or present. */
.hero-stack,
.hero-proof-row,
.cloud-dashboard,
.terminal-showcase,
.about-badge,
.about-highlights {
  display: none;
}

/* Terminal appears as a full-width card below hero buttons. */
.hero-terminal-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 22px;
  background:
    radial-gradient(circle at top right, rgba(255, 157, 66, 0.08), transparent 34%),
        linear-gradient(145deg, rgba(19, 26, 35, 0.98), rgba(10, 15, 21, 0.96));
  border: 1px solid rgba(124, 138, 153, 0.22);
  border-radius: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 18px 44px rgba(0, 0, 0, 0.24);
  transition:
    transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
  width: 100%;
  max-width: 100%;
  margin-top: 0;
}

.hero-terminal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 1px;
  background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255, 157, 66, 0.45),
        transparent
      );
  opacity: 0.45;
}

.hero-terminal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 157, 66, 0.08), transparent 26%),
        radial-gradient(circle at 10% 90%, rgba(79, 209, 197, 0.045), transparent 30%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.hero-terminal-card.reveal-item.is-visible:hover {
  border-color: rgba(255, 157, 66, 0.72);
  transform: translateY(-10px) scale(1.005);
  box-shadow:
    0 28px 52px rgba(0, 0, 0, 0.38),
        0 0 34px rgba(255, 157, 66, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-terminal-card.reveal-item.is-visible:hover::after {
  opacity: 1;
}

.hero-terminal-card > * {
  position: relative;
  z-index: 1;
}

.terminal-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.terminal-kicker {
  display: block;
  margin-bottom: 5px;
  color: var(--teal);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.terminal-top strong {
  display: block;
  color: var(--text);
  font-family: "JetBrains Mono", monospace;
  font-size: 20px;
  line-height: 1.25;
}

.terminal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: none;
}

.terminal-control {
  padding: 7px 11px;
  color: var(--text-dim);
  background: rgba(10, 15, 21, 0.86);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  transition:
    color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
  white-space: nowrap;
}

.terminal-control:hover,
.terminal-control.active {
  color: var(--text);
  background: rgba(255, 157, 66, 0.1);
  border-color: rgba(255, 157, 66, 0.65);
  box-shadow: 0 0 16px rgba(255, 157, 66, 0.14);
  transform: translateY(-2px);
}

.hero-terminal-card .console {
  border-color: rgba(79, 209, 197, 0.18);
  border-radius: 14px;
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.35),
        0 0 24px rgba(79, 209, 197, 0.04);
}

.hero-terminal-card .console-bar {
  padding: 11px 14px;
}

.hero-terminal-card .console-body {
  min-height: 245px;
  max-height: 320px;
  overflow-y: auto;
  padding: 20px 21px;
  font-size: 13px;
  scrollbar-width: thin;
}

.console-body::-webkit-scrollbar {
  width: 7px;
}

.console-body::-webkit-scrollbar-thumb {
  background: rgba(124, 138, 153, 0.32);
  border-radius: 999px;
}

@media (max-width: 980px) {
  .hero-copy,
  .hero h1,
  .hero-sub {
    max-width: 100%;
  }

  .terminal-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 650px) {
  header.hero {
    padding: 62px 0 48px;
  }

  .hero-terminal-card {
    padding: 16px;
  }

  .terminal-top {
    flex-direction: column;
  }

  .terminal-actions {
    width: 100%;
  }

  .terminal-control {
    flex: 1 1 calc(50% - 8px);
    text-align: center;
  }

  .hero-terminal-card .console-body {
    min-height: 250px;
    max-height: 300px;
    font-size: 12px;
  }
}



/* =========================================================
   Hero Typography Polish
   - Better heading scale, spacing, and intro readability.
========================================================= */

header.hero {
  position: relative;
  padding: 72px 0 58px;
}

.hero-copy {
  min-width: 0;
  max-width: 860px;
}

.hero h1 {
  margin-bottom: 24px;
  font-size: clamp(42px, 5vw, 66px);
  max-width: 820px;
  line-height: 1.04;
  letter-spacing: -2px;
}

.hero h1 .accent {
  color: var(--amber);
  text-shadow: 0 0 18px rgba(255, 157, 66, 0.12);
}

.hero-sub {
  max-width: 760px;
  margin-bottom: 30px;
  color: #9aa7b5;
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 1.75;
}

/* Better spacing between status, heading, intro, and buttons. */
.hero-status-pill {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  background: rgba(79, 209, 197, 0.06);
  border: 1px solid rgba(79, 209, 197, 0.24);
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(79, 209, 197, 0.08);
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: var(--teal);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  text-shadow: 0 0 10px rgba(79, 209, 197, 0.45);
}

/* Tablet size. */
@media (max-width: 980px) {
  header.hero {
    padding: 64px 0 52px;
  }

  .hero h1 {
    max-width: 720px;
    font-size: clamp(40px, 7vw, 58px);
    letter-spacing: -1.5px;
  }

  .hero-sub {
    max-width: 680px;
    font-size: 16px;
  }
}

/* Mobile size. */
@media (max-width: 650px) {
  header.hero {
    padding: 54px 0 44px;
  }

  .hero h1 {
    font-size: clamp(34px, 11vw, 46px);
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .hero-sub {
    font-size: 15px;
    line-height: 1.7;
  }
}


/* =========================================================
   19. Terminal Spacing Polish
   - Adds balanced space above the terminal after hero buttons.
   - Keeps the terminal separated from the intro and CTAs.
========================================================= */

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 42px;
  margin-top: 0;
}

.hero-actions + .hero-terminal-card {
  margin-top: 0;
}

@media (max-width: 650px) {
  .hero-actions {
    margin-bottom: 34px;
  }

  .hero-actions + .hero-terminal-card {
    margin-top: 0;
  }
}


/* =========================================================
   20. Mobile Navigation and Mobile Polish
   - Adds a compact menu button on phones.
   - Improves spacing, card sizing, and touch layouts.
========================================================= */

.mobile-menu-toggle {
  display: none;
  position: relative;
  z-index: 80;
  width: 40px;
  height: 38px;
  flex: 0 0 auto;
  padding: 0;
  background: rgba(10, 15, 21, 0.9);
  border: 1px solid rgba(124, 138, 153, 0.35);
  border-radius: 12px;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.mobile-menu-toggle span {
  position: absolute;
  top: 50%;
  left: 10px;
  right: 10px;
  display: block;
  width: auto;
  height: 2px;
  margin: 0;
  background: var(--text);
  border-radius: 999px;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease,
    background 0.22s ease;
}

.mobile-menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.mobile-menu-toggle span:nth-child(2) {
  transform: translateY(0);
}

.mobile-menu-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle.is-open {
  background: rgba(255, 157, 66, 0.1);
  border-color: rgba(255, 157, 66, 0.65);
  box-shadow: 0 0 18px rgba(255, 157, 66, 0.12);
}

.mobile-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
  background: var(--amber);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
  background: var(--amber);
}

@media (max-width: 720px) {
  nav .wrap {
    position: relative;
    padding: 12px 20px;
  }

  .brand {
    font-size: 13px;
  }

  .mobile-menu-toggle {
    display: inline-block;
  }

  .navlinks {
    position: absolute;
    top: calc(100% + 8px);
    left: auto;
    right: 20px;
    width: min(52vw, 240px);
    min-width: 190px;
    max-width: calc(100vw - 40px);
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    background:
      radial-gradient(circle at top right, rgba(255, 157, 66, 0.12), transparent 35%),
      rgba(10, 15, 21, 0.98);
    border: 1px solid rgba(255, 157, 66, 0.22);
    border-radius: 14px;
    box-shadow:
      0 22px 48px rgba(0, 0, 0, 0.42),
      0 0 22px rgba(255, 157, 66, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transition:
      opacity 0.22s ease,
      transform 0.22s ease;
  }

  .navlinks.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .navlinks a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 36px;
    padding: 7px 10px;
    background: rgba(19, 26, 35, 0.72);
    border: 1px solid rgba(124, 138, 153, 0.18);
    border-radius: 10px;
    color: var(--text);
    line-height: 1.2;
  }

  .navlinks a::after {
    content: "→";
    color: var(--amber);
    opacity: 0.78;
  }

  .navlinks a:hover {
    background: rgba(255, 157, 66, 0.09);
    border-color: rgba(255, 157, 66, 0.45);
  }

  body.nav-open {
    overflow-x: hidden;
  }
}

@media (max-width: 650px) {
  .wrap {
    padding: 0 18px;
  }

  section {
    padding: 54px 0;
  }

  .section-head {
    gap: 10px;
    margin-bottom: 26px;
  }

  .section-title {
    font-size: 19px;
  }

  .section-line {
    min-width: 34px;
  }

  .hero-status-pill {
    max-width: 100%;
    padding: 7px 11px;
    font-size: 10.5px;
    line-height: 1.4;
  }

  .hero h1 {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: clamp(31px, 10vw, 42px);
    letter-spacing: -0.8px;
  }

  .hero-sub {
    margin-bottom: 24px;
    font-size: 14.5px;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 28px;
  }

  .btn {
    justify-content: center;
    width: 100%;
    min-height: 46px;
    padding: 11px 14px;
    font-size: 12px;
  }

  .contact-links .btn {
    flex: 0 1 auto;
    width: auto;
    max-width: 100%;
    min-height: 38px;
    padding: 8px 10px;
    font-size: 11px;
    white-space: nowrap;
  }

  .hero-terminal-card,
  .about-card,
  .stat-card,
  .skill-card,
  .learning-stack,
  .project,
  .cert,
  .contact-box {
    border-radius: 14px;
  }

  .hero-terminal-card {
    padding: 14px;
  }

  .terminal-top {
    gap: 12px;
    margin-bottom: 14px;
  }

  .terminal-top strong {
    font-size: 17px;
  }

  .terminal-actions {
    gap: 7px;
  }

  .terminal-control {
    flex: 1 1 calc(50% - 7px);
    padding: 8px 9px;
  }

  .console-bar .title {
    overflow: hidden;
    max-width: 180px;
    text-overflow: ellipsis;
  }

  .hero-terminal-card .console-body,
  .console-body {
    min-height: 220px;
    max-height: 275px;
    padding: 16px;
    font-size: 11.7px;
    line-height: 1.55;
  }

  .about-card,
  .skill-card,
  .learning-stack,
  .project,
  .cert {
    padding: 18px;
  }

  .about-card p,
  .about-grid p,
  .project p,
  .contact-box p {
    text-align: left;
    font-size: 13.5px;
    line-height: 1.7;
  }

  .stat-card {
    padding: 16px;
  }

  .featured-stack,
  .skill-filters,
  .project-filters {
    gap: 8px;
  }

  .skill-filter,
  .project-filter {
    min-height: 38px;
    padding: 8px 10px;
    text-align: center;
  }

  .skill-filter {
    flex: 0 1 auto;
    min-height: 34px;
    padding: 7px 10px;
    font-size: 11px;
    line-height: 1;
  }

  .project-filter {
    flex: 1 1 auto;
  }

  .skill-top {
    align-items: flex-start;
    margin-bottom: 18px;
  }

  .skill-level {
    flex-basis: 39px;
    width: 39px;
    height: 39px;
  }

  #skills .tag,
  .project .tag,
  .learning-item,
  .project-metrics span {
    font-size: 11px;
  }

  #skills .tag::before,
  #skills .tag::after {
    display: none;
  }

  .project-topline {
    gap: 7px;
  }

  .project .status,
  .featured-badge {
    margin-left: 0;
    font-size: 10px;
  }

  .project-metrics {
    gap: 6px;
  }

  .project-details summary {
    width: 100%;
    padding: 9px 0;
  }

  .architecture-flow {
    gap: 6px;
    padding: 9px;
  }

  .architecture-flow span {
    font-size: 10px;
  }

  .timeline {
    padding-left: 20px;
  }

  .tl-item {
    margin-bottom: 18px;
    padding: 10px;
  }

  .tl-item::before {
    left: -20px;
  }

  .contact-box {
    padding: 26px 16px;
  }

  .contact-info-card {
    min-height: auto;
    padding: 16px 14px;
  }

  footer .wrap {
    line-height: 1.7;
  }
}

@media (max-width: 420px) {
  .wrap {
    padding: 0 14px;
  }

  nav .wrap {
    padding: 11px 14px;
  }

  .navlinks {
    right: 14px;
    left: auto;
    width: min(56vw, 220px);
    min-width: 178px;
    max-width: calc(100vw - 28px);
  }

  .brand {
    letter-spacing: 0.2px;
  }

  .hero h1 {
    font-size: clamp(29px, 11vw, 38px);
  }

  .hero-sub {
    font-size: 14px;
  }

  .console-bar {
    padding: 10px 11px;
  }

  .console-bar > span:not(.title) {
    flex-basis: 8px;
    width: 8px;
    height: 8px;
  }

  .terminal-control {
    font-size: 10.5px;
  }
}
