:root {
  --ink: #0A0F1C;
  --ink-2: #0F1729;
  --ink-3: #141F38;
  --paper: #EAEDF4;
  --brass: #C9A24B;
  --brass-soft: #E7CD8E;
  --pass: #74D9AE;
  --slate: #8B93A9;
  --slate-dim: #5B6478;
  --violet: #8B7CF0;
  --coral: #FF6B9D;
  --cyan: #00C2A8;
  --line: rgba(234, 237, 244, 0.09);
  --line-strong: rgba(234, 237, 244, 0.16);
  --glass: rgba(20, 31, 56, 0.55);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--paper);
  font-family: 'Inter', sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

::selection {
  background: var(--brass);
  color: var(--ink);
}

h1,
h2,
h3 {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.mono {
  font-family: 'IBM Plex Mono', monospace;
}

/* ---------- loader ---------- */
#loader {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  transition: opacity .5s ease, visibility .5s ease;
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--paper);
}

.loader-mark span {
  color: var(--brass);
}

.loader-bar {
  width: 160px;
  height: 2px;
  background: var(--line-strong);
  overflow: hidden;
  border-radius: 2px;
}

.loader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brass), var(--coral));
  transition: width .3s ease;
}

/* ---------- backgrounds ---------- */
#bgCanvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

#blobField {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.16;
  will-change: transform;
}

.blob-1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, var(--violet), transparent 70%);
  top: -100px;
  left: -60px;
}

.blob-2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, var(--coral), transparent 70%);
  top: 35%;
  right: -120px;
}

.blob-3 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, var(--cyan), transparent 70%);
  bottom: -80px;
  left: 25%;
}

#pageContent {
  position: relative;
  z-index: 1;
}

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

section.wrap {
  padding: 48px 40px;
}

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

  section.wrap {
    padding: 32px 22px;
  }
}

#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brass), var(--coral));
  width: 0%;
  z-index: 250;
  transition: width .08s linear;
}

/* glass utility */
.glass {
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
}

/* ---------- nav ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 15, 28, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 800;
  font-size: 18px;
}

.logo span {
  color: var(--brass);
}

.navlinks {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--slate);
}

.navlinks a {
  position: relative;
  padding: 4px 0;
  transition: color .2s;
}

.navlinks a:hover,
.navlinks a.active {
  color: var(--paper);
}

.navlinks a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: var(--brass);
  transition: width .25s ease;
}

.navlinks a:hover::after,
.navlinks a.active::after {
  width: 100%;
}

.navcta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  border: 1px solid var(--line-strong);
  padding: 9px 16px;
  border-radius: 100px;
  transition: border-color .2s, background .2s, transform .2s;
}

.navcta:hover {
  border-color: var(--brass);
  background: rgba(201, 162, 75, 0.08);
  transform: translateY(-1px);
}

@media (max-width:820px) {
  .navlinks {
    display: none;
  }
}

/* ---------- buttons: magnetic + bracket-hover ---------- */
.btn {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  border: 1px solid transparent;
  border-radius: 100px;
  transition: background .2s, border-color .2s, box-shadow .2s;
}

.btn-primary {
  background: var(--brass);
  color: var(--ink);
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--brass-soft);
  box-shadow: 0 14px 30px -10px rgba(201, 162, 75, 0.4);
}

.btn-ghost {
  border-color: var(--line-strong);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover {
  border-color: var(--brass);
  color: var(--brass-soft);
}

.bracket {
  opacity: 0;
  transition: opacity .2s ease, transform .2s ease;
}

.bracket-l {
  transform: translateX(5px);
}

.bracket-r {
  transform: translateX(-5px);
}

.btn:hover .bracket {
  opacity: 0.8;
  transform: translateX(0);
}

/* ---------- hero — futuristic AI engineering presentation ---------- */
section.hero {
  padding: 60px 0 40px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: center;
}

@media (max-width:900px) {
  section.hero {
    grid-template-columns: 1fr;
    padding: 36px 0 24px;
    gap: 32px;
  }
}

/* Futuristic Live AI Beacon Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 10px;
  background: rgba(18, 28, 50, 0.7);
  border: 1px solid rgba(201, 162, 75, 0.35);
  border-radius: 100px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 0 12px rgba(201, 162, 75, 0.06);
  margin-bottom: 20px;
}

.pulse-beacon {
  position: relative;
  width: 10px;
  height: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.beacon-dot {
  width: 6px;
  height: 6px;
  background: #00C2A8;
  border-radius: 50%;
  box-shadow: 0 0 8px #00C2A8;
}

.beacon-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid #00C2A8;
  animation: beaconPulse 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

@keyframes beaconPulse {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

.badge-text {
  color: var(--paper);
  font-weight: 600;
}

.badge-tag {
  font-size: 9.5px;
  color: var(--brass-soft);
  background: rgba(201, 162, 75, 0.14);
  border: 1px solid rgba(201, 162, 75, 0.3);
  padding: 2px 7px;
  border-radius: 100px;
  font-weight: 700;
}

/* Futuristic Headline */
.futuristic-headline {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.1;
  margin: 0 0 22px;
  max-width: 620px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-line {
  display: block;
}

.hero-line-1 {
  color: var(--paper);
}

.hero-subtext {
  display: inline-block;
}

.ai-highlight {
  display: inline-block;
  background: linear-gradient(135deg, #00C2A8 0%, #74D9AE 50%, #C9A24B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 12px rgba(0, 194, 168, 0.4));
  position: relative;
  padding: 0 4px;
  animation: aiPulseGlow 3s ease-in-out infinite alternate;
}

@keyframes aiPulseGlow {
  0% {
    filter: drop-shadow(0 0 8px rgba(0, 194, 168, 0.3));
    transform: scale(1);
  }

  100% {
    filter: drop-shadow(0 0 18px rgba(201, 162, 75, 0.65));
    transform: scale(1.02);
  }
}

.hero-line-2 {
  margin-top: 6px;
}

.hero-line-2 em {
  font-style: normal;
  display: inline-block;
  background: linear-gradient(90deg,
      #E7CD8E 0%,
      #C9A24B 25%,
      #00C2A8 50%,
      #FF6B9D 75%,
      #E7CD8E 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: chromaticWave 7s linear infinite;
  filter: drop-shadow(0 0 18px rgba(201, 162, 75, 0.3));
}

@keyframes chromaticWave {
  0% {
    background-position: 0% 0;
  }

  100% {
    background-position: 300% 0;
  }
}

.hero p.lede {
  color: var(--slate);
  font-size: 16px;
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 28px;
}

.hero p.lede strong {
  color: var(--paper);
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Futuristic HUD Terminal Console */
.console {
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.75), 0 0 30px rgba(201, 162, 75, 0.08);
}

.console-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(16, 26, 48, 0.85);
}

.console-controls {
  display: flex;
  align-items: center;
  gap: 7px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--slate-dim);
}

.console-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--brass-soft);
  letter-spacing: 0.02em;
}

