:root {
  --bg: #07111d;
  --bg-strong: #0c1a2b;
  --surface: rgba(9, 22, 38, 0.72);
  --surface-strong: rgba(11, 27, 45, 0.88);
  --text: #ebf7ff;
  --muted: #a5bfd0;
  --line: rgba(122, 231, 255, 0.14);
  --accent: #38d6ff;
  --accent-deep: #0ea5e9;
  --accent-soft: #8cecff;
  --shadow: 0 24px 80px rgba(1, 8, 20, 0.42);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(56, 214, 255, 0.16), transparent 24%),
    radial-gradient(circle at 82% 12%, rgba(14, 165, 233, 0.14), transparent 22%),
    linear-gradient(180deg, #06101b 0%, var(--bg) 40%, #091827 100%);
}

body.is-loading {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 24%, rgba(56, 214, 255, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(3, 10, 18, 0.98), rgba(5, 15, 26, 0.99));
  opacity: 1;
  visibility: visible;
  transition: opacity 520ms ease, visibility 520ms ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader-inner {
  display: grid;
  gap: 22px;
  justify-items: center;
  text-align: center;
}

.site-loader-stage {
  position: relative;
  width: min(76vw, 360px);
  height: 144px;
}

.site-loader-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  filter: drop-shadow(0 10px 32px rgba(0, 0, 0, 0.26));
}

.site-loader-logo-alpha {
  transform: translateY(8px) scale(1.18);
}

.site-loader-logo-alpha {
  animation: loaderLogoAlpha 2.2s ease-in-out infinite;
}

.site-loader-logo-uniqcode {
  width: 74%;
  height: 74%;
  margin: auto;
  animation: loaderLogoUniqcode 2.2s ease-in-out infinite;
}

.site-loader-text {
  margin: 0;
  color: rgba(220, 239, 248, 0.78);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background:
    linear-gradient(180deg, rgba(5, 14, 24, 0.9), rgba(7, 18, 30, 0.82));
  border-bottom: 1px solid rgba(122, 231, 255, 0.08);
  box-shadow: 0 10px 30px rgba(2, 10, 24, 0.22);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
}

.brand-printmark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.brand-logo {
  width: clamp(132px, 15vw, 210px);
  height: auto;
  filter: drop-shadow(0 0 14px rgba(122, 231, 255, 0.12));
}

.brand-logo-base {
  opacity: 0.12;
  filter: grayscale(0.1) brightness(0.85) drop-shadow(0 0 10px rgba(56, 214, 255, 0.06));
}

.brand-logo-print {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 100% 0);
  filter: drop-shadow(0 0 10px rgba(140, 236, 255, 0.14));
  animation: logoPrintReveal 10s linear infinite;
}

.brand::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 120px;
  height: 54px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(56, 214, 255, 0.16), transparent 70%);
  filter: blur(18px);
  z-index: -1;
}

.brand-printmark::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 3%;
  height: 10px;
  top: 0;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent, rgba(196, 246, 255, 1), transparent),
    radial-gradient(circle, rgba(56, 214, 255, 0.9), transparent 70%);
  box-shadow:
    0 0 18px rgba(56, 214, 255, 0.5),
    0 0 36px rgba(56, 214, 255, 0.24);
  animation: logoPrintHead 10s linear infinite;
  z-index: 2;
}

.brand-printmark::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(140, 236, 255, 0.2) 0 2px,
      rgba(140, 236, 255, 0) 2px 7px
    );
  opacity: 0;
  animation: logoPrintLines 10s linear infinite;
  pointer-events: none;
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.96rem;
}

.menu a {
  color: #d7effc;
  transition: color 180ms ease, text-shadow 180ms ease, opacity 180ms ease;
  position: relative;
  overflow: hidden;
}

.menu a:hover,
.menu a:focus-visible {
  color: #9cecff;
  text-shadow: 0 0 16px rgba(56, 214, 255, 0.26);
}

.menu a::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(140, 236, 255, 0.9), transparent);
  transform: scaleX(0.2);
  opacity: 0;
  transform-origin: center;
  transition: transform 240ms ease, opacity 240ms ease;
}

