:root {
  --bg: #030712;
  --bg-2: #071426;
  --text: #eef7ff;
  --muted: #9db7ca;
  --soft: rgba(209, 242, 255, 0.72);
  --cyan: #38d5ff;
  --blue: #2a8cff;
  --deep-blue: #0a4dff;
  --mint: #5fffd6;
  --rose: #ff6bd6;
  --panel: rgba(9, 28, 52, 0.48);
  --panel-strong: rgba(13, 42, 76, 0.72);
  --line: rgba(112, 218, 255, 0.28);
  --glow: 0 0 28px rgba(46, 180, 255, 0.34);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --max: 1180px;
}

body.robot-angry {
  --bg: #130306;
  --bg-2: #26070a;
  --muted: #d1a4a8;
  --soft: rgba(255, 218, 218, 0.74);
  --cyan: #ff4141;
  --blue: #c90f25;
  --deep-blue: #7f0614;
  --mint: #ff8a3d;
  --rose: #ff2f64;
  --panel: rgba(52, 9, 16, 0.5);
  --panel-strong: rgba(85, 13, 24, 0.74);
  --line: rgba(255, 105, 105, 0.32);
  --glow: 0 0 32px rgba(255, 52, 52, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 12%, rgba(45, 181, 255, 0.25), transparent 31%),
    radial-gradient(circle at 84% 0%, rgba(84, 255, 218, 0.13), transparent 26%),
    radial-gradient(circle at 78% 72%, rgba(255, 89, 214, 0.09), transparent 25%),
    linear-gradient(145deg, var(--bg), var(--bg-2) 55%, #03111c);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  transition: background 0.7s ease, color 0.4s ease;
}

body.robot-angry::before {
  background-image:
    linear-gradient(rgba(255, 78, 78, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 78, 78, 0.05) 1px, transparent 1px);
}

body.menu-open,
body.loading {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -4;
  background-image:
    linear-gradient(rgba(96, 211, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 211, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 86%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(106, 224, 255, 0.075), transparent);
  transform: translateX(-100%);
  animation: scan 8s ease-in-out infinite;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

::selection {
  color: #02111f;
  background: var(--cyan);
}

#particleCanvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.ambient-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.light {
  position: absolute;
  width: 34vw;
  aspect-ratio: 1;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.35;
  animation: floatLight 13s ease-in-out infinite alternate;
}

.light-a {
  left: -12vw;
  top: 9vh;
  background: rgba(44, 173, 255, 0.58);
}

body.robot-angry .light-a {
  background: rgba(255, 47, 47, 0.58);
}

.light-b {
  right: -14vw;
  top: 30vh;
  background: rgba(83, 255, 214, 0.26);
  animation-delay: -5s;
}

body.robot-angry .light-b {
  background: rgba(255, 108, 48, 0.28);
}

.light-c {
  left: 38vw;
  bottom: -20vw;
  background: rgba(44, 112, 255, 0.3);
  animation-delay: -2s;
}

body.robot-angry .light-c {
  background: rgba(180, 8, 28, 0.4);
}

.glass-line {
  position: absolute;
  height: 1px;
  width: 38vw;
  background: linear-gradient(90deg, transparent, rgba(137, 228, 255, 0.6), transparent);
  transform: rotate(-18deg);
  opacity: 0.4;
}

.line-a {
  top: 19vh;
  right: 6vw;
}

.line-b {
  bottom: 26vh;
  left: 7vw;
  transform: rotate(14deg);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 26px;
  background:
    radial-gradient(circle at center, rgba(46, 184, 255, 0.16), transparent 34%),
    #020711;
  transition: opacity 0.75s ease, visibility 0.75s ease;
}

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

.loader p {
  margin: 0;
  color: var(--soft);
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0;
}

.loader-orbit {
  position: relative;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(119, 224, 255, 0.22);
  border-radius: 50%;
  box-shadow: var(--glow);
  animation: spin 1.6s linear infinite;
}

.loader-orbit span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}

.loader-orbit span:nth-child(1) {
  top: -6px;
  left: calc(50% - 6px);
}

.loader-orbit span:nth-child(2) {
  right: 2px;
  bottom: 10px;
  background: var(--mint);
}

.loader-orbit span:nth-child(3) {
  left: 2px;
  bottom: 10px;
  background: var(--blue);
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 998;
  border-radius: 999px;
  opacity: 0;
  transform: translate(-50%, -50%);
}

.cursor-dot {
  width: 7px;
  height: 7px;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}

.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(126, 226, 255, 0.56);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}

.cursor-ring.active {
  width: 58px;
  height: 58px;
  border-color: rgba(95, 255, 214, 0.78);
}

.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 0 20px;
}

.navbar {
  width: min(var(--max), calc(100% - 20px));
  margin: 0 auto;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px 0 16px;
}

.glass-panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
}

.glass-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 30%, transparent 70%, rgba(107, 221, 255, 0.09));
  opacity: 0.65;
  pointer-events: none;
}

.brand,
.nav-links,
.hero-copy,
.hero-visual,
.section-heading,
.about-card,
.identity-item,
.timeline-item,
.skill-card,
.project-card,
.community-panel,
.contact-card,
.contact-form,
.stat-card,
.footer-inner {
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #03111f;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cyan), var(--mint));
  box-shadow: 0 0 26px rgba(56, 213, 255, 0.55);
}

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