.console-hud-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  color: var(--slate-dim);
}

.hud-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.hud-live-dot {
  width: 5px;
  height: 5px;
  background: #27C93F;
  border-radius: 50%;
  box-shadow: 0 0 6px #27C93F;
}

.hud-latency {
  color: var(--pass);
  background: rgba(39, 201, 63, 0.1);
  padding: 1px 6px;
  border-radius: 4px;
}

.console-body {
  padding: 22px 20px 24px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  min-height: 220px;
}

.console-line {
  display: flex;
  gap: 10px;
  opacity: 0;
  align-items: flex-start;
  padding: 5px 0;
  color: var(--slate);
}

.console-line .mark {
  width: 14px;
  flex-shrink: 0;
  color: var(--slate-dim);
}

.console-line.passed {
  color: var(--paper);
}

.console-line.passed .mark {
  color: var(--pass);
}

.console-summary {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--pass);
  opacity: 0;
  font-size: 12.5px;
}

.cursor-blink {
  display: inline-block;
  width: 7px;
  height: 13px;
  background: var(--brass);
  margin-left: 2px;
  animation: blink 1s steps(1) infinite;
  vertical-align: middle;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}/* ---------- INTERACTIVE HIGHLIGHTS MATRIX / STATUSBAR ---------- */
.statusbar-section {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 16px 0 20px 0;
  position: relative;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(20, 29, 48, 0.25) 0%, transparent 100%);
}

.statusbar-matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: 100%;
}

@media (max-width: 1024px) {
  .statusbar-matrix {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 580px) {
  .statusbar-matrix {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* 3D Flip Card Container */
.stat-flipper {
  perspective: 1200px;
  min-height: 128px;
  height: 128px;
  cursor: pointer;
  outline: none;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

.stat-flipper:focus-visible {
  border-radius: 12px;
  outline: 2px solid var(--brass);
  outline-offset: 2px;
}

.stat-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 128px;
  text-align: left;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-style: preserve-3d;
  border-radius: 12px;
}

/* Hover and active flipped states */
.stat-flipper:hover .stat-card-inner,
.stat-flipper.is-flipped .stat-card-inner,
.stat-flipper:focus-visible .stat-card-inner {
  transform: rotateY(180deg);
}

/* Unified Luxury Obsidian Glass Card Face */
.stat-card-face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 12px;
  padding: 13px 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(16, 24, 40, 0.72) 0%, rgba(9, 14, 26, 0.90) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 8px 24px -4px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

/* Unified Subtle Luxury Hover on all cards */
.stat-flipper:hover .stat-card-face,
.stat-flipper.is-flipped .stat-card-face {
  border-color: rgba(201, 162, 75, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 12px 32px -4px rgba(0, 0, 0, 0.5), 0 0 22px -4px rgba(201, 162, 75, 0.12);
}

/* Front Face */
.stat-front {
  z-index: 2;
  transform: rotateY(0deg);
}

/* Back Face */
.stat-back {
  transform: rotateY(180deg);
  z-index: 1;
  background: linear-gradient(180deg, rgba(18, 27, 46, 0.92) 0%, rgba(8, 13, 25, 0.97) 100%);
  padding: 12px 14px;
}

/* FRONT CARD STRUCTURE */
.stat-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 2px;
}

.stat-badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #94A3B8;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  display: inline-block;
  background: var(--brass);
  box-shadow: 0 0 6px var(--brass);
}

.stat-flip-hint {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: #94A3B8;
  background: rgba(255, 255, 255, 0.04);
  padding: 2px 7px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.stat-flipper:hover .stat-flip-hint {
  color: #F1F5F9;
  border-color: rgba(255, 255, 255, 0.2);
}

.flip-icon {
  font-size: 10.5px;
  transition: transform 0.4s ease;
}

.stat-flipper:hover .flip-icon {
  transform: rotate(180deg);
}

.stat-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  margin-top: 2px;
}

/* Clean, unified, crisp luminescent white numbers */
.stat-main .num {
  font-family: 'Instrument Sans', sans-serif;
  font-size: clamp(30px, 2.6vw, 36px);
  font-weight: 800;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
  letter-spacing: -0.03em;
  color: #F8FAFC;
}

.stat-main .accent-plus {
  font-size: 22px;
  font-weight: 700;
  color: var(--brass-soft);
  opacity: 0.95;
}

.stat-main .unit {
  font-size: clamp(15px, 1.3vw, 19px);
  font-weight: 700;
  color: #E2E8F0;
  letter-spacing: -0.01em;
  opacity: 0.9;
}

.stat-main .degree-num {
  font-size: clamp(30px, 2.6vw, 36px);
  letter-spacing: -0.03em;
  color: #F8FAFC;
}

.stat-main .label {
  font-size: 11.5px;
  color: #8B93A9;
  margin-top: 4px;
  font-family: 'IBM Plex Mono', monospace;
  line-height: 1.3;
}

/* BACK CARD STRUCTURE */
.stat-back-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 5px;
  margin-bottom: 4px;
}

.stat-back-title {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #F1F5F9;
}

.stat-back-icon {
  font-size: 12px;
}

.stat-back-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  font-weight: 600;
  color: #CBD5E1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1px 6px;
  border-radius: 4px;
}

.live-pulse-badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  color: #34D399;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.25);
  padding: 1px 6px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.live-pulse-badge .live-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 5px #34D399;
  animation: liveDotPulse 1.4s infinite ease-in-out;
}