.menu a::after {
  content: "";
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -40%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(140, 236, 255, 0.28), transparent);
  transform: skewX(-18deg) translateX(-180%);
  opacity: 0;
  pointer-events: none;
}

.menu a:hover::before,
.menu a:focus-visible::before {
  transform: scaleX(1);
  opacity: 1;
}

.menu a:hover::after,
.menu a:focus-visible::after {
  opacity: 1;
  animation: menuPrintSweep 900ms ease forwards;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(122, 231, 255, 0.16);
  border-radius: 14px;
  background: rgba(8, 23, 39, 0.72);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #04111d;
  font-weight: 700;
  box-shadow: 0 0 0 1px rgba(140, 236, 255, 0.18), 0 14px 34px rgba(14, 165, 233, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
  position: relative;
  overflow: hidden;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(140, 236, 255, 0.26), 0 18px 40px rgba(14, 165, 233, 0.3);
}

.button::before {
  content: "";
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -35%;
  width: 30%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.44), transparent);
  transform: skewX(-18deg) translateX(-180%);
  opacity: 0;
  pointer-events: none;
}

.button::after {
  content: "";
  position: absolute;
  inset: auto 14px 8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(196, 246, 255, 0.92), transparent);
  opacity: 0;
  transform: scaleX(0.25);
  transition: opacity 220ms ease, transform 220ms ease;
}

.button:hover::before,
.button:focus-visible::before {
  opacity: 1;
  animation: buttonPrintSweep 900ms ease forwards;
}

.button:hover::after,
.button:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.button-small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.92rem;
}

.button-ghost {
  background: rgba(7, 22, 37, 0.5);
  color: var(--text);
  border: 1px solid rgba(122, 231, 255, 0.16);
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 74px 0 52px;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 24%, rgba(56, 214, 255, 0.22), transparent 20%),
    radial-gradient(circle at 86% 18%, rgba(14, 165, 233, 0.2), transparent 18%),
    linear-gradient(135deg, #07111d 0%, #0d1d30 44%, #071826 100%);
  background-size: 160% 160%;
  animation: heroGradientShift 14s ease-in-out infinite;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 18px 18px 0;
  border-radius: 42px;
  background:
    radial-gradient(circle at 18% 30%, rgba(122, 231, 255, 0.16), transparent 22%),
    radial-gradient(circle at 78% 68%, rgba(56, 214, 255, 0.14), transparent 24%),
    linear-gradient(135deg, rgba(8, 23, 39, 0.9), rgba(13, 34, 56, 0.78)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent);
  border: 1px solid rgba(122, 231, 255, 0.16);
  box-shadow: var(--shadow);
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(122, 231, 255, 0.08) 0 1px,
      transparent 1px 72px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(122, 231, 255, 0.05) 0 1px,
      transparent 1px 72px
    );
  opacity: 0.5;
  z-index: -2;
  animation: heroPatternShift 20s linear infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
  gap: 34px;
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.benefits-copy h2,
.cta-box h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  font-size: clamp(2.25rem, 4vw, 4.35rem);
  max-width: 13.5ch;
  line-height: 0.98;
  text-wrap: balance;
}

.hero-copy p,
.section-heading p,
.benefits-copy p,
.cta-box p,
.process-card p,
.benefit-card p,
.segment-card p,
.floating-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy p {
  max-width: 62ch;
  margin: 18px 0 0;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-points li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(8, 23, 39, 0.72);
  color: var(--text);
  box-shadow: 0 10px 30px rgba(2, 10, 24, 0.2);
  font-size: 0.95rem;
}

.hero-card {
  position: relative;
}

.floating-card,
.cta-box,
.process-card,
.benefit-card,
.segment-card,
.showcase-card {
  border: 1px solid rgba(122, 231, 255, 0.16);
  background: linear-gradient(180deg, rgba(8, 23, 39, 0.8), rgba(10, 27, 45, 0.66));
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.floating-card {
  padding: 26px;
  border-radius: var(--radius-xl);
}

.card-label,
.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent-soft);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.floating-card strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.65rem, 2.7vw, 2.35rem);
  line-height: 1.05;
  margin-bottom: 20px;
}

