:root {
  --bg: #06111f;
  --bg-deep: #02060d;
  --panel: rgba(7, 20, 39, 0.55);
  --panel-strong: rgba(10, 26, 51, 0.84);
  --line: rgba(125, 214, 255, 0.18);
  --text: #eff8ff;
  --muted: #9db4c7;
  --primary: #65d9ff;
  --secondary: #1df0b1;
  --accent: #4e7dff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --max-width: 1180px;
  --theme-primary: #65d9ff;
  --theme-secondary: #1df0b1;
  --theme-accent: #4e7dff;
  --theme-glow: rgba(101, 217, 255, 0.35);
  --theme-glow-strong: rgba(29, 240, 177, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-width: 320px;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #07111d 0%, #03070d 48%, #02050a 100%);
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

canvas,
img {
  display: block;
}

.site-shell {
  position: relative;
  isolation: isolate;
}

.bg-stage {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -4;
  overflow: hidden;
  contain: paint;
}

.bg-theme,
.bg-stage__grid,
.bg-stage__objects {
  position: absolute;
  inset: 0;
}

.bg-theme {
  opacity: 0;
  transition:
    opacity 0.9s ease,
    transform 1.1s ease,
    filter 0.9s ease;
  transform: scale(1.08);
  filter: saturate(0.82);
}

.bg-theme::before,
.bg-theme::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 50%;
  mix-blend-mode: screen;
  opacity: 0.78;
}

.bg-theme--hero {
  background:
    radial-gradient(circle at 18% 14%, rgba(89, 205, 255, 0.34), transparent 26%),
    radial-gradient(circle at 80% 24%, rgba(29, 240, 177, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(7, 17, 29, 0.82), rgba(3, 7, 13, 0.9));
}

.bg-theme--hero::before {
  top: -12vh;
  left: -10vw;
  width: 42vw;
  height: 42vw;
  background: radial-gradient(circle, rgba(101, 217, 255, 0.2), transparent 66%);
  animation: drift-slow 18s ease-in-out infinite;
}

.bg-theme--hero::after {
  right: 8vw;
  bottom: -10vh;
  width: 34vw;
  height: 34vw;
  background: radial-gradient(circle, rgba(29, 240, 177, 0.16), transparent 68%);
  animation: drift-slow 15s ease-in-out infinite reverse;
}

.bg-theme--about {
  background:
    radial-gradient(circle at 24% 24%, rgba(255, 108, 201, 0.22), transparent 20%),
    radial-gradient(circle at 78% 18%, rgba(255, 178, 88, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(22, 7, 29, 0.78), rgba(8, 5, 15, 0.92));
}

.bg-theme--about::before {
  top: 8vh;
  right: -6vw;
  width: 38vw;
  height: 38vw;
  background: radial-gradient(circle, rgba(255, 94, 189, 0.24), transparent 68%);
  animation: pulse-cloud 8s ease-in-out infinite;
}

.bg-theme--about::after {
  left: 6vw;
  bottom: 4vh;
  width: 28vw;
  height: 28vw;
  background: radial-gradient(circle, rgba(255, 173, 79, 0.18), transparent 70%);
  animation: pulse-cloud 9.5s ease-in-out infinite reverse;
}

.bg-theme--services {
  background:
    radial-gradient(circle at 22% 10%, rgba(66, 255, 187, 0.24), transparent 22%),
    radial-gradient(circle at 82% 26%, rgba(64, 235, 255, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(3, 18, 19, 0.8), rgba(2, 9, 11, 0.92));
}

.bg-theme--services::before {
  top: 14vh;
  left: -4vw;
  width: 36vw;
  height: 36vw;
  background: radial-gradient(circle, rgba(38, 255, 186, 0.18), transparent 68%);
  animation: drift-slow 16s ease-in-out infinite;
}

.bg-theme--services::after {
  right: 10vw;
  bottom: 0;
  width: 30vw;
  height: 30vw;
  background: radial-gradient(circle, rgba(70, 209, 255, 0.2), transparent 66%);
  animation: drift-slow 20s ease-in-out infinite reverse;
}

.bg-theme--vision {
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 208, 84, 0.22), transparent 22%),
    radial-gradient(circle at 76% 30%, rgba(255, 79, 122, 0.18), transparent 20%),
    linear-gradient(180deg, rgba(25, 11, 7, 0.8), rgba(11, 5, 5, 0.92));
}

.bg-theme--vision::before {
  top: -6vh;
  left: 10vw;
  width: 28vw;
  height: 52vw;
  border-radius: 46% 54% 50% 50%;
  background: radial-gradient(circle at 50% 20%, rgba(255, 214, 97, 0.22), transparent 64%);
  transform: rotate(22deg);
  animation: aurora-wave 12s ease-in-out infinite;
}

.bg-theme--vision::after {
  right: 6vw;
  bottom: -8vh;
  width: 26vw;
  height: 26vw;
  background: radial-gradient(circle, rgba(255, 89, 126, 0.2), transparent 68%);
  animation: pulse-cloud 7.6s ease-in-out infinite;
}

.bg-theme--company {
  background:
    radial-gradient(circle at 26% 18%, rgba(140, 185, 255, 0.22), transparent 24%),
    radial-gradient(circle at 82% 20%, rgba(169, 247, 255, 0.16), transparent 20%),
    linear-gradient(180deg, rgba(7, 12, 25, 0.82), rgba(3, 5, 10, 0.94));
}

.bg-theme--company::before {
  top: 6vh;
  right: 12vw;
  width: 24vw;
  height: 24vw;
  background: radial-gradient(circle, rgba(132, 178, 255, 0.22), transparent 66%);
  animation: pulse-cloud 8.4s ease-in-out infinite;
}

.bg-theme--company::after {
  left: -8vw;
  bottom: -8vh;
  width: 36vw;
  height: 36vw;
  background: radial-gradient(circle, rgba(117, 240, 255, 0.14), transparent 70%);
  animation: drift-slow 19s ease-in-out infinite reverse;
}

body[data-theme="hero"] .bg-theme--about,
body[data-theme="about"] .bg-theme--about,
body[data-theme="services"] .bg-theme--services,
body[data-theme="vision"] .bg-theme--vision,
body[data-theme="company"] .bg-theme--company {
  opacity: 1;
  transform: scale(1);
  filter: saturate(1.05);
}

.bg-stage__grid {
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 110px 110px;
  mask-image: radial-gradient(circle at center, black 24%, transparent 84%);
  opacity: 0.16;
  animation: grid-float 14s linear infinite;
}

.bg-stage__objects span {
  position: absolute;
  display: block;
  transition:
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.8s ease,
    filter 0.8s ease,
    border-color 0.6s ease,
    box-shadow 0.6s ease,
    background 0.6s ease;
}

.bg-stage__ring {
  border: 1px solid rgba(101, 217, 255, 0.22);
  border-radius: 50%;
}

.bg-stage__ring--a {
  top: 10vh;
  right: 8vw;
  width: 18vw;
  height: 18vw;
  animation: ring-rotate 20s linear infinite;
}

.bg-stage__ring--b {
  bottom: 12vh;
  left: 7vw;
  width: 28vw;
  height: 28vw;
  border-style: dashed;
  animation: ring-rotate 24s linear infinite reverse;
}

.bg-stage__orb {
  border-radius: 50%;
  filter: blur(18px);
}

.bg-stage__orb--a {
  top: 18vh;
  left: 10vw;
  width: 18vw;
  height: 18vw;
}

.bg-stage__orb--b {
  right: 14vw;
  bottom: 14vh;
  width: 14vw;
  height: 14vw;
}

.bg-stage__shard {
  width: 22vw;
  height: 2px;
  transform-origin: left center;
}

.bg-stage__shard--a {
  top: 24vh;
  right: 12vw;
}

.bg-stage__shard--b {
  left: 6vw;
  bottom: 24vh;
}

.bg-stage__beam {
  width: 24vw;
  height: 56vh;
  border-radius: 999px;
  filter: blur(10px);
  mix-blend-mode: screen;
}

.bg-stage__beam--a {
  top: -8vh;
  left: 34vw;
}

.bg-stage__beam--b {
  right: -2vw;
  bottom: -10vh;
}

body[data-theme="hero"] {
  --primary: #ff79c8;
  --secondary: #ffb05b;
  --accent: #ff5b7a;
  --line: rgba(255, 145, 204, 0.22);
  --theme-primary: #ff79c8;
  --theme-secondary: #ffb05b;
  --theme-accent: #ff5b7a;
  --theme-glow: rgba(255, 121, 200, 0.28);
  --theme-glow-strong: rgba(255, 176, 91, 0.24);
}

body[data-theme="hero"] .bg-stage__ring,
body[data-theme="hero"] .bg-stage__shard {
  border-color: rgba(255, 134, 201, 0.3);
  background: linear-gradient(90deg, transparent, rgba(255, 168, 92, 0.88), transparent);
  box-shadow: 0 0 28px rgba(255, 109, 191, 0.26);
}

body[data-theme="hero"] .bg-stage__ring--a {
  transform: translate3d(-8vw, 2vh, 0) scale(1.35);
}

body[data-theme="hero"] .bg-stage__ring--b {
  transform: translate3d(8vw, -8vh, 0) scale(0.86);
}

body[data-theme="hero"] .bg-stage__orb--a {
  opacity: 0.8;
  background: radial-gradient(circle, rgba(255, 106, 200, 0.32), transparent 66%);
  transform: translate3d(8vw, -6vh, 0) scale(1.22);
}

body[data-theme="hero"] .bg-stage__orb--b {
  opacity: 0.72;
  background: radial-gradient(circle, rgba(255, 176, 91, 0.28), transparent 68%);
  transform: translate3d(-6vw, 4vh, 0) scale(1.16);
}

body[data-theme="hero"] .bg-stage__beam {
  opacity: 0.42;
  background: linear-gradient(180deg, rgba(255, 91, 122, 0), rgba(255, 91, 122, 0.22), rgba(255, 176, 91, 0));
  transform: rotate(18deg) scaleY(1.18);
}

body[data-theme="about"] {
  --primary: #ff79c8;
  --secondary: #ffb05b;
  --accent: #ff5b7a;
  --line: rgba(255, 145, 204, 0.22);
  --theme-primary: #ff79c8;
  --theme-secondary: #ffb05b;
  --theme-accent: #ff5b7a;
  --theme-glow: rgba(255, 121, 200, 0.28);
  --theme-glow-strong: rgba(255, 176, 91, 0.24);
}

body[data-theme="about"] .bg-stage__ring,
body[data-theme="about"] .bg-stage__shard {
  border-color: rgba(255, 134, 201, 0.3);
  background: linear-gradient(90deg, transparent, rgba(255, 168, 92, 0.88), transparent);
  box-shadow: 0 0 28px rgba(255, 109, 191, 0.26);
}

body[data-theme="about"] .bg-stage__ring--a {
  transform: translate3d(-8vw, 2vh, 0) scale(1.35);
}

body[data-theme="about"] .bg-stage__ring--b {
  transform: translate3d(8vw, -8vh, 0) scale(0.86);
}

body[data-theme="about"] .bg-stage__orb--a {
  opacity: 0.8;
  background: radial-gradient(circle, rgba(255, 106, 200, 0.32), transparent 66%);
  transform: translate3d(8vw, -6vh, 0) scale(1.22);
}

body[data-theme="about"] .bg-stage__orb--b {
  opacity: 0.72;
  background: radial-gradient(circle, rgba(255, 176, 91, 0.28), transparent 68%);
  transform: translate3d(-6vw, 4vh, 0) scale(1.16);
}

body[data-theme="about"] .bg-stage__beam {
  opacity: 0.42;
  background: linear-gradient(180deg, rgba(255, 91, 122, 0), rgba(255, 91, 122, 0.22), rgba(255, 176, 91, 0));
  transform: rotate(18deg) scaleY(1.18);
}

body[data-theme="services"] {
  --primary: #42ffd0;
  --secondary: #4ce4ff;
  --accent: #16ff9f;
  --line: rgba(94, 255, 214, 0.2);
  --theme-primary: #42ffd0;
  --theme-secondary: #4ce4ff;
  --theme-accent: #16ff9f;
  --theme-glow: rgba(66, 255, 208, 0.28);
  --theme-glow-strong: rgba(76, 228, 255, 0.22);
}

body[data-theme="services"] .bg-stage__ring,
body[data-theme="services"] .bg-stage__shard {
  border-color: rgba(66, 255, 208, 0.32);
  background: linear-gradient(90deg, transparent, rgba(76, 228, 255, 0.88), transparent);
  box-shadow: 0 0 24px rgba(76, 228, 255, 0.22);
}

body[data-theme="services"] .bg-stage__ring--a {
  transform: translate3d(4vw, 10vh, 0) scale(0.88);
}

body[data-theme="services"] .bg-stage__ring--b {
  transform: translate3d(12vw, -16vh, 0) scale(1.28);
}

body[data-theme="services"] .bg-stage__orb--a {
  opacity: 0.82;
  background: radial-gradient(circle, rgba(56, 255, 194, 0.26), transparent 68%);
  transform: translate3d(-4vw, 8vh, 0) scale(1.12);
}

body[data-theme="services"] .bg-stage__orb--b {
  opacity: 0.68;
  background: radial-gradient(circle, rgba(76, 228, 255, 0.26), transparent 70%);
  transform: translate3d(6vw, -10vh, 0) scale(1.35);
}

body[data-theme="services"] .bg-stage__beam {
  opacity: 0.34;
  background: linear-gradient(180deg, rgba(22, 255, 159, 0), rgba(22, 255, 159, 0.24), rgba(76, 228, 255, 0));
  transform: rotate(-28deg) scaleY(1.05);
}

body[data-theme="vision"] {
  --primary: #ffd466;
  --secondary: #ff7f70;
  --accent: #ff4d81;
  --line: rgba(255, 212, 102, 0.22);
  --theme-primary: #ffd466;
  --theme-secondary: #ff7f70;
  --theme-accent: #ff4d81;
  --theme-glow: rgba(255, 212, 102, 0.28);
  --theme-glow-strong: rgba(255, 127, 112, 0.22);
}

body[data-theme="vision"] .bg-stage__ring,
body[data-theme="vision"] .bg-stage__shard {
  border-color: rgba(255, 212, 102, 0.28);
  background: linear-gradient(90deg, transparent, rgba(255, 127, 112, 0.88), transparent);
  box-shadow: 0 0 28px rgba(255, 127, 112, 0.22);
}

body[data-theme="vision"] .bg-stage__ring--a {
  transform: translate3d(-16vw, 8vh, 0) scale(1.42);
}

body[data-theme="vision"] .bg-stage__ring--b {
  transform: translate3d(12vw, -8vh, 0) scale(0.78);
}

body[data-theme="vision"] .bg-stage__orb--a {
  opacity: 0.86;
  background: radial-gradient(circle, rgba(255, 214, 102, 0.3), transparent 68%);
  transform: translate3d(6vw, -10vh, 0) scale(1.28);
}

body[data-theme="vision"] .bg-stage__orb--b {
  opacity: 0.74;
  background: radial-gradient(circle, rgba(255, 77, 129, 0.28), transparent 68%);
  transform: translate3d(-10vw, -6vh, 0) scale(1.08);
}

body[data-theme="vision"] .bg-stage__beam {
  opacity: 0.44;
  background: linear-gradient(180deg, rgba(255, 212, 102, 0), rgba(255, 127, 112, 0.24), rgba(255, 77, 129, 0));
  transform: rotate(30deg) scaleY(1.24);
}

body[data-theme="company"] {
  --primary: #a7d4ff;
  --secondary: #75f0ff;
  --accent: #7b8dff;
  --line: rgba(167, 212, 255, 0.2);
  --theme-primary: #a7d4ff;
  --theme-secondary: #75f0ff;
  --theme-accent: #7b8dff;
  --theme-glow: rgba(167, 212, 255, 0.24);
  --theme-glow-strong: rgba(117, 240, 255, 0.22);
}

body[data-theme="company"] .bg-stage__ring,
body[data-theme="company"] .bg-stage__shard {
  border-color: rgba(167, 212, 255, 0.28);
  background: linear-gradient(90deg, transparent, rgba(117, 240, 255, 0.84), transparent);
  box-shadow: 0 0 24px rgba(123, 141, 255, 0.2);
}

body[data-theme="company"] .bg-stage__ring--a {
  transform: translate3d(-4vw, -6vh, 0) scale(0.92);
}

body[data-theme="company"] .bg-stage__ring--b {
  transform: translate3d(8vw, 4vh, 0) scale(1.12);
}

body[data-theme="company"] .bg-stage__orb--a {
  opacity: 0.68;
  background: radial-gradient(circle, rgba(167, 212, 255, 0.28), transparent 68%);
  transform: translate3d(2vw, -4vh, 0) scale(1.05);
}

body[data-theme="company"] .bg-stage__orb--b {
  opacity: 0.72;
  background: radial-gradient(circle, rgba(117, 240, 255, 0.22), transparent 70%);
  transform: translate3d(-2vw, 4vh, 0) scale(1.1);
}

body[data-theme="company"] .bg-stage__beam {
  opacity: 0.3;
  background: linear-gradient(180deg, rgba(123, 141, 255, 0), rgba(123, 141, 255, 0.22), rgba(117, 240, 255, 0));
  transform: rotate(-12deg) scaleY(0.94);
}

.webgl {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
}

.ambient {
  position: fixed;
  inset: auto;
  width: 32vw;
  height: 32vw;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.42;
  pointer-events: none;
  z-index: -2;
  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.8s ease,
    background 0.6s ease;
}

.ambient--left {
  top: 10vh;
  left: -10vw;
  background: radial-gradient(circle, rgba(101, 217, 255, 0.25), transparent 65%);
}

.ambient--right {
  right: -12vw;
  bottom: 5vh;
  background: radial-gradient(circle, rgba(29, 240, 177, 0.14), transparent 62%);
}

body[data-theme="about"] .ambient--left {
  transform: translate3d(8vw, 4vh, 0) scale(1.2);
  opacity: 0.64;
  background: radial-gradient(circle, rgba(255, 121, 200, 0.28), transparent 65%);
}

body[data-theme="about"] .ambient--right {
  transform: translate3d(-4vw, -2vh, 0) scale(0.9);
  opacity: 0.48;
  background: radial-gradient(circle, rgba(255, 176, 91, 0.18), transparent 62%);
}

body[data-theme="hero"] .ambient--left {
  transform: translate3d(8vw, 4vh, 0) scale(1.2);
  opacity: 0.64;
  background: radial-gradient(circle, rgba(255, 121, 200, 0.28), transparent 65%);
}

body[data-theme="hero"] .ambient--right {
  transform: translate3d(-4vw, -2vh, 0) scale(0.9);
  opacity: 0.48;
  background: radial-gradient(circle, rgba(255, 176, 91, 0.18), transparent 62%);
}

body[data-theme="services"] .ambient--left {
  transform: translate3d(-4vw, 10vh, 0) scale(1);
  opacity: 0.52;
  background: radial-gradient(circle, rgba(66, 255, 208, 0.24), transparent 66%);
}

body[data-theme="services"] .ambient--right {
  transform: translate3d(0, -6vh, 0) scale(1.15);
  opacity: 0.58;
  background: radial-gradient(circle, rgba(76, 228, 255, 0.18), transparent 62%);
}

body[data-theme="vision"] .ambient--left {
  transform: translate3d(10vw, -4vh, 0) scale(1.1);
  opacity: 0.56;
  background: radial-gradient(circle, rgba(255, 212, 102, 0.26), transparent 65%);
}

body[data-theme="vision"] .ambient--right {
  transform: translate3d(-8vw, -6vh, 0) scale(1.08);
  opacity: 0.54;
  background: radial-gradient(circle, rgba(255, 77, 129, 0.16), transparent 62%);
}

body[data-theme="company"] .ambient--left {
  transform: translate3d(2vw, 0, 0) scale(0.96);
  opacity: 0.5;
  background: radial-gradient(circle, rgba(167, 212, 255, 0.2), transparent 65%);
}

body[data-theme="company"] .ambient--right {
  transform: translate3d(0, 2vh, 0) scale(1.02);
  opacity: 0.46;
  background: radial-gradient(circle, rgba(117, 240, 255, 0.15), transparent 62%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 4vw, 48px);
  z-index: 30;
  backdrop-filter: blur(8px);
  background: linear-gradient(180deg, rgba(2, 6, 13, 0.72), rgba(2, 6, 13, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand__logo {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(101, 217, 255, 0.42);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(101, 217, 255, 0.18), rgba(78, 125, 255, 0.28)),
    rgba(255, 255, 255, 0.03);
  box-shadow:
    inset 0 0 22px rgba(101, 217, 255, 0.15),
    0 0 35px rgba(78, 125, 255, 0.18);
  font-family: "Orbitron", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand__text strong,
.nav a,
.section-tag,
.opening__eyebrow,
.opening__lead,
.panel-label,
.service-card__label {
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand__text strong {
  font-size: 0.92rem;
}

.brand__text small {
  color: var(--muted);
  font-size: 0.72rem;
}

.nav {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 0.82rem;
}

.nav a {
  color: rgba(239, 248, 255, 0.8);
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.nav a:hover {
  color: white;
  text-shadow: 0 0 18px rgba(101, 217, 255, 0.6);
}

main {
  position: relative;
  z-index: 1;
}

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

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 140px 0 80px;
}

.hero__copy h2 {
  margin: 16px 0 22px;
  font-size: clamp(2.8rem, 7vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero__copy h2 span {
  display: inline-block;
  color: var(--primary);
  text-shadow: 0 0 30px rgba(101, 217, 255, 0.4);
  animation: title-energy 3.8s ease-in-out infinite;
}

.hero__text,
.services__lead > p,
.vision__frame p,
.company__note p,
.glass-card p,
.service-card p {
  color: var(--muted);
  line-height: 1.95;
  font-size: 1rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(101, 217, 255, 0.28);
  font-weight: 700;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    background-color 0.35s ease,
    border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}

.button:hover {
  transform: translateY(-6px) scale(1.03);
}

.button::before {
  content: "";
  position: absolute;
  inset: -120% auto auto -30%;
  width: 60%;
  height: 320%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: rotate(18deg);
  opacity: 0;
}

.button:hover::before {
  animation: button-flare 0.9s ease;
}

.button--primary {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #04111d;
  box-shadow:
    0 14px 34px color-mix(in srgb, var(--theme-secondary) 26%, transparent),
    0 0 40px color-mix(in srgb, var(--theme-primary) 20%, transparent);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.03);
  color: white;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.floating-card,
.glass-card,
.service-card,
.company__note,
.vision__frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--panel);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.floating-card::before,
.glass-card::before,
.service-card::before,
.company__note::before,
.vision__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(101, 217, 255, 0.08), transparent 70%);
  transform: translateX(-100%);
}

.floating-card:hover::before,
.glass-card:hover::before,
.service-card:hover::before,
.company__note:hover::before,
.vision__frame:hover::before {
  animation: card-scan 1.2s ease;
}

.floating-card:hover,
.glass-card:hover,
.service-card:hover,
.company__note:hover,
.vision__frame:hover {
  border-color: color-mix(in srgb, var(--theme-primary) 48%, rgba(255, 255, 255, 0.12));
  box-shadow:
    var(--shadow),
    0 0 46px color-mix(in srgb, var(--theme-primary) 20%, transparent);
}

@keyframes card-scan {
  100% {
    transform: translateX(100%);
  }
}

.hero__panel {
  position: relative;
  padding: 18px;
  border-radius: 28px;
  min-height: 380px;
  justify-self: end;
  width: min(100%, 420px);
  contain: none;
  display: grid;
  place-items: center;
  overflow: visible;
  border: none;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
}

.hero__panel::before,
.hero__panel::after {
  display: none;
}

.hero-card-object {
  --hero-drag-rotate-x: 0deg;
  --hero-drag-rotate-y: 0deg;
  position: relative;
  width: 100%;
  min-height: 344px;
  perspective: 1400px;
  transform-style: preserve-3d;
  overflow: visible;
  transform: rotateX(var(--hero-drag-rotate-x)) rotateY(var(--hero-drag-rotate-y));
  transform-origin: center center;
  transition: transform 220ms ease-out;
  will-change: transform;
  cursor: grab;
  user-select: none;
  touch-action: none;
}

.hero-card-object.is-dragging {
  transition: none;
  cursor: grabbing;
}

.hero-card-object__shadow,
.hero-card-object__back,
.hero-card-object__card,
.hero-card-object__face,
.hero-card-object__edge,
.hero-card-object__shine,
.hero-card-object__foil,
.hero-card-object__corner,
.hero-card-object__header,
.hero-card-object__art,
.hero-card-object__halo,
.hero-card-object__orb,
.hero-card-object__ring,
.hero-card-object__footer,
.hero-card-object__chip {
  position: absolute;
}

.hero-card-object__shadow {
  inset: auto 18% 8% 18%;
  height: 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 70, 189, 0.46), rgba(104, 162, 255, 0.22) 40%, transparent 74%);
  filter: blur(18px);
  transform: translateZ(-60px);
  opacity: 0.9;
  animation: shadow-breathe 7.8s ease-in-out infinite;
}

.hero-card-object__back,
.hero-card-object__card {
  inset: 50% auto auto 50%;
  width: min(240px, 72%);
  aspect-ratio: 0.7;
  border-radius: 24px;
  transform-style: preserve-3d;
}

.hero-card-object__back {
  transform: translate(-50%, -50%) rotateX(14deg) rotateY(-26deg) rotateZ(-14deg) translateX(-34px) translateY(18px) translateZ(-34px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(255, 74, 184, 0.24), rgba(255, 188, 89, 0.16) 28%, rgba(95, 222, 255, 0.22) 62%, rgba(154, 114, 255, 0.2)),
    linear-gradient(180deg, rgba(11, 13, 28, 0.98), rgba(5, 8, 18, 0.96));
  background-size: 100% 100%, 220% 220%, 100% 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 0 22px rgba(255, 255, 255, 0.04),
    0 18px 44px rgba(0, 0, 0, 0.28);
  animation: rainbow-shift 10s linear infinite reverse;
}

.hero-card-object__card {
  transform: translate(-50%, -50%) rotateX(20deg) rotateY(-28deg) rotateZ(11deg) translateX(22px) translateY(-8px);
  animation: card-float 7.8s cubic-bezier(0.37, 0, 0.25, 1) infinite;
  transform-origin: center center;
}

.hero-card-object__face {
  inset: 0;
  border-radius: inherit;
  overflow: visible;
  backface-visibility: hidden;
}

.hero-card-object__face--front {
  transform: translateZ(10px);
  transform-style: preserve-3d;
  border-radius: inherit;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.03) 28%, rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(255, 74, 184, 0.88), rgba(255, 191, 87, 0.82) 20%, rgba(111, 246, 255, 0.88) 48%, rgba(132, 123, 255, 0.82) 72%, rgba(255, 120, 198, 0.88));
  background-size: 100% 100%, 220% 220%;
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 0 34px rgba(255, 255, 255, 0.12),
    0 0 34px rgba(255, 103, 190, 0.24),
    0 0 54px rgba(99, 178, 255, 0.18),
    0 24px 54px rgba(0, 0, 0, 0.34);
  animation:
    rainbow-shift 8.5s linear infinite,
    face-pulse 5.6s ease-in-out infinite;
}

.hero-card-object__face--front::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 30px;
  background: conic-gradient(from 180deg, rgba(255, 83, 185, 0.18), rgba(255, 197, 93, 0.16), rgba(96, 236, 255, 0.16), rgba(140, 122, 255, 0.16), rgba(255, 83, 185, 0.18));
  filter: blur(20px);
  z-index: -1;
  animation: rainbow-rotate 9s linear infinite;
}