@keyframes liveDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.stat-status-pill.completed-pill {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  color: var(--pass);
  background: rgba(116, 217, 174, 0.15);
  border: 1px solid rgba(116, 217, 174, 0.3);
  padding: 1px 5px;
  border-radius: 4px;
}

.stat-status-pill.in-progress-pill {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  color: #FBBF24;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.25);
  padding: 1.5px 6px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.edu-year-badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  font-weight: 600;
  color: #CBD5E1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1px 6px;
  border-radius: 4px;
}

/* LIVE COGNIZANT TENURE BOX */
.stat-live-calc-box {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 5px;
  margin-top: 1px;
  white-space: nowrap;
}

.live-calc-value {
  font-family: 'Instrument Sans', sans-serif;
  font-size: clamp(12.5px, 1.1vw, 14px);
  font-weight: 800;
  color: #F8FAFC;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.live-tenure-clock {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9.5px;
  font-weight: 600;
  color: #38BDF8;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.stat-exp-mid {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #CBD5E1;
  opacity: 0.95;
  line-height: 1.25;
  margin: auto 0;
}

.stat-back-caption {
  font-size: 9px;
  color: #8B93A9;
  font-family: 'IBM Plex Mono', monospace;
  margin-top: auto;
  opacity: 0.9;
  line-height: 1.3;
}

/* AI TOOLS ARSENAL 2x3 GRID */
.ai-tools-grid-2x3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5px;
  margin: 3px 0;
}

.ai-tools-grid-2x3 .ai-tool-pill {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8.5px;
  font-weight: 600;
  padding: 2.5px 3px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #F1F5F9;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.ai-tools-grid-2x3 .ai-tool-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

/* PROJECTS LIST ON BACK */
.projects-list-back {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 3px 0;
}

.project-mini-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10.5px;
  gap: 6px;
}

.proj-index {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  color: var(--brass-soft);
}

.proj-name {
  font-weight: 600;
  color: #F1F5F9;
  flex: 1;
  font-size: 10.5px;
}

.proj-badge-live {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.25);
  color: #34D399;
  text-transform: uppercase;
}

/* EDUCATION BACK DETAILS */
.edu-college-name {
  font-family: 'Instrument Sans', sans-serif;
  font-size: clamp(13.5px, 1.15vw, 15px);
  font-weight: 800;
  color: #F8FAFC;
  line-height: 1.15;
  letter-spacing: -0.025em;
  white-space: nowrap;
  margin-top: 1px;
}

.edu-college-mid {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #CBD5E1;
  opacity: 0.95;
  line-height: 1.25;
  margin: auto 0;
}

section {
  padding: 0;
}

@media (max-width:720px) {
  section {
    padding: 0;
  }
}

.section-head {
  margin-bottom: 28px;
  max-width: 620px;
}

.section-head h2 {
  font-size: clamp(25px, 3.3vw, 34px);
}

.section-head p {
  color: var(--slate);
  margin-top: 8px;
  font-size: 15px;
}

.reveal {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(28px) scale(0.985);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1), filter .7s cubic-bezier(.16, 1, .3, 1);
  will-change: transform, opacity, filter;
}

.reveal.reveal-up {
  transform: translateY(-28px) scale(0.985);
}

.reveal.in {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

/* 3D perspective + spotlight glow card */
.glow-card {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), border-color .3s ease, box-shadow .35s ease;
  will-change: transform;
}

.glow-card:hover {
  box-shadow: 0 20px 45px -15px rgba(0, 0, 0, 0.75), 0 0 24px rgba(201, 162, 75, 0.08);
}

.glow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
  background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 50%), rgba(201, 162, 75, 0.16), transparent 70%);
}

.glow-card:hover::before {
  opacity: 1;
}

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

/* ---------- Section Titles — Interactive Spotlight Torch Glow ---------- */
.section-head h2,
.contact-card h2 {
  position: relative;
  font-size: clamp(25px, 3.3vw, 34px);
  line-height: 1.25;
  color: var(--paper);
  background: radial-gradient(220px circle at var(--hx, -1000px) var(--hy, -1000px),
      #FFFFFF 0%,
      #F0DFAC 25%,
      #C9A24B 50%,
      #00C2A8 75%,
      transparent 100%),
    linear-gradient(180deg, #FFFFFF 0%, #A0AEC0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  cursor: default;
  transition: filter 0.3s ease;
  will-change: background;
}

.section-head:hover h2,
.contact-card:hover h2 {
  filter: drop-shadow(0 0 16px rgba(201, 162, 75, 0.35));
}

/* ---------- about bento ---------- */
.bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
}

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

.bento .glow-card {
  padding: 34px;
}

.bento p {
  color: var(--slate);
  font-size: 15px;
  margin-bottom: 14px;
}

.bento strong {
  color: var(--paper);
  font-weight: 500;
}

/* ---------- skills mosaic ---------- */
.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(136px, auto);
  gap: 16px;
}

@media (max-width:820px) {
  .mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
}

.mosaic .glow-card {
  padding: 16px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 12px;
  min-height: 136px;
}

.mosaic .big {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 288px;
  background: linear-gradient(135deg, rgba(201, 162, 75, 0.08) 0%, rgba(139, 124, 240, 0.05) 100%);
  padding: 24px;
}

.mosaic h3,
.mosaic h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94A3B8;
  margin-bottom: 8px;
}

.mosaic .chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin-top: auto;
}

.mosaic .chip {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  padding: 3.5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.035);
  color: #E2E8F0;
  border-radius: 6px;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .15s ease;
  line-height: 1.35;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.mosaic .chip:hover {
  border-color: rgba(201, 162, 75, 0.45);
  background: rgba(201, 162, 75, 0.08);
  color: #F8FAFC;
  transform: translateY(-1px);
}

/* ---------- projects gallery ---------- */
.gallery {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 8px 4px 18px;
  scroll-snap-type: x mandatory;
  -webkit-mask-image: linear-gradient(to right, black 88%, transparent 100%);
  mask-image: linear-gradient(to right, black 88%, transparent 100%);
}

.gallery::-webkit-scrollbar {
  height: 6px;
}

.gallery::-webkit-scrollbar-thumb {
  background: var(--line-strong);
  border-radius: 10px;
}

.proj-card {
  scroll-snap-align: start;
  flex: 0 0 310px;
  padding: 28px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: transform .25s ease;
}

