/* ══════════════════════════════════════════════════════
   MIDEX PORTFOLIO — style.css
══════════════════════════════════════════════════════ */

@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Urbanist:ital,wght@0,100..900&display=swap");

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

:root {
  --bg: #0b0c0e;
  --bg-2: #111318;
  --bg-3: #181c24;
  --surface: #1e2330;
  --border: #2a3040;

  --text: #e8eaf0;
  --text-muted: #7a8499;

  --accent: #3b82f6;
  --accent-dim: rgba(59, 130, 246, 0.12);
  --accent-2: #f7c94b;

  --red: #ef4444;
  --yellow: #f59e0b;
  --green: #3b82f6;

  --radius: 6px;
  --transition: 0.25s ease;

  --font-display: "Urbanist", sans-serif;
  --font-mono: "Space Mono", monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 48px;
  max-width: 520px;
}

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

/* Navbar */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition:
    background var(--transition),
    box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(11, 12, 14, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.nav-logo .dot {
  color: var(--accent);
}

.nav-links {
  position: fixed;
  top: 75px;
  right: 15px;
  width: 260px;

  background: rgba(17, 19, 24, 0.98);
  backdrop-filter: blur(20px);

  border: 1px solid var(--border);
  border-radius: 16px;

  padding: 15px;

  display: flex;
  flex-direction: column;
  gap: 10px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateX(20px);
  transition: all 0.3s ease;

  z-index: 99;
}

.nav-links a {
  display: block;

  width: 100%;

  padding: 12px 16px;

  border-radius: 10px;

  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(59, 130, 246, 0.1);

  color: var(--text);

  transition: all 0.25s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links .nav-cta {
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 7px 18px;
  border-radius: var(--radius);
}

.nav-links .nav-cta:hover {
  background: var(--accent);
  color: var(--bg);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 120px 24px 80px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.hero-bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.22;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 40%,
    black 40%,
    transparent 100%
  );
}

.hero-content {
  max-width: 560px;
  flex-shrink: 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(59, 130, 246, 0.25);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.06em;
}

.blink {
  animation: blink 1.1s step-end infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.hero-name {
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}

.name-line {
  display: block;
  background: linear-gradient(135deg, #e8eaf0 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-family: var(--font-mono);
  color: var(--text-muted);
  margin-bottom: 20px;
}

.hero-title .accent {
  -webkit-text-fill-color: var(--accent);
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-scroll-hint {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 50px;
  height: 1px;
  background: linear-gradient(to right, var(--border), transparent);
}

/* Code Block */
.hero-code-block {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  min-width: 320px;
  max-width: 420px;
  width: 100%;
  flex-shrink: 0;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  50% {
    transform: translateY(-10px);
  }
}

.code-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
}

.code-header .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.code-header .dot.red {
  background: var(--red);
}

.code-header .dot.yellow {
  background: var(--yellow);
}

.code-header .dot.green {
  background: var(--accent);
}

.code-filename {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-left: 8px;
}

.code-body {
  padding: 20px 20px 24px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  line-height: 1.8;
  overflow-x: auto;
}

.kw {
  color: #b48ead;
}

.var {
  color: #88c0d0;
}

.key {
  color: #8fbcbb;
}

.str {
  color: #60a5fa;
}

.fn {
  color: #81a1c1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}

.btn-primary:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

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

.full-width {
  width: 100%;
  justify-content: center;
}

/* Sections */
section {
  padding: 100px 0;
}

section:nth-child(even) {
  background: var(--bg-2);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.02rem;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-mono);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-mono);
}

.avatar-frame {
  position: relative;
  margin-bottom: 24px;
}

.avatar-placeholder {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.avatar-placeholder::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  background: conic-gradient(var(--accent) 60%, transparent 60%);
  z-index: -1;
  animation: spin 6s linear infinite;
}

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

.avatar-badge {
  position: absolute;
  bottom: 4px;
  left: 90px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 100px;
}

/* Projects */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.project-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  transition:
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.project-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background var(--transition);
}

.project-card:hover {
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.project-card:hover::before {
  background: linear-gradient(to right, var(--accent), transparent);
}

.project-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}

.project-number {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  padding-top: 4px;
  min-width: 52px;
}

.project-card:hover .project-number {
  color: var(--accent);
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.project-tags span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 3px 10px;
  border-radius: 4px;
}

.project-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.project-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.project-links {
  display: flex;
  gap: 12px;
}

.link-btn {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.link-btn:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.link-btn.ghost {
  color: var(--text-muted);
  border-color: var(--border);
}

.link-btn.ghost:hover {
  color: var(--text);
  border-color: var(--text-muted);
  background: transparent;
}

.projects-cta {
  text-align: center;
}

/* Skills */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.skill-group {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}

.skill-group.next-up {
  opacity: 0.65;
}

.skill-group-title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.skill-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--bg);
  flex-wrap: wrap;
}