.metric-list {
  display: grid;
  gap: 12px;
}

.metric-list div {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: start;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.metric-list span,
.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(56, 214, 255, 0.24), rgba(14, 165, 233, 0.4));
  color: var(--accent-soft);
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.42;
  pointer-events: none;
}

.hero-glow-left {
  top: 80px;
  left: -140px;
  background: rgba(56, 214, 255, 0.42);
}

.hero-glow-right {
  right: -120px;
  bottom: 30px;
  background: rgba(14, 165, 233, 0.26);
}

.section {
  padding: 64px 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-size: 180% 180%;
  animation: sectionGradientShift 18s ease-in-out infinite;
  border-top: 1px solid rgba(122, 231, 255, 0.1);
  border-bottom: 1px solid rgba(122, 231, 255, 0.06);
}

.section > .container,
.hero > .container {
  position: relative;
  z-index: 2;
}

.about::before,
.products::before,
.process::before,
.benefits::before,
.gallery::before,
.showcase::before,
.faq::before,
.cta::before,
.about::after,
.products::after,
.process::after,
.benefits::after,
.gallery::after,
.showcase::after,
.faq::after,
.cta::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.95;
  filter: blur(36px);
}

.about {
  background-image:
    radial-gradient(circle at 15% 20%, rgba(56, 214, 255, 0.14), transparent 20%),
    linear-gradient(135deg, #07121f 0%, #0d1b2c 48%, #09131f 100%);
  background-color: #08121f;
}

.products {
  background-image:
    radial-gradient(circle at 82% 22%, rgba(122, 231, 255, 0.16), transparent 20%),
    linear-gradient(135deg, #091624 0%, #102238 45%, #091622 100%);
  background-color: #0a1724;
}

.process {
  background-image:
    linear-gradient(135deg, #08131f 0%, #0f2236 46%, #081420 100%);
  background-color: #09131f;
}

.benefits {
  background-image:
    linear-gradient(135deg, #09121d 0%, #101e30 48%, #09121c 100%);
  background-color: #09121c;
}

.gallery {
  background-image:
    radial-gradient(circle at 18% 18%, rgba(56, 214, 255, 0.18), transparent 18%),
    linear-gradient(135deg, #07131d 0%, #0c2232 42%, #07141e 100%);
  background-color: #08141f;
}

.showcase {
  background-image:
    radial-gradient(circle at 78% 22%, rgba(122, 231, 255, 0.18), transparent 18%),
    linear-gradient(135deg, #08111c 0%, #112539 44%, #08121d 100%);
  background-color: #08111c;
}

.faq {
  background-image:
    linear-gradient(135deg, #08111b 0%, #0f1d2f 48%, #08111c 100%);
  background-color: #08111b;
}

.cta {
  background-image:
    radial-gradient(circle at 82% 18%, rgba(56, 214, 255, 0.18), transparent 18%),
    linear-gradient(135deg, #08141f 0%, #10304a 42%, #08141f 100%);
  background-color: #091621;
}

.about::before {
  top: 10%;
  left: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 214, 255, 0.62), transparent 70%);
  animation: ambientFloat 11s ease-in-out infinite;
}

.about::after {
  right: -80px;
  bottom: 6%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.4), transparent 70%);
  animation: ambientDrift 13s ease-in-out infinite;
}

.products::before {
  inset: 8% auto auto -110px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 214, 255, 0.82), transparent 72%);
  animation: ambientPulse 9s ease-in-out infinite;
}

.products::after {
  right: -90px;
  top: 18%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 231, 255, 0.42), transparent 68%);
  animation: ambientFloat 14s ease-in-out infinite reverse;
}

.process::before {
  left: -70px;
  top: 30px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.56), transparent 72%);
  animation: ambientTilt 12s ease-in-out infinite;
}

.process::after {
  right: -100px;
  bottom: 10%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 214, 255, 0.36), transparent 72%);
  animation: ambientDrift 10s ease-in-out infinite reverse;
}

.benefits::before {
  right: -110px;
  top: 8%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 231, 255, 0.22), transparent 72%);
  animation: ambientPulse 10s ease-in-out infinite;
}