.proj-card:hover {
  transform: translateY(-5px);
}

.proj-card.pending {
  cursor: default;
  border-style: dashed;
}

.proj-card.pending:hover {
  transform: none;
}

.proj-card .mono {
  font-size: 11px;
  color: var(--brass);
}

.proj-card h3 {
  font-size: 17px;
  margin: 12px 0 8px;
}

.proj-card p {
  color: var(--slate);
  font-size: 13.5px;
}

.proj-card .tag-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.proj-status-row {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.proj-badge-live-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  color: #34D399;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.2);
  padding: 2px 7px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.04em;
}

.proj-badge-dev-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  color: #FBBF24;
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.2);
  padding: 2px 7px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.04em;
}

.proj-card .tag.tag-highlight {
  color: #FBBF24;
  border-color: rgba(251, 191, 36, 0.25);
  background: rgba(251, 191, 36, 0.06);
}

.proj-card .tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  padding: 3px 9px;
  border: 1px solid var(--line-strong);
  color: var(--slate);
  border-radius: 100px;
}

.proj-card .open-hint {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  color: var(--slate);
  margin-top: 10px;
  opacity: 0;
  transition: opacity .2s;
}

.proj-card:not(.pending):hover .open-hint {
  opacity: 1;
}

/* ---------- modal ---------- */
#modalOverlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 14, 0.72);
  backdrop-filter: blur(5px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

#modalOverlay.show {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  max-width: 560px;
  width: 100%;
  overflow: hidden;
  transform: scale(0.94) translateY(10px);
  transition: transform .25s ease;
  box-shadow: 0 40px 100px -30px rgba(0, 0, 0, 0.7);
}

#modalOverlay.show .modal {
  transform: scale(1) translateY(0);
}

.modal-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(20, 31, 56, 0.5);
}

.modal-bar .mono {
  font-size: 12px;
  color: var(--slate);
}

.modal-close {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  color: var(--slate);
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 4px;
  transition: color .2s, background .2s;
}

.modal-close:hover {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
}

.modal-body {
  padding: 26px 24px;
}

.modal-body h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.modal-body p {
  color: var(--slate);
  font-size: 14.5px;
  margin-bottom: 16px;
}

.modal-body .tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.modal-body .tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  padding: 5px 11px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  color: var(--pass);
}

/* ---------- experience — dotted timeline ---------- */
.timeline {
  position: relative;
  border-left: 2px solid var(--slate-dim);
  margin-left: 6px;
}

.entry {
  position: relative;
  padding: 0 0 34px 32px;
  transition: transform .3s ease;
}

.entry:last-child {
  padding-bottom: 0;
}

.entry::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  background: var(--ink);
  border: 2px solid var(--brass);
  border-radius: 50%;
  transition: transform .3s cubic-bezier(.17, .89, .32, 1.25), box-shadow .3s ease, background-color .3s ease;
}

.entry:hover {
  transform: translateX(4px);
}

.entry:hover::before {
  transform: scale(1.4);
  background: var(--brass);
  box-shadow: 0 0 14px var(--brass), 0 0 28px rgba(201, 162, 75, 0.4);
}

.tag,
.mosaic-tag {
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.tag:hover,
.mosaic-tag:hover {
  transform: translateY(-2px);
  border-color: var(--brass);
  box-shadow: 0 4px 14px rgba(201, 162, 75, 0.18);
}

.entry-meta {
  display: flex;
  gap: 14px;
  align-items: baseline;
  flex-wrap: wrap;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--slate);
  margin-bottom: 8px;
}

.entry-meta .tag {
  color: var(--pass);
  border: 1px solid rgba(116, 217, 174, 0.3);
  padding: 2px 8px;
  border-radius: 100px;
}

.entry h3 {
  font-size: 19px;
  margin-bottom: 3px;
}

.entry .org {
  color: var(--brass-soft);
  font-size: 14px;
  margin-bottom: 13px;
  font-family: 'IBM Plex Mono', monospace;
}

.entry ul {
  list-style: none;
}

.entry li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.6;
}

.entry li:last-child {
  margin-bottom: 0;
}

.entry li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--brass);
  font-family: 'IBM Plex Mono', monospace;
}

.entry li strong {
  color: var(--paper);
  font-weight: 600;
}

/* ---------- education — distinct card UI ---------- */
.edu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width:720px) {
  .edu-grid {
    grid-template-columns: 1fr;
  }
}

.edu-card {
  padding: 30px 28px;
  border-top: 3px solid var(--brass);
}

.edu-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-width: 42px;
  height: 34px;
  padding: 0 12px;
  border-radius: 8px;
  background: rgba(201, 162, 75, 0.12);
  border: 1px solid rgba(201, 162, 75, 0.3);
  color: var(--brass-soft);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 16px;
}

.edu-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.edu-org {
  color: var(--slate);
  font-size: 13.5px;
  margin-bottom: 14px;
}

.edu-duration {
  display: inline-block;
  font-size: 11.5px;
  color: var(--brass-soft);
  border: 1px solid rgba(201, 162, 75, 0.3);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ---------- about illustration tile — interactive developer workstation ---------- */
.illustration-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: crosshair;
  padding: 24px 20px;
  user-select: none;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.illustration-tile:hover {
  border-color: rgba(201, 162, 75, 0.45);
}

.illustration-tile:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 4px;
}

/* Ambient Streaming Code Backdrop (Left side behind character) */
.code-stream-backdrop.left-stream {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 60%;
  padding: 16px 22px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  opacity: 0.16;
  filter: blur(0.3px);
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.75) 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.75) 55%, transparent 100%);
  transition: opacity .35s ease;
}

.code-stream-track {
  display: flex;
  flex-direction: column;
  animation: seamlessCodeStream 45s linear infinite;
  will-change: transform;
}

.code-block {
  display: flex;
  flex-direction: column;
  gap: 5.5px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9.5px;
  line-height: 1.48;
  color: #74D9AE;
  white-space: nowrap;
  letter-spacing: -0.2px;
  user-select: none;
}

.code-block span {
  display: block;
}

/* Seamless infinite mathematical translation with zero visual jump */
@keyframes seamlessCodeStream {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

/* Pause and dim code stream when developer turns to watch cursor */
.illustration-tile.is-watching .code-stream-backdrop {
  opacity: 0.07;
}

.illustration-tile.is-watching .code-stream-track {
  animation-play-state: paused;
}

.coder-illustration {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.6));
}

