/* css/styles.css — emerald/teal premium theme */

/* -----------------------------
   1) Theme + Design Tokens
-------------------------------- */
:root{
  --bg: #08110d;
  --panel: rgba(13, 22, 18, 0.82);
  --panelSolid: #0d1612;
  --panel2: rgba(16, 28, 22, 0.72);

  --text: #eafaf2;
  --muted: rgba(234, 250, 242, 0.68);
  --muted2: rgba(234, 250, 242, 0.50);

  --accent: #4ade80;
  --accent2: #14b8a6;
  --accent3: #84cc16;
  --good: #86efac;
  --warn: #fde68a;
  --bad: #f87171;

  --brd: rgba(74, 222, 128, 0.16);
  --brd2: rgba(255, 255, 255, 0.08);

  --shadow: 0 24px 60px rgba(0,0,0,0.55);
  --shadow2: 0 14px 34px rgba(0,0,0,0.42);

  --radius-xl: 22px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 10px;

  --pad-xl: 26px;
  --pad-lg: 20px;
  --pad-md: 16px;
  --pad-sm: 12px;

  --max: 1120px;

  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

html[data-theme="light"]{
  --bg: #f4fbf7;
  --panel: rgba(255,255,255,0.82);
  --panelSolid: #ffffff;
  --panel2: rgba(255,255,255,0.72);

  --text: #09120e;
  --muted: rgba(9, 18, 14, 0.64);
  --muted2: rgba(9, 18, 14, 0.48);

  --brd: rgba(20, 184, 166, 0.16);
  --brd2: rgba(0,0,0,0.08);

  --shadow: 0 20px 50px rgba(0,0,0,0.10);
  --shadow2: 0 12px 28px rgba(0,0,0,0.08);
}

@media (prefers-color-scheme: light){
  html[data-theme="auto"]{
    --bg: #f4fbf7;
    --panel: rgba(255,255,255,0.82);
    --panelSolid: #ffffff;
    --panel2: rgba(255,255,255,0.72);

    --text: #09120e;
    --muted: rgba(9, 18, 14, 0.64);
    --muted2: rgba(9, 18, 14, 0.48);

    --brd: rgba(20, 184, 166, 0.16);
    --brd2: rgba(0,0,0,0.08);

    --shadow: 0 20px 50px rgba(0,0,0,0.10);
    --shadow2: 0 12px 28px rgba(0,0,0,0.08);
  }
}

/* -----------------------------
   2) Base
-------------------------------- */
*{ box-sizing: border-box; }
html, body{ height: 100%; }

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background:
    radial-gradient(1000px 680px at 14% -8%, rgba(74,222,128,0.18), transparent 60%),
    radial-gradient(920px 620px at 88% 8%, rgba(20,184,166,0.16), transparent 58%),
    radial-gradient(860px 620px at 56% 115%, rgba(132,204,22,0.10), transparent 60%),
    var(--bg);
  background-attachment: fixed;
  overflow-x: hidden;
  position: relative;
}

body::before,
body::after{
  content: "";
  position: fixed;
  inset: auto;
  width: 42vw;
  height: 42vw;
  border-radius: 999px;
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.30;
  transform: translate3d(0,0,0);
}

body::before{
  left: -10vw;
  top: -8vw;
  background: radial-gradient(circle, rgba(74,222,128,0.26), transparent 65%);
  animation: bgFloatA 24s ease-in-out infinite;
}

body::after{
  right: -8vw;
  bottom: -12vw;
  background: radial-gradient(circle, rgba(20,184,166,0.22), transparent 65%);
  animation: bgFloatB 30s ease-in-out infinite;
}

@keyframes bgFloatA{
  0%,100%{ transform: translate3d(0,0,0) scale(1); }
  50%{ transform: translate3d(4vw, 2vw, 0) scale(1.06); }
}

