.bungee {
  position: fixed;
  background: #0a0a0a;
  color: #f5f5f5;
  padding: 1rem;
  font-size: 1.1rem;
  opacity: 0;
  z-index: 1000;
  border-radius: 4px;
  max-width: 300px;
  font-weight: 600;
  border: 2px solid #ff3c00;
  box-shadow: 0 0 12px rgba(255, 60, 0, 0.6);
  letter-spacing: 0.5px;
  font-family: "Courier New", monospace;
}

/* Style variations – retro arcade / Contra inspired */
.bungee-style-1 {
  background: #111;
  color: #ff3c00;
  border-color: #ff3c00;
  box-shadow: 0 0 10px #ff3c00;
  animation: flickerIn 0.6s ease-out forwards;
}

.bungee-style-2 {
  background: #1a1a1a;
  color: #ffd700;
  border-color: #ffd700;
  box-shadow: 0 0 10px #ffd700;
  animation: slideInLeft 0.5s ease-out forwards;
}

.bungee-style-3 {
  background: #0f172a;
  color: #00e5ff;
  border-color: #00e5ff;
  box-shadow: 0 0 10px #00e5ff;
  animation: slideInRight 0.5s ease-out forwards;
}

.bungee-style-4 {
  background: #111;
  color: #39ff14;
  border-color: #39ff14;
  box-shadow: 0 0 12px #39ff14;
  animation: zoomIn 0.4s ease-out forwards;
}

/* Arcade-style flicker */
@keyframes flickerIn {
  0% {
      opacity: 0;
  }
  20% {
      opacity: 1;
  }
  40% {
      opacity: 0.4;
  }
  60% {
      opacity: 1;
  }
  80% {
      opacity: 0.7;
  }
  100% {
      opacity: 1;
  }
}

/* Keep your existing motion but it now feels more “HUD-like” */
@keyframes slideInLeft {
  0% {
      opacity: 0;
      transform: translateX(-120px);
  }
  100% {
      opacity: 1;
      transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
      opacity: 0;
      transform: translateX(120px);
  }
  100% {
      opacity: 1;
      transform: translateX(0);
  }
}

@keyframes zoomIn {
  0% {
      opacity: 0;
      transform: scale(0.5);
  }
  100% {
      opacity: 1;
      transform: scale(1);
  }
}

/* ─── TOKENS ─── */
:root {
  --ink: #0e0e12;
  --ink2: #3a3a45;
  --ink3: #7a7a88;
  --paper: #f7f6f2;
  --paper2: #eeecea;
  --paper3: #e4e2dc;
  --accent: #1a1a2e;
  --line: rgba(14, 14, 18, 0.08);
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --mono: "DM Mono", monospace;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── RESET ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── GRAIN TEXTURE ─── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* ─── SELECTION ─── */
::selection {
  background: var(--ink);
  color: var(--paper);
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--paper2);
}
::-webkit-scrollbar-thumb {
  background: var(--ink3);
  border-radius: 2px;
}

/* ═══════════════════════════
NAV
═══════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  background: rgba(247, 246, 242, 0.88);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s var(--ease);
}
nav.scrolled {
  padding: 0.9rem 3rem;
}
.nav-wordmark {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  /* ── SECRET TRIGGER ──
Triple-click the wordmark to open the real page.
Title attribute gives a tiny breadcrumb for those who hover long enough. */
  user-select: none;
}
.nav-wordmark:hover {
  opacity: 0.7;
  transition: opacity 0.2s;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink2);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-links a:hover::after {
  width: 100%;
}

/* ── SECRET NAV LINK (hidden in plain sight) ── */
.nav-links .secret-link a {
  color: transparent; /* invisible text */
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 0.25rem 0.6rem;
  font-size: 0.7rem;
  transition: all 0.3s;
  cursor: pointer;
}
.nav-links .secret-link a::before {
  content: "✦";
  color: var(--ink3);
  transition: color 0.3s;
}
.nav-links .secret-link a::after {
  display: none;
}
.nav-links .secret-link a:hover {
  border-color: var(--ink3);
  background: var(--paper2);
}
.nav-links .secret-link a:hover::before {
  color: var(--ink);
}

/* ── CTA BUTTON ── */
.nav-cta {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  border: none;
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition:
      background 0.2s,
      transform 0.2s;
}
.nav-cta:hover {
  background: var(--ink2);
  transform: translateY(-1px);
}

