:root {
  --black: #050508;
  --black-soft: #0a0a10;
  --panel: #0e0e16;
  --panel-hover: #14141f;
  --border: rgba(34, 211, 238, 0.18);
  --border-orange: rgba(255, 140, 0, 0.25);
  --text: #f0f4f8;
  --text-soft: #8b9aab;
  --white: #ffffff;
  --cyan: #22d3ee;
  --cyan-dim: #0891b2;
  --cyan-glow: rgba(34, 211, 238, 0.45);
  --orange: #ff8c00;
  --orange-deep: #e07000;
  --orange-glow: rgba(255, 140, 0, 0.45);
  --shadow: 0 0 40px rgba(34, 211, 238, 0.08), 0 20px 60px rgba(0, 0, 0, 0.6);
  --radius: 2px;
  --shell: min(1120px, calc(100% - 2.5rem));
  --font-display: "Orbitron", sans-serif;
  --font-body: "Rajdhani", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  background: var(--black);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ── Cyber background ── */
.cyber-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.cyber-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34, 211, 238, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 20%, transparent 75%);
}

.cyber-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
}

.cyber-glow--orange {
  width: 500px;
  height: 500px;
  top: -120px;
  left: -80px;
  background: var(--orange);
}

.cyber-glow--cyan {
  width: 600px;
  height: 600px;
  top: 40%;
  right: -150px;
  background: var(--cyan-dim);
}

.cyber-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.12) 2px,
    rgba(0, 0, 0, 0.12) 4px
  );
  opacity: 0.4;
}

/* ── Floating LED lights (behind content) ── */
.led-floats {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero .led-floats {
  z-index: 1;
}

.led-float {
  position: absolute;
  left: var(--x, 50%);
  top: var(--y, 50%);
  animation: led-float-drift var(--dur, 18s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  contain: layout style paint;
}

.led-floats.is-paused .led-float {
  animation-play-state: paused;
}

html.is-scrolling .led-float {
  animation-play-state: paused;
}

.led-float--orb {
  width: var(--size, 72px);
  height: var(--size, 72px);
  margin-left: calc(var(--size, 72px) / -2);
  margin-top: calc(var(--size, 72px) / -2);
  border-radius: 50%;
  filter: blur(14px);
  opacity: 0.5;
}

.led-float--orb.led-float--cyan {
  background: radial-gradient(circle, rgba(34, 211, 238, 0.55) 0%, transparent 72%);
}

.led-float--orb.led-float--orange {
  background: radial-gradient(circle, rgba(255, 140, 0, 0.5) 0%, transparent 72%);
}

.led-float--orb.led-float--blend {
  background: radial-gradient(
    circle,
    rgba(34, 211, 238, 0.42) 0%,
    rgba(255, 140, 0, 0.28) 42%,
    transparent 72%
  );
}

.led-float--dot {
  width: 4px;
  height: 4px;
  margin-left: -2px;
  margin-top: -2px;
  border-radius: 50%;
  opacity: 0.72;
}

.led-float--dot.led-float--cyan {
  background: var(--cyan);
  box-shadow:
    0 0 6px 1px rgba(34, 211, 238, 0.9),
    0 0 18px 3px rgba(34, 211, 238, 0.35);
}

.led-float--dot.led-float--orange {
  background: var(--orange);
  box-shadow:
    0 0 6px 1px rgba(255, 140, 0, 0.9),
    0 0 18px 3px rgba(255, 140, 0, 0.35);
}

.led-float--dot.led-float--blend {
  background: #fff;
  box-shadow:
    0 0 6px 1px rgba(34, 211, 238, 0.75),
    0 0 14px 2px rgba(255, 140, 0, 0.45);
}

.led-float--streak {
  width: 22px;
  height: 2px;
  margin-left: -11px;
  margin-top: -1px;
  border-radius: 2px;
  opacity: 0.7;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(34, 211, 238, 0.15) 18%,
    rgba(34, 211, 238, 0.95) 42%,
    rgba(255, 140, 0, 0.95) 58%,
    rgba(255, 140, 0, 0.15) 82%,
    transparent 100%
  );
  box-shadow:
    0 0 10px rgba(34, 211, 238, 0.45),
    0 0 18px rgba(255, 140, 0, 0.25);
}

.hero.is-led-active .led-float--orb,
[data-reveal].section.is-led-active .led-float--orb {
  opacity: 0.75;
}

.hero.is-led-active .led-float--dot,
[data-reveal].section.is-led-active .led-float--dot,
.hero.is-led-active .led-float--streak,
[data-reveal].section.is-led-active .led-float--streak {
  opacity: 1;
}

@keyframes led-float-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  25% {
    transform: translate3d(var(--dx1, 24px), var(--dy1, -32px), 0) rotate(8deg);
  }

  50% {
    transform: translate3d(var(--dx2, -20px), var(--dy2, 28px), 0) rotate(-6deg);
  }

  75% {
    transform: translate3d(
        calc(var(--dx1, 24px) * 0.45),
        calc(var(--dy2, 28px) * -0.6),
        0
      )
      rotate(4deg);
  }
}

