/* ============================================
   HAKEEMI - PORTFOLIO
   ABYSS/SIGNAL immersive theme (Sep 2026).
   Deep-sea navy + ice paper + sky/teal signal.
   Same markup contract, all prior classes kept.
   ============================================ */

:root {
  /* Abyss */
  --abyss: #071426;
  --deep: #0C2346;
  --deep-2: #123058;
  --dline: rgba(150, 195, 255, 0.16);
  --dline-strong: rgba(150, 195, 255, 0.32);
  --dtext: #EAF2FC;
  --dmuted: #93A9C9;
  --glass: rgba(255, 255, 255, 0.045);
  --glass-hover: rgba(255, 255, 255, 0.08);

  /* Ice */
  --paper: #E9F1F9;
  --paper-2: #D9E5F2;
  --card: #FFFFFF;
  --ink-t: #0E2242;
  --muted: #4E6178;
  --faint: #7B8DA3;
  --line: #C4D3E6;
  --line-strong: #A4B9D4;

  /* Signal */
  --sky: #38BDF8;
  --ice-blue: #7DD3FC;
  --cobalt: #2563EB;
  --deep-blue: #1D4ED8;
  --teal: #2DD4BF;
  --gold: #fbbf24;
  --green: #1E9E5A;
  --grad-signal: linear-gradient(135deg, #2563EB 0%, #0EA5E9 55%, #14B8A6 100%);

  /* Spacing */
  --section-padding: clamp(72px, 10vw, 128px);
  --container-width: 1140px;

  /* Typography */
  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Effects */
  --blur-sm: 8px;
  --blur-md: 16px;
  --blur-lg: 32px;
  --shadow-card: 0 1px 2px rgba(8, 20, 38, 0.06), 0 18px 40px -22px rgba(8, 20, 38, 0.25);
  --shadow-lift: 0 2px 6px rgba(8, 20, 38, 0.08), 0 28px 56px -22px rgba(8, 20, 38, 0.35);
  --glow-sky: 0 0 0 1px rgba(56, 189, 248, 0.25), 0 12px 44px -8px rgba(56, 189, 248, 0.45);
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  font-family: var(--font-sans);
  background: var(--deep);
  color: var(--dtext);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Abyss grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

img { max-width: 100%; }

:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Scroll progress + spy rail */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--grad-signal);
  z-index: 1200;
}

.spy {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 900;
}

.spy a {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  border: 1px solid var(--dline-strong);
  background: transparent;
  transition: var(--transition-base);
}

.spy a:hover { border-color: var(--sky); }
.spy a.on {
  height: 26px;
  background: var(--sky);
  border-color: var(--sky);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.7);
}

@media (max-width: 1100px) {
  .spy { display: none; }
}

/* Particle Canvas Background */
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

/* Cursor Glow Effect (fine pointers only) */
.cursor-glow {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.16) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

body:hover .cursor-glow {
  opacity: 1;
}

/* Container */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.center { text-align: center; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(7, 20, 38, 0.78);
  backdrop-filter: blur(var(--blur-md));
  -webkit-backdrop-filter: blur(var(--blur-md));
  border-bottom: 1px solid var(--dline);
  transition: var(--transition-base);
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(7, 20, 38, 0.94);
  box-shadow: 0 14px 34px -20px rgba(0, 0, 0, 0.7);
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--dtext);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: var(--dmuted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  transition: var(--transition-fast);
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-signal);
  transition: var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--dtext);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dtext);
  transition: var(--transition-base);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(7, 20, 38, 0.98);
  backdrop-filter: blur(var(--blur-md));
  padding: 12px 5% calc(20px + env(safe-area-inset-bottom));
  border-bottom: 1px solid var(--dline);
  box-shadow: 0 24px 40px -24px rgba(0, 0, 0, 0.6);
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  color: var(--dmuted);
  text-decoration: none;
  padding: 14px 0;
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid var(--dline);
  transition: var(--transition-fast);
}

.mobile-nav a:last-child { border-bottom: 0; }