.hero-card-object__face--back {
  transform: translateZ(-10px) rotateY(180deg);
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.16), transparent 58%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), transparent 36%),
    linear-gradient(135deg, rgba(255, 92, 193, 0.32), rgba(255, 194, 99, 0.24) 24%, rgba(103, 231, 255, 0.28) 54%, rgba(154, 110, 255, 0.24) 80%),
    linear-gradient(180deg, rgba(16, 20, 43, 0.98), rgba(6, 9, 19, 0.96));
  background-size: 100% 100%, 100% 100%, 220% 220%, 100% 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.03);
  animation: rainbow-shift 12s linear infinite reverse;
}

.hero-card-object__face--back::before,
.hero-card-object__face--back::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 18px;
}

.hero-card-object__face--back::before {
  border: 1px solid color-mix(in srgb, var(--theme-primary) 18%, rgba(255, 255, 255, 0.12));
}

.hero-card-object__face--back::after {
  inset: 50% auto auto 50%;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, color-mix(in srgb, var(--theme-secondary) 20%, transparent), transparent 72%);
  filter: blur(10px);
}

.hero-card-object__edge {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.06)),
    linear-gradient(135deg, rgba(255, 94, 190, 0.86), rgba(255, 198, 97, 0.84) 26%, rgba(100, 232, 255, 0.84) 58%, rgba(146, 117, 255, 0.82));
  background-size: 100% 100%, 220% 220%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 0 10px rgba(255, 255, 255, 0.06),
    0 0 18px rgba(255, 130, 200, 0.12);
  animation: rainbow-shift 9s linear infinite;
}