.benefits::after {
  left: -90px;
  bottom: 4%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.22), transparent 72%);
  animation: ambientFloat 12s ease-in-out infinite;
}

.gallery::before {
  left: -120px;
  top: 16%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 214, 255, 0.7), transparent 72%);
  animation: ambientDrift 15s linear infinite;
}

.gallery::after {
  right: -90px;
  top: 12%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 231, 255, 0.34), transparent 72%);
  animation: ambientTilt 13s ease-in-out infinite reverse;
}

.showcase::before {
  left: 50%;
  top: -20px;
  width: 520px;
  height: 240px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(56, 214, 255, 0.76), transparent 72%);
  animation: ambientPulse 8s ease-in-out infinite;
}

.showcase::after {
  right: -120px;
  bottom: -30px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.3), transparent 70%);
  animation: ambientFloat 14s ease-in-out infinite;
}

.faq::before {
  left: -100px;
  top: 10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 231, 255, 0.36), transparent 72%);
  animation: ambientPulse 11s ease-in-out infinite;
}

.faq::after {
  right: -80px;
  bottom: 4%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.28), transparent 70%);
  animation: ambientDrift 12s ease-in-out infinite reverse;
}

.cta::before {
  inset: 0;
  border-radius: 42px;
  background:
    radial-gradient(circle at 18% 25%, rgba(56, 214, 255, 0.36), transparent 30%),
    radial-gradient(circle at 82% 74%, rgba(14, 165, 233, 0.3), transparent 28%);
  animation: ambientPulse 10s ease-in-out infinite;
}

.about .section-heading {
  background: rgba(8, 23, 39, 0.56);
  border: 1px solid rgba(122, 231, 255, 0.16);
  border-radius: 28px;
  padding: 28px;
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(2, 10, 24, 0.22);
}

.about .section-heading,
.products .benefit-card,
.process .process-card,
.benefits .benefit-card,
.gallery .segment-card,
.faq .process-card,
.cta .cta-box {
  backdrop-filter: blur(10px);
}

@keyframes heroGradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes loaderLogoAlpha {
  0%,
  12% {
    opacity: 0;
    transform: translateY(8px) scale(1.1);
  }

  20%,
  42% {
    opacity: 1;
    transform: translateY(0) scale(1.28);
  }

  50%,
  100% {
    opacity: 0;
    transform: translateY(-8px) scale(1.34);
  }
}

@keyframes loaderLogoUniqcode {
  0%,
  46% {
    opacity: 0;
    transform: translateY(8px) scale(0.96);
  }

  56%,
  78% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  86%,
  100% {
    opacity: 0;
    transform: translateY(-8px) scale(1.03);
  }
}

@keyframes heroPatternShift {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(40px, 0, 0);
  }
}

@keyframes logoPrintReveal {
  0% {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }

  10% {
    clip-path: inset(0 0 100% 0);
    opacity: 0.08;
  }

  72% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }

  92% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }

  100% {
    clip-path: inset(0 0 0 0);
    opacity: 0;
  }
}

@keyframes logoPrintHead {
  0% {
    top: -8%;
    opacity: 0;
  }

  10% {
    top: -2%;
    opacity: 0.9;
  }

  72% {
    top: calc(100% - 8px);
    opacity: 1;
  }

  92% {
    top: calc(100% - 8px);
    opacity: 0.55;
  }

  100% {
    top: calc(100% + 10px);
    opacity: 0;
  }
}

