:root {
  --bg: #0d0d0d;
  --accent: #be1549;
  --accent-rgb: 190, 21, 73;
  --text: #ffffff;
  --text-muted: #888888;
  --text-strong: rgba(255, 255, 255, 0.82);
  --text-body: rgba(255, 255, 255, 0.72);
  --surface: rgba(255, 255, 255, 0.03);
  --surface-hover: rgba(255, 255, 255, 0.08);
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-soft: rgba(255, 255, 255, 0.15);
  --border-strong: rgba(255, 255, 255, 0.3);
  --nav-bg-rgb: 13, 13, 13;
  --terminal-bg: #0a0a0a;
  --glitch-alt-rgb: 255, 255, 255;
  --glare-color: rgba(255, 255, 255, 0.07);
  --max-width: 900px;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Fira Code', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
  border: 2px solid transparent;
  background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover { background: #d41a56; }
* { scrollbar-width: thin; scrollbar-color: var(--accent) transparent; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

body { cursor: none; }

.cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  top: 0; left: 0;
  will-change: transform;
}

.cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border: 1px solid rgba(var(--accent-rgb),0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  top: 0; left: 0;
  will-change: transform;
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}
.cursor-ring.magnet-hover {
  width: 48px; height: 48px;
  border-color: var(--accent);
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  padding-top: calc(1.25rem + env(safe-area-inset-top, 0px));
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(var(--nav-bg-rgb), 0.9);
  backdrop-filter: blur(8px);
}

@media (hover: none) {
  nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(var(--nav-bg-rgb), 0.96);
  }
}

.nav-logo {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--accent);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.active { color: var(--accent); }

#hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1rem;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-content.visible { opacity: 1; }

.hero-headline {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  height: 1.4em;
}

.hero-subtitle {
  font-family: var(--font-mono);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--accent);
  margin-bottom: 2.5rem;
  height: 2em;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 0.75rem 1.75rem;
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}
.btn:hover { background: var(--accent); color: var(--bg); }

.btn-ghost {
  border-color: var(--border-strong);
  color: var(--text);
}
.btn-ghost:hover { background: var(--surface-hover); color: var(--text); }

#about {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
}

.about-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: center;
}

.hl {
  color: var(--accent);
  font-family: var(--font-mono);
}

.about-bio {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-strong);
}

.about-aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.about-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid var(--accent);
  box-shadow: 0 0 24px rgba(var(--accent-rgb),0.35);
}

.facts-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.facts-list li {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.facts-list li svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--accent);
}

#experience {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem;
}

.experience-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.timeline {
  position: relative;
  padding-left: 2.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent), 0 0 24px rgba(var(--accent-rgb),0.25);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 1.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.timeline.line-drawn::before { transform: scaleY(1); }

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-2.5rem - 4px);
  top: 1.2rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.timeline-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 1.5rem;
  transition: border-color 0.3s;
}
.timeline-card:hover { border-color: rgba(var(--accent-rgb),0.45); }