.hero-card-object__edge--top,
.hero-card-object__edge--bottom {
  left: 10px;
  width: calc(100% - 20px);
  height: 20px;
}

.hero-card-object__edge--left,
.hero-card-object__edge--right {
  top: 10px;
  width: 20px;
  height: calc(100% - 20px);
}

.hero-card-object__edge--top {
  top: -10px;
  border-radius: 20px 20px 8px 8px;
  transform: rotateX(90deg);
  transform-origin: center bottom;
}

.hero-card-object__edge--bottom {
  bottom: -10px;
  border-radius: 8px 8px 20px 20px;
  transform: rotateX(-90deg);
  transform-origin: center top;
}

.hero-card-object__edge--left {
  left: -10px;
  border-radius: 20px 8px 8px 20px;
  transform: rotateY(-90deg);
  transform-origin: right center;
}

.hero-card-object__edge--right {
  right: -10px;
  border-radius: 8px 20px 20px 8px;
  transform: rotateY(90deg);
  transform-origin: left center;
}

.hero-card-object__shine,
.hero-card-object__foil {
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.hero-card-object__shine {
  background: linear-gradient(118deg, transparent 12%, rgba(255, 255, 255, 0.84) 24%, rgba(255, 219, 132, 0.72) 32%, rgba(122, 236, 255, 0.64) 38%, transparent 50%);
  transform: translateX(-130%);
  filter: blur(1px);
  animation: holo-scan 3.9s ease-in-out infinite;
}

.hero-card-object__foil {
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 104, 200, 0.34), transparent 24%),
    radial-gradient(circle at 82% 16%, rgba(255, 192, 92, 0.3), transparent 24%),
    radial-gradient(circle at 48% 82%, rgba(114, 244, 255, 0.28), transparent 28%),
    conic-gradient(from 180deg, rgba(255, 82, 188, 0.4), rgba(255, 201, 92, 0.38), rgba(106, 236, 255, 0.36), rgba(145, 117, 255, 0.34), rgba(255, 82, 188, 0.4));
  background-size: 100% 100%, 100% 100%, 100% 100%, 220% 220%;
  mix-blend-mode: color-dodge;
  opacity: 0.95;
  animation: rainbow-shift 7.2s linear infinite reverse;
}