/* HTML speech bubble — spring popup with sharp glass styling */
.speech-bubble-html {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translate(-50%, -8px) scale(0.92);
  max-width: 240px;
  width: max-content;
  background: rgba(18, 28, 50, 0.96);
  border: 1px solid var(--brass);
  border-radius: 10px;
  padding: 8px 14px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--paper);
  text-align: center;
  line-height: 1.4;
  word-wrap: break-word;
  box-shadow: 0 12px 30px -4px rgba(0, 0, 0, 0.75), 0 0 18px rgba(201, 162, 75, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s cubic-bezier(.17, .89, .32, 1.25), transform .25s cubic-bezier(.17, .89, .32, 1.25);
  z-index: 10;
}

.speech-bubble-html::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: rgba(18, 28, 50, 0.96);
  border-right: 1px solid var(--brass);
  border-bottom: 1px solid var(--brass);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

/* ========================================================
   HEAD ANCHOR & WORKSTATION DYNAMICS
   ======================================================== */
.character-head-anchor {
  transform-origin: 111px 82px;
}

#headCoding {
  opacity: 1;
  transform: scale(1);
  transform-origin: 110px 81px;
  transition: opacity 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

#headTurned {
  opacity: 0;
  transform: scale(0.92);
  transform-origin: 111px 82px;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

/* When watching cursor */
.illustration-tile.is-watching #headCoding {
  opacity: 0;
  transform: scale(0.92);
  pointer-events: none;
}

.illustration-tile.is-watching #headTurned {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.illustration-tile.is-watching .dev-arm,
.illustration-tile.is-watching .dev-hand {
  animation-play-state: paused;
}

.illustration-tile.is-watching .code-line,
.illustration-tile.is-watching .code-cursor-blink {
  animation-play-state: paused;
}

.illustration-tile.is-watching .screen-code-group {
  opacity: 0.12;
  filter: blur(0.8px);
}

.illustration-tile.is-watching .screen-paused-state {
  opacity: 1;
  transform: scale(1);
}

/* Screen paused / distracted overlay */
.screen-paused-state {
  opacity: 0;
  transform: scale(0.95);
  transform-origin: 236px 128px;
  transition: opacity .22s ease, transform .22s ease;
  pointer-events: none;
}

.screen-code-group {
  transition: opacity .22s ease, filter .22s ease;
}

/* Active typing motion on arms (Coding State) */
@keyframes devArmLeft {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2.8px) translateX(0.4px);
  }
}

@keyframes devArmRight {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2.8px) translateX(-0.4px);
  }
}

.dev-arm.arm-l,
.dev-hand.hand-l {
  animation: devArmLeft 0.72s ease-in-out infinite;
  transform-origin: 88px 132px;
}

.dev-arm.arm-r,
.dev-hand.hand-r {
  animation: devArmRight 0.72s ease-in-out infinite 0.12s;
  transform-origin: 106px 130px;
}

/* Screen code stream lines */
@keyframes codeStream {
  0% {
    width: 0;
  }

  40% {
    width: var(--cw, 45px);
  }

  80% {
    width: var(--cw, 45px);
  }

  100% {
    width: 0;
  }
}

.code-line {
  animation: codeStream 2.2s ease-in-out infinite;
}

.cl-1 {
  --cw: 38px;
  animation-delay: 0s;
}

.cl-2 {
  --cw: 50px;
  animation-delay: 0.25s;
}

.cl-3 {
  --cw: 40px;
  animation-delay: 0.5s;
}

.cl-4 {
  --cw: 32px;
  animation-delay: 0.75s;
}

.cl-5 {
  --cw: 46px;
  animation-delay: 1.0s;
}

.cl-6 {
  --cw: 38px;
  animation-delay: 1.25s;
}

.cl-7 {
  --cw: 28px;
  animation-delay: 1.5s;
}

@keyframes codeBlink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.code-cursor-blink {
  animation: codeBlink 0.75s infinite steps(1);
}

/* Coffee steam rising */
@keyframes steamDrift {
  0% {
    transform: translateY(0);
    opacity: 0.6;
  }

  50% {
    transform: translateY(-3px) translateX(1px);
    opacity: 0.9;
  }

  100% {
    transform: translateY(-6px);
    opacity: 0;
  }
}

.steam-line {
  animation: steamDrift 2.2s ease-in-out infinite;
}

.steam-2 {
  animation-delay: 0.9s;
}

/* Front Eye Pupils */
.eye-pupil {
  will-change: transform;
}

/* Facial expressions */
.brow-normal,
.mouth-normal {
  opacity: 1;
  transition: opacity .2s ease;
}

.brow-angry,
.mouth-angry {
  opacity: 0;
  transition: opacity .2s ease;
}

.anger-effects {
  opacity: 0;
  transition: opacity .2s ease;
  transform-origin: 131px 58px;
}

/* --- CLICK / ANGRY STATE --- */
.illustration-tile.is-angry {
  animation: tileJolt .42s cubic-bezier(.36, .07, .19, .97) both;
}

.illustration-tile.is-angry .speech-bubble-html,
.illustration-tile.show-bubble .speech-bubble-html {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
  pointer-events: auto;
}

.illustration-tile.is-angry .brow-normal,
.illustration-tile.is-angry .mouth-normal {
  opacity: 0;
}

.illustration-tile.is-angry .brow-angry,
.illustration-tile.is-angry .mouth-angry {
  opacity: 1;
}

.illustration-tile.is-angry .anger-effects {
  opacity: 1;
  animation: angerPulse .5s ease-in-out infinite alternate;
}

.illustration-tile.is-angry #statusLabel {
  color: var(--coral);
  font-weight: 600;
}

@keyframes tileJolt {

  0%,
  100% {
    transform: translateY(0);
  }

  20% {
    transform: translateX(-4px) rotate(-1deg);
  }

  40% {
    transform: translateX(4px) rotate(1deg);
  }

  60% {
    transform: translateX(-2px) rotate(0.5deg);
  }

  80% {
    transform: translateX(2px);
  }
}

@keyframes angerPulse {
  0% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1.18);
  }
}