.mobile-nav a:hover {
  color: var(--sky);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.25s ease-out, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn:active { transform: scale(0.97); }

.btn-sm {
  padding: 9px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn-primary {
  background: var(--grad-signal);
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(14, 165, 233, 0.55);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px -10px rgba(14, 165, 233, 0.7);
  color: #fff;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--dtext);
  border: 1px solid var(--dline-strong);
}

.btn-ghost:hover {
  border-color: var(--sky);
  color: var(--ice-blue);
  transform: translateY(-2px);
  background: rgba(56, 189, 248, 0.08);
}

/* ============================================
   HERO — depth parallax
   ============================================ */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 128px 0 88px;
  overflow: hidden;
  background:
    radial-gradient(1100px 500px at 85% -5%, rgba(37, 99, 235, 0.28), transparent 65%),
    radial-gradient(900px 480px at 8% 108%, rgba(20, 184, 166, 0.16), transparent 60%),
    var(--deep);
}

.hero-layers {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: -60px;
  background-image:
    linear-gradient(rgba(125, 211, 252, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, 0.07) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 90% 75% at 50% 40%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 75% at 50% 40%, #000 30%, transparent 78%);
  will-change: transform;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}

.orb-a {
  width: 480px;
  height: 480px;
  top: -140px;
  right: -120px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.5), transparent 70%);
}

.orb-b {
  width: 420px;
  height: 420px;
  bottom: -160px;
  left: -140px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.34), transparent 70%);
}

.beam {
  position: absolute;
  top: -30%;
  left: 20%;
  width: 130%;
  height: 60%;
  background: conic-gradient(from 180deg, transparent 0deg, rgba(125, 211, 252, 0.07) 12deg, transparent 26deg);
  animation: beam-sweep 14s linear infinite;
}

@keyframes beam-sweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-mark {
  position: absolute;
  right: -2%;
  bottom: -6%;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(18rem, 42vw, 32rem);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(125, 211, 252, 0.20);
  user-select: none;
  will-change: transform;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(125, 211, 252, 0.22);
  animation: drift 26s ease-in-out infinite;
}

.shape-1 {
  width: 560px;
  height: 560px;
  top: -190px;
  right: -170px;
  animation-delay: 0s;
}

.shape-2 {
  width: 440px;
  height: 440px;
  border-color: rgba(125, 211, 252, 0.12);
  bottom: -140px;
  left: -140px;
  animation-delay: -9s;
}

.shape-3 {
  width: 12px;
  height: 12px;
  background: var(--teal);
  border: none;
  opacity: 0.8;
  top: 34%;
  left: 12%;
  animation-delay: -17s;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(24px, -24px); }
}

.hero-content {
  text-align: center;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--dline-strong);
  border-radius: 100px;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--dmuted);
  margin-bottom: 26px;
  backdrop-filter: blur(var(--blur-sm));
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.9);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  text-wrap: balance;
}

.greeting {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sky);
}

.name {
  font-family: var(--font-serif);
  font-size: clamp(3.4rem, 10vw, 6.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #F4F8FD;
  line-height: 1.0;
}

.name em {
  font-style: italic;
  background: linear-gradient(120deg, var(--ice-blue), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glitch { position: relative; }

.role {
  font-size: clamp(1.35rem, 3.6vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--dtext);
}

.typed-text {
  color: var(--sky);
}

.cursor {
  display: inline-block;
  animation: blink 1s step-end infinite;
  color: var(--sky);
  font-weight: 400;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-description {
  max-width: 620px;
  margin: 0 auto 32px;
  font-size: 1.08rem;
  color: var(--dmuted);
  line-height: 1.75;
}

.hero-description strong {
  color: var(--dtext);
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

/* Flagship pill — the hero product, loud and unmissable */
.hero-flagship {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  margin: 0 auto 52px;
  padding: 16px 28px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid transparent;
  background:
    linear-gradient(rgba(10, 28, 54, 0.72), rgba(10, 28, 54, 0.72)) padding-box,
    linear-gradient(135deg, #38BDF8 0%, #0EA5E9 50%, #2DD4BF 100%) border-box;
  box-shadow: 0 14px 44px -10px rgba(14, 165, 233, 0.55);
  text-decoration: none;
  font-size: 1.02rem;
  color: var(--dtext);
  transition: transform 0.25s ease-out, box-shadow 0.25s ease;
  position: relative;
}

.hero-flagship:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 22px 60px -12px rgba(14, 165, 233, 0.7);
  color: #fff;
}

.hf-star {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.2em;
  flex: none;
  animation: star-pulse 2.4s ease-in-out infinite;
}

@keyframes star-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.85; }
}

.hf-text strong { color: #fff; }
.hf-arrow { color: var(--teal); font-weight: 800; font-size: 1.15em; flex: none; transition: transform 0.2s ease; }
.hero-flagship:hover .hf-arrow { transform: translateX(5px); }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--dtext);
}

.stat-suffix {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--sky);
}

.stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dmuted);
  margin-top: 6px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--dmuted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--sky), transparent);
  animation: scroll-down 2s ease-in-out infinite;
}