.hero-card-object__corner {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent);
  box-shadow: 0 0 18px rgba(255, 149, 210, 0.12);
}

.hero-card-object__corner--tl {
  top: 16px;
  left: 16px;
  border-radius: 10px 6px 12px 6px;
}

.hero-card-object__corner--tr {
  top: 16px;
  right: 16px;
  border-radius: 6px 10px 6px 12px;
}

.hero-card-object__corner--bl {
  bottom: 16px;
  left: 16px;
  border-radius: 6px 12px 6px 10px;
}

.hero-card-object__corner--br {
  right: 16px;
  bottom: 16px;
  border-radius: 12px 6px 10px 6px;
}

.hero-card-object__header {
  top: 16px;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  transform: translateZ(18px);
}

.hero-card-object__header span:first-child {
  width: 72px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 118, 199, 0.64), transparent);
}

.hero-card-object__header span:last-child {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.95), rgba(255, 147, 208, 0.28) 36%, transparent 74%);
  box-shadow:
    inset 0 0 12px rgba(255, 208, 113, 0.24),
    0 0 18px rgba(104, 219, 255, 0.16);
}

.hero-card-object__art {
  inset: 66px 22px 88px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.22), transparent 56%),
    linear-gradient(135deg, rgba(255, 98, 193, 0.26), rgba(255, 193, 93, 0.18) 28%, rgba(98, 236, 255, 0.22) 58%, rgba(148, 111, 255, 0.2)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.01));
  background-size: 100% 100%, 220% 220%, 100% 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: visible;
  transform: translateZ(26px);
  transform-style: preserve-3d;
  animation: rainbow-shift 9.5s linear infinite;
}