@keyframes logoPrintLines {
  0%,
  8% {
    opacity: 0;
    transform: translateY(-10px);
  }

  18%,
  70% {
    opacity: 0.4;
    transform: translateY(0);
  }

  92% {
    opacity: 0.12;
  }

  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

@keyframes menuPrintSweep {
  0% {
    transform: skewX(-18deg) translateX(-180%);
  }

  100% {
    transform: skewX(-18deg) translateX(420%);
  }
}

@keyframes buttonPrintSweep {
  0% {
    transform: skewX(-18deg) translateX(-180%);
  }

  100% {
    transform: skewX(-18deg) translateX(420%);
  }
}

@keyframes galleryScanSweep {
  0% {
    transform: skewX(-18deg) translateX(-180%);
  }

  100% {
    transform: skewX(-18deg) translateX(520%);
  }
}

.products .benefit-card {
  background: rgba(8, 25, 42, 0.82);
  border-color: rgba(56, 214, 255, 0.16);
  box-shadow: 0 18px 44px rgba(3, 16, 31, 0.28);
  position: relative;
  overflow: hidden;
}

.products .benefit-card h3 {
  color: #9cecff;
}

.process .process-card {
  background: rgba(9, 24, 40, 0.82);
  border-color: rgba(122, 231, 255, 0.14);
  box-shadow: 0 18px 40px rgba(2, 10, 24, 0.26);
}

.benefits .benefit-card {
  background: rgba(9, 22, 36, 0.82);
  border-color: rgba(122, 231, 255, 0.12);
  box-shadow: 0 16px 34px rgba(2, 10, 24, 0.24);
  position: relative;
  overflow: hidden;
}

.gallery .segment-card {
  background: rgba(7, 22, 36, 0.86);
  border-color: rgba(56, 214, 255, 0.16);
  box-shadow: 0 22px 48px rgba(2, 10, 24, 0.3);
}

.gallery .segment-card h3 {
  color: #9cecff;
}

.showcase .showcase-card {
  box-shadow: 0 24px 56px rgba(2, 10, 24, 0.32);
}

.benefit-card::before,
.showcase-card::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -28%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(140, 236, 255, 0.24), transparent);
  transform: skewX(-18deg) translateX(-180%);
  opacity: 0;
  pointer-events: none;
}

.benefit-card::after,
.showcase-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 20px;
  border: 1px solid rgba(122, 231, 255, 0);
  box-shadow: 0 0 0 rgba(56, 214, 255, 0);
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
  pointer-events: none;
}

.benefit-card:hover::before,
.benefit-card:focus-within::before,
.showcase-card:hover::after,
.showcase-card:focus-within::after {
  opacity: 1;
  animation: galleryScanSweep 1100ms ease forwards;
}

.benefit-card:hover::after,
.benefit-card:focus-within::after,
.showcase-card:hover::before,
.showcase-card:focus-within::before {
  border-color: rgba(122, 231, 255, 0.16);
  box-shadow: 0 0 24px rgba(56, 214, 255, 0.12);
  transform: scale(0.992);
}

.faq .process-card {
  background: rgba(8, 21, 35, 0.82);
  border-color: rgba(122, 231, 255, 0.12);
  box-shadow: 0 16px 36px rgba(2, 10, 24, 0.24);
}

.cta .cta-box {
  background: linear-gradient(180deg, rgba(8, 24, 40, 0.92), rgba(11, 35, 58, 0.88));
  border-color: rgba(122, 231, 255, 0.2);
  box-shadow: 0 28px 64px rgba(2, 10, 24, 0.34);
}

.section-heading {
  max-width: 720px;
}

.section-heading h2,
.benefits-copy h2,
.cta-box h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.process-grid,
.segments-grid,
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.process-card,
.benefit-card,
.segment-card,
.showcase-card {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.segment-card {
  overflow: hidden;
  padding: 0;
  position: relative;
}

.gallery-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.segment-card h3,
.segment-card p {
  padding-left: 26px;
  padding-right: 26px;
}

.segment-card h3 {
  margin-top: 22px;
}

.segment-card p {
  padding-bottom: 26px;
}

.gallery-image {
  --gallery-image-scale: 1;
  --gallery-image-shift-x: 0%;
  --gallery-image-shift-y: 0%;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center center;
  border-bottom: 1px solid var(--line);
  transform: translate(var(--gallery-image-shift-x), var(--gallery-image-shift-y)) scale(var(--gallery-image-scale));
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-image-pet {
  --gallery-image-scale: 1.18;
  --gallery-image-shift-x: 9%;
  --gallery-image-shift-y: -7%;
}

.gallery-image-full {
  aspect-ratio: auto !important;
  object-fit: unset !important;
  object-position: initial !important;
  height: auto;
  display: block;
  background: transparent;
  padding: 0;
  transform: none !important;
}

.gallery .segment-card:hover .gallery-image-full,
.gallery .segment-card:focus-within .gallery-image-full {
  transform: none !important;
  filter: none;
}


.gallery .segment-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -26%;
  width: 26%;
  background: linear-gradient(90deg, transparent, rgba(140, 236, 255, 0.28), transparent);
  transform: skewX(-18deg) translateX(-180%);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}

.gallery .segment-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(122, 231, 255, 0);
  border-radius: 22px;
  box-shadow: 0 0 0 rgba(56, 214, 255, 0);
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
  pointer-events: none;
  z-index: 1;
}

