/* ==========================================================================
   ICITS 2026 — Dark Futuristic Tech Theme (override layer)
   Loaded AFTER styles.css. No content/data changes — visual layer only.
   ========================================================================== */

:root {
  --t-bg-0: #04060e;
  --t-bg-1: #070b1a;
  --t-card: rgba(15, 23, 46, 0.72);
  --t-card-2: rgba(9, 14, 32, 0.66);
  --t-line: rgba(122, 152, 255, 0.16);
  --t-line-strong: rgba(122, 152, 255, 0.3);
  --t-text: #e8eefc;
  --t-muted: #9aa8cc;
  --neon: #2de2e6;
  --neon-soft: rgba(45, 226, 230, 0.45);
  --violet: #8b5cf6;
  --glow-gold: 0 0 18px rgba(255, 193, 54, 0.35);
  --glow-cyan: 0 0 22px rgba(45, 226, 230, 0.22);
  --glass-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */

body {
  color: var(--t-text);
  background: var(--t-bg-0);
}

::selection {
  background: var(--neon);
  color: #031018;
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(45, 226, 230, 0.4) rgba(10, 14, 30, 0.8);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #070b1a;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(255, 193, 54, 0.5), rgba(45, 226, 230, 0.5));
  border-radius: 999px;
}

a:focus-visible,
.button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Motion background layers (elements injected by tech-effects.js)
   -------------------------------------------------------------------------- */

.tech-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 12% -8%, rgba(139, 92, 246, 0.14), transparent 46%),
    radial-gradient(ellipse at 88% 12%, rgba(0, 169, 157, 0.12), transparent 44%),
    radial-gradient(ellipse at 50% 110%, rgba(22, 107, 216, 0.14), transparent 52%),
    var(--t-bg-0);
}

.tech-bg canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.tech-mesh {
  position: absolute;
  width: 58vmax;
  height: 58vmax;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  mix-blend-mode: screen;
  animation: tech-mesh-drift 30s ease-in-out infinite alternate;
  will-change: transform;
}

.tech-mesh-1 {
  top: -22%;
  left: -14%;
  background: radial-gradient(circle, rgba(45, 226, 230, 0.2), transparent 62%);
}

.tech-mesh-2 {
  top: 4%;
  right: -20%;
  background: radial-gradient(circle, rgba(255, 193, 54, 0.14), transparent 62%);
  animation-delay: -9s;
  animation-duration: 36s;
}

.tech-mesh-3 {
  bottom: -30%;
  left: 22%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.18), transparent 62%);
  animation-delay: -18s;
  animation-duration: 42s;
}

@keyframes tech-mesh-drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(6vw, -4vh, 0) scale(1.12);
  }
  100% {
    transform: translate3d(-5vw, 5vh, 0) scale(0.94);
  }
}

.tech-grid {
  position: absolute;
  inset: -44px;
  background-image:
    linear-gradient(rgba(45, 226, 230, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 226, 230, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 28%, #000 24%, transparent 78%);
  mask-image: radial-gradient(ellipse at 50% 28%, #000 24%, transparent 78%);
  animation: tech-grid-pan 26s linear infinite;
}

@keyframes tech-grid-pan {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(44px, 44px, 0);
  }
}

.tech-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.02) 0 1px,
    transparent 1px 4px
  );
  opacity: 0.55;
}

.tech-scanbeam {
  position: absolute;
  left: 0;
  right: 0;
  top: -25vh;
  height: 22vh;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(45, 226, 230, 0.05) 45%,
    rgba(45, 226, 230, 0.09) 50%,
    rgba(45, 226, 230, 0.05) 55%,
    transparent
  );
  animation: tech-scanbeam-sweep 11s linear infinite;
}

@keyframes tech-scanbeam-sweep {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(150vh);
  }
}

/* Scroll progress bar (injected) */
.tech-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--orange), var(--neon));
  box-shadow: 0 0 12px rgba(45, 226, 230, 0.6);
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   Header / navigation
   -------------------------------------------------------------------------- */