.hero-card-object__halo,
.hero-card-object__orb,
.hero-card-object__ring {
  inset: 50% auto auto 50%;
  border-radius: 50%;
}

.hero-card-object__halo {
  width: 132px;
  height: 132px;
  background: radial-gradient(circle, rgba(255, 193, 94, 0.24), rgba(105, 234, 255, 0.18) 40%, transparent 72%);
  filter: blur(14px);
  transform: translate(-50%, -50%) translateZ(10px);
  animation: halo-pulse 4.6s ease-in-out infinite;
}

.hero-card-object__orb {
  width: 78px;
  height: 78px;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.92), rgba(255, 197, 108, 0.62) 24%, rgba(108, 228, 255, 0.48) 44%, transparent 74%);
  box-shadow:
    0 0 24px rgba(255, 109, 194, 0.22),
    0 0 52px rgba(99, 224, 255, 0.18);
  transform: translate(-50%, -50%) translateZ(34px);
  animation: orb-drift 4.8s ease-in-out infinite;
}

.hero-card-object__ring {
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 0 18px rgba(255, 127, 198, 0.12),
    inset 0 0 14px rgba(108, 230, 255, 0.08);
}

.hero-card-object__ring--a {
  width: 138px;
  height: 138px;
  transform: translate(-50%, -50%) translateZ(22px) rotateX(72deg);
  animation: orbit-spin-a 10s linear infinite;
}