@keyframes bgFloatB{
  0%,100%{ transform: translate3d(0,0,0) scale(1); }
  50%{ transform: translate3d(-5vw, -3vw, 0) scale(1.08); }
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: none; }
img{ max-width: 100%; display: block; }

::selection{
  background: rgba(74,222,128,0.24);
  color: var(--text);
}

.muted{ color: var(--muted); }
.mono{ font-family: var(--mono); }

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  *{
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  body::before,
  body::after{
    animation: none !important;
  }
}

/* -----------------------------
   3) Layout
-------------------------------- */
.page{
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 18px 56px;
  position: relative;
}

.section{
  margin-top: 44px;
}

.section-head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.section-head h2{
  margin: 0;
  font-size: 20px;
  letter-spacing: 0.2px;
}

.section-head .hint{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* -----------------------------
   4) Topbar
-------------------------------- */
.topbar{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(8,17,13,0.82), rgba(8,17,13,0.48));
  border-bottom: 1px solid var(--brd2);
}

html[data-theme="light"] .topbar,
html[data-theme="auto"] .topbar{
  background: linear-gradient(to bottom, rgba(244,251,247,0.88), rgba(244,251,247,0.56));
}

.topbar-inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark{
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, var(--accent), var(--accent2));
  box-shadow:
    0 0 0 6px rgba(74,222,128,0.10),
    0 0 34px rgba(20,184,166,0.22);
}

.brand-text{
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name{
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand-sub{
  font-size: 12px;
  color: var(--muted);
}

.nav{
  display: flex;
  align-items: center;
  gap: 14px;
}

.navlink{
  font-size: 13px;
  color: var(--muted);
  padding: 8px 8px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.navlink:hover{
  color: var(--text);
  background: rgba(255,255,255,0.04);
  border-color: rgba(74,222,128,0.16);
  box-shadow: 0 0 0 1px rgba(20,184,166,0.08) inset;
  transform: translateY(-1px);
}

.nav-actions{
  display: flex;
  align-items: center;
  gap: 10px;
}

.scrollbar{
  height: 2px;
  width: 100%;
  background: rgba(255,255,255,0.06);
}

html[data-theme="light"] .scrollbar,
html[data-theme="auto"] .scrollbar{
  background: rgba(0,0,0,0.06);
}

.scrollbar-fill{
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3));
}

/* -----------------------------
   5) Buttons + Chips
-------------------------------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--brd2);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
  user-select: none;
  position: relative;
  overflow: hidden;
}

.btn::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.10) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 420ms ease;
  pointer-events: none;
}

.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(74,222,128,0.22);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 10px 24px rgba(0,0,0,0.24);
}

.btn:hover::before{
  transform: translateX(120%);
}

.btn:active{
  transform: translateY(0px);
  box-shadow: none;
}

.btn.primary{
  border-color: rgba(74,222,128,0.30);
  background: linear-gradient(180deg, rgba(74,222,128,0.18), rgba(20,184,166,0.10));
  box-shadow:
    0 14px 30px rgba(20,184,166,0.10),
    0 0 0 1px rgba(74,222,128,0.08) inset;
}

.btn.primary:hover{
  border-color: rgba(74,222,128,0.44);
  box-shadow:
    0 18px 40px rgba(20,184,166,0.14),
    0 0 0 1px rgba(74,222,128,0.10) inset;
}

.btn.ghost{
  background: transparent;
  border-color: var(--brd2);
}

.btn.icon{
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 12px;
}

.btn.small{
  padding: 8px 10px;
  border-radius: 11px;
  font-size: 12px;
}

.chip-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--brd2);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
  position: relative;
  overflow: hidden;
}

.chip-btn::before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(74,222,128,0.16), transparent 58%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.chip-btn:hover{
  transform: translateY(-1px);
  color: var(--text);
  border-color: rgba(74,222,128,0.24);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 8px 18px rgba(0,0,0,0.16);
}

.chip-btn:hover::before{
  opacity: 1;
}

.chip-btn.active{
  color: var(--text);
  border-color: rgba(74,222,128,0.34);
  background: linear-gradient(180deg, rgba(74,222,128,0.14), rgba(20,184,166,0.07));
  box-shadow: 0 0 0 1px rgba(74,222,128,0.06) inset;
}

/* -----------------------------
   6) Hero
-------------------------------- */
.hero{
  padding-top: 16px;
  display: grid;
  gap: 18px;
}

.hero-top{
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: 18px;
  align-items: stretch;
}

.hero-intro{
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 6px 0;
}

.hero-bottom{
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
  align-items: start;
}

.hero-bottom-left{
  min-width: 0;
}

.hero-bottom-right{
  min-width: 0;
}

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

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--brd2);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0,0,0,0.14);
  width: fit-content;
}