.site-header {
  background: rgba(5, 8, 18, 0.72);
  border-bottom: 1px solid var(--t-line);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  transition: background 260ms ease, box-shadow 260ms ease;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--neon) 70%, transparent);
  opacity: 0.8;
  pointer-events: none;
}

.site-header {
  position: sticky;
}

.site-header.is-scrolled {
  background: rgba(4, 6, 14, 0.9);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.brand-logo {
  filter: drop-shadow(0 0 14px rgba(255, 193, 54, 0.35));
}

.primary-nav {
  color: #cdd8f5;
}

.primary-nav a {
  position: relative;
}

.primary-nav a:hover {
  color: #ffffff;
  background: rgba(45, 226, 230, 0.14);
  text-shadow: 0 0 12px rgba(45, 226, 230, 0.6);
}

.primary-nav a.is-current {
  color: var(--ink);
  background: var(--gold);
  box-shadow: var(--glow-gold);
  text-shadow: none;
}

.primary-nav .nav-register {
  color: var(--ink);
  box-shadow: var(--glow-gold);
  text-shadow: none;
}

.primary-nav .nav-cta {
  color: var(--t-text);
  background: rgba(45, 226, 230, 0.12);
  border: 1px solid rgba(45, 226, 230, 0.4);
  box-shadow: var(--glow-cyan);
}

.primary-nav .nav-cta:hover {
  color: #04121a;
  background: var(--neon);
  box-shadow: 0 0 26px rgba(45, 226, 230, 0.55);
  text-shadow: none;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  background: transparent;
  border-bottom: 1px solid var(--t-line);
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(4, 6, 14, 0.94) 0%, rgba(8, 12, 28, 0.82) 52%, rgba(0, 169, 157, 0.26) 100%),
    url("assets/icits-hero-technology.png") center / cover no-repeat;
}

.hero::after {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 193, 54, 0.2), transparent 26%),
    radial-gradient(circle at 82% 44%, rgba(45, 226, 230, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(139, 92, 246, 0.12), transparent 42%);
}