.nav-quick {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-quick a,
.tooltip-link {
  position: relative;
}

.nav-quick a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--text);
  border: 1px solid rgba(133, 226, 255, 0.2);
  border-radius: 8px;
  background: rgba(56, 213, 255, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.nav-quick a:hover {
  transform: translateY(-3px);
  border-color: rgba(95, 255, 214, 0.42);
  background: rgba(95, 255, 214, 0.12);
  box-shadow: 0 0 24px rgba(56, 213, 255, 0.24);
}

.nav-quick svg,
.contact-link svg,
.mini-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-quick a:first-child svg,
.contact-link:nth-child(2) svg,
.hero-actions .btn:first-child svg {
  fill: currentColor;
  stroke: none;
}

.tooltip-link::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  z-index: 20;
  width: max-content;
  max-width: 190px;
  padding: 8px 10px;
  color: var(--text);
  border: 1px solid rgba(133, 226, 255, 0.22);
  border-radius: 8px;
  background: rgba(3, 14, 28, 0.9);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32), 0 0 18px rgba(56, 213, 255, 0.16);
  font-size: 0.78rem;
  font-weight: 800;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, 8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.tooltip-link:hover::after,
.tooltip-link:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  color: var(--soft);
  font-size: 0.93rem;
  border-radius: 8px;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(78, 203, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(105, 222, 255, 0.22);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(87, 202, 255, 0.1);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 6px auto;
  background: var(--text);
  transition: transform 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 112px 0;
}

.section-mini {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: start;
  padding-top: 128px;
  padding-bottom: 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
}

.hero-copy {
  min-width: 0;
  max-width: 690px;
}

.hero-visual {
  align-self: start;
}

.hero-program {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 560px;
  margin-bottom: 22px;
  padding: 14px 16px;
}

.program-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(133, 226, 255, 0.18);
  border-radius: 8px;
  background: rgba(56, 213, 255, 0.07);
  color: var(--text);
  font-weight: 800;
}

.program-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 16px var(--mint);
  animation: pulseDot 1.8s ease-in-out infinite;
}

.program-meta {
  display: grid;
  gap: 4px;
  justify-items: end;
  text-align: right;
}

.program-meta strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.program-meta span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  box-shadow: 0 0 14px var(--cyan);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 9.4ch;
  font-size: clamp(3rem, 6.4vw, 6.25rem);
  line-height: 1.03;
  overflow-wrap: anywhere;
}

h1 span {
  display: block;
  min-height: 1.05em;
  max-width: 100%;
  padding-bottom: 0.08em;
}

.typing-text {
  display: block;
  min-height: 2.2em;
}

.gradient-text {
  background: linear-gradient(90deg, #fff, var(--cyan) 36%, var(--mint) 72%, #a8e7ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 20px rgba(56, 213, 255, 0.25));
  word-break: normal;
  overflow-wrap: normal;
}

.typing-text::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 0.78em;
  margin-left: 8px;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
  animation: blink 0.85s steps(2, start) infinite;
  vertical-align: -0.05em;
}

.hero-lead {
  max-width: 640px;
  color: var(--soft);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 26px;
}

.btn {
  --x: 50%;
  --y: 50%;
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background: radial-gradient(circle at var(--x) var(--y), rgba(255, 255, 255, 0.5), transparent 28%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

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

.btn:hover {
  transform: translateY(-3px);
}

.btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn.primary {
  color: #02111f;
  background: linear-gradient(135deg, var(--cyan), var(--mint));
  box-shadow: 0 0 28px rgba(56, 213, 255, 0.36), 0 14px 38px rgba(0, 0, 0, 0.35);
}

.btn.secondary {
  color: var(--text);
  border: 1px solid rgba(129, 224, 255, 0.35);
  background: rgba(49, 170, 255, 0.1);
}

.btn.glass {
  color: var(--text);
  border: 1px solid rgba(133, 226, 255, 0.34);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03)),
    rgba(56, 213, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13), 0 0 28px rgba(56, 213, 255, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-mini-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: -10px 0 26px;
}

.hero-mini-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--cyan);
  border: 1px solid rgba(133, 226, 255, 0.18);
  border-radius: 8px;
  background: rgba(56, 213, 255, 0.055);
  font-size: 0.88rem;
  font-weight: 800;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-mini-actions a:hover {
  color: var(--text);
  background: rgba(95, 255, 214, 0.11);
  box-shadow: 0 0 18px rgba(56, 213, 255, 0.18);
  transform: translateY(-2px);
}

.alias-marquee {
  max-width: 650px;
  margin: 0 0 22px;
  padding: 12px 0;
  overflow: hidden;
}

.alias-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: marqueeAlias 18s linear infinite;
}

.alias-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  padding-inline: 12px;
}

.alias-group span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: var(--text);
  border: 1px solid rgba(133, 226, 255, 0.18);
  border-radius: 999px;
  background: rgba(56, 213, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  white-space: nowrap;
}

body.robot-angry .alias-group span {
  background: rgba(255, 63, 63, 0.1);
}

.profile-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 650px;
}

.profile-strip div {
  padding: 18px;
}