.hero-card-object__ring--b {
  width: 104px;
  height: 104px;
  border-style: dashed;
  transform: translate(-50%, -50%) translateZ(30px) rotateY(72deg);
  animation: orbit-spin-b 7s linear infinite reverse;
}

.hero-card-object__ring--c {
  width: 172px;
  height: 172px;
  opacity: 0.5;
  transform: translate(-50%, -50%) translateZ(14px) rotateX(80deg) rotateY(18deg);
}

.hero-card-object__footer {
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 10px;
  transform: translateZ(16px);
}

.hero-card-object__footer span {
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.4), rgba(255, 116, 198, 0.22), transparent);
}

.hero-card-object__footer span:nth-child(1) {
  width: 70%;
  height: 10px;
}

.hero-card-object__footer span:nth-child(2) {
  width: 84%;
  height: 10px;
}

.hero-card-object__footer span:nth-child(3) {
  width: 42%;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(90deg, rgba(255, 116, 198, 0.3), rgba(111, 236, 255, 0.12), transparent),
    rgba(255, 255, 255, 0.03);
}

.hero-card-object__chip {
  width: 58px;
  height: 82px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent),
    linear-gradient(135deg, rgba(255, 98, 193, 0.2), rgba(97, 234, 255, 0.16)),
    rgba(255, 255, 255, 0.02);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.18),
    0 0 18px rgba(255, 114, 196, 0.12);
}

.hero-card-object__chip--a {
  top: 28px;
  right: 18px;
  transform: rotate(16deg) translateZ(-10px);
  animation: chip-float-a 6.4s ease-in-out infinite;
}

.hero-card-object__chip--b {
  bottom: 28px;
  left: 18px;
  transform: rotate(-14deg) translateZ(-16px);
  animation: chip-float-b 7.1s ease-in-out infinite;
}

@keyframes orbit-spin-a {
  to {
    transform: translate(-50%, -50%) translateZ(22px) rotateX(72deg) rotate(360deg);
  }
}

@keyframes orbit-spin-b {
  to {
    transform: translate(-50%, -50%) translateZ(30px) rotateY(72deg) rotate(360deg);
  }
}

@keyframes card-float {
  0%,
  100% {
    transform: translate(-50%, -50%) rotateX(20deg) rotateY(-28deg) rotateZ(11deg) translateX(22px) translateY(-8px);
  }
  25% {
    transform: translate(-50%, -50%) rotateX(12deg) rotateY(-18deg) rotateZ(7deg) translateX(28px) translateY(-18px);
  }
  50% {
    transform: translate(-50%, -50%) rotateX(24deg) rotateY(-38deg) rotateZ(13deg) translateX(12px) translateY(-20px);
  }
  75% {
    transform: translate(-50%, -50%) rotateX(15deg) rotateY(-22deg) rotateZ(5deg) translateX(18px) translateY(-2px);
  }
}

@keyframes holo-scan {
  0%,
  100% {
    transform: translateX(-130%);
    opacity: 0;
  }
  24% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  68% {
    opacity: 0.7;
  }
  100% {
    transform: translateX(180%);
    opacity: 0;
  }
}

@keyframes rainbow-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes rainbow-rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes face-pulse {
  0%,
  100% {
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.04),
      inset 0 0 34px rgba(255, 255, 255, 0.12),
      0 0 34px rgba(255, 103, 190, 0.24),
      0 0 54px rgba(99, 178, 255, 0.18),
      0 24px 54px rgba(0, 0, 0, 0.34);
  }
  50% {
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.08),
      inset 0 0 42px rgba(255, 255, 255, 0.18),
      0 0 48px rgba(255, 103, 190, 0.3),
      0 0 68px rgba(99, 178, 255, 0.24),
      0 28px 62px rgba(0, 0, 0, 0.38);
  }
}