.hero h1 {
  background: linear-gradient(92deg, #ffffff 0%, #ffd977 45%, var(--neon) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(45, 226, 230, 0.25));
}

.hero-title {
  color: #eaf1ff;
}

.hero-title::after {
  content: "▍";
  margin-left: 4px;
  color: var(--neon);
  animation: tech-caret 1.1s steps(2) infinite;
}

@keyframes tech-caret {
  50% {
    opacity: 0;
  }
}

.hero-copy {
  color: rgba(214, 226, 250, 0.85);
}

.hero-facts div {
  color: var(--t-text);
  background: linear-gradient(160deg, rgba(17, 26, 54, 0.82), rgba(9, 14, 32, 0.74));
  border: 1px solid var(--t-line);
  border-top: 3px solid var(--gold);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.hero-facts div:hover {
  transform: translateY(-3px);
  border-color: var(--neon-soft);
  box-shadow: var(--glass-shadow), var(--glow-cyan);
}

.hero-facts span {
  color: #ffb15c;
}

.hero-countdown {
  background: linear-gradient(120deg, rgba(255, 193, 54, 0.1), rgba(45, 226, 230, 0.1));
  border: 1px solid rgba(45, 226, 230, 0.25);
  box-shadow: var(--glass-shadow), inset 0 0 40px rgba(45, 226, 230, 0.05);
}

.countdown-unit {
  background: rgba(5, 10, 25, 0.66);
  border: 1px solid rgba(45, 226, 230, 0.22);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.countdown-unit:hover {
  border-color: var(--neon-soft);
  box-shadow: var(--glow-cyan);
}

.countdown-value {
  color: #ffffff;
  text-shadow: 0 0 16px rgba(45, 226, 230, 0.55);
}

@keyframes countdown-pop {
  0% {
    transform: translateY(-6px) scale(1.16);
    color: var(--neon);
  }
  60% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: none;
    color: #ffffff;
  }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.button {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.button::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -80%;
  width: 55%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-18deg);
  transition: left 480ms ease;
  pointer-events: none;
}

.button:hover::before {
  left: 130%;
}

.button-primary {
  box-shadow: var(--glow-gold);
}

.button-primary:hover {
  box-shadow: 0 0 28px rgba(255, 193, 54, 0.55);
}

.button-light {
  color: var(--t-text);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.button-light:hover {
  color: #04121a;
  background: var(--neon);
  box-shadow: 0 0 24px rgba(45, 226, 230, 0.5);
}

.button-outline {
  color: var(--t-text);
  border-color: rgba(45, 226, 230, 0.5);
  background: transparent;
}

.button-outline:hover {
  color: #04121a;
  background: var(--neon);
  border-color: var(--neon);
  box-shadow: 0 0 24px rgba(45, 226, 230, 0.5);
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

.section-kicker,
.eyebrow {
  letter-spacing: 0.16em;
}

.section-kicker::before,
.eyebrow::before {
  content: "// ";
  color: var(--neon);
  -webkit-text-fill-color: var(--neon);
}

.section-light {
  background: rgba(10, 16, 34, 0.55);
  border-top: 1px solid var(--t-line);
  border-bottom: 1px solid var(--t-line);
}

.section-accent {
  background:
    radial-gradient(circle at 8% 14%, rgba(255, 193, 54, 0.1), transparent 24rem),
    radial-gradient(circle at 92% 30%, rgba(45, 226, 230, 0.08), transparent 24rem),
    rgba(7, 11, 26, 0.6);
}

.section-accent .section-kicker {
  color: #ffb15c;
}

.section-intro p,
.about-grid p,
.feature-card p,
.poster-callout p,
.payment-grid p,
.contact-grid p,
.section-lede {
  color: var(--t-muted);
}

.about-grid > p {
  background: linear-gradient(160deg, rgba(17, 26, 54, 0.78), rgba(9, 14, 32, 0.7));
  border: 1px solid var(--t-line);
  border-left: 4px solid var(--neon);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #d5dff6;
}

/* --------------------------------------------------------------------------
   Theme panel + subthemes
   -------------------------------------------------------------------------- */

.theme-panel {
  background: linear-gradient(145deg, rgba(20, 15, 44, 0.9), rgba(10, 16, 38, 0.9));
  border: 1px solid var(--t-line-strong);
  box-shadow: var(--glass-shadow), inset 0 0 60px rgba(139, 92, 246, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.theme-panel:hover {
  border-color: var(--neon-soft);
  box-shadow: var(--glass-shadow), var(--glow-cyan);
}

.subtheme-list details {
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4), var(--glow-gold);
}

/* --------------------------------------------------------------------------
   Speaker cards + generic card glass
   -------------------------------------------------------------------------- */

.tentative-list > div,
.speaker-card,
.feature-card,
.fee-card,
.tentative-panel {
  position: relative;
  color: var(--t-text);
  background: linear-gradient(160deg, rgba(17, 26, 54, 0.78), rgba(9, 14, 32, 0.72));
  border: 1px solid var(--t-line);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.speaker-card::before,
.feature-card::before,
.fee-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 226, 230, 0.6), transparent);
  pointer-events: none;
}

.tentative-list div:hover,
.speaker-card:hover,
.feature-card:hover {
  background: linear-gradient(160deg, rgba(22, 33, 66, 0.86), rgba(11, 17, 38, 0.8));
  border-color: var(--neon-soft);
  box-shadow: var(--glass-shadow), var(--glow-cyan);
}

.tentative-list span,
.speaker-card span {
  color: #04121a;
  background: linear-gradient(135deg, var(--neon), #58b6ff);
  box-shadow: 0 0 14px rgba(45, 226, 230, 0.4);
}

.tentative-list p,
.speaker-card p,
.registration-grid p {
  color: var(--t-muted);
}

.speaker-card img {
  background: #0b1226;
  border: 1px solid var(--t-line-strong);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.feature-card-dark {
  background: linear-gradient(145deg, rgba(30, 20, 60, 0.92), rgba(12, 18, 42, 0.92));
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: var(--glass-shadow), inset 0 0 50px rgba(139, 92, 246, 0.1);
}

.feature-card-dark p {
  color: rgba(214, 226, 250, 0.82);
}

/* --------------------------------------------------------------------------
   Timeline + schedule
   -------------------------------------------------------------------------- */

.timeline {
  background: rgba(9, 14, 32, 0.6);
  border: 1px solid rgba(255, 193, 54, 0.25);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.timeline::before {
  background: linear-gradient(180deg, transparent, rgba(45, 226, 230, 0.4), rgba(255, 193, 54, 0.4), transparent);
}

.date-card {
  color: var(--t-text);
}

.date-card:not(:last-child)::after {
  background: rgba(45, 226, 230, 0.22);
}

.date-card span {
  border-color: #0a0f22;
  box-shadow:
    0 0 0 2px rgba(255, 193, 54, 0.3),
    0 0 20px rgba(255, 104, 71, 0.35);
}

.date-card h3 {
  color: var(--t-text);
  background: linear-gradient(160deg, rgba(17, 26, 54, 0.85), rgba(9, 14, 32, 0.8));
  border: 1px solid var(--t-line);
  border-left: 4px solid var(--neon);
  box-shadow: var(--glass-shadow);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.date-card:nth-child(even) h3 {
  border-right: 4px solid var(--neon);
  border-left: 1px solid var(--t-line);
}

.date-card:hover h3 {
  border-color: var(--neon-soft);
  box-shadow: var(--glass-shadow), var(--glow-cyan);
}

.date-card time {
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 0 18px rgba(22, 107, 216, 0.35);
}

.date-card:nth-child(even) time {
  box-shadow: 0 0 18px rgba(199, 59, 220, 0.35);
}

.schedule-calendar {
  background: rgba(7, 12, 28, 0.55);
  border: 1px solid var(--t-line);
}

.schedule-calendar .schedule-item {
  background: linear-gradient(160deg, rgba(17, 26, 54, 0.7), rgba(9, 14, 32, 0.66));
  border: 1px solid var(--t-line);
  border-left: 3px solid var(--teal);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.schedule-calendar .schedule-item:hover {
  border-color: var(--neon-soft);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45), var(--glow-cyan);
}

.schedule-calendar .schedule-item span {
  color: #ffd977;
  background: rgba(255, 193, 54, 0.12);
  border: 1px solid rgba(255, 193, 54, 0.35);
}

.schedule-calendar .schedule-item p {
  color: #c9d6f2;
}

.schedule-calendar .schedule-highlight {
  border-left-color: var(--orange);
  background: linear-gradient(90deg, rgba(255, 193, 54, 0.12), rgba(13, 20, 40, 0.66));
}

/* --------------------------------------------------------------------------
   Registration + QR (QR stays on white so it scans)
   -------------------------------------------------------------------------- */

.registration-section {
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 193, 54, 0.08), transparent 30rem),
    rgba(10, 16, 34, 0.55);
  border-top: 1px solid var(--t-line);
  border-bottom: 1px solid var(--t-line);
}

.registration-qr {
  background: #ffffff;
  border: 1px solid rgba(255, 193, 54, 0.5);
  box-shadow: var(--glass-shadow), var(--glow-gold);
}

.registration-qr:hover {
  box-shadow: var(--glass-shadow), 0 0 34px rgba(255, 193, 54, 0.5);
}

/* --------------------------------------------------------------------------
   Poster callout + poster page
   -------------------------------------------------------------------------- */

.poster-callout {
  background: transparent;
}

.poster-thumb {
  background: #0b1226;
  border: 8px solid rgba(15, 23, 42, 0.9);
  box-shadow: var(--glass-shadow), var(--glow-cyan);
}

.poster-thumb:hover {
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.6), 0 0 30px rgba(45, 226, 230, 0.35);
}

.poster-view-section {
  background: transparent;
}

.poster-frame {
  background: #0b1226;
  border: 12px solid rgba(15, 23, 42, 0.92);
  box-shadow: var(--glass-shadow), var(--glow-cyan);
}

/* --------------------------------------------------------------------------
   Contact / organizers / footer
   -------------------------------------------------------------------------- */

.section-contact {
  background:
    radial-gradient(circle at 12% 20%, rgba(139, 92, 246, 0.14), transparent 32rem),
    linear-gradient(145deg, rgba(10, 14, 30, 0.92), rgba(5, 8, 18, 0.92));
  border-top: 1px solid var(--t-line);
}

.contact-grid p {
  color: rgba(199, 211, 240, 0.75);
}

.contact-list a,
.contact-list span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--t-line);
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.contact-list a:hover {
  background: rgba(45, 226, 230, 0.16);
  border-color: var(--neon-soft);
  box-shadow: var(--glow-cyan);
  transform: translateX(4px);
}

.organizer-band {
  background: linear-gradient(90deg, rgba(16, 12, 36, 0.92), rgba(24, 16, 48, 0.92) 48%, rgba(8, 30, 38, 0.92));
  border-bottom: 1px solid var(--t-line);
}

.site-footer {
  background: #04060e;
  border-top: 1px solid var(--t-line);
}

/* --------------------------------------------------------------------------
   Inner pages (fees / poster)
   -------------------------------------------------------------------------- */

.page-hero {
  background: transparent;
}

.page-hero .section-shell {
  background: linear-gradient(160deg, rgba(20, 15, 44, 0.85), rgba(10, 16, 38, 0.85));
  border: 1px solid var(--t-line-strong);
  border-left: 6px solid var(--gold);
  box-shadow: var(--glass-shadow), inset 0 0 60px rgba(139, 92, 246, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.page-hero h1 {
  background: linear-gradient(92deg, #ffffff 0%, #ffd977 45%, var(--neon) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.page-hero p:not(.eyebrow) {
  color: rgba(214, 226, 250, 0.85);
}

.fee-card:hover {
  border-color: var(--neon-soft);
  box-shadow: var(--glass-shadow), var(--glow-cyan);
}

.fee-card h3 {
  box-shadow: 0 6px 18px rgba(255, 193, 54, 0.2);
}

.fee-row {
  border-top: 1px solid var(--t-line);
}

.fee-row span:nth-child(2) {
  color: var(--t-muted);
}

.fee-row strong {
  color: #3ee6ea;
  text-shadow: 0 0 12px rgba(45, 226, 230, 0.35);
}

.payment-box {
  background: linear-gradient(160deg, rgba(17, 26, 54, 0.85), rgba(9, 14, 32, 0.85));
  border: 1px solid rgba(255, 193, 54, 0.35);
  box-shadow: var(--glass-shadow), var(--glow-gold);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* --------------------------------------------------------------------------
   Tilt interaction (applied by tech-effects.js)
   -------------------------------------------------------------------------- */

.tech-tilt {
  transform-style: preserve-3d;
  will-change: transform;
}

.tech-tilt.is-tilting {
  transition: none !important;
  transform: perspective(760px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg))
    translateY(-4px) !important;
}

/* --------------------------------------------------------------------------
   Responsive + reduced motion
   -------------------------------------------------------------------------- */

@media (max-width: 980px) {
  /* Restore stacked-timeline border orientation (styles.css mobile rules
     would otherwise lose to this later-loaded sheet). */
  .date-card h3,
  .date-card:nth-child(even) h3 {
    border-right: 1px solid var(--t-line);
    border-left: 4px solid var(--neon);
  }
}

@media (max-width: 640px) {
  .tech-mesh {
    width: 90vmax;
    height: 90vmax;
    filter: blur(70px);
  }

  .tech-scanbeam {
    display: none;
  }

  .hero-title::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tech-scanbeam,
  .tech-scanlines {
    display: none;
  }

  .tech-mesh {
    animation: none;
  }

  .tech-grid {
    animation: none;
  }

  .hero-title::after {
    animation: none;
  }
}
