/* ==================================================================
   DESIGN TOKENS
   Edit colors, fonts, and spacing here — everything below references
   these variables, so changing a value here updates the whole site.
   ================================================================== */
:root{
  /* ---- Colors ---- */
  --bg:            #0a0e0f;   /* page background */
  --bg-alt:        #0d1214;   /* alternating section background */
  --panel:         #11161a;   /* card / panel surface */
  --panel-border:  #1f2a2e;   /* hairline borders on panels */
  --text:          #e8ecee;   /* primary text */
  --text-dim:      #8d9aa0;   /* secondary / muted text */
  --text-faint:    #5c6a6f;   /* tertiary text, captions */
  --accent:        #3ddc97;   /* terminal-green accent (primary) */
  --accent-soft:   rgba(61, 220, 151, 0.12);
  --warn:          #e8a23d;   /* amber — used for status / mid severity */
  --warn-soft:     rgba(232, 162, 61, 0.12);
  --danger:        #e8543d;   /* used sparingly — critical severity */
  --danger-soft:   rgba(232, 84, 61, 0.12);
  --glitch-green:  #0f3d1f;   /* flickering CRT-green boot screen background */

  /* ---- Type ---- */
  --font-display: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;

  /* ---- Layout ---- */
  --max-width: 1080px;
  --gutter: 24px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --nav-height: 64px;
}

/* ==================================================================
   RESET / BASE
   ================================================================== */
*, *::before, *::after{ box-sizing: border-box; }

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
h1,h2,h3,h4,p{ margin: 0; }
img{ max-width: 100%; display: block; }

:focus-visible{
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ==================================================================
   BACKGROUND CANVAS
   Fixed full-viewport canvas that Three.js renders the node network into.
   ================================================================== */
#bg-canvas{
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  display: block;
  background: var(--bg);
}

/* ==================================================================
   GLITCH BOOT
   Full-screen overlay shown once per page load: the screen flickers
   green like a damaged signal locking on — fast flashes at first,
   decaying to slower ones (driven by JS toggling classes, see
   script.js -> initGlitchBoot) — while short text fragments flash
   on top. No grain/static texture: the "static" feel comes purely
   from the on/off flash toggle plus scanlines. Safe to delete this
   whole block — the JS checks for #glitchBoot before doing anything.
   ================================================================== */
.glitch-boot{
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #04140a;
  overflow: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* The "on" flash frame — toggled rapidly by JS, decaying to a slower
   rate, so the whole screen flickers rather than just a texture on
   top of it. */
.glitch-boot.is-flash{
  background: var(--glitch-green);
}

.glitch-boot.is-hidden{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ---- Scanlines: always faintly present through the intro, no grain ---- */
.glitch-boot__scanlines{
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(61, 220, 151, 0.06) 0px,
    rgba(61, 220, 151, 0.06) 1px,
    transparent 1px,
    transparent 3px
  );
  opacity: 0.5;
}

.glitch-boot__text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  font-family: var(--font-mono);
  font-size: clamp(1rem, 1rem + 1.4vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #eafff0;
  text-shadow: 0 0 16px rgba(234, 255, 240, 0.5);
  white-space: nowrap;
  opacity: 0;
}

.glitch-boot__text.is-visible{
  opacity: 1;
  animation: glitchJitter 0.12s steps(2, end) infinite;
}

@keyframes glitchJitter{
  0%   { transform: translate(-50%, -50%) skewX(0deg); }
  50%  { transform: translate(calc(-50% + 2px), -50%) skewX(1deg); }
  100% { transform: translate(calc(-50% - 2px), -50%) skewX(-1deg); }
}

@media (max-width: 560px){
  .glitch-boot__text{ font-size: 1.05rem; white-space: normal; width: 88%; text-align: center; }
}

@media (prefers-reduced-motion: reduce){
  .glitch-boot{ display: none; }
}


/* ==================================================================
   NAV
   ================================================================== */
.nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(10, 14, 15, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--panel-border);
}

.nav__inner{
  max-width: var(--max-width);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}
.nav__brand-dot{ color: var(--accent); }

.nav__links{
  display: flex;
  gap: 28px;
}

.nav__links a{
  font-family: var(--font-mono);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  color: var(--text-dim);
  transition: color 0.2s ease;
  position: relative;
  padding: 4px 0;
}

.nav__links a:hover,
.nav__links a:focus-visible{
  color: var(--accent);
}

.nav__links a.active{
  color: var(--accent);
}