[data-tilt] {
  position: relative;
}
[data-tilt]::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(320px circle at var(--glare-x, 50%) var(--glare-y, 50%), var(--glare-color), transparent 65%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
[data-tilt]:hover::after { opacity: 1; }


.timeline-role {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.timeline-company {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.timeline-dates {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.timeline-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.timeline-bullets li {
  font-size: 0.88rem;
  color: var(--text-body);
  padding-left: 1.1rem;
  position: relative;
}

.timeline-bullets li::before {
  content: '▹';
  position: absolute;
  left: 0;
  color: var(--accent);
}

#skills {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem;
}

.skills-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.skill-group { margin-bottom: 2rem; text-align: center; }

.skill-group-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 580px;
  justify-content: center;
  margin: 0 auto;
}

.skill-tag {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(var(--accent-rgb),0.25);
  border-radius: 4px;
  color: var(--text-body);
  transition: box-shadow 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.skill-tag:hover {
  box-shadow: 0 0 10px rgba(var(--accent-rgb),0.5), 0 0 24px rgba(var(--accent-rgb),0.2);
  border-color: var(--accent);
  color: var(--accent);
  transform: scale(1.1) translateY(-2px);
}

#contact {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem;
  text-align: center;
}

.contact-inner {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.contact-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-subtext {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.contact-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s, color 0.2s;
}
.contact-link:hover {
  border-color: var(--accent);
  box-shadow: 0 0 16px rgba(var(--accent-rgb),0.3);
  transform: scale(1.03);
  color: var(--accent);
}

footer {
  padding: 2rem;
  padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
  text-align: center;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.82rem;
}

footer a {
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 0.75rem;
  transition: color 0.2s;
}
footer a:hover { color: var(--accent); }

#back-to-top {
  position: fixed;
  right: 2rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s, box-shadow 0.2s;
  pointer-events: none;
  z-index: 90;
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#back-to-top:hover {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 16px rgba(var(--accent-rgb),0.4);
}

#section-dots {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 90;
}
.section-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 2px solid rgba(var(--accent-rgb),0.4);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.section-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.5);
}
@media (max-width: 768px) { #section-dots { display: none; } }

@keyframes glitch {
  0%        { transform: translate(0);        clip-path: inset(0 0 0 0);    text-shadow: none; }
  10%, 15%  { transform: translate(-4px, 1px); clip-path: inset(0 0 0 0);   text-shadow: 4px 0 rgba(var(--accent-rgb),0.95), -4px 0 rgba(var(--glitch-alt-rgb), 0.5); }
  20%       { transform: translate(0);        clip-path: inset(0 0 0 0);    text-shadow: none; }
  30%, 38%  { transform: translate( 4px,-2px); clip-path: inset(28% 0 42% 0); text-shadow: -4px 0 rgba(var(--accent-rgb),0.95); }
  45%       { transform: translate(0);        clip-path: inset(0 0 0 0);    text-shadow: none; }
  55%, 62%  { transform: translate(-2px, 2px); clip-path: inset(60% 0 10% 0); text-shadow: 3px 0 rgba(var(--glitch-alt-rgb), 0.4); }
  70%       { transform: translate(0);        clip-path: inset(0 0 0 0);    text-shadow: none; }
  100%      { transform: translate(0);        clip-path: inset(0 0 0 0);    text-shadow: none; }
}
.hero-headline.glitching { animation: glitch 1s steps(1, end) forwards; }

#scroll-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  width: 100%;
  background: var(--accent);
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: 0 0;
  transition: transform 0.15s ease-out;
}

.reveal > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal .section-title {
  clip-path: inset(0 100% 0 0);
  transition: opacity 0.65s ease, transform 0.65s ease, clip-path 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal.visible .section-title {
  clip-path: inset(0 0 0 0);
}

.timeline-item {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.timeline-item.visible { opacity: 1; transform: translateX(0); }

.skill-tag {
  opacity: 0;
  transform: translateY(8px);
}
.skill-tag.visible {
  animation: tagIn 0.4s ease forwards;
}
@keyframes tagIn {
  to { opacity: 1; transform: translateY(0); }
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  nav {
    padding: 1rem 1.25rem;
    padding-top: calc(1rem + env(safe-area-inset-top, 0px));
  }

  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(var(--nav-bg-rgb), 0.97);
    backdrop-filter: blur(12px);
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    border-top: 1px solid var(--border-subtle);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .about-aside { order: -1; }
  .facts-list { align-items: center; }
  .facts-list li { justify-content: center; }

  .contact-heading { font-size: 1.8rem; }
  .contact-links { flex-direction: column; align-items: center; }

  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 260px; text-align: center; }
  .section-title { font-size: 1.5rem; }
  .contact-link { width: 100%; max-width: 300px; justify-content: center; }
  .timeline { padding-left: 1.5rem; }
  .timeline-item::before { left: calc(-1.5rem - 4px); }
}

#terminal-toggle {
  position: fixed;
  left: 2rem;
  bottom: 2rem;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(var(--nav-bg-rgb), 0.7);
  border: 2px solid rgba(var(--accent-rgb),0.5);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  cursor: pointer;
  z-index: 90;
  transition: border-color 0.2s, box-shadow 0.2s;
}
#terminal-toggle:hover {
  border-color: var(--accent);
  box-shadow: 0 0 16px rgba(var(--accent-rgb),0.4);
}

#terminal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
#terminal-overlay[hidden] { display: none; }

#terminal-window {
  width: 100%;
  max-width: 640px;
  height: min(420px, 80%);
  background: var(--terminal-bg);
  border: 1px solid rgba(var(--accent-rgb),0.4);
  border-radius: 8px;
  box-shadow: 0 0 40px rgba(var(--accent-rgb),0.25);
  display: flex;
  flex-direction: column;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  overflow: hidden;
}