.profile-strip strong,
.identity-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.profile-strip span,
.identity-item strong {
  color: var(--text);
  font-weight: 800;
}

.robot-stage {
  min-height: 590px;
  display: grid;
  place-items: center;
  padding: 36px;
  overflow: visible;
}

.robot-stage::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 8px;
  border: 1px solid rgba(133, 226, 255, 0.13);
  pointer-events: none;
}

.robot-halo {
  position: absolute;
  width: 360px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(56, 213, 255, 0.22), transparent 58%),
    conic-gradient(from 0deg, transparent, rgba(63, 209, 255, 0.45), transparent, rgba(95, 255, 214, 0.22), transparent);
  filter: blur(0.3px);
  animation: spin 14s linear infinite;
}

.robot {
  --look-x: 0px;
  --look-y: 0px;
  --float-y: 0px;
  position: relative;
  display: grid;
  justify-items: center;
  transform: translate(var(--look-x), calc(var(--look-y) + var(--float-y)));
  transition: transform 0.18s ease-out;
  animation: robotFloat 4.5s ease-in-out infinite;
  will-change: transform;
}

.robot-antenna {
  position: relative;
  width: 6px;
  height: 56px;
  border-radius: 999px;
  background: linear-gradient(var(--cyan), rgba(56, 213, 255, 0.1));
  box-shadow: 0 0 18px rgba(56, 213, 255, 0.7);
}

.robot-antenna span {
  position: absolute;
  top: -14px;
  left: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 26px var(--mint);
  transform: translateX(-50%);
}

.robot-head {
  position: relative;
  width: min(310px, 70vw);
  height: 230px;
  border-radius: 32px 32px 42px 42px;
  border: 1px solid rgba(133, 226, 255, 0.45);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.04)),
    rgba(22, 74, 117, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -30px 80px rgba(1, 20, 38, 0.45),
    0 28px 80px rgba(0, 0, 0, 0.45),
    0 0 44px rgba(56, 213, 255, 0.22);
}

.robot-head::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 28px;
  right: 28px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.26), transparent);
  opacity: 0.85;
}

.robot-face {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 32px;
  height: 126px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  border-radius: 28px;
  border: 1px solid rgba(89, 211, 255, 0.32);
  background: rgba(2, 13, 27, 0.62);
  box-shadow: inset 0 0 30px rgba(56, 213, 255, 0.13);
}

.eye {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(56, 213, 255, 0.22), transparent 62%),
    rgba(124, 229, 255, 0.08);
  border: 1px solid rgba(137, 232, 255, 0.42);
  box-shadow: 0 0 24px rgba(56, 213, 255, 0.24);
  overflow: hidden;
}

.pupil {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #fff 0 12%, var(--mint) 13% 34%, var(--cyan) 35% 100%);
  box-shadow: 0 0 18px var(--cyan);
  transform: translate(calc(-50% + var(--eye-x, 0px)), calc(-50% + var(--eye-y, 0px)));
  transition: transform 0.12s ease-out;
}

body.robot-angry .eye {
  border-color: rgba(255, 82, 82, 0.72);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 36, 36, 0.34), transparent 62%),
    rgba(255, 74, 74, 0.11);
  box-shadow: 0 0 34px rgba(255, 40, 40, 0.5);
}

body.robot-angry .eye::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 8px;
  right: 8px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 92, 92, 0.95);
  box-shadow: 0 0 14px rgba(255, 52, 52, 0.85);
  transform: rotate(14deg);
}

body.robot-angry .eye-right::after {
  transform: rotate(-14deg);
}

body.robot-angry .pupil {
  background: radial-gradient(circle at 35% 28%, #fff 0 10%, #ffb3a1 11% 24%, #ff2222 25% 100%);
  box-shadow: 0 0 26px #ff2a2a, 0 0 46px rgba(255, 30, 30, 0.58);
}

.robot-smile {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: 56px;
  height: 20px;
  border-bottom: 3px solid rgba(95, 255, 214, 0.9);
  border-radius: 0 0 999px 999px;
  transform: translateX(-50%);
  filter: drop-shadow(0 0 8px rgba(95, 255, 214, 0.85));
}

body.robot-angry .robot-smile {
  bottom: 13px;
  border-bottom: 0;
  border-top: 3px solid rgba(255, 69, 69, 0.98);
  border-radius: 999px 999px 0 0;
  filter: drop-shadow(0 0 10px rgba(255, 42, 42, 0.9));
}

.ear {
  position: absolute;
  top: 76px;
  width: 30px;
  height: 78px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(98, 225, 255, 0.5), rgba(15, 53, 90, 0.8));
  border: 1px solid rgba(136, 230, 255, 0.32);
}

.ear-left {
  left: -22px;
}

.ear-right {
  right: -22px;
}

.robot-neck {
  width: 86px;
  height: 44px;
  background: linear-gradient(90deg, rgba(41, 151, 218, 0.34), rgba(118, 232, 255, 0.22), rgba(41, 151, 218, 0.34));
  border-inline: 1px solid rgba(129, 224, 255, 0.28);
}