.pulse-dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(74,222,128,0.12);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse{
  0%, 100%{ box-shadow: 0 0 0 6px rgba(74,222,128,0.10); }
  50%{ box-shadow: 0 0 0 10px rgba(20,184,166,0.06); }
}

.hero h1{
  margin: 16px 0 0;
  font-size: 60px;
  line-height: 0.98;
  letter-spacing: -1.4px;
  max-width: 10ch;
  background: linear-gradient(90deg, #f3fff7 0%, #bbf7d0 42%, #5eead4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 980px){
  .hero h1{
    font-size: 50px;
    max-width: 12ch;
  }
}

@media (max-width: 560px){
  .hero h1{
    font-size: 36px;
    line-height: 1.02;
    letter-spacing: -0.8px;
  }
}

.sub{
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  max-width: 66ch;
}

.cta{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0 14px;
}

.hero-metrics{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 560px){
  .hero-metrics{ grid-template-columns: 1fr; }
}

.metric{
  border-radius: var(--radius-lg);
  border: 1px solid var(--brd2);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  box-shadow: var(--shadow2);
  padding: 14px 14px;
  position: relative;
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.metric::before{
  content: "";
  position: absolute;
  inset: -60% -40%;
  background:
    radial-gradient(circle at 30% 30%, rgba(74,222,128,0.14), transparent 55%);
  transform: rotate(12deg);
  pointer-events: none;
  transition: transform 320ms ease, opacity 320ms ease;
}

.metric:hover{
  transform: translateY(-2px);
  border-color: rgba(74,222,128,0.22);
  box-shadow: 0 18px 36px rgba(0,0,0,0.24);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
}

.metric:hover::before{
  transform: rotate(4deg) scale(1.04);
  opacity: 1;
}

.metric-k{
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.2px;
}

.metric-v{
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.glass-card{
  border-radius: var(--radius-xl);
  border: 1px solid var(--brd2);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  box-shadow: var(--shadow);
  padding: var(--pad-lg);
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.glass-card::before{
  content: "";
  position: absolute;
  inset: -40% -30%;
  background:
    radial-gradient(circle at 35% 35%, rgba(20,184,166,0.16), transparent 62%),
    radial-gradient(circle at 75% 55%, rgba(74,222,128,0.16), transparent 62%);
  transform: rotate(-8deg);
  pointer-events: none;
  animation: glassDrift 16s ease-in-out infinite;
}

@keyframes glassDrift{
  0%,100%{ transform: rotate(-8deg) translate3d(0,0,0); }
  50%{ transform: rotate(-4deg) translate3d(8px,-4px,0); }
}

.glass-title{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.1px;
  margin-bottom: 12px;
}

.glass-title .muted{
  margin-left: auto;
  font-weight: 700;
  font-size: 12px;
  color: var(--muted);
}

.spark{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--good);
  box-shadow: 0 0 0 6px rgba(134,239,172,0.10);
}

.flow{
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.node{
  border: 1px solid var(--brd2);
  border-radius: 14px;
  padding: 11px 12px;
  background: rgba(0,0,0,0.12);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.node:hover{
  transform: translateX(2px);
  border-color: rgba(74,222,128,0.22);
  background: rgba(255,255,255,0.04);
}

html[data-theme="light"] .node,
html[data-theme="auto"] .node{
  background: rgba(0,0,0,0.04);
}

.arrow{
  height: 14px;
  position: relative;
  margin: -2px 0 -2px;
}

.arrow::before{
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 50%;
  height: 2px;
  background:
    linear-gradient(
      90deg,
      rgba(74,222,128,0.0),
      rgba(74,222,128,0.78),
      rgba(20,184,166,0.78),
      rgba(74,222,128,0.0)
    );
  transform: translateY(-50%);
  animation: flowline 2.4s linear infinite;
  background-size: 220% 100%;
}

.arrow::after{
  content: "➜";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-52%);
  color: rgba(74,222,128,0.78);
  font-weight: 900;
  font-size: 12px;
}

@keyframes flowline{
  0%{ background-position: 0% 0%; opacity: 0.55; }
  50%{ opacity: 0.98; }
  100%{ background-position: 100% 0%; opacity: 0.55; }
}

.glass-footer{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.pill{
  font-size: 11px;
  font-weight: 800;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--brd2);
  color: var(--muted);
  background: rgba(255,255,255,0.03);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.pill:hover{
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(74,222,128,0.22);
  color: var(--text);
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

.mini-grid{
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

@media (max-width: 980px){
  .mini-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

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

.mini{
  border-radius: var(--radius-lg);
  border: 1px solid var(--brd2);
  background: rgba(255,255,255,0.03);
  padding: 12px 12px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.mini:hover{
  transform: translateY(-2px);
  border-color: rgba(74,222,128,0.20);
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
}

.mini-k{
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.2px;
}

.mini-v{
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.hero-profile-card{
  position: relative;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: center;
  border-radius: var(--radius-xl);
  border: 1px solid var(--brd2);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  box-shadow: var(--shadow);
  padding: 24px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
  min-height: 100%;
}

.hero-profile-card:hover{
  border-color: rgba(74,222,128,0.22);
  box-shadow: 0 28px 70px rgba(0,0,0,0.58);
}

.hero-profile-card::before{
  content: "";
  position: absolute;
  inset: -35% -25%;
  background:
    radial-gradient(circle at 25% 25%, rgba(74,222,128,0.16), transparent 34%),
    radial-gradient(circle at 75% 30%, rgba(20,184,166,0.16), transparent 36%),
    radial-gradient(circle at 50% 85%, rgba(132,204,22,0.10), transparent 30%);
  pointer-events: none;
}

.hero-profile-card::after{
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(74,222,128,0.24) 25%,
    rgba(20,184,166,0.18) 50%,
    rgba(132,204,22,0.18) 75%,
    transparent 100%
  );
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  opacity: 0.9;
  animation: profileBorderShimmer 7s linear infinite;
  pointer-events: none;
}

.hero-profile-card-large{
  min-height: 380px;
}

@keyframes profileBorderShimmer{
  0%{ transform: translateX(-18%); opacity: 0.55; }
  50%{ transform: translateX(18%); opacity: 1; }
  100%{ transform: translateX(-18%); opacity: 0.55; }
}

.hero-profile-glow{
  position: absolute;
  inset: auto -20% -35% auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(20,184,166,0.20), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
}

.hero-profile-media{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}

.hero-profile-ring{
  position: absolute;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background:
    conic-gradient(
      from 180deg,
      rgba(74,222,128,0.95),
      rgba(20,184,166,0.90),
      rgba(132,204,22,0.82),
      rgba(74,222,128,0.95)
    );
  filter: blur(0.2px);
  animation: profileSpin 10s linear infinite;
  opacity: 0.92;
}

.hero-profile-ring::after{
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: var(--panelSolid);
}

.hero-profile-avatar{
  position: relative;
  z-index: 2;
  width: 186px;
  height: 186px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.14);
  box-shadow:
    0 14px 38px rgba(0,0,0,0.42),
    0 0 0 10px rgba(74,222,128,0.05);
  animation: profileFloat 4.2s ease-in-out infinite;
}

.hero-profile-content{
  position: relative;
  z-index: 1;
}

.hero-profile-topline{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.hero-profile-status-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--good);
  box-shadow: 0 0 0 6px rgba(134,239,172,0.10);
}

.hero-profile-name{
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.02;
  letter-spacing: -0.6px;
  background: linear-gradient(90deg, #f3fff7 0%, #a7f3d0 45%, #5eead4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-profile-copy{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.hero-profile-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.hero-profile-chip{
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--brd2);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.hero-profile-chip:hover{
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(74,222,128,0.24);
  color: var(--text);
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

@keyframes profileFloat{
  0%, 100%{ transform: translateY(0px); }
  50%{ transform: translateY(-6px); }
}

@keyframes profileSpin{
  0%{ transform: rotate(0deg); }
  100%{ transform: rotate(360deg); }
}

@media (max-width: 980px){
  .hero-profile-card{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-profile-topline{
    justify-content: center;
  }

  .hero-profile-chips{
    justify-content: center;
  }
}

@media (max-width: 560px){
  .hero-profile-avatar{
    width: 148px;
    height: 148px;
  }

  .hero-profile-ring{
    width: 170px;
    height: 170px;
  }

  .hero-profile-name{
    font-size: 23px;
  }

  .hero-profile-card{
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .hero-profile-card-large{
    min-height: auto;
  }

  .hero-profile-media{
    min-height: 190px;
  }
}

/* -----------------------------
   7) Toolbar (Search + Filters)
-------------------------------- */
.toolbar{
  margin: 14px 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.search{
  flex: 1 1 360px;
  min-width: 260px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 14px;
  border: 1px solid var(--brd2);
  background: rgba(255,255,255,0.03);
  padding: 10px 12px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.search:focus-within{
  border-color: rgba(74,222,128,0.22);
  box-shadow: 0 0 0 3px rgba(20,184,166,0.08);
  background: rgba(255,255,255,0.04);
}

.search-ico{
  color: var(--muted);
  font-weight: 900;
  font-size: 14px;
}

.search input{
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.search input::placeholder{
  color: rgba(234,250,242,0.45);
}

html[data-theme="light"] .search input::placeholder,
html[data-theme="auto"] .search input::placeholder{
  color: rgba(9,18,14,0.45);
}

.filters{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* -----------------------------
   8) Cards (Projects)
-------------------------------- */
.cards{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

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

.card{
  border-radius: var(--radius-xl);
  border: 1px solid var(--brd2);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  box-shadow: var(--shadow2);
  padding: var(--pad-lg);
  position: relative;
  overflow: hidden;
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    background 240ms ease;
}

.card::before{
  content: "";
  position: absolute;
  inset: -50% -40%;
  background:
    radial-gradient(circle at 30% 30%, rgba(74,222,128,0.12), transparent 58%),
    radial-gradient(circle at 72% 56%, rgba(20,184,166,0.10), transparent 60%),
    radial-gradient(circle at 48% 86%, rgba(132,204,22,0.08), transparent 44%);
  transform: rotate(12deg) translate3d(0,0,0);
  pointer-events: none;
  opacity: 0.82;
  transition:
    transform 420ms ease,
    opacity 260ms ease;
}

.card::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255,255,255,0.02) 30%,
    rgba(74,222,128,0.06) 48%,
    rgba(20,184,166,0.05) 56%,
    transparent 78%
  );
  transform: translateX(-120%);
  transition: transform 650ms ease;
  pointer-events: none;
}

.card:hover{
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(74,222,128,0.22);
  box-shadow: 0 26px 62px rgba(0,0,0,0.46);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
}

.card:hover::before{
  transform: rotate(6deg) scale(1.03) translate3d(8px,-6px,0);
  opacity: 1;
}

.card:hover::after{
  transform: translateX(120%);
}

.card-top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.card-title h3{
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.1px;
}

.meta{
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.stack{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  max-width: 340px;
  position: relative;
  z-index: 1;
}

.tag{
  font-size: 11px;
  font-weight: 800;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--brd2);
  background: rgba(0,0,0,0.12);
  color: var(--muted);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.tag:hover{
  transform: translateY(-1px);
  border-color: rgba(74,222,128,0.20);
  color: var(--text);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 8px 18px rgba(0,0,0,0.14);
}

html[data-theme="light"] .tag,
html[data-theme="auto"] .tag{
  background: rgba(0,0,0,0.04);
}

.kpis{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 10px;
  position: relative;
  z-index: 1;
}

.kpi{
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid var(--brd2);
  background: rgba(255,255,255,0.03);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.kpi:hover{
  transform: translateY(-1px);
  border-color: rgba(74,222,128,0.22);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.kpi-k{
  font-weight: 900;
  font-size: 12px;
}

.kpi-v{
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
}

.desc{
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

.award{
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  padding: 8px 12px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(132,204,22,0.10), rgba(74,222,128,0.06));
  border: 1px solid rgba(132,204,22,0.22);
  color: var(--text);
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 20px rgba(0,0,0,0.10);
}

.bullets{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.bullets li{
  margin: 6px 0;
}

.card-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
  position: relative;
  z-index: 1;
}

/* Featured project emphasis */
.card[data-title="Enterprise Social ROI & Attribution Engine"],
.card[data-title="AI Data Intelligence Agent"],
.card[data-title="Real-Time Fraud Detection System"]{
  border-color: rgba(74,222,128,0.18);
  box-shadow:
    0 20px 44px rgba(0,0,0,0.30),
    0 0 0 1px rgba(74,222,128,0.05) inset;
}

.card[data-title="Enterprise Social ROI & Attribution Engine"]::before,
.card[data-title="AI Data Intelligence Agent"]::before,
.card[data-title="Real-Time Fraud Detection System"]::before{
  opacity: 0.95;
}

/* Hide cards when filtered */
.card.is-hidden{
  display: none !important;
}

/* -----------------------------
   9) Timeline (Experience)
-------------------------------- */
.timeline{
  border-radius: var(--radius-xl);
  border: 1px solid var(--brd2);
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow2);
  padding: var(--pad-lg);
}

.t-item{
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 12px;
  padding: 14px 6px;
  border-bottom: 1px solid var(--brd2);
  transition: background 180ms ease, border-color 180ms ease;
}

.t-item:hover{
  background: rgba(255,255,255,0.02);
}

.t-item:last-child{
  border-bottom: none;
}

.t-dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 6px;
  background: linear-gradient(180deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 6px rgba(74,222,128,0.10);
}

.t-top{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.t-role{
  font-weight: 900;
  letter-spacing: -0.1px;
}

.t-meta{
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
}

.t-desc{
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

/* Keep bullet lists inside timeline styled cleanly */
.t-bullets{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.t-bullets li{
  margin: 6px 0;
}

/* -----------------------------
   10) Skill + Principles Grids
-------------------------------- */
.skill-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

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

.skill-card{
  border-radius: var(--radius-xl);
  border: 1px solid var(--brd2);
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow2);
  padding: var(--pad-lg);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.skill-card:hover{
  transform: translateY(-2px);
  border-color: rgba(74,222,128,0.20);
  box-shadow: 0 18px 34px rgba(0,0,0,0.18);
}

.skill-k{
  font-weight: 950;
  letter-spacing: -0.1px;
}

.skill-v{
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.principles{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

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

.p-card{
  border-radius: var(--radius-xl);
  border: 1px solid var(--brd2);
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow2);
  padding: var(--pad-lg);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.p-card:hover{
  transform: translateY(-2px);
  border-color: rgba(74,222,128,0.20);
  box-shadow: 0 18px 34px rgba(0,0,0,0.18);
}

.p-k{
  font-weight: 950;
  letter-spacing: -0.1px;
}

.p-v{
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

/* -----------------------------
   10.5) GitHub panel + repos
-------------------------------- */
.github-panel{
  border-radius: var(--radius-xl);
  border: 1px solid var(--brd2);
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow2);
  padding: var(--pad-lg);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.github-panel:hover{
  transform: translateY(-2px);
  border-color: rgba(74,222,128,0.18);
  box-shadow: 0 18px 36px rgba(0,0,0,0.18);
}

.github-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.github-user{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}

.gh-avatar{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--brd2);
  background: radial-gradient(circle at 30% 30%, rgba(74,222,128,0.55), rgba(20,184,166,0.35));
  box-shadow: 0 0 0 6px rgba(74,222,128,0.08);
}

.github-name{
  font-weight: 950;
  letter-spacing: -0.1px;
}

.github-sub{
  margin-top: 2px;
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
}

.github-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.github-status{
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
  margin: 10px 0 12px;
}

.github-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

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

.repo-meta{
  align-items: center;
}

.repo-lang{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(74,222,128,0.10);
}

.repo{
  border-radius: var(--radius-lg);
  border: 1px solid var(--brd2);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  padding: 12px 12px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.repo:hover{
  transform: translateY(-2px);
  border-color: rgba(74,222,128,0.20);
  box-shadow: 0 14px 28px rgba(0,0,0,0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
}

.repo-name{
  font-weight: 950;
  letter-spacing: -0.1px;
}

.repo-desc{
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.repo-meta{
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
}

.github-foot{
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}


/* -----------------------------
   10.6) Certifications
-------------------------------- */
.cert-grid{
  border-radius: var(--radius-xl);
  border: 1px solid var(--brd2);
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow2);
  padding: var(--pad-lg);
  display: grid;
  gap: 10px;
}

.cert{
  border-radius: 14px;
  border: 1px solid var(--brd2);
  background: rgba(0,0,0,0.12);
  padding: 11px 12px;
  font-weight: 850;
  color: var(--text);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.cert:hover{
  transform: translateY(-2px);
  border-color: rgba(74,222,128,0.20);
  box-shadow: 0 12px 24px rgba(0,0,0,0.14);
  background: rgba(255,255,255,0.04);
}

html[data-theme="light"] .cert,
html[data-theme="auto"] .cert{
  background: rgba(0,0,0,0.04);
}

/* -----------------------------
   10.7) Education
-------------------------------- */
.edu-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

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

.edu-card{
  border-radius: var(--radius-xl);
  border: 1px solid var(--brd2);
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow2);
  padding: var(--pad-lg);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.edu-card:hover{
  transform: translateY(-2px);
  border-color: rgba(74,222,128,0.18);
  box-shadow: 0 14px 28px rgba(0,0,0,0.14);
}

.edu-k{
  font-weight: 950;
  letter-spacing: -0.1px;
}

.edu-v{
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

/* -----------------------------
   10.8) Contact
-------------------------------- */
.contact-card{
  border-radius: var(--radius-xl);
  border: 1px solid var(--brd2);
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow2);
  padding: var(--pad-lg);
}

.contact-row{
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--brd2);
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-row:hover{
  background: rgba(255,255,255,0.02);
  border-color: rgba(74,222,128,0.14);
}

.contact-row:last-of-type{
  border-bottom: none;
}

.contact-label{
  color: var(--muted);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.2px;
}

.contact-value{
  font-weight: 850;
}

.contact-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

/* Modal note in your HTML */
#archModal .modal-note{
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

/* -----------------------------
   11) Modal (Architecture diagrams)
-------------------------------- */
#archModal.modal{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 22px;
}

#archModal.modal.open{
  display: flex;
}

#archModal .modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

#archModal .modal-card{
  position: relative;
  width: min(980px, 100%);
  border-radius: var(--radius-xl);
  border: 1px solid var(--brd2);
  background: var(--panelSolid);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateY(10px) scale(0.985);
  opacity: 0;
  animation: modalCardIn 320ms ease forwards;
}

@keyframes modalCardIn{
  to{
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

#archModal .modal-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--brd2);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}

#archModal .modal-title{
  font-weight: 950;
  letter-spacing: -0.1px;
  font-size: 14px;
}

#archModal #archModalClose,
#archModal .modal-close{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid var(--brd2);
  background: rgba(255,255,255,0.03);
  cursor: pointer;
  color: var(--text);
  font-weight: 900;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

#archModal #archModalClose:hover,
#archModal .modal-close:hover{
  transform: translateY(-1px);
  border-color: rgba(74,222,128,0.20);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.16);
}

#archModal .modal-body{
  padding: 16px;
}

#archModal .diagram{
  border-radius: var(--radius-lg);
  border: 1px solid var(--brd2);
  background: rgba(0,0,0,0.18);
  padding: 14px;
  overflow: auto;
}

#archModal .diagram svg{
  width: 100%;
  height: auto;
}

#archModal .diagram line{
  stroke-dasharray: 8 8;
  animation: archFlow 8s linear infinite;
}

@keyframes archFlow{
  from{ stroke-dashoffset: 0; }
  to{ stroke-dashoffset: -120; }
}

html[data-theme="light"] #archModal .diagram,
html[data-theme="auto"] #archModal .diagram{
  background: rgba(0,0,0,0.05);
}

#archModal .tip,
#archModal .modal-tip{
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

#archModal .diagram-grid{
  display: grid;
  gap: 10px;
}

#archModal .diagram-row{
  display: grid;
  grid-template-columns: 1fr 28px 1fr;
  align-items: center;
  gap: 10px;
}

#archModal .d-box{
  border-radius: 14px;
  border: 1px solid var(--brd2);
  background: rgba(255,255,255,0.03);
  padding: 11px 12px;
  font-weight: 900;
  font-size: 13px;
  white-space: nowrap;
}

#archModal .d-arrow{
  text-align: center;
  color: rgba(74,222,128,0.78);
  font-weight: 900;
}

.modal-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 22px;
}

.modal-overlay.open{
  display: flex;
}

.modal-overlay .modal{
  width: min(980px, 100%);
  border-radius: var(--radius-xl);
  border: 1px solid var(--brd2);
  background: var(--panelSolid);
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* -----------------------------
   12) Toast
-------------------------------- */
.toast{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  pointer-events: none;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--brd2);
  background: rgba(0,0,0,0.55);
  color: var(--text);
  font-weight: 900;
  font-size: 12px;
  box-shadow: var(--shadow2);
  transition: transform 220ms ease, opacity 220ms ease;
}

html[data-theme="light"] .toast,
html[data-theme="auto"] .toast{
  background: rgba(255,255,255,0.92);
  color: var(--text);
}

.toast.show{
  opacity: 1;
  transform: translateX(-50%) translateY(0px);
}

/* -----------------------------
   13) Reveal Animations
-------------------------------- */
.reveal{
  opacity: 0;
  transform: translateY(14px);
}

.reveal.in{
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

/* -----------------------------
   14) Small utilities
-------------------------------- */
hr.sep{
  border: 0;
  height: 1px;
  background: var(--brd2);
  margin: 14px 0;
}

.footer{
  margin-top: 26px;
  color: var(--muted2);
  font-size: 12px;
  text-align: center;
  padding: 18px 0 0;
}

:focus-visible{
  outline: 2px solid rgba(74,222,128,0.55);
  outline-offset: 2px;
  border-radius: 10px;
}