@media (max-width: 719px) {
  .led-float--orb {
    filter: blur(18px);
    opacity: 0.38;
  }

  .led-float--streak {
    width: 20px;
    margin-left: -10px;
  }
}

/* ── In-page LED effects (inside content) ── */
.hero::after,
[data-reveal].section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.85s ease;
}

.hero::after {
  background:
    radial-gradient(ellipse 70% 50% at 20% 55%, rgba(34, 211, 238, 0.16), transparent 62%),
    radial-gradient(ellipse 55% 40% at 78% 68%, rgba(255, 140, 0, 0.13), transparent 58%);
  opacity: 0.7;
}

[data-reveal].section::after {
  background:
    radial-gradient(ellipse 85% 50% at 12% 18%, rgba(34, 211, 238, 0.18), transparent 62%),
    radial-gradient(ellipse 75% 45% at 88% 82%, rgba(255, 140, 0, 0.14), transparent 58%),
    radial-gradient(ellipse 60% 35% at 50% 50%, rgba(34, 211, 238, 0.06), transparent 70%);
}

[data-reveal].section.is-visible::after {
  opacity: 0.6;
}

.hero.is-led-active::after,
[data-reveal].section.is-led-active::after {
  opacity: 1;
}

[data-reveal].section .shell,
.hero-copy {
  position: relative;
  z-index: 1;
}

[data-reveal-child].is-visible .section-tag {
  text-shadow:
    0 0 12px var(--orange-glow),
    0 0 22px rgba(255, 140, 0, 0.45);
}

[data-reveal-child].is-visible h2 {
  text-shadow: 0 0 28px rgba(34, 211, 238, 0.22);
}

.custom-points li {
  position: relative;
  overflow: hidden;
}

.custom-points li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--cyan), var(--orange));
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.custom-points li.is-visible::after {
  transform: scaleY(1);
}

.custom-points li.is-visible {
  border-color: rgba(34, 211, 238, 0.32);
  box-shadow:
    0 0 24px rgba(34, 211, 238, 0.1),
    inset 0 0 36px rgba(255, 140, 0, 0.04);
}

.product-card.is-visible .product-visual {
  border-color: rgba(34, 211, 238, 0.42);
  box-shadow:
    0 0 0 1px rgba(34, 211, 238, 0.22),
    0 0 32px rgba(34, 211, 238, 0.16),
    inset 0 0 48px rgba(255, 140, 0, 0.07);
}

.product-card.is-visible .product-visual::before {
  opacity: 0.9;
}

.product-card.is-visible .product-visual::after {
  width: 32px;
  height: 32px;
  box-shadow:
    0 0 14px var(--orange-glow),
    0 0 24px rgba(34, 211, 238, 0.25);
}

.steps li.is-visible {
  border-color: rgba(34, 211, 238, 0.38);
  box-shadow:
    0 0 28px rgba(34, 211, 238, 0.1),
    inset 0 0 40px rgba(255, 140, 0, 0.04);
}

.steps li.is-visible::before {
  transform: scaleX(1);
  box-shadow: 0 0 14px var(--cyan-glow), 0 0 22px var(--orange-glow);
}

.request-form.is-visible {
  border-color: rgba(34, 211, 238, 0.38);
  box-shadow:
    0 0 36px rgba(34, 211, 238, 0.12),
    inset 0 0 56px rgba(255, 140, 0, 0.05);
}

.request-form.is-visible::before {
  width: 40px;
  height: 40px;
  box-shadow:
    0 0 16px var(--cyan-glow),
    0 0 28px rgba(255, 140, 0, 0.3);
}

