/* =========================================================================
   TOMÁŠ VŠETEČKA — PORTFOLIO
   Design system: Apple-grade restraint × Framer motion × cyber-security glow
   ========================================================================= */

@import url('https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700&f[]=general-sans@400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ---------------------------------------------------------------------
   1. TOKENS
   --------------------------------------------------------------------- */
:root{
  /* surfaces */
  --void:        #060608;
  --surface:     #0a0a0d;
  --panel:       #0e0e13;
  --panel-2:     #15151c;
  --panel-3:     #1c1c24;

  /* lines */
  --hair:        rgba(255,255,255,.08);
  --hair-strong: rgba(255,255,255,.16);
  --hair-accent: rgba(123,97,255,.35);

  /* ink */
  --ink:         #f5f5f7;
  --ink-dim:     #9a9aa5;
  --ink-faint:   #5c5c66;

  /* brand */
  --violet:      #7b61ff;
  --violet-soft: #a996ff;
  --cyan:        #39d6ff;
  --cyan-soft:   #9be9ff;
  --grad-brand:  linear-gradient(135deg, #7b61ff 0%, #39d6ff 100%);
  --grad-brand-soft: linear-gradient(135deg, rgba(123,97,255,.16), rgba(57,214,255,.16));

  /* status */
  --ok:          #33d17a;
  --warn:        #ffb454;

  /* type */
  --f-display: 'Clash Display', 'General Sans', -apple-system, sans-serif;
  --f-body:    'General Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* spacing baseline */
  --gutter: clamp(24px, 6vw, 96px);
  --section-y: clamp(88px, 12vw, 168px);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --ease: cubic-bezier(.16,.84,.44,1);
  --ease-soft: cubic-bezier(.22,.61,.36,1);
}

/* ---------------------------------------------------------------------
   2. RESET
   --------------------------------------------------------------------- */
*, *::before, *::after{ box-sizing: border-box; margin: 0; padding: 0; }
html{
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body{
  background: var(--void);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
img, svg, video{ display: block; max-width: 100%; -webkit-user-drag: none; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul{ list-style: none; }
::selection{ background: var(--violet); color: #fff; }
input, textarea{
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

:focus-visible{
  outline: none;
  box-shadow: 0 0 0 2px var(--void), 0 0 0 4px var(--cyan), 0 0 16px 2px rgba(57,214,255,.5);
  border-radius: 4px;
  transition: box-shadow .2s var(--ease);
}

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

/* subtle grain + vignette on the whole page, very low opacity — the 5% cyber atmosphere */
body::before{
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: .035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
body::after{
  content:'';
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  background:
    radial-gradient(1200px 800px at 15% -10%, rgba(123,97,255,.10), transparent 60%),
    radial-gradient(1000px 700px at 110% 10%, rgba(57,214,255,.07), transparent 60%);
}

/* ---------------------------------------------------------------------
   3. TYPOGRAPHY
   --------------------------------------------------------------------- */
h1, h2, h3, h4{
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.02;
  color: var(--ink);
}
.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.eyebrow .dot{
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 3px rgba(51,209,122,.18);
  animation: pulse 2.4s var(--ease) infinite;
  flex-shrink: 0;
}
.eyebrow.is-violet .dot{ background: var(--violet); box-shadow: 0 0 0 3px rgba(123,97,255,.2); }
@keyframes pulse{
  0%, 100%{ transform: scale(1); opacity: 1; }
  50%{ transform: scale(1.35); opacity: .6; }
}

.section-head{
  max-width: 760px;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-head h2{
  margin-top: 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}
.section-head p{
  margin-top: 18px;
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  color: var(--ink-dim);
  max-width: 56ch;
  line-height: 1.65;
}
.text-gradient{
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------------------------------------------------------------------
   4. LAYOUT UTILITIES
   --------------------------------------------------------------------- */
.wrap{
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
section{
  position: relative;
  padding-block: var(--section-y);
  z-index: 3;
}
section[id]{ scroll-margin-top: 96px; }
.section-alt{ background: linear-gradient(180deg, transparent, rgba(255,255,255,.014) 12%, rgba(255,255,255,.014) 88%, transparent); }

.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-soft), transform .9s var(--ease-soft);
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }
.reveal-stagger > *{ transition-delay: calc(var(--i, 0) * 90ms); }

/* ---------------------------------------------------------------------
   5. BUTTONS
   --------------------------------------------------------------------- */
.btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 100px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: .95rem;
  white-space: nowrap;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.btn-primary{
  background: var(--ink);
  color: #0a0a0d;
}
.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -12px rgba(123,97,255,.55);
}
.btn-primary svg{ transition: transform .4s var(--ease); }
.btn-primary:hover svg{ transform: translate(3px,-3px); }

.btn-ghost{
  border: 1px solid var(--hair-strong);
  color: var(--ink);
  background: rgba(255,255,255,.02);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover{
  border-color: rgba(123,97,255,.6);
  background: rgba(123,97,255,.08);
  transform: translateY(-2px);
}
.btn-sm{ padding: 10px 18px; font-size: .82rem; }

/* ---------------------------------------------------------------------
   6. BADGES / PILLS
   --------------------------------------------------------------------- */
.pill{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 100px;
  font-family: var(--f-mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .04em;
  border: 1px solid var(--hair);
  background: rgba(255,255,255,.03);
  color: var(--ink-dim);
}
.pill-role{ color: var(--violet-soft); border-color: rgba(123,97,255,.28); background: rgba(123,97,255,.07); }
.pill-status{ text-transform: uppercase; letter-spacing: .1em; }
.pill-status.is-live{ color: var(--ok); border-color: rgba(51,209,122,.3); background: rgba(51,209,122,.08); }
.pill-status.is-dev{ color: var(--warn); border-color: rgba(255,180,84,.3); background: rgba(255,180,84,.08); }
.pill-status .dot{ width: 5px; height: 5px; border-radius: 50%; background: currentColor; }

/* ---------------------------------------------------------------------
   7. NAVIGATION
   --------------------------------------------------------------------- */
.nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  padding: 20px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding .5s var(--ease), background .5s var(--ease), border-color .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled{
  padding-block: 12px;
  background: rgba(6,6,8,.72);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--hair);
}
.nav-logo{
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.nav-logo .mark{
  width: 30px; height: 30px;
  border-radius: 9px;
  background: var(--grad-brand);
  display: grid; place-items: center;
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: .8rem;
  color: #060608;
  flex-shrink: 0;
}
.nav-links{
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links a{
  font-size: .9rem;
  color: var(--ink-dim);
  position: relative;
  padding-block: 4px;
  transition: color .3s var(--ease);
}
.nav-links a::after{
  content: '';
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--grad-brand);
  transition: right .4s var(--ease);
}
.nav-links a:hover{ color: var(--ink); }
.nav-links a:hover::after{ right: 0; }
.nav-cta{ display: flex; align-items: center; gap: 18px; }
.nav-cta .btn-ghost{ display: none; }
@media (min-width: 900px){ .nav-cta .btn-ghost{ display: inline-flex; } }

.burger{
  display: grid;
  gap: 5px;
  width: 40px; height: 40px;
  place-items: center;
  z-index: 210;
}
.burger span{
  width: 20px; height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .4s var(--ease), opacity .3s var(--ease);
}
.burger.is-open span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
.burger.is-open span:nth-child(2){ opacity: 0; }
.burger.is-open span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }

@media (min-width: 900px){ .burger{ display: none; } }
@media (max-width: 899px){ .nav-links{ display: none; } }

.mobile-menu{
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(6,6,8,.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px var(--gutter);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), visibility 0s linear .5s;
}
.mobile-menu.is-open{
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity .5s var(--ease), transform .5s var(--ease), visibility 0s;
}
.mobile-menu a{
  font-family: var(--f-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--ink);
  display: block;
  padding-block: 14px;
  border-bottom: 1px solid var(--hair);
  opacity: 0;
  transform: translateX(-14px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.mobile-menu.is-open a{ opacity: 1; transform: translateX(0); }
.mobile-menu a:nth-child(1){ transition-delay: .08s; }
.mobile-menu a:nth-child(2){ transition-delay: .14s; }
.mobile-menu a:nth-child(3){ transition-delay: .2s; }
.mobile-menu a:nth-child(4){ transition-delay: .26s; }
.mobile-menu a:nth-child(5){ transition-delay: .32s; }
.mobile-menu-foot{
  margin-top: 32px;
  display: flex;
  gap: 20px;
  opacity: 0;
  transition: opacity .6s var(--ease) .4s;
}
.mobile-menu.is-open .mobile-menu-foot{ opacity: 1; }

/* ---------------------------------------------------------------------
   9. HERO
   --------------------------------------------------------------------- */
.hero{
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 140px;
  position: relative;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}
@media (min-width: 1080px){
  .hero-grid{ grid-template-columns: 1.05fr .95fr; gap: 40px; }
}
.hero-copy h1{
  font-size: clamp(2.6rem, 5.6vw, 5.2rem);
  margin-top: 22px;
}
.hero-copy h1 em{
  font-style: normal;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-copy p{
  margin-top: 26px;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--ink-dim);
  max-width: 46ch;
  line-height: 1.65;
}
.hero-actions{
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-facts{
  margin-top: 64px;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 52px);
  padding-top: 28px;
  border-top: 1px solid var(--hair);
}
.hero-fact .k{
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 6px;
}
.hero-fact .v{ font-size: .98rem; color: var(--ink); font-weight: 500; }

/* floating visual */
.hero-visual{
  position: relative;
  height: clamp(380px, 46vw, 560px);
  perspective: 1400px;
}
.hero-orb{
  position: absolute;
  width: 60%; height: 60%;
  top: 10%; left: 20%;
  background: radial-gradient(circle, rgba(123,97,255,.35), rgba(57,214,255,.12) 55%, transparent 72%);
  filter: blur(60px);
  animation: orbFloat 10s ease-in-out infinite;
}
@keyframes orbFloat{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(-16px, 18px) scale(1.06); }
}
.float-card{
  position: absolute;
  border-radius: var(--radius-md);
  border: 1px solid var(--hair-strong);
  background: rgba(20,20,26,.55);
  backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.65);
  overflow: hidden;
  transition: transform .2s var(--ease-soft);
  will-change: transform;
}
.float-card::before{
  content:'';
  position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
}
.float-card img{ width: 100%; height: 100%; object-fit: cover; }

.fc-1{ width: 58%; top: 4%; left: 2%; aspect-ratio: 4/3; z-index: 3; animation: floatY 7s ease-in-out infinite; }
.fc-2{ width: 46%; bottom: 6%; right: 0%; aspect-ratio: 16/10; z-index: 2; animation: floatY 8s ease-in-out infinite 1.2s; }
.fc-3{
  width: 52%; top: 46%; left: 32%; z-index: 4;
  padding: 16px 18px; aspect-ratio: auto;
  animation: floatY 6.4s ease-in-out infinite .6s;
}
@keyframes floatY{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-14px); }
}
.fc-3 .row{ display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.fc-3 .row:last-child{ margin-bottom: 0; }
.fc-3 .lbl{ font-family: var(--f-mono); font-size: .66rem; color: var(--ink-faint); letter-spacing: .06em; text-transform: uppercase; }
.fc-3 .val{ font-family: var(--f-mono); font-size: .72rem; color: var(--ok); font-weight: 600; }

.hero-scroll{
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--ink-faint);
}
@media(min-width: 700px){ .hero-scroll{ display: flex; } }
.hero-scroll .line{ width: 1px; height: 34px; background: linear-gradient(var(--ink-faint), transparent); overflow: hidden; position: relative; }
.hero-scroll .line i{ position: absolute; top: -34px; left: 0; width: 100%; height: 34px; background: linear-gradient(var(--cyan), transparent); animation: scrollLine 2.2s var(--ease) infinite; }
@keyframes scrollLine{ to{ top: 34px; } }

/* ---------------------------------------------------------------------
   10. ABOUT
   --------------------------------------------------------------------- */
.about-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 980px){
  .about-grid{ grid-template-columns: .82fr 1.18fr; gap: 80px; }
}
.about-portrait{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-width: 420px;
  border: 1px solid var(--hair-strong);
}
.about-portrait img{ width: 100%; height: 100%; object-fit: cover; filter: saturate(.92) contrast(1.04); }
.about-portrait::after{
  content:'';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,6,8,0) 45%, rgba(6,6,8,.75) 100%),
              linear-gradient(135deg, rgba(123,97,255,.22), rgba(57,214,255,.1));
  mix-blend-mode: normal;
}
.about-portrait .tag{
  position: absolute; left: 20px; bottom: 20px;
  font-family: var(--f-mono); font-size: .72rem; color: var(--ink);
  display: flex; align-items: center; gap: 8px;
}
.about-body p{
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.65;
  color: var(--ink-dim);
  max-width: 62ch;
}
.about-body p + p{ margin-top: 20px; }
.about-body strong{ color: var(--ink); font-weight: 600; }
.role-cloud{
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.about-facts{
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--hair);
}

/* ---------------------------------------------------------------------
   11. FOCUS AREAS
   --------------------------------------------------------------------- */
.focus-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 860px){
  .focus-grid{ grid-template-columns: repeat(3, 1fr); }
}
.focus-card{
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--hair);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  overflow: hidden;
  transition: border-color .4s var(--ease), transform .4s var(--ease), background .4s var(--ease);
}
.focus-card:hover{
  border-color: rgba(123,97,255,.4);
  transform: translateY(-6px);
  background: linear-gradient(180deg, rgba(123,97,255,.07), rgba(255,255,255,.01));
}
.focus-icon{
  width: 46px; height: 46px;
  border-radius: 13px;
  display: grid; place-items: center;
  background: var(--grad-brand-soft);
  border: 1px solid rgba(123,97,255,.3);
  margin-bottom: 22px;
}
.focus-icon svg{ width: 22px; height: 22px; stroke: var(--cyan-soft); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.focus-card h3{
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.focus-card p{
  color: var(--ink-dim);
  font-size: .95rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
.tech-row{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tech-chip{
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border-radius: 9px;
  border: 1px solid var(--hair);
  background: rgba(255,255,255,.02);
  font-size: .76rem;
  color: var(--ink-dim);
}
.tech-chip img{ width: 15px; height: 15px; }
.tech-chip svg{ width: 15px; height: 15px; }

/* ---------------------------------------------------------------------
   12. WORK / PROJECT CHAPTERS
   --------------------------------------------------------------------- */
.work-intro{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}
.chapter{
  padding-block: clamp(64px, 9vw, 120px);
  border-top: 1px solid var(--hair);
}
.chapter-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 1039.98px){
  .chapter-grid.is-flipped > *:first-child{ order: 2; }
  .chapter-grid.is-flipped > *:last-child{ order: 1; }
}
@media (min-width: 1040px){
  .chapter-grid{ grid-template-columns: .92fr 1.08fr; gap: 64px; }
  .chapter-grid.is-flipped{ direction: rtl; }
  .chapter-grid.is-flipped > *{ direction: ltr; }
}
.chapter-meta{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.chapter-logo{
  width: 42px; height: 42px;
  border-radius: 11px;
  border: 1px solid var(--hair-strong);
  background: rgba(255,255,255,.03);
  display: grid; place-items: center;
  overflow: hidden;
  padding: 7px;
}
.chapter-logo img{ width: 100%; height: 100%; object-fit: contain; }
.chapter-wordmark{ height: 26px; width: auto; margin-bottom: 16px; filter: brightness(1.15); }
.chapter h3{
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  margin: 4px 0 16px;
}
.chapter-tagline{
  font-size: 1.1rem;
  color: var(--ink-dim);
  margin-bottom: 20px;
  line-height: 1.6;
  max-width: 50ch;
}
.chapter-desc{
  color: var(--ink-dim);
  line-height: 1.7;
  margin-bottom: 26px;
  max-width: 54ch;
}
.chapter-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.chapter-tech{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.chapter-links{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.chapter-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--hair-strong);
  transition: border-color .3s var(--ease), color .3s var(--ease), gap .3s var(--ease);
}
.chapter-link:hover{ color: var(--cyan-soft); border-color: var(--cyan); gap: 11px; }
.chapter-link svg{ width: 14px; height: 14px; }

/* browser frame (web projects) */
.browser-frame{
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--hair-strong);
  background: var(--panel);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.7);
}
.browser-bar{
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 13px 16px;
  background: #111116;
  border-bottom: 1px solid var(--hair);
}
.browser-dots{ display: flex; gap: 7px; }
.browser-dots i{ width: 10px; height: 10px; border-radius: 50%; opacity: .7; }
.browser-dots i:nth-child(1){ background: #ff5f57; }
.browser-dots i:nth-child(2){ background: #febc2e; }
.browser-dots i:nth-child(3){ background: #28c840; }
.browser-url{
  flex: 1;
  text-align: center;
  font-family: var(--f-mono);
  font-size: .72rem;
  color: var(--ink-faint);
  background: rgba(255,255,255,.03);
  border-radius: 6px;
  padding: 5px 12px;
  max-width: 260px;
  margin-inline: auto;
}
.browser-shots{ display: block; }
.browser-shots img{ width: 100%; display: block; }
.browser-shots .duo{
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.browser-shots .duo img{ height: 100%; object-fit: cover; }
.browser-shots .duo > div{ border-top: 1px solid var(--hair); overflow: hidden; }
.browser-shots .duo > div:first-child{ border-right: 1px solid var(--hair); }

/* hud frame (in-game NUI / dashboard projects) */
.hud-frame{
  position: relative;
  border-radius: var(--radius-lg);
  padding: 3px;
  background: linear-gradient(135deg, rgba(123,97,255,.55), rgba(57,214,255,.4));
  box-shadow: 0 40px 90px -30px rgba(123,97,255,.35);
}
.hud-inner{
  border-radius: calc(var(--radius-lg) - 3px);
  background: var(--panel);
  overflow: hidden;
}
.hud-label{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cyan-soft);
  border-bottom: 1px solid var(--hair);
}
.hud-label .dot{ width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.hud-shots{ display: grid; grid-template-columns: 1.3fr 1fr; }
.hud-shots img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.hud-shots .stack{ display: grid; grid-template-rows: 1fr 1fr; border-left: 1px solid var(--hair); }
.hud-shots .stack > div:first-child{ border-bottom: 1px solid var(--hair); overflow: hidden; }
.hud-shots .stack > div{ overflow: hidden; }
.hud-corner{
  position: absolute;
  width: 18px; height: 18px;
  border: 1.5px solid var(--cyan-soft);
  opacity: .8;
  z-index: 2;
}
.hud-corner.tl{ top: -3px; left: -3px; border-right: none; border-bottom: none; border-top-left-radius: 8px; }
.hud-corner.br{ bottom: -3px; right: -3px; border-left: none; border-top: none; border-bottom-right-radius: 8px; }

/* cinematic frame (VeloPVP) */
.cinematic-frame{
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--hair-strong);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.7);
}
.cinematic-frame img{ width: 100%; display: block; }
.cinematic-frame .scrim{
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(6,6,8,.88) 0%, rgba(6,6,8,.1) 45%, transparent 70%);
}
.cinematic-badge{
  position: absolute; top: 18px; left: 18px;
  display: flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 8px;
  border-radius: 100px;
  background: rgba(10,10,13,.6);
  border: 1px solid var(--hair-strong);
  backdrop-filter: blur(10px);
}
.cinematic-badge img{ width: 26px; height: 26px; border-radius: 50%; object-fit: cover; }
.cinematic-badge span{ font-family: var(--f-mono); font-size: .72rem; color: var(--ink); }
.cinematic-caption{
  position: absolute; bottom: 16px; left: 18px;
  font-family: var(--f-mono); font-size: .68rem; letter-spacing: .06em;
  color: var(--ink-dim);
}
.cinematic-stack{ display: flex; flex-direction: column; gap: 16px; }

/* "more coming" ghost card */
.chapter-more{
  padding-block: clamp(56px, 8vw, 96px);
  border-top: 1px solid var(--hair);
  text-align: center;
}
.ghost-card{
  max-width: 560px;
  margin-inline: auto;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1.5px dashed var(--hair-strong);
  background: rgba(255,255,255,.015);
}
.ghost-card .code{
  font-family: var(--f-mono);
  font-size: .82rem;
  color: var(--cyan-soft);
  margin-bottom: 14px;
}
.ghost-card h4{ font-family: var(--f-display); font-size: 1.4rem; margin-bottom: 10px; }
.ghost-card p{ color: var(--ink-dim); font-size: .92rem; max-width: 42ch; margin-inline: auto; }

/* ---------------------------------------------------------------------
   13. JOURNEY / TIMELINE
   --------------------------------------------------------------------- */
.journey-list{
  position: relative;
  margin-top: 8px;
}
.journey-list::before{
  content: '';
  position: absolute;
  left: 7px; top: 10px; bottom: 10px;
  width: 1px;
  background: linear-gradient(var(--hair-strong), var(--hair-strong));
}
.journey-item{
  position: relative;
  padding: 28px 0 28px 44px;
  border-bottom: 1px solid var(--hair);
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}
@media (min-width: 780px){
  .journey-item{ grid-template-columns: 1.4fr 1fr auto; align-items: center; gap: 20px; }
}
.journey-item:first-child{ padding-top: 4px; }
.journey-node{
  position: absolute;
  left: 0; top: 34px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--void);
  border: 2px solid var(--violet);
}
.journey-item.is-live .journey-node{ border-color: var(--ok); box-shadow: 0 0 0 4px rgba(51,209,122,.15); }
.journey-title{ font-family: var(--f-display); font-size: 1.25rem; font-weight: 600; }
.journey-desc{ color: var(--ink-dim); font-size: .92rem; }

/* ---------------------------------------------------------------------
   14. CONTACT
   --------------------------------------------------------------------- */
.contact-panel{
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid var(--hair-strong);
  padding: clamp(48px, 8vw, 96px) clamp(28px, 6vw, 80px);
  overflow: hidden;
  text-align: center;
  background: radial-gradient(120% 140% at 50% 0%, rgba(123,97,255,.14), transparent 60%);
}
.contact-panel::before{
  content:'';
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 15% 100%, rgba(57,214,255,.12), transparent 70%);
  pointer-events: none;
}
.contact-panel h2{
  font-size: clamp(2.2rem, 5vw, 4rem);
  max-width: 18ch;
  margin-inline: auto;
}
.contact-panel > p{
  margin-top: 20px;
  color: var(--ink-dim);
  font-size: 1.1rem;
  max-width: 46ch;
  margin-inline: auto;
}
.contact-email{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 600;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--hair-strong);
  transition: border-color .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.contact-email:hover{ border-color: var(--cyan); color: var(--cyan-soft); transform: translateY(-2px); }
.contact-socials{
  margin-top: 44px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.social-btn{
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--hair-strong);
  display: grid; place-items: center;
  transition: border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
}
.social-btn:hover{ border-color: var(--violet); background: rgba(123,97,255,.1); transform: translateY(-3px); }
.social-btn img{ width: 18px; height: 18px; filter: invert(1); opacity: .85; }

/* ---------------------------------------------------------------------
   15. FOOTER
   --------------------------------------------------------------------- */
.footer{
  padding-block: 48px;
  border-top: 1px solid var(--hair);
}
.footer-grid{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand{
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: .82rem;
  color: var(--ink-faint);
}
.footer-links{
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-links a{ font-size: .85rem; color: var(--ink-dim); transition: color .3s var(--ease); }
.footer-links a:hover{ color: var(--ink); }
.to-top{
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--hair-strong);
  display: grid; place-items: center;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.to-top:hover{ transform: translateY(-4px); border-color: var(--cyan); }
.to-top svg{ width: 16px; height: 16px; }

/* ---------------------------------------------------------------------
   16. RESPONSIVE FINE-TUNING
   --------------------------------------------------------------------- */
@media (max-width: 640px){
  .hud-shots{ grid-template-columns: 1fr; }
  .hud-shots .stack{ grid-template-rows: 1fr 1fr; border-left: none; border-top: 1px solid var(--hair); }
  .cinematic-strip{ grid-template-columns: 1fr 1fr; }
  .browser-shots .duo{ grid-template-columns: 1fr; }
  .browser-shots .duo > div:first-child{ border-right: none; }
  .hero{ padding-top: 120px; }
  .footer-grid{ flex-direction: column; align-items: flex-start; }
}

/* ---------------------------------------------------------------------
   17. HERO LIVE CARDS (terminal + security ring)
   --------------------------------------------------------------------- */
.term-card{
  aspect-ratio: auto;
  padding: 0;
}
.term-bar{
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--hair);
  background: rgba(255,255,255,.02);
}
.term-bar i{ width: 9px; height: 9px; border-radius: 50%; opacity: .8; }
.term-bar i:nth-child(1){ background: #ff5f57; }
.term-bar i:nth-child(2){ background: #febc2e; }
.term-bar i:nth-child(3){ background: #28c840; }
.term-bar span{
  margin-left: auto;
  font-family: var(--f-mono);
  font-size: .6rem;
  letter-spacing: .06em;
  color: var(--ink-faint);
}
.term-body{
  padding: 16px 18px 20px;
  font-family: var(--f-mono);
  font-size: clamp(.62rem, 1vw, .74rem);
  line-height: 2;
  color: var(--ink-dim);
}
.term-line{
  white-space: nowrap;
  opacity: 0;
  transform: translateY(3px);
  animation: termIn .35s var(--ease) forwards;
}
.term-line .p{ color: var(--cyan); }
.term-line .ok{ color: var(--ok); }
.tl-1{ animation-delay: 1.7s; }
.tl-2{ animation-delay: 2.3s; }
.tl-3{ animation-delay: 2.7s; }
.tl-4{ animation-delay: 3.1s; }
.tl-5{ animation-delay: 3.7s; }
@keyframes termIn{ to{ opacity: 1; transform: translateY(0); } }
.term-cursor{
  display: inline-block;
  width: 7px; height: 12px;
  margin-left: 6px;
  vertical-align: -1px;
  background: var(--cyan);
  animation: blink 1.1s steps(1) infinite;
}
@keyframes blink{ 50%{ opacity: 0; } }

.score-card{
  aspect-ratio: auto;
  padding: 20px 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.ring-wrap{ position: relative; width: clamp(74px, 8vw, 104px); }
.ring-wrap svg{ width: 100%; height: auto; transform: rotate(-90deg); }
.ring-bg{ fill: none; stroke: rgba(255,255,255,.07); stroke-width: 8; }
.ring-fg{
  fill: none;
  stroke: url(#ringGrad);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 326.7;
  stroke-dashoffset: 326.7;
  animation: ringFill 1.6s var(--ease) 2s forwards;
  filter: drop-shadow(0 0 6px rgba(123,97,255,.5));
}
@keyframes ringFill{ to{ stroke-dashoffset: 6.5; } }
.ring-num{
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  opacity: 0;
  animation: termIn .6s var(--ease) 2.4s forwards;
}
.ring-lbl{
  font-family: var(--f-mono);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ---------------------------------------------------------------------
   18. LIGHTBOX
   --------------------------------------------------------------------- */
img.is-zoomable{ cursor: zoom-in; }
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vmin, 48px);
  background: rgba(6,6,8,.9);
  backdrop-filter: blur(16px) saturate(120%);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease), visibility 0s linear .4s;
  cursor: zoom-out;
}
.lightbox.is-open{
  opacity: 1;
  visibility: visible;
  transition: opacity .4s var(--ease), visibility 0s;
}
.lightbox img{
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--hair-strong);
  box-shadow: 0 60px 120px -30px rgba(0,0,0,.85);
  transform: scale(.94);
  transition: transform .45s var(--ease);
}
.lightbox.is-open img{ transform: scale(1); }
.lightbox-close{
  position: absolute;
  top: 18px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--hair-strong);
  background: rgba(10,10,13,.6);
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1;
  display: grid; place-items: center;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.lightbox-close:hover{ border-color: var(--cyan); transform: rotate(90deg); }
.lightbox-caption{
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-mono);
  font-size: .7rem;
  letter-spacing: .06em;
  color: var(--ink-dim);
  max-width: 80vw;
  text-align: center;
}

/* ---------------------------------------------------------------------
   19. LUXURY ANIMATIONS
   --------------------------------------------------------------------- */
/* scroll progress bar */
.scroll-progress{
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  z-index: 400;
  background: var(--grad-brand);
  transform-origin: 0 50%;
  transform: scaleX(0);
  pointer-events: none;
}

/* cursor glow (desktop) */
.cursor-glow{
  position: fixed;
  top: 0; left: 0;
  width: 560px; height: 560px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(123,97,255,.08), rgba(57,214,255,.03) 45%, transparent 65%);
  transform: translate(-50%,-50%);
  opacity: 0;
  transition: opacity .6s var(--ease);
}
body.has-glow .cursor-glow{ opacity: 1; }

/* shimmering gradient headline — CSS-only reveal, timed to start right
   after the first line finishes its JS scramble effect */
.hero-copy h1 em{
  background: linear-gradient(110deg, #7b61ff 0%, #39d6ff 40%, #a996ff 55%, #39d6ff 70%, #7b61ff 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  animation: emReveal .6s var(--ease-soft) .9s forwards, shimmer 7s linear infinite .9s;
}
@keyframes shimmer{ to{ background-position: -220% 0; } }
@keyframes emReveal{ to{ opacity: 1; transform: translateY(0); } }

/* project frames — smooth 3D tilt (transform set by JS) */
.browser-frame, .hud-frame, .cinematic-frame{
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft);
  will-change: transform;
  transform-style: preserve-3d;
}

/* breathing border glow on the contact panel — plain box-shadow/border
   animation, no masks or custom-property registration required */
.contact-panel{
  animation: panelGlow 6s ease-in-out infinite;
}
@keyframes panelGlow{
  0%, 100%{
    border-color: var(--hair-strong);
    box-shadow: 0 0 0 0 rgba(123,97,255,0);
  }
  50%{
    border-color: rgba(123,97,255,.55);
    box-shadow: 0 0 60px -8px rgba(123,97,255,.35), 0 0 0 1px rgba(57,214,255,.12) inset;
  }
}

@media (prefers-reduced-motion: reduce){
  .term-line, .ring-num{ opacity: 1 !important; transform: none !important; }
  .ring-fg{ stroke-dashoffset: 6.5 !important; }
  .contact-panel{ animation: none; }
  .cursor-glow{ display: none; }
}


/* ---------------------------------------------------------------------
   20. DECRYPT / SCRAMBLE HEADLINE
   --------------------------------------------------------------------- */
.scramble-word{ white-space: nowrap; }
.scramble-char.is-resolved{ animation: charSettle .3s var(--ease-soft); }
@keyframes charSettle{
  0%{ opacity: .4; text-shadow: 0 0 10px rgba(57,214,255,.7); }
  100%{ opacity: 1; text-shadow: none; }
}

/* ---------------------------------------------------------------------
   21. LIVE STATUS LINE (footer)
   --------------------------------------------------------------------- */
.live-status{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--hair);
  font-family: var(--f-mono);
  font-size: .74rem;
  letter-spacing: .04em;
  color: var(--ink-faint);
}
.live-status .ls-dot{
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 3px rgba(51,209,122,.18);
  animation: pulse 2.4s var(--ease) infinite;
  flex-shrink: 0;
}
.live-status #liveTime{
  color: var(--ink-dim);
  font-variant-numeric: tabular-nums;
}
.live-status .ls-sep{ color: var(--hair-strong); }

/* ---------------------------------------------------------------------
   22. CUSTOM SCROLLBAR
   --------------------------------------------------------------------- */
html{
  scrollbar-width: thin;
  scrollbar-color: rgba(123,97,255,.5) transparent;
}
::-webkit-scrollbar{ width: 11px; height: 11px; }
::-webkit-scrollbar-track{ background: var(--void); }
::-webkit-scrollbar-thumb{
  background: linear-gradient(180deg, rgba(123,97,255,.55), rgba(57,214,255,.45));
  border-radius: 20px;
  border: 3px solid var(--void);
}
::-webkit-scrollbar-thumb:hover{
  background: linear-gradient(180deg, rgba(123,97,255,.8), rgba(57,214,255,.7));
}
::-webkit-scrollbar-corner{ background: var(--void); }

@media (prefers-reduced-motion: reduce){
  .live-status .ls-dot{ animation: none; }
  .scramble-char.is-resolved{ animation: none; }
}

/* ---------------------------------------------------------------------
   23. FAQ ACCORDION
   --------------------------------------------------------------------- */
.faq-list{
  max-width: 760px;
  margin-inline: auto;
}
.faq-item{
  border-bottom: 1px solid var(--hair);
}
.faq-q{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  text-align: left;
  font-family: var(--f-display);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 500;
  color: var(--ink);
}
.faq-q svg{
  width: 18px; height: 18px;
  color: var(--ink-faint);
  flex-shrink: 0;
  transition: transform .4s var(--ease), color .3s var(--ease);
}
.faq-item.is-open .faq-q svg{ transform: rotate(180deg); color: var(--cyan); }
.faq-a{
  display: grid;
  grid-template-rows: 0fr;
  min-height: 0;
  transition: grid-template-rows .45s var(--ease-soft);
}
.faq-a p{
  overflow: hidden;
  min-height: 0;
  color: var(--ink-dim);
  font-size: .96rem;
  line-height: 1.65;
  max-width: 62ch;
  padding-bottom: 0;
}
.faq-item.is-open .faq-a{ grid-template-rows: 1fr; }
.faq-item.is-open .faq-a p{ padding-bottom: 24px; }

/* ---------------------------------------------------------------------
   24. CONTACT FORM
   --------------------------------------------------------------------- */
.contact-panel{ text-align: left; padding: clamp(36px, 5vw, 64px); }
.contact-panel h2, .contact-panel > p{ margin-inline: 0; text-align: left; }
.contact-cols{
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px){
  .contact-cols{ grid-template-columns: .85fr 1.15fr; gap: 64px; }
}
.contact-intro h2{
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin-top: 16px;
  max-width: 14ch;
}
.contact-intro > p{
  margin-top: 16px;
  color: var(--ink-dim);
  font-size: 1.02rem;
  max-width: 40ch;
}
.contact-intro .contact-email{
  margin-top: 32px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}
.contact-intro .contact-socials{ margin-top: 32px; justify-content: flex-start; }

.contact-form{
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.field{ display: flex; flex-direction: column; gap: 8px; }
.field label{
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.field input, .field textarea{
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hair-strong);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 1rem;
  padding: 6px 2px 12px;
  resize: none;
  transition: border-color .3s var(--ease);
}
.field input::placeholder, .field textarea::placeholder{ color: var(--ink-faint); }
.field input:focus, .field textarea:focus{
  outline: none;
  border-color: var(--cyan);
}
.field input:focus-visible, .field textarea:focus-visible{
  outline: none;
  box-shadow: none;
  border-color: var(--cyan);
}

.form-submit{ align-self: flex-start; margin-top: 4px; }
.form-submit.is-loading{ opacity: .6; pointer-events: none; }
.form-status{
  font-family: var(--f-mono);
  font-size: .78rem;
  min-height: 1.2em;
}
.form-status.is-ok{ color: var(--ok); }
.form-status.is-err{ color: #ff6b6b; }

@media (max-width: 640px){
  .contact-panel{ text-align: left; }
}

/* ---------------------------------------------------------------------
   25. AVAILABILITY BADGE (hero)
   --------------------------------------------------------------------- */
.avail-badge{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  padding: 8px 16px 8px 12px;
  border-radius: 100px;
  border: 1px solid rgba(51,209,122,.25);
  background: rgba(51,209,122,.06);
  font-family: var(--f-mono);
  font-size: .74rem;
  letter-spacing: .02em;
  color: var(--ink-dim);
}
.avail-dot{
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 3px rgba(51,209,122,.18);
  animation: pulse 2.4s var(--ease) infinite;
  flex-shrink: 0;
}

/* ---------------------------------------------------------------------
   26. CONTACT HINTS
   --------------------------------------------------------------------- */
.contact-hint{
  margin-top: 16px;
  font-family: var(--f-mono);
  font-size: .74rem;
  color: var(--ink-faint);
}
.form-hint{
  margin-top: -8px;
  font-family: var(--f-mono);
  font-size: .72rem;
  color: var(--ink-faint);
}

/* ---------------------------------------------------------------------
   27. CONTACT FOCUS CLARIFIER
   --------------------------------------------------------------------- */
.contact-focus{
  margin-top: 12px;
  color: var(--ink-dim);
  font-size: .92rem;
  max-width: 42ch;
}
.contact-focus strong{ color: var(--ink); font-weight: 600; }

/* ---------------------------------------------------------------------
   28. SKIP LINK (accessibility)
   --------------------------------------------------------------------- */
.skip-link{
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 1000;
  padding: 12px 20px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--void);
  font-family: var(--f-mono);
  font-size: .82rem;
  font-weight: 600;
  transition: top .25s var(--ease);
}
.skip-link:focus{
  top: 16px;
}

/* ---------------------------------------------------------------------
   29. DEVLOG
   --------------------------------------------------------------------- */
.devlog-list{
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.devlog-item{
  display: flex;
  gap: 24px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--hair);
}
.devlog-date{
  flex-shrink: 0;
  width: 70px;
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .06em;
  color: var(--ink-faint);
}
.devlog-text{
  color: var(--ink-dim);
  font-size: .95rem;
  line-height: 1.6;
}

/* ---------------------------------------------------------------------
   30. FOOTER — last updated
   --------------------------------------------------------------------- */
.footer-updated{ color: var(--ink-faint); }

/* ---------------------------------------------------------------------
   31. PRINT STYLESHEET
   --------------------------------------------------------------------- */
@media print{
  body{ background: #fff; color: #111; }
  body::before, body::after{ display: none; }
  .nav, .mobile-menu, .burger, .hero-visual, .hero-scroll,
  .scroll-progress, .cursor-glow, .to-top, .skip-link,
  .float-card, .contact-form, .form-hint, .contact-hint,
  .social-btn img, .avail-badge, .live-status, .faq-q svg{
    display: none !important;
  }
  a{ color: #111; text-decoration: underline; }
  .hero{ min-height: auto; padding-top: 20px; }
  .hero-copy h1, .hero-copy h1 em{
    color: #111 !important;
    background: none !important;
    -webkit-text-fill-color: #111 !important;
  }
  .hero-copy p, .chapter-desc, .chapter-tagline, p{ color: #333 !important; }
  .chapter-grid{ grid-template-columns: 1fr !important; }
  .browser-frame, .hud-frame, .cinematic-frame{
    box-shadow: none; border: 1px solid #ccc;
  }
  .faq-a{ grid-template-rows: 1fr !important; }
  .faq-a p{ padding-bottom: 16px !important; }
  section{ padding-block: 24px; }
  .reveal{ opacity: 1 !important; transform: none !important; }
}