.gallery .segment-card:hover::before,
.gallery .segment-card:focus-within::before {
  opacity: 1;
  animation: galleryScanSweep 1100ms ease forwards;
}

.gallery .segment-card:hover::after,
.gallery .segment-card:focus-within::after {
  border-color: rgba(122, 231, 255, 0.18);
  box-shadow: 0 0 24px rgba(56, 214, 255, 0.14);
  transform: scale(0.992);
}

.gallery .segment-card:hover .gallery-image,
.gallery .segment-card:focus-within .gallery-image {
  transform: translate(var(--gallery-image-shift-x), var(--gallery-image-shift-y)) scale(calc(var(--gallery-image-scale) + 0.018));
  filter: saturate(1.08) brightness(1.04);
}

.process-card h3,
.benefit-card h3,
.segment-card h3 {
  margin: 18px 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

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

.segments {
  position: relative;
}

.segments-grid {
  margin-top: 28px;
}

.showcase {
  padding-top: 16px;
}

.showcase-grid {
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
}

.showcase-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  color: #eef7ff;
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.16)),
    radial-gradient(circle at top right, rgba(140, 236, 255, 0.16), transparent 35%);
  pointer-events: none;
}

.showcase-card > * {
  position: relative;
  z-index: 1;
}

.showcase-tag {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(140, 236, 255, 0.18);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-card h3 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  line-height: 1.15;
}

.showcase-card p {
  margin: 0;
  line-height: 1.65;
  color: rgba(221, 238, 248, 0.8);
}

.accent-card {
  background:
    linear-gradient(180deg, rgba(12, 30, 48, 0.96), rgba(8, 22, 37, 0.92));
  border-color: rgba(78, 196, 255, 0.24);
}

.dark-card {
  background:
    linear-gradient(180deg, rgba(15, 20, 27, 0.96), rgba(26, 33, 42, 0.9));
  border-color: rgba(255, 255, 255, 0.08);
}

.light-card {
  background:
    linear-gradient(180deg, rgba(11, 28, 44, 0.96), rgba(7, 18, 31, 0.92));
  border-color: rgba(117, 224, 209, 0.22);
}

.accent-card::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.18)),
    radial-gradient(circle at top right, rgba(78, 196, 255, 0.2), transparent 34%);
}

.dark-card::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(0, 0, 0, 0.2)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 30%);
}

.light-card::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.16)),
    radial-gradient(circle at top right, rgba(117, 224, 209, 0.18), transparent 32%);
}

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

.cta-box {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  padding: 34px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.95), rgba(238, 212, 179, 0.88));
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-actions,
.contact-feedback {
  grid-column: 1 / -1;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #c6d8e6;
  font-size: 0.95rem;
}

.contact-form label:last-of-type {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(125, 214, 255, 0.22);
  border-radius: 18px;
  padding: 14px 16px;
  background:
    linear-gradient(180deg, rgba(17, 38, 58, 0.92), rgba(12, 29, 45, 0.96));
  color: #eef8ff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 24px rgba(3, 11, 22, 0.2);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(198, 216, 230, 0.62);
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: rgba(125, 214, 255, 0.34);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(140, 236, 255, 0.82);
  background:
    linear-gradient(180deg, rgba(20, 46, 69, 0.98), rgba(14, 33, 50, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 4px rgba(56, 214, 255, 0.14),
    0 18px 40px rgba(2, 11, 24, 0.28);
  transform: translateY(-1px);
}

.contact-form button {
  margin-top: 6px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-actions .button {
  border: 0;
  cursor: pointer;
}

.contact-feedback {
  margin: 0;
  color: #285256;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-feedback-error {
  color: #9b2c2c;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.contact-details p {
  margin: 0;
  color: var(--text);
}

.contact-details a {
  color: var(--accent-deep);
  font-weight: 700;
}

@keyframes ambientFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -14px, 0);
  }
}