/* Floating tech elements */
@keyframes illusFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.illus-float-1 {
  animation: illusFloat 4s ease-in-out infinite;
}

.illus-float-2 {
  animation: illusFloat 3.2s ease-in-out infinite 0.6s;
}

.illus-caption {
  font-size: 11.5px;
  color: var(--slate);
  transition: color .2s ease;
}

#statusLabel {
  color: var(--pass);
  transition: color .25s ease;
}

/* ---------- skills big-tile relatable lines (blur-in reveal, distinct from hero typing) ---------- */
.blur-lines {
  margin: 10px 0 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blur-line {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--slate);
  opacity: 0;
  filter: blur(6px);
  transform: translateY(6px);
  transition: opacity .55s ease, filter .55s ease, transform .55s ease;
}

.blur-line.in {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* ---------- contact — two-column card (Meridian UI) ---------- */
.contact-card {
  padding: 42px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
}

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

.contact-card h2 {
  font-size: clamp(25px, 3.5vw, 36px);
  max-width: 420px;
}

.contact-card p {
  color: var(--slate);
  margin-top: 14px;
  max-width: 400px;
  font-size: 15px;
}

.contact-list {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13.5px;
}

.contact-list .row {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  gap: 16px;
  flex-wrap: wrap;
}

.contact-list .row span:first-child {
  color: var(--slate-dim);
}

.contact-list .row a,
.contact-list .row span:last-child {
  color: var(--paper);
  transition: color .2s;
}

.contact-list .row a:hover {
  color: var(--brass-soft);
}

footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  color: var(--slate);
  flex-wrap: wrap;
  gap: 10px;
}

#toTop {
  position: fixed;
  right: 33px;
  bottom: 96px;
  z-index: 150;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(10, 15, 28, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--brass-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.88);
  transition: transform 0.48s cubic-bezier(0.34, 1.45, 0.64, 1),
    opacity 0.3s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.3s ease;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 15px;
  box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.65), 0 0 14px rgba(201, 162, 75, 0.12);
  cursor: pointer;
  outline: none;
}

#toTop.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, 0) scale(1);
}

/* S-tier spring animation: Glides to the LEFT SIDE of Chat Window when opened */
#panelFrame.open ~ #toTop.show,
body.chat-is-open #toTop.show,
#toTop.chat-left-shift.show {
  opacity: 1 !important;
  pointer-events: auto !important;
  visibility: visible !important;
  transform: translate(-389px, 63px) scale(1);
  border-color: rgba(201, 162, 75, 0.5);
  background: rgba(13, 20, 38, 0.95);
  box-shadow: 0 12px 30px -4px rgba(0, 0, 0, 0.75), 0 0 22px rgba(201, 162, 75, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

/* When chat is open but user is at the top of the page */
#panelFrame.open ~ #toTop:not(.show),
body.chat-is-open #toTop:not(.show),
#toTop.chat-left-shift:not(.show) {
  opacity: 0;
  pointer-events: none;
  transform: translate(-389px, 75px) scale(0.85);
}

#toTop:hover {
  border-color: var(--brass);
  background: rgba(20, 31, 56, 0.98);
  color: #FFFFFF;
  box-shadow: 0 12px 28px -4px rgba(0, 0, 0, 0.75), 0 0 24px rgba(201, 162, 75, 0.4);
}

@media (max-width: 540px) {
  /* On small mobile screens, glide smoothly above or beside */
  #panelFrame.open ~ #toTop.show,
  body.chat-is-open #toTop.show,
  #toTop.chat-left-shift.show {
    transform: translate(calc(-100vw + 84px), 63px) scale(0.95);
  }

  #panelFrame.open ~ #toTop:not(.show),
  body.chat-is-open #toTop:not(.show),
  #toTop.chat-left-shift:not(.show) {
    transform: translate(calc(-100vw + 84px), 75px) scale(0.8);
  }
}

/* =========================================================
   ASSISTANT WIDGET — Futuristic Cyber-AI Design (v3)
   Fixed stable chat panel, 54px holographic spark icon
   ========================================================= */

/* ---- ambient particles behind the widget corner ---- */
#widgetAmbient {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 240px;
  height: 240px;
  z-index: 40;
  pointer-events: none;
  overflow: visible;
}

#widgetAmbient i {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brass-soft);
  opacity: 0.5;
  filter: blur(0.3px);
  animation: driftUp 6s ease-in-out infinite;
}

#widgetAmbient i:nth-child(1) {
  right: 35px;
  bottom: 15px;
  animation-duration: 5.5s;
}

#widgetAmbient i:nth-child(2) {
  right: 80px;
  bottom: 10px;
  background: var(--violet);
  animation-duration: 7s;
  animation-delay: 1.2s;
}

#widgetAmbient i:nth-child(3) {
  right: 125px;
  bottom: 30px;
  background: var(--cyan);
  animation-duration: 6.4s;
  animation-delay: 2.4s;
}

#widgetAmbient i:nth-child(4) {
  right: 50px;
  bottom: 50px;
  animation-duration: 8s;
  animation-delay: .6s;
}

@keyframes driftUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }

  15% {
    opacity: .6;
  }

  100% {
    transform: translateY(-160px) scale(0.3);
    opacity: 0;
  }
}

/* ---- Floating action button: 54px sleek AI Spark launcher ---- */
#fabHolder {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 52;
  width: 54px;
  height: 54px;
  pointer-events: none;
}

body.chat-is-open #fabHolder {
  pointer-events: none;
  visibility: hidden;
}

#assistantFab {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid rgba(234, 237, 244, 0.14);
  cursor: pointer;
  display: flex;
  align-items: center;
  pointer-events: auto;
  justify-content: center;
  background: radial-gradient(circle at 35% 30%, #1c2746 0%, #0c1428 70%, #060a14 100%);
  box-shadow: 0 10px 25px -4px rgba(0, 0, 0, 0.65), 0 0 20px rgba(201, 162, 75, 0.22), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  animation: fabFloat 3.6s ease-in-out infinite;
  transition: transform .35s .08s cubic-bezier(.34, 1.56, .64, 1), opacity .25s .08s, box-shadow .25s ease;
  outline: none;
}