@keyframes scroll-down {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   SIGNAL TICKER
   ============================================ */
.ticker {
  background: linear-gradient(90deg, #1D4ED8 0%, #0EA5E9 50%, #14B8A6 100%);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tick 30s linear infinite;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-group {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  white-space: nowrap;
}

.ticker-group span {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}

.ticker-group i {
  font-style: normal;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
}

@keyframes tick {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   SECTIONS - COMMON STYLES
   ============================================ */
.section {
  padding: var(--section-padding) 0;
  position: relative;
  overflow: clip;
}

.section-ice {
  background: var(--paper);
  color: var(--ink-t);
}

.section-header {
  margin-bottom: clamp(36px, 6vw, 60px);
  position: relative;
}

.section-header.center {
  text-align: center;
}

.sec-mark {
  position: absolute;
  top: -0.35em;
  right: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(7rem, 18vw, 12rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(125, 211, 252, 0.22);
  pointer-events: none;
  user-select: none;
  will-change: transform;
}

.section-ice .sec-mark {
  -webkit-text-stroke-color: rgba(29, 78, 216, 0.16);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--sky);
}

.section-header.center .section-tag::after {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--sky);
}

.section-ice .section-tag { color: var(--deep-blue); }
.section-ice .section-tag::before,
.section-header.center .section-ice .section-tag::after { background: var(--deep-blue); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 5.4vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 16px;
  text-wrap: balance;
}

.section-title em {
  font-style: italic;
  color: var(--sky);
}

.section-ice .section-title em { color: var(--deep-blue); }

.gradient-text {
  color: var(--sky);
}

.section-ice .gradient-text { color: var(--deep-blue); }

.section-subtitle {
  font-size: 1.08rem;
  color: var(--dmuted);
  max-width: 600px;
  line-height: 1.7;
}

.section-ice .section-subtitle { color: var(--muted); }

.section-header.center .section-subtitle {
  margin: 0 auto;
}

/* ============================================
   ABOUT SECTION (ice)
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  position: relative;
}

.image-frame {
  position: relative;
  aspect-ratio: 1;
  max-width: 340px;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--deep);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(56, 189, 248, 0.25), transparent 60%);
}

.about-logo {
  width: 66%;
  height: auto;
  position: relative;
  animation: float-logo 6s ease-in-out infinite;
}

@keyframes float-logo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.image-decoration {
  position: absolute;
  inset: 20px -20px -20px 20px;
  border: 1.5px solid var(--cobalt);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.5;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-text {
  color: var(--dmuted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-text strong {
  color: var(--ice-blue);
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.highlight-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: var(--card);
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  transition: var(--transition-base);
}

.highlight-item:hover {
  border-color: var(--cobalt);
  transform: translateX(6px);
  box-shadow: var(--shadow-lift);
}

.highlight-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.09);
  border-radius: 12px;
  color: var(--deep-blue);
  flex-shrink: 0;
}

.highlight-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--ink-t);
}

.highlight-item p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================
   SKILLS SECTION (deep)
   ============================================ */
.skills-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.skills-category {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.category-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--dtext);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--dline);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 14px;
}

.skill-card {
  background: var(--glass);
  border: 1px solid var(--dline);
  border-radius: 14px;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: var(--transition-base);
  cursor: default;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.skill-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-base);
}

.skill-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, 50%), rgba(56, 189, 248, 0.16), transparent 70%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.skill-card:hover {
  border-color: var(--sky);
  transform: translateY(-4px);
  box-shadow: var(--glow-sky);
}

.skill-card:hover::before {
  transform: scaleX(1);
}

.skill-card:hover::after {
  opacity: 1;
}

.skill-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ice-blue);
}

.skill-icon svg {
  width: 38px;
  height: 38px;
}