@keyframes ambientDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(18px, -10px, 0);
  }
}

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

  50% {
    opacity: 0.85;
    transform: scale(1.06);
  }
}

@keyframes ambientTilt {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(8px, -10px, 0) scale(1.04);
  }
}

@keyframes sectionGradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.site-footer {
  padding: 24px 0 40px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  border-top: 1px solid rgba(23, 33, 28, 0.08);
  padding-top: 24px;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  white-space: nowrap;
  transition: opacity 180ms ease, transform 180ms ease;
}

.footer-credit:hover,
.footer-credit:focus-visible {
  opacity: 0.92;
  transform: translateY(-1px);
}

.footer-credit img {
  width: 78px;
  height: auto;
  display: block;
  opacity: 0.88;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-grid,
  .benefits-grid,
  .cta-box,
  .process-grid,
  .segments-grid,
  .showcase-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-copy h1 {
    max-width: 12.5ch;
    font-size: clamp(2.15rem, 4.4vw, 3.8rem);
  }

  .hero-points,
  .benefit-list,
  .contact-form {
    grid-template-columns: 1fr 1fr;
  }

  .products-grid,
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form label:last-of-type,
  .contact-actions,
  .contact-feedback {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
  }

  .site-loader-stage {
    width: min(82vw, 290px);
    height: 122px;
  }

  .site-loader-text {
    font-size: 0.82rem;
    letter-spacing: 0.06em;
  }

  .nav,
  .hero-grid,
  .hero-points,
  .process-grid,
  .benefits-grid,
  .benefit-list,
  .products-grid,
  .segments-grid,
  .showcase-grid,
  .faq-grid,
  .cta-box,
  .contact-form,
  .footer-content {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .nav,
  .footer-content {
    display: flex;
    align-items: flex-start;
  }

  .nav {
    padding: 14px 0;
    align-items: center;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .button-small {
    display: none;
  }

  .menu {
    display: none;
    width: 100%;
    order: 4;
    padding: 14px;
    border: 1px solid rgba(122, 231, 255, 0.14);
    border-radius: 20px;
    background:
      linear-gradient(180deg, rgba(7, 22, 37, 0.96), rgba(10, 28, 46, 0.94));
    box-shadow: 0 18px 40px rgba(2, 10, 24, 0.28);
    gap: 12px;
    backdrop-filter: blur(18px);
  }

  .menu.is-open {
    display: flex;
    flex-direction: column;
  }

  .menu a {
    width: 100%;
    padding: 10px 4px;
    color: #e6f7ff;
    border-bottom: 1px solid rgba(122, 231, 255, 0.08);
  }

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

  .hero {
    padding-top: 42px;
  }

  .hero::before {
    inset: 10px 10px 0;
  }

  .about::before,
  .products::before,
  .process::before,
  .benefits::before,
  .gallery::before,
  .showcase::before,
  .faq::before,
  .cta::before,
  .about::after,
  .products::after,
  .process::after,
  .benefits::after,
  .gallery::after,
  .showcase::after,
  .faq::after,
  .cta::after {
    opacity: 0.55;
    filter: blur(22px);
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.05rem, 9vw, 3.45rem);
    line-height: 1.01;
    text-wrap: pretty;
  }

  .hero-points {
    display: grid;
  }

  .cta-box,
  .floating-card,
  .showcase-card {
    padding: 24px;
  }

  .contact-form {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-loader,
  .site-loader-logo,
  .site-loader-logo-alpha,
  .site-loader-logo-uniqcode {
    animation: none !important;
    transition: none !important;
  }

  .site-loader-logo-alpha {
    opacity: 1;
    transform: none;
  }

  .site-loader-logo-uniqcode {
    display: none;
  }
}