.filter.is-active {
  box-shadow:
    0 0 20px rgba(34, 211, 238, 0.22),
    inset 0 0 16px rgba(34, 211, 238, 0.08);
}

@media (prefers-reduced-motion: reduce) {
  .led-floats {
    display: none;
  }

  [data-reveal].section::after,
  .hero::after {
    display: none;
  }

  .custom-points li::after {
    display: none;
  }
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.65rem 1rem;
  background: var(--panel);
  color: var(--cyan);
  text-decoration: none;
  border: 1px solid var(--cyan);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.skip-link:focus {
  top: 1rem;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(5, 5, 8, 0.82);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

html.is-scrolling .site-header {
  backdrop-filter: none;
  background: rgba(5, 5, 8, 0.96);
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 4px 30px rgba(34, 211, 238, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.25rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.logo-img {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    0 0 0 1px var(--orange-glow),
    0 0 20px var(--orange-glow),
    0 0 30px var(--cyan-glow);
}

.nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.nav a:hover {
  color: var(--cyan);
  text-shadow: 0 0 12px var(--cyan-glow);
}

.nav-cta {
  padding: 0.5rem 1rem !important;
  border: 1px solid var(--orange) !important;
  color: var(--orange) !important;
  background: rgba(255, 140, 0, 0.08) !important;
  box-shadow: 0 0 16px rgba(255, 140, 0, 0.15);
}

.nav-cta:hover {
  background: rgba(255, 140, 0, 0.18) !important;
  color: var(--white) !important;
  text-shadow: none !important;
}

.nav-toggle {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  display: grid;
  place-content: center;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan-glow);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

.mobile-nav {
  display: grid;
  gap: 0.35rem;
  padding: 0.5rem 1.25rem 1.25rem;
  border-top: 1px solid var(--border);
  background: var(--black-soft);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  text-decoration: none;
  padding: 0.75rem 0.35rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
}

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

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--white);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04) translate3d(0, 0, 0);
  filter: grayscale(0.6) contrast(1.1);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

html.is-scrolling .hero-media img,
html.is-scrolling .brand-lockup {
  animation-play-state: paused;
}

.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 8, 0.4) 0%, rgba(5, 5, 8, 0.88) 65%, var(--black) 100%),
    linear-gradient(90deg, rgba(5, 5, 8, 0.7) 0%, transparent 50%),
    linear-gradient(135deg, rgba(255, 140, 0, 0.06) 0%, transparent 40%),
    linear-gradient(225deg, rgba(34, 211, 238, 0.08) 0%, transparent 40%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 7rem 0 4.5rem;
  max-width: 42rem;
  animation: rise-in 0.9s ease both;
}

.brand-lockup {
  display: block;
  width: min(16rem, 62vw);
  height: auto;
  margin: 0 0 1.25rem;
  border-radius: 50%;
  object-fit: cover;
  transform-origin: center;
  box-shadow:
    0 0 0 2px rgba(255, 140, 0, 0.5),
    0 0 50px rgba(255, 140, 0, 0.25),
    0 0 60px rgba(34, 211, 238, 0.2);
  animation:
    logo-heartbeat 2.8s ease-in-out infinite,
    logo-glow 4.5s ease-in-out infinite alternate;
}

.hero h1,
.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 4.8vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.3;
  max-width: 100%;
  overflow-wrap: break-word;
  text-transform: uppercase;
}

@media (min-width: 720px) {
  .hero h1,
  .hero-title {
    font-size: clamp(1.35rem, 3.2vw, 2rem);
    letter-spacing: 0.04em;
    line-height: 1.25;
    max-width: 22ch;
  }
}

.hero-title:not(.is-ready) {
  visibility: hidden;
}

.hero-title__char {
  display: inline;
  opacity: 1;
  color: var(--white);
  text-shadow: 0 0 30px rgba(34, 211, 238, 0.2);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-title__char {
    opacity: 0.42;
    color: var(--text-soft);
    text-shadow: none;
    animation: hero-char-write 0.65s ease-out forwards;
    animation-delay: calc(var(--char-index) * 0.1s);
  }
}