/* ═══════════════════════════
HERO
═══════════════════════════ */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 7rem 3rem 4rem;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink3);
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink3);
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero-h1 em {
  font-style: italic;
  color: var(--ink2);
}
.hero-body {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.75;
  max-width: 44ch;
}
.hero-body strong {
  font-weight: 600;
  color: var(--ink);
}
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 0.5rem;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--paper);
  background: var(--ink);
  padding: 0.75rem 1.8rem;
  border-radius: 100px;
  text-decoration: none;
  transition:
      transform 0.2s,
      box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(14, 14, 18, 0.18);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(14, 14, 18, 0.2);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--ink2);
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid transparent;
  transition:
      color 0.2s,
      border-color 0.2s;
}
.btn-ghost:hover {
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost-arr {
  font-size: 0.9rem;
  transition: transform 0.2s;
}
.btn-ghost:hover .btn-ghost-arr {
  transform: translateX(3px);
}

/* hero right — editorial grid */
.hero-right {
  display: grid;
  grid-template-rows: auto auto;
  gap: 1rem;
  height: 520px;
}
.hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.hero-stat {
  background: var(--paper2);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  transition:
      transform 0.3s var(--ease),
      box-shadow 0.3s;
}
.hero-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(14, 14, 18, 0.07);
}
.hero-stat-val {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hero-stat-lbl {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-banner {
  background: var(--ink);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  overflow: hidden;
  position: relative;
}
.hero-banner::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}
.hero-banner-icon {
  font-size: 2.8rem;
  flex-shrink: 0;
  /* small subtle animated flutter logo */
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.06);
  }
}
.hero-banner-text {
}
.hero-banner-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.3rem;
  line-height: 1.2;
}
.hero-banner-sub {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}

/* ═══════════════════════════
DIVIDER
═══════════════════════════ */
.full-divider {
  width: 100%;
  height: 1px;
  background: var(--line);
  margin: 0;
}

/* ═══════════════════════════
SECTION SHELL
═══════════════════════════ */
.section-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 3rem;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-bottom: 1.2rem;
}
.section-eyebrow::before {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
}
.section-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 22ch;
}
.section-h2 em {
  font-style: italic;
  color: var(--ink2);
}

/* ═══════════════════════════
ABOUT
═══════════════════════════ */
#about .about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3.5rem;
}
.about-label-col {
  padding-top: 0.25rem;
}
.about-body-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.about-p {
  font-size: 1.02rem;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.8;
}
.about-p strong {
  font-weight: 600;
  color: var(--ink);
}
.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.chip {
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 400;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  background: var(--paper2);
  border: 1px solid var(--line);
  color: var(--ink2);
  transition: all 0.2s;
}
.chip:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* ═══════════════════════════
EXPERIENCE
═══════════════════════════ */
#experience .exp-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 5rem;
  margin-top: 3.5rem;
}
.exp-entries {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.exp-item {
  display: grid;
  grid-template-columns: 3px 1fr;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}
.exp-item:last-child {
  padding-bottom: 0;
}
.exp-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.35rem;
}
.exp-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ink3);
  flex-shrink: 0;
  transition: background 0.3s;
}
.exp-item:hover .exp-dot {
  background: var(--ink);
}
.exp-connector {
  flex: 1;
  width: 1px;
  background: var(--line);
  margin-top: 4px;
}
.exp-item:last-child .exp-connector {
  display: none;
}
.exp-body {
}
.exp-role {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.exp-company {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink2);
  margin-bottom: 0.2rem;
}
.exp-period {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--ink3);
  margin-bottom: 0.8rem;
}
.exp-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.exp-bullets li {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink2);
  padding-left: 1rem;
  position: relative;
  line-height: 1.6;
}
.exp-bullets li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--ink3);
}
.exp-bullets li strong {
  font-weight: 600;
  color: var(--ink);
}
.exp-bullets li a {
  color: var(--ink);
  text-underline-offset: 2px;
}
.exp-bullets li a:hover {
  opacity: 0.7;
}

/* ═══════════════════════════
PROJECTS
═══════════════════════════ */
#projects .projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.proj-card {
  background: var(--paper2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition:
      transform 0.3s var(--ease),
      box-shadow 0.3s;
  cursor: default;
}
.proj-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(14, 14, 18, 0.09);
}
.proj-icon {
  font-size: 2rem;
}
.proj-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ink);
}
.proj-desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.7;
}
.proj-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
}
.proj-tag {
  font-family: var(--mono);
  font-size: 0.68rem;
  padding: 0.22rem 0.65rem;
  border-radius: 3px;
  background: var(--paper3);
  color: var(--ink2);
}
.proj-card.featured {
  background: var(--ink);
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}
.proj-card.featured .proj-name,
.proj-card.featured .proj-desc {
  color: rgba(255, 255, 255, 0.85);
}
.proj-card.featured .proj-name {
  color: #fff;
}
.proj-card.featured .proj-tag {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}
.proj-card.featured .proj-icon {
  font-size: 3rem;
  flex-shrink: 0;
}
.proj-card.featured .proj-body {
  flex: 1;
}

/* ═══════════════════════════
CAPABILITIES
═══════════════════════════ */
#capabilities .cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 3.5rem;
  background: var(--line);
}
.cap-cell {
  background: var(--paper);
  padding: 2rem 1.8rem;
  transition: background 0.2s;
}
.cap-cell:hover {
  background: var(--paper2);
}
.cap-cell-icon {
  font-size: 1.4rem;
  margin-bottom: 0.9rem;
}
.cap-cell-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.7rem;
}
.cap-cell-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.cap-cell-list li {
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.5;
}