.skill-name {
  font-weight: 700;
  font-size: 0.93rem;
  text-align: center;
  color: var(--dtext);
}

.skill-level {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.skill-level::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--level, 0%);
  background: var(--grad-signal);
  border-radius: 2px;
  transition: width 1s ease-out;
}

.skill-card:hover .skill-level::after {
  animation: skill-fill 1s ease-out forwards;
}

@keyframes skill-fill {
  from { width: 0; }
  to { width: var(--level); }
}

/* ============================================
   PROJECTS SECTION (ice, sticky stack)
   ============================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
}

.project-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.25s ease, box-shadow 0.25s ease, filter 0.35s ease;
  box-shadow: var(--shadow-card);
  position: sticky;
  will-change: transform;
}

.project-card:hover {
  border-color: var(--cobalt);
  box-shadow: var(--shadow-lift);
}

#projects .project-card:nth-child(1) { top: 104px; }
#projects .project-card:nth-child(2) { top: 118px; }
#projects .project-card:nth-child(3) { top: 132px; }
#projects .project-card:nth-child(4) { top: 146px; }
#projects .project-card:nth-child(5) { top: 160px; }
#projects .project-card:nth-child(6) { top: 174px; }

.project-card.squashed {
  transform: scale(0.955);
  filter: brightness(0.82) saturate(0.85);
}

.project-card.featured {
  grid-column: span 2;
}

.project-card.featured .project-image {
  height: 300px;
}

.project-image {
  position: relative;
  height: 210px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.project-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease;
}

.project-card:hover .project-placeholder {
  transform: scale(1.03);
}

/* Deep duotone project visuals */
.project-riyaah {
  background: linear-gradient(135deg, #2A0E16 0%, #101828 100%);
  color: #F26D85;
}

.project-riyaah::before {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(242, 109, 133, 0.25) 0%, transparent 70%);
  border-radius: 50%;
}

.project-hakeemi {
  background: linear-gradient(135deg, #0B1220 0%, #1B2340 100%);
  color: #7DD3FC;
}

.project-hakeemi::before {
  content: '';
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.project-tamos {
  background: linear-gradient(135deg, #1B1408 0%, #3D2E12 100%);
  color: #E3B95C;
}

.project-tamos::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(227, 185, 92, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.project-rukn {
  background: linear-gradient(135deg, #06231E 0%, #0E4A3E 100%);
  color: #5EEAB8;
}

.project-rukn::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 20%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(94, 234, 184, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.project-poplings {
  background: linear-gradient(135deg, #2B1A4D 0%, #7A3B5C 100%);
  color: #FFD166;
}

.project-poplings::before {
  content: '';
  position: absolute;
  top: 15%;
  right: 12%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 209, 102, 0.28) 0%, transparent 70%);
  border-radius: 50%;
}

.project-pledgeit {
  background: linear-gradient(135deg, #07120D 0%, #1D5C34 100%);
  color: #7CFC98;
}

.project-pledgeit::before {
  content: '';
  position: absolute;
  bottom: 12%;
  left: 12%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(124, 252, 152, 0.25) 0%, transparent 70%);
  border-radius: 50%;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 20, 38, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-base);
}

.project-card:hover .project-overlay,
.project-card:focus-within .project-overlay {
  opacity: 1;
}

.project-links {
  display: flex;
  gap: 16px;
}

.project-link {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-t);
  transition: var(--transition-base);
  transform: translateY(16px);
}

.project-card:hover .project-link {
  transform: translateY(0);
}

.project-link:hover {
  background: var(--cobalt);
  border-color: var(--cobalt);
  color: #fff;
}

.project-content {
  padding: 26px;
}

.project-type {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--deep-blue);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.project-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink-t);
  margin: 10px 0 12px;
  text-wrap: balance;
}

.project-description {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-tech span {
  padding: 5px 13px;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  font-size: 0.74rem;
  font-weight: 500;
  font-family: var(--font-mono);
  color: var(--muted);
}

.projects-cta {
  text-align: center;
  margin-top: 52px;
  position: sticky;
  bottom: 24px;
  z-index: 5;
  pointer-events: none;
}

.projects-cta .btn {
  pointer-events: auto;
  box-shadow: 0 18px 44px -12px rgba(8, 20, 38, 0.5);
}

/* ============================================
   EXPERIENCE SECTION (deep journey)
   ============================================ */
.section-dark {
  background:
    radial-gradient(800px 400px at 12% 0%, rgba(37, 99, 235, 0.14), transparent 60%),
    var(--deep);
  color: var(--dtext);
}

.section-dark .section-title { color: var(--dtext); }
.section-dark .section-subtitle { color: var(--dmuted); }
.section-dark .sec-mark { -webkit-text-stroke-color: rgba(125, 211, 252, 0.3); }

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  --jp: 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--dline);
}