@keyframes halo-pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) translateZ(10px) scale(0.94);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -50%) translateZ(10px) scale(1.12);
    opacity: 1;
  }
}

@keyframes orb-drift {
  0%,
  100% {
    transform: translate(-50%, -50%) translateZ(34px) scale(1);
  }
  50% {
    transform: translate(-50%, -56%) translateZ(42px) scale(1.08);
  }
}

@keyframes shadow-breathe {
  0%,
  100% {
    transform: translateZ(-60px) scaleX(0.9);
    opacity: 0.72;
  }
  50% {
    transform: translateZ(-60px) scaleX(1.08);
    opacity: 1;
  }
}

@keyframes chip-float-a {
  0%,
  100% {
    transform: rotate(16deg) translate3d(0, 0, -10px);
  }
  50% {
    transform: rotate(22deg) translate3d(6px, -8px, 0);
  }
}

@keyframes chip-float-b {
  0%,
  100% {
    transform: rotate(-14deg) translate3d(0, 0, -16px);
  }
  50% {
    transform: rotate(-22deg) translate3d(-6px, 8px, -2px);
  }
}

.metrics,
.services,
.vision,
.company {
  padding: 42px 0 120px;
}

.section-heading {
  margin-bottom: 28px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-size: 0.76rem;
  text-shadow: 0 0 18px color-mix(in srgb, var(--theme-primary) 34%, transparent);
}

.section-tag::before {
  content: "";
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, rgba(101, 217, 255, 0), rgba(101, 217, 255, 0.8));
}

.section-heading h3,
.services__lead h3,
.vision__frame h3 {
  margin: 14px 0 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.12;
  text-wrap: balance;
}

.metrics__grid,
.services__grid,
.company__grid {
  display: grid;
  gap: 20px;
}

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

.glass-card {
  padding: 28px;
  border-radius: 26px;
}

.card-index {
  display: inline-block;
  margin-bottom: 20px;
  color: rgba(101, 217, 255, 0.85);
  font-family: "Orbitron", sans-serif;
  font-size: 0.88rem;
}

.glass-card h4,
.service-card h4 {
  margin: 0 0 14px;
  font-size: 1.3rem;
}

.services {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: start;
}

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

.service-card {
  min-height: 100%;
  padding: 26px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(101, 217, 255, 0.12), rgba(255, 255, 255, 0.03)),
    var(--panel-strong);
}

.service-card::after,
.glass-card::after,
.vision__frame::after,
.company__note::after,
.hero__panel::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--theme-primary) 24%, transparent), transparent 72%);
  opacity: 0.8;
  pointer-events: none;
}

.service-card__label {
  color: var(--secondary);
  font-size: 0.7rem;
}

.vision__frame {
  padding: clamp(28px, 5vw, 64px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 10%, rgba(78, 125, 255, 0.2), transparent 35%),
    radial-gradient(circle at 85% 60%, rgba(29, 240, 177, 0.12), transparent 30%),
    var(--panel-strong);
}

.company__grid {
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.8fr);
  align-items: start;
}

.company__table dl {
  margin: 0;
}

.company__table div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.company__table div:first-child {
  padding-top: 0;
}

.company__table div:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.company__table dt {
  color: var(--muted);
  font-weight: 700;
}

.company__table dd {
  margin: 0;
  line-height: 1.8;
}

.company__note {
  padding: 26px;
  border-radius: 26px;
}

.opening {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(101, 217, 255, 0.16), transparent 25%),
    linear-gradient(180deg, rgba(3, 8, 15, 0.94), rgba(1, 4, 8, 0.98));
  z-index: 100;
  overflow: hidden;
}

.opening::before,
.opening::after {
  content: "";
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  border: 1px solid rgba(101, 217, 255, 0.12);
  animation: opening-spin 16s linear infinite;
}

.opening::after {
  inset: 8%;
  border-style: dashed;
  animation-direction: reverse;
  animation-duration: 22s;
}

.opening__noise,
.opening__grid,
.opening__flash,
.opening__core {
  position: absolute;
  inset: 0;
}

.opening__noise {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: screen;
  opacity: 0.25;
}

.opening__grid {
  background:
    linear-gradient(rgba(101, 217, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 217, 255, 0.08) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle at center, black 25%, transparent 70%);
  animation: grid-pulse 3s ease-in-out infinite;
}

.opening__core {
  inset: auto;
  width: 24vmin;
  height: 24vmin;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(101, 217, 255, 0.3) 34%, transparent 64%);
  filter: blur(4px);
  box-shadow:
    0 0 60px rgba(101, 217, 255, 0.55),
    0 0 180px rgba(78, 125, 255, 0.25);
  animation: core-beat 2.6s ease-in-out infinite;
}

.opening__flash {
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.24), transparent 28%),
    linear-gradient(90deg, transparent, rgba(101, 217, 255, 0.18), transparent);
  opacity: 0;
  animation: flash-burst 3.2s ease forwards;
}

.opening__copy {
  position: relative;
  text-align: center;
  z-index: 2;
  padding: 0 20px;
}

.opening__eyebrow,
.opening__lead {
  color: rgba(239, 248, 255, 0.75);
  font-size: 0.72rem;
}

.opening__copy h1 {
  margin: 10px 0 14px;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2.8rem, 8vw, 6rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow:
    0 0 22px rgba(101, 217, 255, 0.5),
    0 0 60px rgba(78, 125, 255, 0.35);
}

.opening__meter {
  position: absolute;
  bottom: 10vh;
  width: min(420px, calc(100% - 40px));
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.opening__meter span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  box-shadow: 0 0 30px rgba(29, 240, 177, 0.65);
  animation: meter-load 2.8s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}

.opening.is-complete {
  animation: opening-out 1.2s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}

.reveal-item {
  opacity: 0;
  transform: translate3d(0, 68px, 0) scale(0.9) rotateX(-14deg);
  transform-origin: 50% 100%;
  filter: blur(8px);
  will-change: transform, opacity, filter;
}

.reveal-item.is-visible {
  animation: reveal-burst 1.15s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: var(--reveal-delay, 0s);
}

.hero__copy .reveal-item.is-visible:nth-child(2) {
  animation-name: reveal-hero-title;
}