.robot-body {
  position: relative;
  width: 230px;
  height: 170px;
  border-radius: 34px 34px 22px 22px;
  border: 1px solid rgba(133, 226, 255, 0.38);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.03)),
    rgba(15, 54, 91, 0.72);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.core {
  position: absolute;
  top: 38px;
  left: 50%;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, #fff 0 8%, var(--mint) 9% 25%, rgba(56, 213, 255, 0.18) 26% 100%);
  box-shadow: 0 0 34px rgba(95, 255, 214, 0.55), inset 0 0 24px rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.core:hover,
.core:focus-visible {
  transform: translateX(-50%) scale(1.08);
  box-shadow: 0 0 44px rgba(95, 255, 214, 0.72), inset 0 0 24px rgba(255, 255, 255, 0.24);
  outline: none;
}

.core:active {
  transform: translateX(-50%) scale(0.94);
}

body.robot-angry .core {
  background: radial-gradient(circle, #fff 0 7%, #ffb36f 8% 24%, rgba(255, 38, 38, 0.34) 25% 100%);
  box-shadow: 0 0 40px rgba(255, 43, 43, 0.74), inset 0 0 26px rgba(255, 255, 255, 0.2);
  animation: angryCorePulse 0.9s ease-in-out infinite alternate;
}

.panel-lines {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 26px;
  height: 18px;
  border-top: 1px solid rgba(133, 226, 255, 0.3);
  border-bottom: 1px solid rgba(133, 226, 255, 0.2);
}

.robot-caption {
  position: absolute;
  left: 28px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: var(--soft);
  font-size: 0.86rem;
  border: 1px solid rgba(133, 226, 255, 0.2);
  border-radius: 8px;
  background: rgba(2, 14, 28, 0.46);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 15px var(--mint);
}

body.robot-angry .status-dot {
  background: #ff3131;
  box-shadow: 0 0 18px #ff3131, 0 0 32px rgba(255, 49, 49, 0.45);
}

.robot.angry-burst {
  animation: angryBurst 0.45s ease, robotFloat 4.5s ease-in-out infinite;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  transform: translateY(-28px);
}

.stat-card {
  padding: 22px;
  min-height: 138px;
}

.stat-card .counter {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text);
}

.stat-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading h2,
.community-panel h2 {
  margin: 12px 0 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
}

.about-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: stretch;
}

.about-card,
.contact-card,
.contact-form,
.community-panel {
  padding: clamp(24px, 4vw, 42px);
}

.about-card p,
.community-panel p,
.contact-card p,
.project-card p,
.skill-card p,
.timeline-item p {
  color: var(--soft);
  line-height: 1.75;
}

.about-card p:last-child,
.contact-card p:last-child {
  margin-bottom: 0;
}

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

.identity-item {
  padding: 22px;
  min-height: 135px;
}

.identity-item strong {
  font-size: 1.18rem;
  line-height: 1.35;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: 50%;
  width: 1px;
  background: linear-gradient(transparent, rgba(87, 215, 255, 0.62), transparent);
  box-shadow: 0 0 18px rgba(56, 213, 255, 0.55);
}

.timeline-item {
  padding: 28px;
  min-height: 230px;
}

.timeline-item:nth-child(even) {
  transform: translateY(54px);
}

.year {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  color: #02111f;
  font-weight: 900;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cyan), var(--mint));
  box-shadow: 0 0 22px rgba(56, 213, 255, 0.38);
}

.timeline-item h3,
.skill-card h3,
.project-card h3,
.contact-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.skills-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.skill-card,
.project-card {
  min-height: 300px;
  padding: 26px;
}

.skill-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: #03111f;
  font-weight: 900;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 28px rgba(56, 213, 255, 0.36);
}

.progress {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  height: 9px;
  border-radius: 999px;
  background: rgba(127, 215, 255, 0.12);
  overflow: hidden;
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--mint));
  box-shadow: 0 0 18px rgba(56, 213, 255, 0.65);
  transition: width 1.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.project-card {
  display: flex;
  flex-direction: column;
}

.project-tag {
  width: fit-content;
  margin-bottom: 24px;
  padding: 8px 10px;
  color: var(--cyan);
  border: 1px solid rgba(99, 221, 255, 0.22);
  border-radius: 8px;
  background: rgba(56, 213, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
}

.project-card a {
  width: fit-content;
  margin-top: auto;
  color: var(--mint);
  font-weight: 800;
}

.explore-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 22px;
  align-items: stretch;
}

.explore-card,
.map-card {
  padding: clamp(24px, 4vw, 36px);
}

.explore-card {
  display: grid;
  align-content: start;
  gap: 22px;
}

.explore-tag,
.map-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  width: fit-content;
  padding: 0 12px;
  color: var(--cyan);
  border: 1px solid rgba(133, 226, 255, 0.2);
  border-radius: 999px;
  background: rgba(56, 213, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.explore-copy h3 {
  margin: 18px 0 12px;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
}

.explore-copy p {
  margin: 0;
  color: var(--soft);
  line-height: 1.8;
}

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

.route-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  color: var(--text);
  border: 1px solid rgba(133, 226, 255, 0.18);
  border-radius: 8px;
  background: rgba(56, 213, 255, 0.065);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.map-card {
  position: relative;
  overflow: hidden;
}

.travel-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.travel-shot {
  position: relative;
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(133, 226, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    rgba(4, 17, 32, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 16px 32px rgba(0, 0, 0, 0.24);
  isolation: isolate;
}

.travel-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(95, 218, 255, 0.14), transparent 22%, transparent 72%, rgba(2, 10, 20, 0.82)),
    linear-gradient(90deg, rgba(95, 218, 255, 0.08), transparent 22%, transparent 78%, rgba(95, 218, 255, 0.06));
  z-index: 1;
  pointer-events: none;
}

.travel-shot::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(2, 10, 20, 0.88));
  z-index: 1;
  pointer-events: none;
}