.timeline::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: calc(var(--jp) * 100%);
  background: linear-gradient(to bottom, var(--sky), var(--teal));
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.8);
}

.timeline-item {
  position: relative;
  padding-left: 40px;
  padding-bottom: 40px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -6px;
  top: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--deep);
  border: 3px solid var(--sky);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.7);
  z-index: 1;
}

.timeline-content {
  background: var(--glass);
  border: 1px solid var(--dline);
  border-radius: 14px;
  padding: 26px;
  transition: var(--transition-base);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.timeline-item:hover .timeline-content {
  border-color: var(--sky);
  transform: translateX(6px);
}

.timeline-header {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
  margin-bottom: 8px;
}

.timeline-header h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dtext);
  overflow-wrap: anywhere;
}

.timeline-company {
  color: var(--ice-blue);
  font-family: var(--font-mono);
  font-size: 0.88rem;
}

.timeline-date {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--dmuted);
  display: block;
  margin-bottom: 16px;
}

.timeline-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.timeline-list li {
  position: relative;
  padding-left: 24px;
  color: var(--dmuted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.timeline-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--sky);
}

/* ============================================
   CONTACT SECTION (ice)
   ============================================ */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-text {
  color: var(--dmuted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 14px 0;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  transition: var(--transition-base);
}

.contact-method:hover {
  border-color: var(--cobalt);
  transform: translateX(6px);
  box-shadow: var(--shadow-lift);
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.09);
  border-radius: 12px;
  color: var(--deep-blue);
  flex-shrink: 0;
}

.contact-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--faint);
  text-transform: uppercase;
}

.contact-value {
  display: block;
  color: var(--ink-t);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.contact-decoration {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-logo {
  position: absolute;
  width: 190px;
  height: auto;
  z-index: 2;
  animation: pulse-logo 4s ease-in-out infinite;
}

@keyframes pulse-logo {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.decoration-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1), transparent 70%);
  border: 1px solid var(--line);
  position: relative;
  animation: pulse-circle 4s ease-in-out infinite;
}

.decoration-circle::before,
.decoration-circle::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  opacity: 0.7;
}

.decoration-circle::before {
  inset: -30px;
  animation: rotate 24s linear infinite;
}

.decoration-circle::after {
  inset: -60px;
  animation: rotate 36s linear infinite reverse;
}

@keyframes pulse-circle {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.04); opacity: 0.9; }
}

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

.decoration-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, var(--line) 1px, transparent 1px),
    linear-gradient(var(--line) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.6;
  mask-image: radial-gradient(circle at center, black, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 70%);
}

/* ============================================
   FOOTER (abyss, giant type)
   ============================================ */
.footer {
  padding: 88px 0 48px;
  background:
    radial-gradient(900px 380px at 50% 0%, rgba(37, 99, 235, 0.2), transparent 62%),
    var(--abyss);
  border-top: 1px solid var(--dline);
}

.foot-giant {
  display: block;
  text-decoration: none;
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
}

.fg-kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 10px;
}

.fg-big {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 10vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(234, 242, 252, 0.75);
  transition: var(--transition-base);
}

.fg-big em {
  font-style: italic;
  transition: var(--transition-base);
}

.foot-giant:hover .fg-big {
  color: var(--dtext);
  -webkit-text-stroke-color: transparent;
  text-shadow: 0 0 60px rgba(56, 189, 248, 0.45);
}

.foot-giant:hover .fg-big em {
  color: var(--teal);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.footer-logo {
  width: 56px;
  height: auto;
  transition: var(--transition-base);
}

.footer-logo:hover {
  transform: scale(1.08);
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dmuted);
  border: 1px solid var(--dline);
  background: var(--glass);
  border-radius: 50%;
  transition: var(--transition-base);
}