.nav__toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav__toggle span{
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ==================================================================
   MAIN / SECTION SHELL
   ================================================================== */
main{
  position: relative;
  z-index: 1;
}

.section{
  padding: 100px var(--gutter) 96px;
  border-bottom: 1px solid var(--panel-border);
}

.section--alt{
  background: rgba(13, 18, 20, 0.55);
}

.section__inner{
  max-width: var(--max-width);
  margin: 0 auto;
}

.section__eyebrow{
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section__title{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 3.6vw, 2.7rem);
  letter-spacing: -0.01em;
  margin-bottom: 40px;
}

/* ==================================================================
   HERO
   ================================================================== */
.hero{
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 32px) var(--gutter) 64px;
  text-align: center;
}

.hero__inner{
  max-width: 760px;
  width: 100%;
}

.hero__eyebrow{
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.hero__name{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 9vw, 5.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.hero__role{
  font-family: var(--font-mono);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: var(--warn);
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}

.hero__tagline{
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* ---- Terminal block ---- */
.hero__terminal{
  background: rgba(17, 22, 26, 0.85);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  text-align: left;
  max-width: 520px;
  margin: 0 auto 44px;
  overflow: hidden;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.6);
}

.hero__terminal-bar{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--panel-border);
}

.dot{ width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.dot--r{ background: #e8543d; }
.dot--y{ background: #e8a23d; }
.dot--g{ background: #3ddc97; }

.hero__terminal-title{
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-faint);
  margin-left: 6px;
}

.hero__terminal-body{
  font-family: var(--font-mono);
  font-size: 0.92rem;
  line-height: 1.75;
  padding: 16px 18px;
  min-height: 132px;
  color: var(--text-dim);
}

.hero__terminal-body .line-ok{ color: var(--accent); }
.hero__terminal-body .line-warn{ color: var(--warn); }
.hero__terminal-body .cursor{
  display: inline-block;
  width: 7px;
  height: 1em;
  background: var(--accent);
  vertical-align: -2px;
  animation: blink 1s step-end infinite;
}

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

/* ---- Hero meta row ---- */
.hero__meta{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.hero__meta-item{
  font-family: var(--font-mono);
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 16px;
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-sm);
  background: rgba(17,22,26,0.5);
  min-width: 140px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

a.hero__meta-item:hover,
a.hero__meta-item:focus-visible{
  border-color: var(--accent);
  transform: translateY(-2px);
}

.hero__meta-label{
  font-size: 0.7rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero__meta-value{
  font-size: 0.9rem;
  color: var(--text);
}

.hero__scroll-cue{
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll-cue span{
  width: 1px;
  height: 22px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse{
  0%, 100%{ opacity: 0.3; }
  50%{ opacity: 1; }
}

/* ==================================================================
   IMPACT — stat cards pulled from across the resume
   ================================================================== */
.impact__intro{
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: var(--text-dim);
  max-width: 780px;
  line-height: 1.8;
  margin-bottom: 44px;
}

.impact__grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.impact__card{
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: center;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.impact__card:hover{
  border-color: rgba(61,220,151,0.35);
  transform: translateY(-3px);
}

.impact__num{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}
.impact__plus{
  color: var(--warn);
}

.impact__label{
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.4;
}

@media (max-width: 860px){
  .impact__grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px){
  .impact__grid{ grid-template-columns: 1fr 1fr; }
  .impact__card{ padding: 22px 16px; }
}

/* ==================================================================
   SKILL BARS — proficiency bars driven by --pct custom property
   ================================================================== */
.skillbars{
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 44px;
}

.skillbar__head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
}

.skillbar__label{
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.skillbar__pct{
  font-family: var(--font-mono);
  font-size: 0.92rem;
  color: var(--accent);
}

.skillbar__track{
  height: 10px;
  border-radius: 6px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  overflow: hidden;
}

.skillbar__fill{
  height: 100%;
  width: 0%;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--accent), var(--warn));
  transition: width 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Filled via JS reading the --pct var once the bar scrolls into view */
.skillbar.is-filled .skillbar__fill{
  width: calc(var(--pct) * 1%);
}

/* ==================================================================
   SKILLS (chip lists)
   ================================================================== */
.skills__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.skills__card{
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.skills__card:hover{
  border-color: rgba(61,220,151,0.35);
  transform: translateY(-3px);
}

.skills__card-title{
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--accent);
}

.skills__list li{
  font-size: 1.02rem;
  color: var(--text-dim);
  padding: 9px 0;
  border-top: 1px solid var(--panel-border);
}
.skills__list li:first-child{ border-top: none; padding-top: 0; }

.skills__list--tools{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.skills__list--tools li{
  border-top: none;
  padding: 7px 13px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

/* ==================================================================
   EXPERIENCE — TIMELINE
   ================================================================== */
.timeline{
  position: relative;
}

.timeline__item{
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 24px;
  padding-bottom: 48px;
  position: relative;
}
.timeline__item:last-child{ padding-bottom: 0; }

.timeline__marker{
  position: relative;
  display: flex;
  justify-content: center;
}
.timeline__marker::before{
  content: '';
  position: absolute;
  top: 22px;
  bottom: -48px;
  width: 1px;
  background: var(--panel-border);
}
.timeline__item:last-child .timeline__marker::before{ display: none; }

.timeline__marker-dot{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--text-faint);
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 1px var(--panel-border);
  margin-top: 6px;
  z-index: 1;
}
.timeline__marker-dot--active{
  background: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 0 14px 0 var(--accent-soft);
}

.timeline__content{
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: 26px 28px;
}

.timeline__head{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.timeline__role{
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 600;
}

.timeline__status{
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 3px 9px;
  border-radius: 20px;
}

.timeline__org{
  color: var(--text-dim);
  font-size: 1.02rem;
  margin-bottom: 2px;
}

.timeline__period{
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-faint);
  margin-bottom: 16px;
}

.timeline__bullets li{
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  font-size: 1.02rem;
  color: var(--text-dim);
  line-height: 1.7;
}
.timeline__bullets li::before{
  content: '›';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.timeline__bullets li:last-child{ margin-bottom: 0; }

/* ==================================================================
   FINDINGS — BUG BOUNTY
   ================================================================== */
.findings__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.findings__card{
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.findings__card:hover{
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.14);
}

.findings__severity{
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 4px 11px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.findings__severity--critical{ background: var(--danger-soft); color: var(--danger); }
.findings__severity--high{ background: var(--warn-soft); color: var(--warn); }
.findings__severity--medium{ background: var(--accent-soft); color: var(--accent); }
.findings__severity--info{ background: rgba(141,154,160,0.12); color: var(--text-dim); }

.findings__text{
  font-size: 1.04rem;
  color: var(--text-dim);
  line-height: 1.7;
}
.findings__text strong{ color: var(--text); }

/* ==================================================================
   CERTIFICATIONS
   ================================================================== */
.cert__row{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cert__chip{
  font-family: var(--font-mono);
  font-size: 0.98rem;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(61,220,151,0.3);
  padding: 14px 22px;
  border-radius: var(--radius-sm);
}

/* ==================================================================
   EDUCATION
   ================================================================== */
.edu__list{
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.edu__item{
  border-left: 2px solid var(--panel-border);
  padding-left: 22px;
}

.edu__degree{
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.edu__school{
  color: var(--text-dim);
  font-size: 1.02rem;
  margin-bottom: 4px;
}

.edu__period{
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-faint);
}

/* ==================================================================
   CONTACT — direct details only, no form by design
   ================================================================== */
.contact__intro{
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: var(--text-dim);
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact__grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.contact__card{
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  padding: 22px 22px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

a.contact__card:hover,
a.contact__card:focus-visible{
  border-color: var(--accent);
  transform: translateY(-3px);
}

.contact__card-label{
  font-family: var(--font-mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-faint);
}

.contact__card-value{
  font-size: 1.02rem;
  color: var(--text);
  word-break: break-word;
}

@media (max-width: 860px){
  .contact__grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px){
  .contact__grid{ grid-template-columns: 1fr; }
}

/* ==================================================================
   FOOTER
   ================================================================== */
.footer{
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px var(--gutter) 50px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-faint);
}
.footer p{ margin: 4px 0; }

/* ==================================================================
   SCROLL REVEAL (generic helper, toggled via JS)
   ================================================================== */
.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* ==================================================================
   RESPONSIVE
   ================================================================== */
@media (max-width: 860px){
  .skills__grid{ grid-template-columns: 1fr; }
  .findings__grid{ grid-template-columns: 1fr; }
}

@media (max-width: 720px){
  .nav__toggle{ display: flex; }

  .nav__links{
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10,14,15,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--panel-border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav__links.is-open{
    max-height: 360px;
  }
  .nav__links li{
    width: 100%;
  }
  .nav__links a{
    display: block;
    padding: 16px var(--gutter);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--panel-border);
  }

  .section{ padding: 76px var(--gutter) 64px; }
  .section__title{ margin-bottom: 28px; }

  .hero{ min-height: 92vh; padding-top: calc(var(--nav-height) + 20px); }
  .hero__terminal-body{ font-size: 0.84rem; }

  .nav__links a{
    font-size: 1.05rem;
  }

  .timeline__item{ grid-template-columns: 18px 1fr; gap: 14px; }
  .timeline__content{ padding: 20px 18px; }
  .timeline__marker::before{ top: 20px; }

  .hero__meta-item{ min-width: 130px; flex: 1 1 130px; }
}

@media (max-width: 420px){
  .hero__name{ font-size: 2.3rem; }
  .hero__meta{ gap: 10px; }
  .hero__meta-item{ min-width: 100%; }
  .skillbar__label{ font-size: 0.95rem; }
  .impact__num{ font-size: 1.7rem; }
  .impact__label{ font-size: 0.82rem; }
}