@keyframes hero-char-write {
  0% {
    opacity: 0.42;
    color: var(--text-soft);
    text-shadow: none;
  }

  35% {
    opacity: 1;
    color: var(--cyan);
    text-shadow:
      0 0 16px var(--cyan-glow),
      0 0 28px var(--orange-glow);
  }

  100% {
    opacity: 1;
    color: var(--white);
    text-shadow: 0 0 30px rgba(34, 211, 238, 0.2);
  }
}

.lede {
  margin: 1rem 0 0;
  max-width: 36ch;
  font-size: 1.1rem;
  color: var(--text-soft);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: var(--black);
  border-color: var(--orange);
  box-shadow: 0 0 24px var(--orange-glow);
}

.btn-primary:hover {
  box-shadow: 0 0 36px var(--orange-glow), 0 4px 20px rgba(255, 140, 0, 0.3);
}

.btn-ghost {
  background: rgba(34, 211, 238, 0.06);
  color: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.1);
}

.btn-ghost:hover {
  background: rgba(34, 211, 238, 0.14);
  box-shadow: 0 0 28px var(--cyan-glow);
}

/* ── Sections ── */
.section {
  padding: 5.5rem 0;
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: auto 640px;
}

.section-tag {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  text-shadow: 0 0 10px var(--orange-glow);
}

.section-head {
  max-width: 36rem;
  margin-bottom: 2.25rem;
}

.section-head h2,
.custom-copy h2,
.request-intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.8vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--white);
}

.section-head h2 {
  background: linear-gradient(90deg, var(--white) 60%, var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-head p,
.custom-copy p,
.request-intro p {
  margin: 0.85rem 0 0;
  color: var(--text-soft);
  font-size: 1.05rem;
}

/* ── Products ── */
.products {
  border-top: 1px solid var(--border);
}

.product-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.filter {
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text-soft);
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.filter:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.15);
}

.filter.is-active {
  background: rgba(34, 211, 238, 0.1);
  color: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.2);
}

.product-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.product-card {
  display: grid;
  gap: 0.65rem;
}

.product-card.is-hidden {
  display: none;
}

.product-trigger {
  display: grid;
  gap: 0.85rem;
  text-align: left;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: inherit;
  width: 100%;
}

.product-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  background: var(--panel);
  border: 1px solid var(--border);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.08), transparent 50%, rgba(34, 211, 238, 0.08));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-visual::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border-top: 2px solid var(--orange);
  border-left: 2px solid var(--orange);
  z-index: 2;
  opacity: 0.7;
}

.product-trigger:hover .product-visual,
.product-trigger:focus-visible .product-visual {
  border-color: var(--cyan);
  box-shadow: 0 0 30px rgba(34, 211, 238, 0.15), inset 0 0 20px rgba(34, 211, 238, 0.04);
}

.product-trigger:hover .product-visual::before,
.product-trigger:focus-visible .product-visual::before {
  opacity: 1;
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.05);
  transition: transform 0.55s ease, filter 0.3s ease;
}

.product-trigger:hover .product-visual img,
.product-trigger:focus-visible .product-visual img {
  transform: scale(1.05);
  filter: brightness(0.95) contrast(1.1);
}

.product-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cyan);
  transition: text-shadow 0.2s ease, color 0.2s ease;
}

.product-instagram:hover {
  color: var(--white);
  text-shadow: 0 0 12px var(--cyan-glow);
}

.inline-link {
  color: var(--cyan);
  font-weight: 600;
  text-decoration: none;
}

.inline-link:hover {
  text-shadow: 0 0 12px var(--cyan-glow);
}

.product-meta h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

.product-meta p {
  margin: 0.35rem 0 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.product-tag {
  display: inline-block;
  margin-top: 0.45rem;
  padding: 0.15rem 0.5rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid var(--border-orange);
  background: rgba(255, 140, 0, 0.06);
}

/* ── Custom section ── */
.custom {
  background:
    linear-gradient(180deg, transparent, rgba(34, 211, 238, 0.03)),
    linear-gradient(135deg, rgba(255, 140, 0, 0.04), rgba(34, 211, 238, 0.04));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.custom-layout {
  display: grid;
  gap: 2rem;
}

.custom-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.custom-points li {
  display: grid;
  gap: 0.25rem;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.custom-points li:hover {
  border-color: var(--orange);
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.1);
}

.custom-points strong {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
}

.custom-points span {
  color: var(--text-soft);
}

/* ── Process steps ── */
.process {
  border-bottom: 1px solid var(--border);
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

.steps li {
  display: grid;
  gap: 0.4rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.steps li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--cyan));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.steps li:hover {
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.08);
}

.steps li:hover::before,
[data-reveal].is-visible .steps li::before {
  transform: scaleX(1);
}

[data-reveal].is-visible .steps li:nth-child(1)::before {
  transition-delay: 0.15s;
}

[data-reveal].is-visible .steps li:nth-child(2)::before {
  transition-delay: 0.28s;
}

[data-reveal].is-visible .steps li:nth-child(3)::before {
  transition-delay: 0.41s;
}

[data-reveal].is-visible .steps li:nth-child(4)::before {
  transition-delay: 0.54s;
}

.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--orange);
  letter-spacing: 0.06em;
  text-shadow: 0 0 16px var(--orange-glow);
}