#assistantFab:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 14px 32px -4px rgba(0, 0, 0, 0.75), 0 0 28px rgba(201, 162, 75, 0.45), inset 0 1px 2px rgba(255, 255, 255, 0.35);
  border-color: rgba(201, 162, 75, 0.5);
}

#assistantFab:active {
  transform: translateY(0) scale(0.95);
}

/* Glowing rotating outer border ring */
.fab-glow-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  z-index: 0;
  background: conic-gradient(from 0deg, var(--brass) 0deg, var(--violet) 120deg, var(--cyan) 220deg, var(--brass) 360deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 1.8px), #000 calc(100% - 1.8px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 1.8px), #000 calc(100% - 1.8px));
  animation: fabRingSpin 4.5s linear infinite;
  pointer-events: none;
}

/* Ambient breathing pulse aura */
.fab-pulse-aura {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 75, 0.35) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
  animation: fabAuraPulse 3s ease-out infinite;
}

@keyframes fabAuraPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.25);
    opacity: 0.25;
  }

  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

@keyframes fabFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes fabRingSpin {
  to {
    transform: rotate(360deg);
  }
}

/* Live emerald online status dot */
#assistantFab .fab-dot {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--pass);
  border: 2px solid #060a14;
  box-shadow: 0 0 8px var(--pass);
  z-index: 3;
}

/* AI Agent Bot Icon */
.ai-agent-icon {
  position: relative;
  z-index: 2;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}

.agent-bot-svg {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 2px 6px rgba(201, 162, 75, 0.4));
}

.agent-eye {
  animation: agentEyeBlink 4.5s infinite ease-in-out;
  transform-origin: center;
}

.agent-beacon-dot {
  animation: agentBeaconPulse 2s infinite alternate ease-in-out;
}

@keyframes agentEyeBlink {

  0%,
  92%,
  100% {
    transform: scaleY(1);
  }

  95% {
    transform: scaleY(0.15);
  }
}

@keyframes agentBeaconPulse {
  0% {
    filter: drop-shadow(0 0 2px #00C2A8);
    opacity: 0.75;
  }

  100% {
    filter: drop-shadow(0 0 6px #00C2A8);
    opacity: 1;
  }
}

#assistantFab:hover .ai-agent-icon {
  transform: translateY(-1px) scale(1.08);
}

#assistantFab.is-open {
  opacity: 0;
  transform: scale(1.4) rotate(45deg);
  filter: blur(2.5px);
  animation: none;
  pointer-events: none;
  transition: transform 0.36s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.24s ease, filter 0.24s ease;
}

/* ---- Hover tooltip ---- */
#fabTooltip {
  position: fixed;
  right: 92px;
  bottom: 37px;
  z-index: 49;
  background: rgba(16, 26, 51, 0.95);
  border: 1px solid var(--line-strong);
  border-radius: 12px 12px 2px 12px;
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--paper);
  white-space: nowrap;
  box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.65), 0 0 18px rgba(201, 162, 75, 0.15);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(4px) scale(0.96);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s cubic-bezier(0.16, 1, 0.3, 1);
}

#fabTooltip.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

#fabTooltip span {
  color: var(--brass-soft);
  font-weight: 600;
}

/* ---- Panel: MORPHING EXPANSION / COLLAPSE (Seamlessly grows directly from FAB icon) ---- */
#panelFrame {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 51;
  width: min(380px, calc(100vw - 32px));
  height: min(560px, calc(100vh - 52px));
  border-radius: 50%;
  padding: 1.5px;
  background: conic-gradient(from var(--angle, 0deg), var(--brass), var(--violet), var(--cyan), var(--brass));
  animation: borderSpin 6s linear infinite;
  transform-origin: calc(100% - 27px) calc(100% - 27px);
  transform: scale(0.14) rotate(-6deg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.48s cubic-bezier(0.34, 1.42, 0.64, 1),
    border-radius 0.45s cubic-bezier(0.34, 1.42, 0.64, 1),
    opacity 0.28s ease,
    visibility 0.48s;
  box-shadow: 0 28px 70px -15px rgba(0, 0, 0, 0.8), 0 0 35px rgba(201, 162, 75, 0.2);
}

#panelFrame.open {
  transform: scale(1) rotate(0deg);
  border-radius: 20px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 60;
  transition: transform 0.52s cubic-bezier(0.34, 1.45, 0.64, 1),
    border-radius 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s ease,
    visibility 0.52s;
}

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes borderSpin {
  to {
    --angle: 360deg;
  }
}

#assistantPanel {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  background: linear-gradient(180deg, #101930 0%, #090e1c 100%);
  display: flex;
  flex-direction: column;
  transition: border-radius .4s cubic-bezier(.2, .9, .25, 1.15);
}

#assistantPanel::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(400px 200px at 90% -10%, rgba(201, 162, 75, 0.14), transparent 60%);
}

/* Panel Header */
.ap-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(201, 162, 75, 0.04);
}