.terminal-titlebar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb),0.5);
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.15s;
}
.terminal-dot:hover { opacity: 0.75; }
.dot-close { background: #ff5f57; }
.dot-min   { background: #ffbd2e; }
.dot-max   { background: #28c940; }

#terminal-window {
  transition: height 0.22s ease, width 0.22s ease, max-width 0.22s ease, border-radius 0.22s ease;
}
#terminal-window.minimized #terminal-output,
#terminal-window.minimized .terminal-input-row { display: none; }
#terminal-window.minimized { height: auto; }
#terminal-window.fullscreen {
  width: 100%;
  max-width: 100%;
  height: 100%;
  border-radius: 0;
}
.terminal-title {
  margin-left: 0.5rem;
  color: var(--text-muted);
  font-size: 0.72rem;
}

#terminal-output {
  flex: 1;
  overflow-y: auto;
  padding: 0.8rem;
  white-space: pre-wrap;
  overflow-wrap: break-word;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
}
#terminal-output .t-accent { color: var(--accent); }
#terminal-output .t-muted { color: var(--text-muted); }
#terminal-output a { color: var(--accent); }

.terminal-input-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.6rem 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.terminal-prompt {
  color: var(--accent);
  white-space: nowrap;
}
.terminal-input-wrap {
  position: relative;
  flex: 1;
}
#terminal-ghost {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  color: var(--text-muted);
  opacity: 0.55;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  white-space: pre;
  overflow: hidden;
  pointer-events: none;
}
#terminal-input {
  position: relative;
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  caret-color: var(--accent);
}

@media (max-width: 768px) {
  #terminal-toggle { left: 1.25rem; bottom: 1.25rem; }
  #terminal-input, #terminal-ghost { font-size: 16px; }
  .terminal-prompt { display: none; }
}

html { color-scheme: dark; }
html[data-theme='light'] { color-scheme: light; }

html[data-theme='light'] {
  --bg: #f6f4f1;
  --text: #191919;
  --text-muted: #6f6a66;
  --text-strong: rgba(25, 25, 25, 0.85);
  --text-body: rgba(25, 25, 25, 0.74);
  --surface: rgba(0, 0, 0, 0.035);
  --surface-hover: rgba(0, 0, 0, 0.07);
  --border-subtle: rgba(0, 0, 0, 0.09);
  --border-soft: rgba(0, 0, 0, 0.18);
  --border-strong: rgba(0, 0, 0, 0.32);
  --nav-bg-rgb: 246, 244, 241;
  --glitch-alt-rgb: 25, 25, 25;
  --glare-color: rgba(0, 0, 0, 0.05);
  --terminal-bg: #f0ede8;
}

html[data-theme='light'] #terminal-window {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 40px rgba(var(--accent-rgb), 0.12);
}
html[data-theme='light'] .terminal-titlebar {
  border-bottom-color: rgba(0, 0, 0, 0.1);
}
html[data-theme='light'] .terminal-input-row {
  border-top-color: rgba(0, 0, 0, 0.1);
}
html[data-theme='light'] #terminal-output {
  color: rgba(25, 25, 25, 0.85);
}
html[data-theme='light'] #terminal-output .t-muted {
  color: rgba(25, 25, 25, 0.5);
}
html[data-theme='light'] .terminal-title {
  color: rgba(25, 25, 25, 0.45);
}
html[data-theme='light'] #terminal-input {
  color: rgba(25, 25, 25, 0.9);
}
html[data-theme='light'] #terminal-ghost {
  color: rgba(25, 25, 25, 0.3);
}


body {
  transition: background 0.3s ease, color 0.3s ease;
}

#theme-toggle {
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 4px;
  margin-left: auto;
  margin-right: 1.5rem;
}
#theme-toggle:hover { color: var(--accent); }
#theme-toggle .icon-moon { display: none; }
html[data-theme='light'] #theme-toggle .icon-sun { display: none; }
html[data-theme='light'] #theme-toggle .icon-moon { display: block; }

@media (max-width: 768px) {
  #theme-toggle { margin-right: 1rem; }
}

::view-transition-old(root), ::view-transition-new(root) {
  animation: none;
  mix-blend-mode: normal;
}
::view-transition-new(root) {
  animation: vt-wipe 0.5s ease-out;
}
@keyframes vt-wipe {
  from { clip-path: circle(0 at var(--vt-x, 50%) var(--vt-y, 50%)); }
  to { clip-path: circle(150vmax at var(--vt-x, 50%) var(--vt-y, 50%)); }
}