.steps h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.steps p {
  margin: 0;
  color: var(--text-soft);
}

/* ── Request form ── */
.request {
  padding-bottom: 6rem;
}

.request-layout {
  display: grid;
  gap: 2rem;
}

.request-form {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  position: relative;
}

.request-form::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 32px;
  border-top: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--black-soft);
  padding: 0.8rem 0.9rem;
  font: inherit;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(139, 154, 171, 0.6);
}

.field select option {
  background: var(--panel);
  color: var(--text);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.15), 0 0 20px rgba(34, 211, 238, 0.1);
}

.field textarea {
  resize: vertical;
  min-height: 8rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 0.35rem;
}

.form-note {
  margin: 0;
  font-size: 0.95rem;
  color: var(--cyan);
  font-weight: 600;
}

.form-note.is-error {
  color: #ff4444;
  text-shadow: 0 0 8px rgba(255, 68, 68, 0.4);
}

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 3rem;
  background: var(--black-soft);
}

.footer-inner {
  display: grid;
  gap: 1.5rem;
}

.footer-brand {
  display: block;
  width: 5.5rem;
  height: 5.5rem;
  margin: 0;
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    0 0 0 1px var(--orange-glow),
    0 0 24px var(--cyan-glow);
}

.footer-inner p {
  margin: 0.35rem 0 0;
  color: var(--text-soft);
}

.footer-meta {
  display: grid;
  gap: 0.35rem;
}

.footer-meta a {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--cyan);
}

.footer-meta a:hover {
  text-shadow: 0 0 12px var(--cyan-glow);
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-instagram {
  flex-shrink: 0;
}

/* ── Dialog ── */
.product-dialog {
  border: 1px solid var(--border);
  padding: 0;
  max-width: min(860px, calc(100% - 2rem));
  width: 100%;
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow), 0 0 60px rgba(34, 211, 238, 0.1);
  color: var(--text);
}

.product-dialog::backdrop {
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(8px);
}

.dialog-body {
  position: relative;
  display: grid;
}

.dialog-body img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: brightness(0.9);
}

.dialog-copy {
  padding: 1.35rem 1.35rem 1.6rem;
}

.dialog-tag {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.dialog-copy h3 {
  margin: 0.4rem 0 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

.dialog-copy p {
  margin: 0.7rem 0 0;
  color: var(--text-soft);
}

.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.dialog-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--black-soft);
  color: var(--cyan);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dialog-close:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 12px var(--cyan-glow);
}

/* ── Scroll reveal ── */
[data-reveal] {
  --reveal-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal-child],
.product-card[data-reveal-item] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.65s var(--reveal-ease, cubic-bezier(0.22, 1, 0.36, 1)),
    transform 0.65s var(--reveal-ease, cubic-bezier(0.22, 1, 0.36, 1));
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal-child][data-reveal-from="left"] {
  transform: translate3d(-36px, 0, 0);
}

[data-reveal-child][data-reveal-from="right"] {
  transform: translate3d(36px, 0, 0);
}

.product-card[data-reveal-item] {
  transform: translate3d(0, 24px, 0) scale(0.96);
}

[data-reveal].is-visible [data-reveal-child],
.product-card[data-reveal-item].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.2%, -0.8%, 0);
  }
}

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

  8% {
    transform: scale(1.12);
  }

  16% {
    transform: scale(1);
  }

  24% {
    transform: scale(1.08);
  }

  32%,
  40% {
    transform: scale(1);
  }
}