.ap-avatar {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #1e2b4d 0%, #0b1224 85%);
  border: 1px solid rgba(234, 237, 244, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#panelFrame.open .ap-avatar {
  animation: avatarBlossom 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes avatarBlossom {
  0% {
    transform: scale(0.3) rotate(-25deg);
    opacity: 0;
  }
  60% {
    transform: scale(1.15) rotate(4deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

.avatar-glow-ring {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1.2px solid transparent;
  border-top-color: var(--brass);
  border-bottom-color: var(--cyan);
  animation: fabRingSpin 3.5s linear infinite;
  pointer-events: none;
}

.avatar-agent-svg {
  width: 24px;
  height: 24px;
}

.ap-title {
  flex: 1;
}

.ap-title .name {
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ai-badge {
  font-size: 9.5px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 4px;
  background: rgba(201, 162, 75, 0.18);
  border: 1px solid rgba(201, 162, 75, 0.35);
  color: var(--brass-soft);
  letter-spacing: 0.04em;
}

.ap-title .status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--slate);
  margin-top: 1px;
}

.status-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pass);
  box-shadow: 0 0 6px var(--pass);
  display: inline-block;
  animation: dotPulseLive 2s infinite ease-in-out;
}

@keyframes dotPulseLive {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}

.ap-close {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--slate);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all .2s ease;
}

.ap-close:hover {
  border-color: var(--coral);
  color: var(--coral);
  background: rgba(255, 107, 157, 0.08);
  transform: rotate(90deg);
}

/* Message Feed Body */
.ap-body {
  position: relative;
  z-index: 1;
  flex: 1;
  overflow-y: auto;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.ap-body::-webkit-scrollbar {
  width: 4px;
}

.ap-body::-webkit-scrollbar-thumb {
  background: var(--line-strong);
  border-radius: 10px;
}

.msg {
  max-width: 86%;
  padding: 10px 13px;
  border-radius: 13px;
  font-size: 13px;
  line-height: 1.5;
  animation: msgSlideUp .28s cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes msgSlideUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.msg.bot {
  align-self: flex-start;
  background: var(--ink-3);
  border: 1px solid rgba(234, 237, 244, 0.08);
  border-bottom-left-radius: 3px;
  color: #e2e8f0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.msg.user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--brass-soft), var(--brass));
  color: var(--ink);
  font-weight: 500;
  border-bottom-right-radius: 3px;
  box-shadow: 0 4px 14px rgba(201, 162, 75, 0.25);
}

/* Typing indicator */
.typing {
  align-self: flex-start;
  display: flex;
  gap: 4px;
  padding: 10px 14px;
  background: var(--ink-3);
  border: 1px solid rgba(234, 237, 244, 0.08);
  border-radius: 13px;
  border-bottom-left-radius: 3px;
  animation: msgSlideUp .2s ease both;
}

.typing i {
  width: 5.5px;
  height: 5.5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 5px rgba(0, 194, 168, 0.6);
  animation: typingBounce 1.1s ease-in-out infinite;
}

.typing i:nth-child(2) {
  animation-delay: .15s;
  background: var(--brass-soft);
  box-shadow: 0 0 5px rgba(231, 205, 142, 0.6);
}

.typing i:nth-child(3) {
  animation-delay: .3s;
  background: var(--violet);
  box-shadow: 0 0 5px rgba(139, 124, 240, 0.6);
}

@keyframes typingBounce {

  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: .4;
  }

  30% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

/* Suggested Questions */
.ap-suggestions {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 2px;
}

.chip {
  text-align: left;
  background: rgba(234, 237, 244, 0.035);
  border: 1px solid var(--line-strong);
  color: var(--paper);
  padding: 8.5px 11px;
  border-radius: 10px;
  font-size: 12.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, opacity .2s ease, box-shadow .2s ease;
  outline: none;
}

.chip-icon {
  color: var(--brass-soft);
  font-size: 11px;
  flex-shrink: 0;
}

.chip-text {
  flex: 1;
  line-height: 1.35;
}

.chip-arrow {
  width: 13px;
  height: 13px;
  color: var(--slate);
  flex-shrink: 0;
  transition: transform .2s ease, color .2s ease;
}

.chip:hover {
  border-color: var(--brass);
  background: rgba(201, 162, 75, 0.08);
  transform: translateX(3px);
  box-shadow: 0 6px 16px -6px rgba(0, 0, 0, 0.4);
}

.chip:hover .chip-arrow {
  transform: translateX(2px);
  color: var(--brass-soft);
}

.chip.chip-disabled {
  opacity: 0.32;
  pointer-events: none;
  transform: none;
  box-shadow: none;
  filter: grayscale(35%);
}

.chip.chip-picked {
  opacity: 1;
  border-color: var(--brass);
  background: rgba(201, 162, 75, 0.12);
  color: var(--brass-soft);
}

/* Input Row */
.ap-input-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 13px 12px;
  border-top: 1px solid var(--line);
  background: rgba(9, 14, 28, 0.85);
}

.ap-input-row input {
  flex: 1;
  background: var(--ink-3);
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  padding: 9px 14px;
  color: var(--paper);
  font-size: 13px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.ap-input-row input:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 2.5px rgba(201, 162, 75, 0.15);
}

.ap-input-row input::placeholder {
  color: var(--slate-dim);
  font-size: 12.5px;
}

.ap-send {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: none;
  flex-shrink: 0;
  cursor: pointer;
  background: linear-gradient(135deg, var(--brass-soft), var(--brass));
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .15s cubic-bezier(.34, 1.56, .64, 1), box-shadow .15s ease;
  box-shadow: 0 2px 8px rgba(201, 162, 75, 0.35);
}

.ap-send:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(201, 162, 75, 0.5);
}

.ap-send:active {
  transform: scale(0.92);
}

.ap-send svg {
  width: 15px;
  height: 15px;
  pointer-events: none;
}

/* ── "How it works" inline button (beneath notify success confirmation) ──── */
.how-it-works-btn {
  display: inline-block;
  margin: 6px 0 2px 4px;
  padding: 4px 12px;
  font-size: 11px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  color: var(--brass-soft);
  background: transparent;
  border: 1px solid rgba(201, 162, 75, 0.35);
  border-radius: 100px;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, opacity .15s ease;
  pointer-events: auto;
  white-space: nowrap;
}

.how-it-works-btn:hover {
  border-color: var(--brass);
  background: rgba(201, 162, 75, 0.08);
}

.how-it-works-btn:disabled {
  cursor: default;
}

/* ── Notify-offer Yes/No button row (AI's proactive offer when it can't answer) */
.notify-offer-row {
  display: flex;
  gap: 8px;
  margin: 7px 0 2px 4px;
  flex-wrap: wrap;
}

.notify-offer-btn {
  padding: 5px 14px;
  font-size: 11.5px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, opacity .15s ease;
  pointer-events: auto;
}

.notify-offer-yes {
  background: rgba(201, 162, 75, 0.15);
  border-color: rgba(201, 162, 75, 0.5);
  color: var(--brass-soft);
}

.notify-offer-yes:hover {
  background: rgba(201, 162, 75, 0.25);
  border-color: var(--brass);
}

.notify-offer-no {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
}

.notify-offer-no:hover {
  border-color: rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 480px) {
  #panelFrame {
    right: 12px;
    left: 12px;
    bottom: 16px;
    width: auto;
    height: calc(100vh - 80px);
    transform-origin: calc(100% - 21px) calc(100% - 11px);
  }

  #fabHolder {
    right: 18px;
    bottom: 18px;
  }

  #fabTooltip {
    right: auto;
    left: 18px;
  }

  #toTop {
    right: 23px;
    bottom: 82px;
  }
}