/* ═══════════════════════════
LOCATION
═══════════════════════════ */
#location {
  margin-bottom: 3rem;
  padding: 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.location-link {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  align-items: center;
  transition:
      opacity 0.35s ease,
      transform 0.35s ease;
}

.location-link.location-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 25px);
}
.location-link button {
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 10px 16px;
  color: #fff;
  cursor: pointer;
  font: inherit;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.location-consent {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 10000;
  margin: 0;
  padding: 1rem;
  max-width: min(420px, calc(100vw - 32px));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: var(--ink);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
      opacity 0.35s ease,
      transform 0.35s ease;
}
.location-consent.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 25px);
}
.location-consent-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}
.location-consent p {
  margin: 0 0 5px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}
.location-consent button {
  padding: 3px 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  transition: all 0.2s ease;
}
.location-consent button:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}
#LOCATION_STATUS {
  display: block;
  text-align: center;
  margin-top: 10px;
  color: #fff;
}

/* ═══════════════════════════
CONTACT
═══════════════════════════ */
#contact {
  background: var(--ink);
  padding: 6rem 3rem;
}
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.contact-left .section-eyebrow {
  color: rgba(255, 255, 255, 0.4);
}
.contact-left .section-eyebrow::before {
  background: rgba(255, 255, 255, 0.3);
}
.contact-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-top: 1rem;
}
.contact-h2 em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
}
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 300;
  transition: all 0.25s var(--ease);
}
.contact-line:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  transform: translateX(4px);
}
.contact-line-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-line-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.1rem;
}
.contact-line-val {
  font-size: 0.9rem;
}
.contact-line-arr {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.3);
  transition: transform 0.2s;
}
.contact-line:hover .contact-line-arr {
  transform: translateX(4px);
  color: rgba(255, 255, 255, 0.6);
}

/* ═══════════════════════════
FOOTER
═══════════════════════════ */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}
.footer-copy strong {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}
/* THE REAL LINK — placed in footer, looks like a tiny legal note */
.footer-secret {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.12);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.3s;
  cursor: pointer;
  user-select: none;
}
.footer-secret:hover {
  color: rgba(255, 255, 255, 0.35);
}

/* ═══════════════════════════
SCROLL ANIMATIONS
═══════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
      opacity 0.7s var(--ease-out),
      transform 0.7s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ═══════════════════════════
CRAFTSMANSHIP
═══════════════════════════ */
.craft-quote-box {
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--ink);
  padding: 1.5rem;
  border-left: 3px solid var(--ink);
  background: var(--paper2);
  margin-bottom: 1rem;
}
.craft-author {
  display: block;
  font-family: var(--mono);
  font-size: 0.75rem;
  margin-top: 1rem;
  color: var(--ink3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.craft-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

/* ═══════════════════════════
FLOATING BUTTONS
═══════════════════════════ */
.floating-btn {
  position: fixed;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  z-index: 9999;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.2s;
  text-decoration: none;
}
.floating-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.btn-resume {
  left: 24px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.btn-resume:hover {
  background: var(--ink2);
}
.btn-whatsapp {
  right: 24px;
  background: #25D366;
}
.btn-whatsapp:hover {
  background: #20bd5a;
}

/* ═══════════════════════════
RESPONSIVE
═══════════════════════════ */
@media (max-width: 900px) {
  nav {
      padding: 1rem 1.5rem;
  }
  nav.scrolled {
      padding: 0.8rem 1.5rem;
  }
  .nav-links {
      gap: 1.5rem;
  }
  #hero {
      grid-template-columns: 1fr;
      padding: 6rem 1.5rem 3rem;
      gap: 3rem;
  }
  .hero-right {
      height: auto;
  }
  .hero-stat-grid {
      grid-template-columns: 1fr 1fr;
  }
  .section-shell {
      padding: 4rem 1.5rem;
  }
  #about .about-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
  }
  #experience .exp-layout {
      grid-template-columns: 1fr;
      gap: 2rem;
  }
  #capabilities .cap-grid {
      grid-template-columns: 1fr;
  }
  .contact-inner {
      grid-template-columns: 1fr;
      gap: 3rem;
      padding: 0;
  }
  #contact {
      padding: 4rem 1.5rem;
  }
  .proj-card.featured {
      grid-column: span 1;
      flex-direction: column;
  }
  footer {
      flex-direction: column;
      align-items: flex-start;
  }
}
@media (max-width: 600px) {
  .nav-links {
      display: none;
  }
  #projects .projects-grid {
      grid-template-columns: 1fr;
  }
  .hero-stat-grid {
      grid-template-columns: 1fr 1fr;
  }
}

/* ─── TOOLTIP for secret nav star ─── */
[data-tip] {
  position: relative;
}
[data-tip]:hover::after {
  content: attr(data-tip);
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--paper);
  font-size: 0.68rem;
  white-space: nowrap;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0.9;
}

/* ─── KONAMI / secret hover state for wordmark ─── */
.nav-wordmark.activated {
  color: transparent;
  background: linear-gradient(90deg, #ff6b9d, #a78bfa, #6c9eff);
  -webkit-background-clip: text;
  background-clip: text;
  transition: color 0.3s;
}