.hero__actions.reveal-item.is-visible {
  animation-name: reveal-actions;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translate3d(0, 42px, 0) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes reveal-burst {
  0% {
    opacity: 0;
    transform: translate3d(0, 68px, 0) scale(0.9) rotateX(-14deg);
    filter: blur(8px);
  }
  58% {
    opacity: 1;
    transform: translate3d(0, -10px, 0) scale(1.02) rotateX(0deg);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes reveal-hero-title {
  0% {
    opacity: 0;
    transform: translate3d(0, 84px, 0) scale(0.84) rotateX(-22deg);
    filter: blur(10px);
  }
  55% {
    opacity: 1;
    transform: translate3d(0, -12px, 0) scale(1.04) rotateX(0deg);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes reveal-actions {
  0% {
    opacity: 0;
    transform: translate3d(0, 50px, 0) scale(0.92);
    filter: blur(8px);
  }
  50% {
    opacity: 1;
    transform: translate3d(0, -6px, 0) scale(1.03);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes meter-load {
  to {
    width: 100%;
  }
}

@keyframes opening-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes core-beat {
  0%,
  100% {
    transform: scale(0.85);
  }
  50% {
    transform: scale(1.08);
  }
}

@keyframes grid-pulse {
  50% {
    opacity: 0.45;
    transform: scale(1.04);
  }
}

@keyframes flash-burst {
  0%,
  18% {
    opacity: 0;
  }
  42% {
    opacity: 0.95;
  }
  100% {
    opacity: 0;
  }
}

@keyframes title-energy {
  0%,
  100% {
    transform: translate3d(0, 0, 0) skewX(0deg);
    text-shadow:
      0 0 24px color-mix(in srgb, var(--theme-primary) 32%, transparent),
      0 0 58px color-mix(in srgb, var(--theme-accent) 14%, transparent);
  }
  50% {
    transform: translate3d(0, -4px, 0) skewX(-2deg);
    text-shadow:
      0 0 34px color-mix(in srgb, var(--theme-primary) 44%, transparent),
      0 0 80px color-mix(in srgb, var(--theme-accent) 24%, transparent);
  }
}

@keyframes button-flare {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(18deg);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate3d(240%, 0, 0) rotate(18deg);
  }
}

@keyframes drift-slow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(2vw, -2vh, 0) scale(1.08);
  }
}

@keyframes pulse-cloud {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes aurora-wave {
  0%,
  100% {
    transform: rotate(22deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(14deg) translate3d(3vw, 2vh, 0);
  }
}

@keyframes grid-float {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(0, 110px, 0);
  }
}

@keyframes ring-rotate {
  to {
    rotate: 360deg;
  }
}

@keyframes opening-out {
  0% {
    opacity: 1;
    clip-path: inset(0 0 0 0 round 0);
    transform: scale(1);
  }
  65% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    clip-path: inset(0 0 100% 0 round 40px);
    transform: scale(1.06);
    visibility: hidden;
  }
}

@media (max-width: 1080px) {
  .bg-stage__ring--a {
    width: 28vw;
    height: 28vw;
  }

  .bg-stage__ring--b {
    width: 42vw;
    height: 42vw;
  }

  .bg-stage__beam {
    width: 32vw;
  }

  .hero,
  .services,
  .company__grid,
  .metrics__grid,
  .services__grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 128px;
  }

  .hero__panel {
    justify-self: stretch;
    width: 100%;
  }

  .hero-card-object {
    min-height: 320px;
  }
}

@media (max-width: 720px) {
  .bg-stage__grid {
    background-size: 72px 72px;
    opacity: 0.14;
  }

  .bg-stage__ring--a {
    top: 14vh;
    right: -8vw;
    width: 34vw;
    height: 34vw;
  }

  .bg-stage__ring--b {
    left: -14vw;
    bottom: 18vh;
    width: 54vw;
    height: 54vw;
  }

  .bg-stage__orb--a,
  .bg-stage__orb--b {
    width: 26vw;
    height: 26vw;
  }

  .bg-stage__beam {
    width: 42vw;
    height: 42vh;
    opacity: 0.22;
  }

  .site-header {
    padding: 16px 16px 10px;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .section {
    width: min(var(--max-width), calc(100% - 24px));
  }

  .hero {
    padding-top: 154px;
    min-height: auto;
  }

  .hero__panel {
    min-height: 330px;
    padding: 14px;
  }

  .hero-card-object {
    min-height: 286px;
  }

  .hero-card-object__back,
  .hero-card-object__card {
    width: min(208px, 74%);
    border-radius: 20px;
  }

  .hero-card-object__art {
    inset: 58px 18px 74px;
  }

  .hero-card-object__ring--a {
    width: 118px;
    height: 118px;
  }

  .hero-card-object__ring--b {
    width: 90px;
    height: 90px;
  }

  .hero-card-object__ring--c {
    width: 146px;
    height: 146px;
  }

  .hero-card-object__orb {
    width: 62px;
    height: 62px;
  }

  .hero-card-object__halo {
    width: 104px;
    height: 104px;
  }

  .hero-card-object__chip {
    width: 44px;
    height: 64px;
    border-radius: 14px;
  }

  .hero__actions {
    width: 100%;
  }

  .button {
    flex: 1 1 180px;
  }

  .hero__copy h2 {
    font-size: clamp(2.4rem, 13vw, 4rem);
  }

  .company__table div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .opening__copy h1 {
    font-size: clamp(2.3rem, 14vw, 4rem);
  }

  .opening__meter {
    bottom: 7vh;
  }

  .reveal-item {
    transform: translate3d(0, 40px, 0) scale(0.94);
  }
}

body.is-lite .site-header {
  backdrop-filter: none;
}

body.is-lite .floating-card,
body.is-lite .glass-card,
body.is-lite .service-card,
body.is-lite .company__note,
body.is-lite .vision__frame {
  backdrop-filter: none;
}

body.is-lite .ambient {
  filter: blur(18px);
  opacity: 0.28;
}

body.is-lite .bg-theme::before,
body.is-lite .bg-theme::after {
  opacity: 0.5;
}

body.is-lite .bg-stage__grid {
  animation: none;
  opacity: 0.06;
}

body.is-lite .bg-stage__objects {
  display: none;
}

body.is-lite .hero__copy h2 span {
  animation: none;
}

body.is-lite .hero-card-object__shine,
body.is-lite .hero-card-object__chip,
body.is-lite .hero-card-object__ring--c {
  display: none;
}

body.is-lite .hero-card-object__card {
  animation-duration: 9s;
}

body.is-lite .floating-card::before,
body.is-lite .glass-card::before,
body.is-lite .service-card::before,
body.is-lite .company__note::before,
body.is-lite .vision__frame::before {
  display: none;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-item {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