@keyframes logo-glow {
  from {
    box-shadow:
      0 0 0 2px rgba(255, 140, 0, 0.5),
      0 0 40px rgba(255, 140, 0, 0.2),
      0 0 50px rgba(34, 211, 238, 0.15);
  }
  to {
    box-shadow:
      0 0 0 2px rgba(34, 211, 238, 0.5),
      0 0 50px rgba(255, 140, 0, 0.3),
      0 0 60px rgba(34, 211, 238, 0.25);
  }
}

@media (min-width: 720px) {
  .nav {
    display: flex;
  }

  .nav-toggle,
  .mobile-nav {
    display: none !important;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 1.5rem;
  }

  .custom-layout,
  .request-layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
    gap: 3rem;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }

  .request-form {
    grid-template-columns: 1fr 1fr;
  }

  .field-full {
    grid-column: 1 / -1;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .dialog-body {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .dialog-body img {
    aspect-ratio: auto;
    height: 100%;
    min-height: 100%;
  }
}

@media (min-width: 980px) {
  .hero-copy {
    padding: 8rem 0 5.5rem;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal],
  [data-reveal-child],
  .product-card[data-reveal-item] {
    opacity: 1;
    transform: none;
    will-change: auto;
  }
}

/* ── Admin panel ── */
.admin-page {
  min-height: 100svh;
  padding: 2rem 0 4rem;
}

.admin-login {
  display: grid;
  place-items: center;
  min-height: calc(100svh - 4rem);
}

.admin-login-card {
  width: min(420px, calc(100% - 2rem));
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  position: relative;
}

.admin-login-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  border-top: 2px solid var(--orange);
  border-left: 2px solid var(--orange);
}

.admin-login-logo {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 0 24px var(--cyan-glow);
}

.admin-login-card h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

.admin-login-card p {
  margin: 0.65rem 0 1.25rem;
  color: var(--text-soft);
}

.admin-login-form {
  display: grid;
  gap: 1rem;
}

.admin-back-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  text-decoration: none;
}

.admin-back-link:hover {
  text-shadow: 0 0 10px var(--cyan-glow);
}

.admin-dashboard[hidden],
.admin-login[hidden] {
  display: none !important;
}

.admin-header {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.admin-header h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

.admin-note {
  margin: 0.65rem 0 0;
  color: var(--text-soft);
  max-width: 52ch;
}

.admin-header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.btn-danger {
  border-color: rgba(255, 68, 68, 0.5) !important;
  color: #ff6b6b !important;
  background: rgba(255, 68, 68, 0.08) !important;
}

.btn-danger:hover {
  box-shadow: 0 0 16px rgba(255, 68, 68, 0.25) !important;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.admin-stat-card {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  display: grid;
  gap: 0.2rem;
}

.admin-stat-card--filtered {
  border-color: var(--border-orange);
}

.admin-stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--cyan);
  text-shadow: 0 0 12px var(--cyan-glow);
}

.admin-stat-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.admin-toolbar {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.admin-search input {
  width: 100%;
}

.admin-empty {
  padding: 2rem;
  text-align: center;
  color: var(--text-soft);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}

.admin-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.admin-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.admin-card:hover {
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.08);
}

.admin-card-btn {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 1.15rem 3rem 1.15rem 1.15rem;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.admin-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.admin-card-top time {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--text-soft);
}

.admin-card-btn h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

.admin-card-email {
  margin: 0.25rem 0 0;
  color: var(--cyan);
  font-size: 0.9rem;
}

.admin-card-preview {
  margin: 0.5rem 0 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.admin-card-delete {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--black-soft);
  color: #ff6b6b;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.admin-card-delete:hover {
  border-color: rgba(255, 68, 68, 0.5);
}

.admin-detail-body {
  display: block !important;
}

.admin-detail-copy {
  padding: 1.5rem;
}

.admin-detail-meta {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0;
}

.admin-detail-meta dt {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.admin-detail-meta dd {
  margin: 0.15rem 0 0;
  color: var(--text);
}

.admin-detail-meta a {
  color: var(--cyan);
  text-decoration: none;
}

.admin-detail-message {
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--black-soft);
  color: var(--text-soft);
  white-space: pre-wrap;
}

.admin-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

@media (min-width: 720px) {
  .admin-header {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .admin-stats {
    grid-template-columns: repeat(5, 1fr);
  }

  .admin-toolbar {
    grid-template-columns: 1.5fr 1fr;
  }
}