.travel-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform 420ms ease, filter 420ms ease;
  filter: saturate(1.02) contrast(1.03) brightness(0.93);
}

.travel-shot:hover img,
.travel-shot:focus-within img {
  transform: scale(1.055);
  filter: saturate(1.06) contrast(1.06) brightness(0.98);
}

.travel-shot figcaption {
  position: absolute;
  inset: auto 14px 14px;
  z-index: 2;
  display: grid;
  gap: 4px;
}

.travel-shot-index {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  color: rgba(228, 249, 255, 0.96);
  border: 1px solid rgba(133, 226, 255, 0.16);
  border-radius: 999px;
  background: rgba(5, 18, 34, 0.56);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.travel-shot figcaption strong {
  color: rgba(240, 251, 255, 0.96);
  font-size: 1rem;
  font-weight: 700;
}

.travel-shot-featured {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.travel-shot-featured figcaption {
  inset: auto 18px 18px;
}

.travel-shot-featured .travel-shot-index {
  color: var(--cyan);
  border-color: rgba(110, 255, 215, 0.24);
  background: rgba(6, 23, 40, 0.62);
}

.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.map-meta {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.hologram-map {
  position: relative;
  min-height: 470px;
  border: 1px solid rgba(133, 226, 255, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(56, 213, 255, 0.09), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(2, 15, 30, 0.46);
  overflow: hidden;
}

.hologram-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(123, 228, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 228, 255, 0.045) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}

.hologram-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(56, 213, 255, 0.08), transparent);
  transform: translateY(-100%);
  animation: mapSweep 5.4s ease-in-out infinite;
  pointer-events: none;
}

.image-map {
  padding: 14px;
  background:
    radial-gradient(circle at 50% 100%, rgba(70, 196, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(2, 15, 30, 0.56);
}

.image-map::before,
.image-map::after {
  display: none;
}

.map-photo-shell {
  position: relative;
  aspect-ratio: 1638 / 960;
  min-height: min(70vw, 520px);
  border: 1px solid rgba(126, 228, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 65%, rgba(73, 200, 255, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(4, 16, 31, 0.88), rgba(2, 10, 20, 0.95));
  isolation: isolate;
}

.map-photo-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 100%, rgba(56, 213, 255, 0.18), transparent 20%),
    radial-gradient(circle at 50% 100%, rgba(56, 213, 255, 0.1), transparent 38%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 2;
}

.map-photo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter:
    saturate(1.05)
    brightness(0.96)
    contrast(1.06)
    drop-shadow(0 0 24px rgba(60, 211, 255, 0.16));
  transform: scale(1.018);
}

.map-photo-shell.image-missing .map-photo {
  opacity: 0;
}

.map-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  gap: 10px;
  place-content: center;
  text-align: center;
  color: rgba(223, 247, 255, 0.88);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  background:
    radial-gradient(circle at 50% 50%, rgba(74, 193, 255, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(6, 18, 34, 0.85), rgba(2, 10, 20, 0.96));
}

.map-fallback strong {
  color: rgba(110, 255, 215, 0.94);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.map-photo-shell.image-ready .map-fallback {
  display: none;
}

.map-grid,
.map-noise,
.map-scan,
.map-hud,
.map-markers {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.map-grid {
  background-image:
    linear-gradient(rgba(123, 228, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 228, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mix-blend-mode: screen;
  opacity: 0.54;
  pointer-events: none;
}

.map-noise {
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 40%, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px),
    radial-gradient(circle at 42% 66%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px);
  background-size: 220px 220px, 190px 190px, 260px 260px;
  opacity: 0.22;
  mix-blend-mode: screen;
  pointer-events: none;
}

.map-scan {
  background:
    linear-gradient(180deg, transparent 0%, rgba(85, 227, 255, 0.2) 48%, transparent 100%);
  transform: translateY(-115%);
  animation: mapSweep 5.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  pointer-events: none;
}

.map-hud {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px;
  pointer-events: none;
}

.hud-title,
.hud-subtitle {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(110, 230, 255, 0.18);
  border-radius: 999px;
  background: rgba(7, 22, 40, 0.42);
  box-shadow: 0 0 20px rgba(42, 191, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hud-title {
  color: rgba(223, 248, 255, 0.94);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.hud-subtitle {
  color: rgba(148, 230, 255, 0.92);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.map-markers {
  z-index: 4;
}

.city-marker {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform 220ms ease;
}

.marker-dot,
.marker-pulse {
  position: absolute;
  inset: 50% auto auto 50%;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.marker-dot {
  width: 10px;
  height: 10px;
  background: #ebfffd;
  border: 2px solid rgba(95, 255, 214, 0.96);
  box-shadow:
    0 0 0 5px rgba(95, 255, 214, 0.12),
    0 0 14px rgba(95, 255, 214, 0.74);
}

.marker-pulse {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(110, 255, 215, 0.36);
  background: rgba(56, 213, 255, 0.1);
  animation: mapPulse 2.8s ease-out infinite;
}

.marker-label {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(237, 250, 255, 0.96);
  font-size: 0.74rem;
  font-weight: 700;
  white-space: nowrap;
  border: 1px solid rgba(133, 226, 255, 0.2);
  border-radius: 999px;
  background: rgba(5, 18, 34, 0.78);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transform: translate(-50%, 8px);
  transition: opacity 220ms ease, transform 220ms ease, border-color 220ms ease;
  pointer-events: none;
}

.city-marker:hover,
.city-marker:focus-visible {
  transform: translate(-50%, -50%) scale(1.06);
}

.city-marker:hover .marker-label,
.city-marker:focus-visible .marker-label {
  opacity: 1;
  transform: translate(-50%, 0);
  border-color: rgba(110, 255, 215, 0.42);
}

.city-marker:focus-visible {
  outline: none;
}

.city-marker:nth-child(odd) .marker-pulse {
  animation-delay: 0.35s;
}

.city-marker:nth-child(3n) .marker-pulse {
  animation-delay: 0.8s;
}

.city-marker[aria-label="Sumenep"] .marker-label,
.city-marker[aria-label="Pasuruan"] .marker-label,
.city-marker[aria-label="Mojokerto"] .marker-label,
.city-marker[aria-label="Gresik"] .marker-label {
  left: calc(100% + 14px);
  bottom: 50%;
  transform: translate(0, 50%);
}

.city-marker[aria-label="Malang"] .marker-label,
.city-marker[aria-label="Sidoarjo"] .marker-label {
  left: 50%;
  bottom: auto;
  top: calc(100% + 10px);
  transform: translate(-50%, 0);
}

.city-marker[aria-label="Lamongan"] .marker-label,
.city-marker[aria-label="Surabaya"] .marker-label {
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translate(-50%, 0);
}

.city-marker[aria-label="Sumenep"]:hover .marker-label,
.city-marker[aria-label="Sumenep"]:focus-visible .marker-label,
.city-marker[aria-label="Pasuruan"]:hover .marker-label,
.city-marker[aria-label="Pasuruan"]:focus-visible .marker-label,
.city-marker[aria-label="Mojokerto"]:hover .marker-label,
.city-marker[aria-label="Mojokerto"]:focus-visible .marker-label,
.city-marker[aria-label="Gresik"]:hover .marker-label,
.city-marker[aria-label="Gresik"]:focus-visible .marker-label {
  transform: translate(0, 50%);
}

.city-marker[aria-label="Malang"]:hover .marker-label,
.city-marker[aria-label="Malang"]:focus-visible .marker-label,
.city-marker[aria-label="Sidoarjo"]:hover .marker-label,
.city-marker[aria-label="Sidoarjo"]:focus-visible .marker-label {
  transform: translate(-50%, 0);
}

.map-photo-shell.image-ready .map-photo {
  animation: mapFloat 8.5s ease-in-out infinite;
}

@keyframes mapFloat {
  0%,
  100% {
    transform: scale(1.018) translateY(0);
  }

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

.map-dots .dot-cloud circle {
  fill: rgba(66, 221, 255, 0.92);
  filter: drop-shadow(0 0 6px rgba(66, 221, 255, 0.42));
}

.map-title {
  fill: rgba(78, 214, 255, 0.96);
  font-family: "Space Grotesk", sans-serif;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-anchor: end;
}

.map-title.wide {
  font-size: 38px;
  letter-spacing: 0.18em;
}

.travel-route {
  fill: none;
  stroke: rgba(110, 255, 215, 0.95);
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 12 10;
  filter: drop-shadow(0 0 10px rgba(95, 255, 214, 0.55));
  animation: routeFlow 11s linear infinite;
}

.map-point text {
  fill: rgba(232, 250, 255, 0.94);
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  font-weight: 700;
}

.map-point .dot {
  fill: #dffff8;
  stroke: rgba(95, 255, 214, 0.95);
  stroke-width: 2;
  filter: drop-shadow(0 0 12px rgba(95, 255, 214, 0.85));
}

.map-point .pulse {
  fill: rgba(56, 213, 255, 0.16);
  stroke: rgba(95, 255, 214, 0.42);
  stroke-width: 2;
  transform-origin: center;
  animation: mapPulse 2.8s ease-out infinite;
  animation-delay: var(--delay);
}

.hologram-map svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}

.hologram-map.java-focus .island-sumatra,
.hologram-map.java-focus .island-kalimantan,
.hologram-map.java-focus .island-sulawesi,
.hologram-map.java-focus .island-maluku,
.hologram-map.java-focus .island-papua,
.hologram-map.java-focus .island-smalls {
  display: none;
}

.hologram-map.java-focus .island-java,
.hologram-map.java-focus .island-java circle,
.hologram-map.java-focus .island-bali-chain,
.hologram-map.java-focus .travel-route,
.hologram-map.java-focus .travel-points {
  transform-box: fill-box;
  transform-origin: center;
}

.hologram-map.java-focus .island-java {
  transform: translate(-82px, -18px) scale(1.55, 1.5);
}

.hologram-map.java-focus .island-bali-chain {
  transform: translate(-52px, -16px) scale(1.35, 1.32);
}

.hologram-map.java-focus .travel-route,
.hologram-map.java-focus .travel-points {
  transform: translate(88px, -36px) scale(1.28);
}

.community-panel {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 28px;
  align-items: center;
}

.community-tags {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.community-tags span {
  padding: 10px 12px;
  color: var(--soft);
  border: 1px solid rgba(133, 226, 255, 0.21);
  border-radius: 8px;
  background: rgba(56, 213, 255, 0.075);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: var(--soft);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: var(--text);
  border: 1px solid rgba(133, 226, 255, 0.22);
  border-radius: 8px;
  background: rgba(2, 15, 30, 0.45);
  outline: none;
  padding: 14px 15px;
  resize: vertical;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(95, 255, 214, 0.65);
  background: rgba(4, 22, 42, 0.64);
  box-shadow: 0 0 0 4px rgba(56, 213, 255, 0.11);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--mint);
  font-weight: 700;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--text);
  border: 1px solid rgba(133, 226, 255, 0.25);
  border-radius: 8px;
  background: rgba(56, 213, 255, 0.08);
  font-weight: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.socials a:hover {
  transform: translateY(-4px);
  background: rgba(95, 255, 214, 0.14);
  box-shadow: 0 0 24px rgba(56, 213, 255, 0.28);
}

.contact-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0 18px;
  padding: 16px;
  border: 1px solid rgba(133, 226, 255, 0.18);
  border-radius: 8px;
  background: rgba(56, 213, 255, 0.065);
}

.profile-badge {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #02111f;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cyan), var(--mint));
  box-shadow: 0 0 28px rgba(56, 213, 255, 0.38);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
}

.contact-profile strong {
  display: block;
  margin-bottom: 5px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.04rem;
}

.contact-profile p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.contact-link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 74px;
  padding: 14px;
  color: var(--text);
  border: 1px solid rgba(133, 226, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(2, 15, 30, 0.42);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.contact-link:hover {
  transform: translateY(-3px);
  border-color: rgba(95, 255, 214, 0.38);
  background: rgba(56, 213, 255, 0.11);
  box-shadow: 0 0 28px rgba(56, 213, 255, 0.18);
}

.link-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--cyan);
  border: 1px solid rgba(133, 226, 255, 0.24);
  border-radius: 8px;
  background: rgba(56, 213, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-link small {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-link strong {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 0.98rem;
}

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

.mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 12px;
  color: var(--text);
  border: 1px solid rgba(133, 226, 255, 0.24);
  border-radius: 8px;
  background: rgba(56, 213, 255, 0.08);
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.mini-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(95, 255, 214, 0.42);
  background: rgba(95, 255, 214, 0.12);
  box-shadow: 0 0 22px rgba(56, 213, 255, 0.2);
}

.mini-btn.copied {
  color: #02111f;
  border-color: rgba(95, 255, 214, 0.72);
  background: linear-gradient(135deg, var(--cyan), var(--mint));
  box-shadow: 0 0 26px rgba(95, 255, 214, 0.28);
}

.mini-btn:active,
.nav-quick a:active,
.contact-link:active,
.hero-mini-actions a:active {
  transform: translateY(0) scale(0.98);
}

.copy-status {
  min-height: 23px;
  margin: 12px 0 0;
  color: var(--mint);
  font-size: 0.9rem;
  font-weight: 800;
}

.footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0 34px;
}

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

.footer-profile strong {
  display: block;
  margin-bottom: 7px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
}

.footer-profile p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 11px;
  color: var(--cyan);
  border: 1px solid rgba(133, 226, 255, 0.18);
  border-radius: 8px;
  background: rgba(56, 213, 255, 0.06);
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.footer-links a:hover {
  transform: translateY(-2px);
  background: rgba(95, 255, 214, 0.1);
  box-shadow: 0 0 18px rgba(56, 213, 255, 0.16);
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 35;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: #02111f;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cyan), var(--mint));
  box-shadow: 0 0 24px rgba(56, 213, 255, 0.4);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reveal {
  --reveal-delay: 0ms;
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.997);
  filter: blur(2px);
  will-change: transform, opacity, filter;
  transition:
    opacity 0.92s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.05s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay);
}

.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.reveal.enter-from-top {
  transform: translate3d(0, -14px, 0) scale(0.997);
}

.reveal.exit-up {
  opacity: 0;
  transform: translate3d(0, -10px, 0) scale(0.998);
  filter: blur(1.5px);
  transition-delay: 0ms;
}

.reveal.exit-down {
  opacity: 0;
  transform: translate3d(0, 10px, 0) scale(0.998);
  filter: blur(1.5px);
  transition-delay: 0ms;
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.2s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.tilt-card:hover {
  border-color: rgba(95, 255, 214, 0.42);
  box-shadow: var(--shadow), 0 0 36px rgba(56, 213, 255, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.17);
}

@keyframes scan {

  0%,
  100% {
    transform: translateX(-110%);
  }

  48%,
  52% {
    transform: translateX(110%);
  }
}

@keyframes routeFlow {
  to {
    stroke-dashoffset: -160;
  }
}

@keyframes mapPulse {
  0% {
    transform: scale(0.45);
    opacity: 0.75;
  }

  75% {
    transform: scale(1.25);
    opacity: 0;
  }

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

@keyframes mapSweep {

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

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

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

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

@keyframes floatLight {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(7vw, -5vh, 0) scale(1.08);
  }
}

@keyframes robotFloat {

  0%,
  100% {
    --float-y: 0px;
  }

  50% {
    --float-y: -18px;
  }
}

@keyframes pulseDot {

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

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

@keyframes marqueeAlias {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes angryCorePulse {
  from {
    filter: brightness(1);
  }

  to {
    filter: brightness(1.32);
  }
}

@keyframes angryBurst {

  0%,
  100% {
    transform: translate(var(--look-x), calc(var(--look-y) + var(--float-y))) rotate(0deg);
  }

  20% {
    transform: translate(calc(var(--look-x) - 4px), calc(var(--look-y) + var(--float-y))) rotate(-1.5deg);
  }

  45% {
    transform: translate(calc(var(--look-x) + 4px), calc(var(--look-y) + var(--float-y))) rotate(1.5deg);
  }

  70% {
    transform: translate(calc(var(--look-x) - 2px), calc(var(--look-y) + var(--float-y))) rotate(-0.8deg);
  }
}

@media (max-width: 980px) {

  .hero-grid,
  .about-layout,
  .contact-layout,
  .community-panel,
  .explore-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 116px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .typing-text {
    min-height: 2.25em;
  }

  .hero-program {
    max-width: 620px;
  }

  h1 {
    max-width: 9.5ch;
    font-size: clamp(3rem, 11vw, 6rem);
  }

  .robot-stage {
    min-height: 520px;
  }

  .hologram-map {
    min-height: 420px;
  }

  .map-photo-shell {
    min-height: 420px;
  }

  .travel-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .travel-shot-featured {
    grid-column: 1 / -1;
  }

  .stats-band,
  .skills-grid,
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .timeline::before {
    left: 0;
  }

  .timeline-item:nth-child(even) {
    transform: none;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .site-header {
    top: 10px;
    padding: 0 10px;
  }

  .navbar {
    width: 100%;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 3;
    order: 3;
  }

  .nav-links {
    position: fixed;
    top: 86px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(4, 17, 32, 0.92);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }

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

  .nav-links a {
    min-height: 46px;
  }

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

  .program-meta {
    justify-items: start;
    text-align: left;
  }

  .nav-quick {
    gap: 6px;
    order: 2;
  }

  .nav-quick a {
    width: 36px;
    height: 36px;
  }

  .nav-quick svg {
    width: 18px;
    height: 18px;
  }

  .section,
  .section-mini,
  .footer {
    width: min(100% - 28px, var(--max));
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.5rem, 13vw, 4.35rem);
    line-height: 1.05;
  }

  .typing-text {
    min-height: 2.1em;
  }

  .profile-strip,
  .identity-grid,
  .stats-band,
  .skills-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .robot-stage {
    min-height: 470px;
    padding: 22px;
  }

  .map-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .travel-gallery {
    gap: 12px;
  }

  .hologram-map {
    min-height: 360px;
  }

  .map-photo-shell {
    min-height: 360px;
  }

  .map-hud {
    gap: 10px;
    flex-direction: column;
  }

  .marker-label {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.68rem;
  }

  .robot-head {
    height: 210px;
  }

  .robot-body {
    width: 210px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-mini-actions,
  .footer-links {
    display: grid;
    width: 100%;
  }

  .hero-program,
  .program-pill {
    width: 100%;
  }

  .hologram-map {
    min-height: 310px;
  }

  .map-photo-shell {
    min-height: 310px;
  }

  .travel-gallery {
    grid-template-columns: 1fr;
  }

  .travel-shot,
  .travel-shot-featured {
    aspect-ratio: 4 / 5;
    grid-column: auto;
  }

  .travel-shot figcaption {
    inset: auto 12px 12px;
  }

  .travel-shot-index {
    min-height: 24px;
    padding: 0 8px;
    font-size: 0.6rem;
  }

  .map-hud {
    padding: 14px;
  }

  .hud-title,
  .hud-subtitle {
    min-height: 30px;
    padding: 0 10px;
  }

  .hud-title {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .hud-subtitle {
    font-size: 0.64rem;
    letter-spacing: 0.06em;
  }

  .city-marker {
    width: 14px;
    height: 14px;
  }

  .marker-dot {
    width: 8px;
    height: 8px;
  }

  .marker-pulse {
    width: 26px;
    height: 26px;
  }

  .marker-label {
    min-height: 26px;
    padding: 0 8px;
    font-size: 0.58rem;
  }

  .map-point text {
    font-size: 14px;
  }

  .alias-marquee {
    max-width: 100%;
  }

  .footer-links a {
    justify-content: center;
  }

  .contact-profile {
    align-items: flex-start;
    flex-direction: column;
  }

  .robot-stage {
    min-height: 430px;
  }

  .robot-head {
    width: min(270px, 72vw);
    height: 194px;
  }

  .robot-face {
    left: 22px;
    right: 22px;
    gap: 28px;
  }

  .eye {
    width: 46px;
    height: 46px;
  }

  .robot-caption {
    left: 18px;
    bottom: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