.social-links a:hover {
  color: var(--ice-blue);
  border-color: var(--sky);
  transform: translateY(-3px);
  box-shadow: var(--glow-sky);
}

.footer-text {
  color: var(--dmuted);
  font-size: 0.95rem;
}

.footer-copyright {
  font-family: var(--font-mono);
  color: var(--dmuted);
  opacity: 0.75;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animations */
.reveal-1 { transition-delay: 0.1s; }
.reveal-2 { transition-delay: 0.2s; }
.reveal-3 { transition-delay: 0.3s; }
.reveal-4 { transition-delay: 0.4s; }

/* ============================================
   BACK TO TOP + WHATSAPP FLOAT
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: calc(28px + env(safe-area-inset-bottom));
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--grad-signal);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 12px 30px -8px rgba(14, 165, 233, 0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: var(--transition-base);
  z-index: 999;
}

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

.back-to-top:hover {
  transform: translateY(-3px);
}

.back-to-top:active {
  transform: translateY(0);
}

.back-to-top svg {
  transition: var(--transition-fast);
}

.wa-float {
  position: fixed;
  right: 28px;
  bottom: calc(88px + env(safe-area-inset-bottom));
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #22C55E;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 12px 30px -6px rgba(34, 197, 94, 0.55);
  z-index: 998;
  transition: var(--transition-base);
}

.wa-float::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(34, 197, 94, 0.5);
  animation: wa-ping 2.4s ease-out infinite;
  pointer-events: none;
}

@keyframes wa-ping {
  0% { transform: scale(0.85); opacity: 1; }
  70%, 100% { transform: scale(1.2); opacity: 0; }
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  color: #fff;
}

.wa-float:active {
  transform: scale(0.96);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Selection */
::selection {
  background: var(--cobalt);
  color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--abyss);
}

::-webkit-scrollbar-thumb {
  background: #24466F;
  border-radius: 6px;
  border: 2px solid var(--abyss);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--sky);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1100px) {
  .spy { display: none; }
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .image-frame {
    max-width: 280px;
    margin: 0 auto;
  }

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

  .project-card.featured {
    grid-column: span 1;
  }

  #projects .project-card:nth-child(n) {
    top: 96px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .contact-decoration {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero {
    padding: 112px 0 72px;
  }

  .hero-mark {
    font-size: clamp(12rem, 58vw, 18rem);
    right: -8%;
  }

  .orb-a { width: 300px; height: 300px; }
  .orb-b { width: 260px; height: 260px; }

  .hero-description {
    font-size: 1rem;
    text-shadow: 0 1px 16px rgba(7, 20, 38, 0.9), 0 0 6px rgba(7, 20, 38, 0.9);
  }

  .hero-flagship {
    font-size: 0.86rem;
    padding: 13px 20px;
    margin-bottom: 40px;
  }

  .hero-stats {
    gap: 32px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .scroll-indicator {
    display: none;
  }

  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-image {
    height: 180px;
  }

  .project-card.featured .project-image {
    height: 220px;
  }

  .timeline::before,
  .timeline::after {
    left: 6px;
  }

  .timeline-marker {
    left: 0;
  }

  .timeline-item {
    padding-left: 32px;
  }

  .sec-mark {
    font-size: clamp(5rem, 26vw, 7rem);
    top: -0.2em;
  }
}

@media (max-width: 480px) {
  .nav-actions .btn {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-lg {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: 28px;
  }

  .skills-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .skill-card {
    padding: 16px 10px;
  }

  .timeline-content {
    padding: 18px;
  }

  .project-content {
    padding: 20px;
  }

  .project-tech {
    gap: 6px;
  }

  .project-tech span {
    font-size: 0.7rem;
    padding: 4px 10px;
  }

  .contact-method {
    padding: 14px;
  }

  .ticker-group span {
    font-size: 0.72rem;
  }
}

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

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: calc(18px + env(safe-area-inset-bottom));
    right: 18px;
    width: 44px;
    height: 44px;
  }

  .wa-float {
    right: 18px;
    bottom: calc(74px + env(safe-area-inset-bottom));
    width: 52px;
    height: 52px;
  }
}

@media (hover: none) {
  .cursor-glow { display: none; }
  .project-card:hover { transform: none; }
  .project-card:hover .project-placeholder { transform: none; }
}

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