.skill-list li:last-child {
  border-bottom: none;
}

.skill-icon {
  color: var(--accent);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.skill-icon.muted {
  color: var(--border);
}

.skill-level {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.skill-level.Advanced {
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.skill-level.learning {
  background: rgba(247, 201, 75, 0.1);
  color: var(--accent-2);
  border: 1px solid rgba(247, 201, 75, 0.2);
}

.skill-level.Intermediate {
  background: rgba(22, 255, 73, 0.1);
  color: green;
  border: 1px solid rgba(29, 230, 116, 0.2);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-text p {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin-bottom: 28px;
}

.email-link {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 1.05rem;
  color: var(--accent);
  border-bottom: 1px solid rgba(59, 130, 246, 0.3);
  padding-bottom: 4px;
  margin-bottom: 32px;
}

.email-link:hover {
  border-color: var(--accent);
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 9px 16px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.social-btn:hover {
  color: var(--text);
  border-color: var(--text-muted);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.95rem;
  padding: 12px 14px;
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.5;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.08);
}

.form-note {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  margin-top: 12px;
  min-height: 1.2em;
  text-align: center;
}

.form-note.success {
  color: var(--accent);
}

.form-note.error {
  color: var(--red);
}

/* ─── Testimonials ──────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition:
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(91, 255, 200, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.testimonial-card:hover::before {
  background: linear-gradient(to right, var(--accent), transparent);
}

.testimonial-quote {
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
  opacity: 0.6;
  font-family: var(--font-mono);
}

.testimonial-text {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.75;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(91, 255, 200, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.testimonial-name {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

.testimonial-role {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  background: var(--bg);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-logo {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
}

footer p {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Tablet */
@media (max-width: 900px) {
  .skills-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .about-visual {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .avatar-frame {
    margin-bottom: 0;
  }
}

/* Mobile */
@media (max-width: 768px) {
  #hero {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 100px;
  }

  .hero-code-block {
    width: 100%;
    max-width: 100%;
    animation: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 78px;
    left: 16px;
    right: 16px;
    height: auto;
    padding: 24px 18px;
    background: rgba(17, 19, 24, 0.98);
    backdrop-filter: blur(18px);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);

    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    pointer-events: none;
    transition: all var(--transition);
    z-index: 99;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 0.92rem;
    color: var(--text);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
  }

  .nav-links a:hover {
    color: var(--accent);
    border-color: rgba(59, 130, 246, 0.35);
    background: rgba(59, 130, 246, 0.08);
  }

  .nav-links .nav-cta {
    text-align: center;
    color: var(--bg);
    background: var(--accent);
    border-color: var(--accent);
  }

  .nav-links .nav-cta:hover {
    background: #2563eb;
    color: var(--bg);
  }

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

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

  .project-card.featured {
    grid-column: 1;
    display: block;
  }

  .project-number {
    display: none;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-stats {
    gap: 24px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .about-visual {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  section {
    padding: 72px 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }
}

/* ─── Award Block ───────────────────────────────────── */
.award-block {
  margin-top: 20px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition:
    border-color var(--transition),
    transform var(--transition);
}

.award-block:hover {
  border-color: rgba(91, 255, 200, 0.3);
  transform: translateY(-3px);
}

.award-img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.award-info {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-top: 1px solid var(--border);
}

.award-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.award-title {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

.award-sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-top: 2px;
}
