:root {
  --ink: #f7fbff;
  --muted: rgba(247, 251, 255, 0.72);
  --night: #03040b;
  --deep: #080b16;
  --cyan: #25f4ff;
  --magenta: #ff2bd6;
  --violet: #8d63ff;
  --acid: #c8ff4d;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--night);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.is-menu-open {
  overflow-x: hidden;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid transparent;
  transition: background 250ms ease, border-color 250ms ease, backdrop-filter 250ms ease;
}

.site-header.is-scrolled {
  background: rgba(3, 4, 11, 0.78);
  border-color: rgba(37, 244, 255, 0.18);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  position: relative;
  z-index: 22;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(37, 244, 255, 0.78);
  background: linear-gradient(145deg, rgba(37, 244, 255, 0.22), rgba(255, 43, 214, 0.22));
  color: var(--cyan);
  position: relative;
  overflow: visible;
  box-shadow: 0 0 22px rgba(37, 244, 255, 0.28), inset 0 0 18px rgba(255, 43, 214, 0.16);
  animation: logo-pulse 3.8s ease-in-out infinite;
}

.logo-symbol,
.hero-logo-symbol {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.logo-orbit,
.logo-core {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-orbit {
  stroke-width: 3;
  stroke-dasharray: 24 14;
  filter: drop-shadow(0 0 8px currentColor);
}

.orbit-a {
  color: var(--cyan);
  stroke: var(--cyan);
  animation: orbit-dash 5.5s linear infinite;
}

.orbit-b {
  color: var(--magenta);
  stroke: var(--magenta);
  animation: orbit-dash 4.2s linear reverse infinite;
}

.logo-core {
  stroke: var(--ink);
  stroke-width: 5;
  filter: drop-shadow(0 0 10px rgba(247, 251, 255, 0.75));
}

.logo-spark {
  filter: drop-shadow(0 0 9px currentColor);
}

.spark-a {
  fill: var(--acid);
  color: var(--acid);
  animation: spark-pop 2.4s ease-in-out infinite;
}

.spark-b {
  fill: var(--magenta);
  color: var(--magenta);
  animation: spark-pop 2.4s ease-in-out 0.8s infinite;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  letter-spacing: 0.08em;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: rgba(247, 251, 255, 0.78);
  font-size: 13px;
}

.nav-mobile-brand {
  display: none;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  justify-self: end;
  place-items: center;
  position: relative;
  z-index: 22;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(37, 244, 255, 0.58);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 50%, rgba(37, 244, 255, 0.18), transparent 56%),
    linear-gradient(145deg, rgba(255, 43, 214, 0.2), rgba(3, 4, 11, 0.72));
  color: var(--ink);
  cursor: pointer;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 16px rgba(37, 244, 255, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.menu-toggle::before {
  display: none;
}

.menu-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 244, 255, 0.76);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 22px rgba(37, 244, 255, 0.26);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px 0;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
  box-shadow: 0 0 8px rgba(37, 244, 255, 0.54);
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(37, 244, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 0 18px rgba(37, 244, 255, 0.12);
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 122px clamp(18px, 5vw, 70px) 82px;
  isolation: isolate;
}

.hero-aurora,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-aurora {
  z-index: -4;
  background:
    radial-gradient(circle at 72% 28%, rgba(37, 244, 255, 0.34), transparent 28%),
    radial-gradient(circle at 88% 74%, rgba(255, 43, 214, 0.32), transparent 28%),
    radial-gradient(circle at 52% 65%, rgba(141, 99, 255, 0.2), transparent 34%),
    linear-gradient(90deg, #03040b 0%, #070914 45%, #120a26 100%);
}

.hero-aurora::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 4, 11, 0.96), rgba(3, 4, 11, 0.68) 42%, rgba(3, 4, 11, 0.2) 100%);
  content: "";
}

.hero-grid {
  z-index: -3;
  background-image:
    linear-gradient(rgba(37, 244, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 43, 214, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.6), transparent 78%);
  transform: translate(
    calc(var(--tilt-x, 0px) * -0.35),
    calc(var(--tilt-y, 0px) * -0.35)
  );
  transition: transform 160ms ease-out;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 810px;
}

.hero-logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 66px;
  margin-bottom: 22px;
  padding: 8px 18px 8px 9px;
  border: 1px solid rgba(37, 244, 255, 0.24);
  background: linear-gradient(135deg, rgba(37, 244, 255, 0.08), rgba(255, 43, 214, 0.09));
  color: rgba(247, 251, 255, 0.86);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  box-shadow: 0 0 34px rgba(37, 244, 255, 0.12);
  backdrop-filter: blur(16px);
  animation: lockup-float 5.8s ease-in-out infinite;
}

.hero-logo-symbol {
  width: 50px;
  height: 50px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(37, 244, 255, 0.42);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(4rem, 9vw, 8.6rem);
  line-height: 0.9;
  text-shadow: 0 0 38px rgba(37, 244, 255, 0.18), 0 0 72px rgba(255, 43, 214, 0.14);
}

.hero-lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 14px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  border-color: var(--cyan);
  background: linear-gradient(135deg, var(--cyan), #7dfff3);
  color: #061015;
  box-shadow: 0 0 32px rgba(37, 244, 255, 0.32);
}

.hero-cta {
  position: relative;
  overflow: hidden;
  border-color: rgba(37, 244, 255, 0.88);
  background:
    linear-gradient(135deg, #25f4ff 0%, #7dfff3 48%, #c8ff4d 100%);
  color: #031018;
  text-shadow: none;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18) inset,
    0 0 28px rgba(37, 244, 255, 0.45),
    0 14px 42px rgba(37, 244, 255, 0.22);
}

.hero-cta::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.52) 42%, transparent 62%);
  content: "";
  opacity: 0.42;
  transform: translateX(-110%);
  transition: transform 420ms ease;
}

.hero-cta:hover {
  background:
    linear-gradient(135deg, #21e9ff 0%, #9effff 46%, #d9ff72 100%);
  color: #020b12;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.24) inset,
    0 0 36px rgba(37, 244, 255, 0.58),
    0 18px 50px rgba(255, 43, 214, 0.2);
}

.hero-cta:hover::after {
  transform: translateX(110%);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
}

.floating-stage {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  transition: transform 300ms ease-out;
}

.orbit-system {
  position: absolute;
  border: 1px solid rgba(37, 244, 255, 0.28);
  border-radius: 50%;
  box-shadow:
    0 0 24px rgba(37, 244, 255, 0.16),
    inset 0 0 28px rgba(255, 43, 214, 0.12);
}

.orbit-system::before,
.orbit-system::after {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 18px var(--acid);
  content: "";
}

.orbit-system::before {
  top: 12%;
  left: 23%;
}

.orbit-system::after {
  right: 18%;
  bottom: 16%;
  background: var(--magenta);
  box-shadow: 0 0 18px var(--magenta);
}

.orbit-one {
  top: 12%;
  right: 3%;
  width: min(42vw, 520px);
  aspect-ratio: 1;
  animation: spin-slow 18s linear infinite;
}

.orbit-two {
  right: 22%;
  bottom: 6%;
  width: min(26vw, 310px);
  aspect-ratio: 1;
  border-color: rgba(255, 43, 214, 0.24);
  animation: spin-slow 14s linear reverse infinite;
}

.signal-chip {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 68px;
  min-height: 32px;
  border: 1px solid rgba(200, 255, 77, 0.5);
  background: rgba(3, 4, 11, 0.58);
  color: var(--acid);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 0 18px rgba(200, 255, 77, 0.16);
  backdrop-filter: blur(12px);
}

.chip-one {
  top: 29%;
  right: 41%;
  animation: chip-drift 6.8s ease-in-out infinite;
}

.chip-two {
  right: 9%;
  bottom: 39%;
  color: var(--cyan);
  border-color: rgba(37, 244, 255, 0.48);
  animation: chip-drift 7.5s ease-in-out 1s infinite reverse;
}

.float-object {
  position: absolute;
  overflow: visible;
  filter: drop-shadow(0 0 16px rgba(37, 244, 255, 0.2));
  transition: transform 240ms ease, filter 240ms ease;
}

.burger-object {
  top: 18%;
  right: 12%;
  width: min(34vw, 390px);
  animation: float-burger 7s ease-in-out infinite;
}

.cocktail-object {
  top: 34%;
  right: 32%;
  width: min(24vw, 250px);
  animation: float-cocktail 8.5s ease-in-out infinite;
}

.plate-object {
  right: 7%;
  bottom: 9%;
  width: min(28vw, 310px);
  animation: float-plate 9s ease-in-out infinite;
}

.neon {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 10;
  filter:
    drop-shadow(0 0 5px currentColor)
    drop-shadow(0 0 16px currentColor);
}

.thin {
  stroke-width: 5;
}

.cyan {
  stroke: var(--cyan);
}

.magenta {
  stroke: var(--magenta);
}

.violet {
  stroke: var(--violet);
}

.acid {
  stroke: var(--acid);
}

.dot {
  filter: drop-shadow(0 0 10px currentColor);
}

.cyan-fill {
  fill: var(--cyan);
  color: var(--cyan);
}

.magenta-fill {
  fill: var(--magenta);
  color: var(--magenta);
}

.acid-fill {
  fill: var(--acid);
  color: var(--acid);
}

.hero-card {
  position: absolute;
  z-index: 4;
  right: clamp(18px, 5vw, 70px);
  bottom: 70px;
  width: min(365px, calc(100vw - 36px));
  padding: 24px;
  border: 1px solid rgba(37, 244, 255, 0.34);
  background: linear-gradient(145deg, rgba(8, 11, 22, 0.74), rgba(39, 11, 48, 0.54));
  box-shadow: var(--shadow), inset 0 0 28px rgba(255, 43, 214, 0.08);
  backdrop-filter: blur(22px);
}

.hero-card span {
  display: block;
  color: var(--acid);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-top: 10px;
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.08;
}

.hero-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.intro-band {
  background: linear-gradient(90deg, #06111d, #102638 42%, #2b0f3b);
  color: var(--ink);
}

.intro-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px clamp(18px, 5vw, 70px);
}

.intro-inner p {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(1.2rem, 2.8vw, 2rem);
  line-height: 1.2;
}

.intro-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.intro-stats span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid rgba(37, 244, 255, 0.28);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(247, 251, 255, 0.88);
  font-size: 13px;
  white-space: nowrap;
}

.intro-stats strong {
  color: var(--magenta);
}

.section {
  padding: 100px clamp(18px, 5vw, 70px);
}

.services {
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 43, 214, 0.16), transparent 32%),
    linear-gradient(135deg, #03040b 0%, #081320 46%, #1d0a2a 100%);
  color: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1.28fr);
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto 46px;
  align-items: end;
}

.section-heading h2,
.operations h2,
.contact-section h2 {
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  line-height: 1;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card {
  min-height: 320px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(37, 244, 255, 0.09), rgba(255, 43, 214, 0.04)),
    rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 40px rgba(37, 244, 255, 0.06);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 244, 255, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0 58px rgba(37, 244, 255, 0.12);
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 43, 214, 0.58);
  color: var(--cyan);
  font-weight: 900;
  box-shadow: 0 0 24px rgba(255, 43, 214, 0.18);
}

.service-card h3 {
  margin: 86px 0 14px;
  font-family: Georgia, serif;
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  font-weight: 500;
  line-height: 1.05;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.operations {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(30px, 7vw, 90px);
  align-items: center;
  padding: 110px clamp(18px, 5vw, 70px);
  background:
    radial-gradient(circle at 16% 30%, rgba(37, 244, 255, 0.2), transparent 30%),
    linear-gradient(135deg, #e8fbff, #fce6ff 52%, #e9fff6);
  color: #061015;
}

.brands-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  padding: 105px clamp(18px, 5vw, 70px);
  background:
    radial-gradient(circle at 80% 24%, rgba(37, 244, 255, 0.16), transparent 30%),
    radial-gradient(circle at 18% 76%, rgba(255, 43, 214, 0.13), transparent 34%),
    #050713;
  color: var(--ink);
}

.brands-copy {
  max-width: 780px;
}

.brands-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 1;
}

.brands-copy p:last-child {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.coming-soon-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: 28px;
  border: 1px solid rgba(37, 244, 255, 0.22);
  background:
    linear-gradient(145deg, rgba(37, 244, 255, 0.1), rgba(255, 43, 214, 0.06)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32), inset 0 0 40px rgba(255, 43, 214, 0.08);
  overflow: hidden;
}

.coming-soon-card::after {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  content: "";
}

.coming-soon-icon {
  width: min(58vw, 180px);
  height: auto;
  overflow: visible;
}

.soon-orbit,
.soon-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px currentColor);
}

.soon-orbit {
  stroke-width: 4;
  stroke-dasharray: 18 10;
  animation: orbit-dash 5s linear infinite;
}

.soon-line {
  stroke-width: 7;
}

.soon-cyan {
  color: var(--cyan);
  stroke: var(--cyan);
}

.soon-magenta {
  color: var(--magenta);
  stroke: var(--magenta);
}

.soon-acid {
  color: var(--acid);
  stroke: var(--acid);
}

.soon-dot {
  fill: var(--acid);
  filter: drop-shadow(0 0 14px var(--acid));
  animation: spark-pop 2.4s ease-in-out infinite;
}

.coming-soon-card span {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  color: var(--acid);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.signature-copy {
  max-width: 760px;
}

.signature-copy .eyebrow {
  color: #a90094;
  text-shadow: none;
}

.signature-copy p:last-child {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(6, 16, 21, 0.72);
  font-size: 1.05rem;
  line-height: 1.75;
}

.signature-panel {
  padding: 16px;
  border: 1px solid rgba(6, 16, 21, 0.14);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 26px 80px rgba(31, 103, 142, 0.2);
}

.panel-line {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 18px;
  align-items: center;
  min-height: 92px;
  padding: 18px;
  border-bottom: 1px solid rgba(6, 16, 21, 0.12);
}

.panel-line:last-child {
  border-bottom: 0;
}

.panel-line span {
  color: #a90094;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.panel-line strong {
  font-family: Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1.05;
}

.contact-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(150px, 0.22fr) minmax(0, 0.88fr) minmax(360px, 0.78fr);
  gap: clamp(36px, 6vw, 78px);
  align-items: start;
  padding: 86px clamp(18px, 5vw, 70px);
  background:
    linear-gradient(135deg, rgba(37, 244, 255, 0.08), transparent 34%),
    linear-gradient(315deg, rgba(255, 43, 214, 0.14), transparent 42%),
    #03040b;
}

.contact-section::after {
  position: absolute;
  right: -8vw;
  bottom: -16vw;
  width: 42vw;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 43, 214, 0.16);
  border-radius: 50%;
  box-shadow: inset 0 0 70px rgba(255, 43, 214, 0.08);
  content: "";
  pointer-events: none;
}

.contact-orb {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  justify-self: center;
  width: clamp(142px, 16vw, 220px);
  aspect-ratio: 1;
  border: 1px solid rgba(37, 244, 255, 0.32);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 50%, rgba(37, 244, 255, 0.18), transparent 58%),
    radial-gradient(circle at 68% 30%, rgba(255, 43, 214, 0.2), transparent 32%),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    0 0 44px rgba(37, 244, 255, 0.18),
    inset 0 0 38px rgba(255, 43, 214, 0.12);
  animation: contact-orb-float 6s ease-in-out infinite;
}

.contact-orb::before,
.contact-orb::after {
  position: absolute;
  border: 1px solid rgba(37, 244, 255, 0.2);
  content: "";
  pointer-events: none;
}

.contact-orb::before {
  inset: 18px;
  border-radius: 22px;
}

.contact-orb::after {
  inset: -18px;
  border-radius: 34px;
  border-color: rgba(255, 43, 214, 0.16);
}

.contact-orb-icon {
  width: 70%;
  height: 70%;
  overflow: visible;
}

.contact-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  min-width: 0;
  padding-top: 10px;
}

.contact-copy h2 {
  max-width: 760px;
  font-size: clamp(1.35rem, 2.25vw, 2.45rem);
  line-height: 1.24;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 72px;
  padding: 0 30px;
  border: 1px solid rgba(37, 244, 255, 0.56);
  background: linear-gradient(135deg, rgba(37, 244, 255, 0.2), rgba(255, 43, 214, 0.32));
  color: var(--ink);
  font-weight: 900;
  box-shadow: var(--shadow);
}

.contact-actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  min-width: 0;
}

.contact-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(37, 244, 255, 0.2);
  background:
    linear-gradient(145deg, rgba(37, 244, 255, 0.08), rgba(255, 43, 214, 0.055)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32), inset 0 0 36px rgba(255, 43, 214, 0.06);
  backdrop-filter: blur(16px);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.contact-form label span {
  color: rgba(247, 251, 255, 0.72);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(3, 4, 11, 0.56);
  color: var(--ink);
  font: inherit;
  outline: none;
  padding: 0 13px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form textarea {
  min-height: 132px;
  padding: 13px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(37, 244, 255, 0.62);
  background: rgba(3, 4, 11, 0.74);
  box-shadow: 0 0 0 3px rgba(37, 244, 255, 0.12);
}

.contact-form option {
  background: #080b16;
  color: var(--ink);
}

.form-consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(37, 244, 255, 0.14);
  background: rgba(3, 4, 11, 0.34);
}

.form-consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--cyan);
}

.form-consent span {
  letter-spacing: 0;
  line-height: 1.55;
  text-transform: none;
}

.form-consent a {
  color: var(--cyan);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 1px solid rgba(37, 244, 255, 0.45);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-submit {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.form-status {
  display: none;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(37, 244, 255, 0.22);
  background:
    linear-gradient(135deg, rgba(37, 244, 255, 0.08), rgba(255, 43, 214, 0.06)),
    rgba(3, 4, 11, 0.74);
  color: rgba(247, 251, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.5;
  box-shadow: inset 0 0 24px rgba(37, 244, 255, 0.06);
}

.form-status.is-visible {
  display: block;
}

.form-status.is-loading {
  border-color: rgba(37, 244, 255, 0.36);
  color: var(--cyan);
}

.form-direct-link {
  justify-self: stretch;
  min-height: 64px;
  padding: 0 20px;
  font-size: 0.92rem;
}

.form-status.is-success {
  border-color: rgba(172, 255, 72, 0.42);
  background:
    linear-gradient(135deg, rgba(172, 255, 72, 0.12), rgba(37, 244, 255, 0.06)),
    rgba(3, 4, 11, 0.78);
  color: var(--acid);
}

.form-status.is-error {
  border-color: rgba(255, 43, 214, 0.46);
  background:
    linear-gradient(135deg, rgba(255, 43, 214, 0.16), rgba(37, 244, 255, 0.06)),
    rgba(3, 4, 11, 0.78);
  color: #ff8ccf;
}

.email-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  overflow: visible;
}

.email-frame,
.email-line {
  fill: none;
  stroke: var(--cyan);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
  filter:
    drop-shadow(0 0 5px rgba(37, 244, 255, 0.9))
    drop-shadow(0 0 14px rgba(255, 43, 214, 0.38));
}

.email-line {
  stroke: var(--magenta);
}

.email-line.thin {
  stroke-width: 2.6;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 70px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #03040b;
  color: rgba(247, 251, 255, 0.58);
  font-size: 13px;
}

.footer a {
  color: rgba(247, 251, 255, 0.76);
  text-decoration: none;
}

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

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 12%, rgba(37, 244, 255, 0.14), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(255, 43, 214, 0.16), transparent 32%),
    #03040b;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(18px, 5vw, 70px);
}

.legal-shell {
  width: min(1040px, calc(100% - 36px));
  margin: 0 auto;
  padding: 44px 0 86px;
}

.legal-hero {
  max-width: 820px;
  margin-bottom: 28px;
}

.legal-hero h1 {
  font-size: clamp(2.4rem, 7vw, 5.8rem);
  line-height: 0.95;
}

.legal-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
}

.legal-card {
  padding: clamp(22px, 4vw, 44px);
  border: 1px solid rgba(37, 244, 255, 0.18);
  background:
    linear-gradient(145deg, rgba(37, 244, 255, 0.07), rgba(255, 43, 214, 0.045)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3), inset 0 0 34px rgba(37, 244, 255, 0.04);
}

.legal-card h2 {
  margin-top: 30px;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  color: rgba(247, 251, 255, 0.78);
  line-height: 1.72;
}

.legal-card ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 20px;
  color: rgba(247, 251, 255, 0.78);
  line-height: 1.7;
}

.legal-card li::marker {
  color: var(--cyan);
}

.legal-card a {
  color: var(--cyan);
  font-weight: 850;
  text-decoration: none;
  border-bottom: 1px solid rgba(37, 244, 255, 0.45);
}

.legal-updated {
  margin-top: 34px;
  color: var(--acid);
  font-weight: 850;
}

.error-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 75% 25%, rgba(255, 43, 214, 0.18), transparent 32%),
    radial-gradient(circle at 20% 80%, rgba(37, 244, 255, 0.18), transparent 34%),
    #03040b;
}

.error-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.75fr);
  align-items: center;
  gap: clamp(32px, 7vw, 100px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(28px, 6vw, 80px);
}

.error-copy {
  min-width: 0;
}

.error-mark {
  width: 92px;
  height: 92px;
  margin-bottom: 28px;
}

.error-shell h1 {
  font-size: clamp(3rem, 9vw, 7rem);
}

.error-page-403 .error-shell h1 {
  font-size: clamp(2.45rem, 6.2vw, 5.2rem);
  line-height: 1.02;
}

.error-shell p:not(.eyebrow) {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.error-robot {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.error-robot::before {
  position: absolute;
  width: min(38vw, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(37, 244, 255, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(37, 244, 255, 0.1), transparent 58%),
    radial-gradient(circle at 70% 34%, rgba(255, 43, 214, 0.12), transparent 34%);
  box-shadow: inset 0 0 60px rgba(255, 43, 214, 0.08), 0 0 42px rgba(37, 244, 255, 0.1);
  content: "";
}

.error-robot svg {
  position: relative;
  z-index: 1;
  width: min(34vw, 390px);
  max-width: 100%;
  overflow: visible;
  animation: contact-orb-float 6.5s ease-in-out infinite;
}

.robot-line,
.robot-glow {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 9;
  filter:
    drop-shadow(0 0 5px currentColor)
    drop-shadow(0 0 16px currentColor);
}

.robot-glow {
  stroke-width: 7;
}

.robot-line.thin {
  stroke-width: 6;
}

.robot-dot {
  fill: var(--acid);
  filter: drop-shadow(0 0 14px var(--acid));
}

@keyframes float-burger {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-5deg);
  }
  50% {
    transform: translate3d(-16px, -22px, 0) rotate(4deg);
  }
}

@keyframes float-cocktail {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(9deg);
  }
  50% {
    transform: translate3d(18px, 26px, 0) rotate(-4deg);
  }
}

@keyframes float-plate {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(8deg);
  }
  50% {
    transform: translate3d(-18px, 16px, 0) rotate(-7deg);
  }
}

@keyframes logo-pulse {
  0%, 100% {
    box-shadow: 0 0 22px rgba(37, 244, 255, 0.28), inset 0 0 18px rgba(255, 43, 214, 0.16);
  }
  50% {
    box-shadow: 0 0 36px rgba(37, 244, 255, 0.46), inset 0 0 28px rgba(255, 43, 214, 0.28);
  }
}

@keyframes orbit-dash {
  to {
    stroke-dashoffset: -76;
  }
}

@keyframes spark-pop {
  0%, 100% {
    opacity: 0.6;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.28);
  }
}

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

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

@keyframes chip-drift {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-4deg);
  }
  50% {
    transform: translate3d(18px, -16px, 0) rotate(5deg);
  }
}

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

@keyframes contact-orb-float {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-3deg);
  }
  50% {
    transform: translate3d(0, -12px, 0) rotate(4deg);
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: auto;
    z-index: 19;
    width: min(330px, calc(100vw - 32px));
    display: grid;
    align-content: start;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(37, 244, 255, 0.26);
    background:
      radial-gradient(circle at 100% 0%, rgba(255, 43, 214, 0.18), transparent 34%),
      linear-gradient(145deg, rgba(3, 4, 11, 0.96), rgba(13, 9, 28, 0.94));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.46), 0 0 28px rgba(37, 244, 255, 0.12);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.is-menu-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header.is-menu-open {
    background: rgba(3, 4, 11, 0.78);
    border-color: rgba(37, 244, 255, 0.18);
    backdrop-filter: blur(18px);
  }

  .nav-mobile-brand {
    display: none;
  }

  .nav-mobile-brand span {
    display: none;
  }

  .nav-mobile-brand small {
    display: none;
  }

  .nav a {
    position: relative;
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 12px 0 44px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
      linear-gradient(90deg, rgba(37, 244, 255, 0.08), rgba(255, 43, 214, 0.04)),
      rgba(255, 255, 255, 0.035);
    color: rgba(247, 251, 255, 0.92);
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: 14px;
    font-weight: 850;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  }

  .nav a::before {
    position: absolute;
    left: 14px;
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border: 1px solid rgba(37, 244, 255, 0.32);
    color: var(--cyan);
    font-size: 9px;
    font-weight: 950;
    box-shadow: 0 0 14px rgba(37, 244, 255, 0.18);
  }

  .nav a:nth-of-type(1)::before {
    content: "01";
  }

  .nav a:nth-of-type(2)::before {
    content: "02";
  }

  .nav a:nth-of-type(3)::before {
    content: "03";
  }

  .nav a:nth-of-type(4)::before {
    content: "04";
  }

  .menu-toggle {
    display: grid;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 91vh;
    padding-top: 112px;
  }

  .floating-stage {
    opacity: 0.52;
  }

  .burger-object {
    top: 18%;
    right: -5%;
    width: 320px;
  }

  .cocktail-object {
    top: 48%;
    right: 0;
    width: 200px;
  }

  .plate-object {
    right: -7%;
    bottom: 18%;
    width: 240px;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 48px;
  }

  .intro-inner,
  .section-heading,
  .operations,
  .brands-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-orb {
    justify-self: center;
  }

  .contact-actions,
  .contact-form {
    width: 100%;
  }

  .intro-stats {
    justify-content: flex-start;
  }

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

  .coming-soon-card {
    min-height: 260px;
  }

  .error-shell {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .error-robot {
    min-height: 260px;
  }

  .error-robot svg {
    width: min(72vw, 310px);
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand strong {
    font-size: 13px;
  }

  .brand small {
    font-size: 11px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .hero-logo-lockup {
    min-height: 58px;
    margin-bottom: 18px;
    padding-right: 14px;
    font-size: 11px;
  }

  .hero-logo-symbol {
    width: 42px;
    height: 42px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero {
    min-height: 90vh;
    padding: 104px 16px 56px;
  }

  h1 {
    font-size: clamp(3.1rem, 16vw, 4.8rem);
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.58;
  }

  .button {
    flex: 1 1 150px;
    min-width: 0;
  }

  .burger-object {
    top: 16%;
    right: -92px;
    width: 260px;
  }

  .cocktail-object {
    top: 56%;
    right: -42px;
    width: 150px;
  }

  .plate-object {
    display: none;
  }

  .orbit-one {
    right: -160px;
    width: 360px;
  }

  .orbit-two,
  .signal-chip {
    display: none;
  }

  .intro-stats span {
    width: 100%;
  }

  .section,
  .operations,
  .brands-section,
  .contact-section {
    padding: 74px 16px;
  }

  .service-card {
    min-height: 280px;
  }

  .service-card h3 {
    margin-top: 66px;
  }

  .panel-line {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 84px;
  }

  .contact-link {
    width: 100%;
    padding: 0 16px;
    font-size: 0.92rem;
  }

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

  .contact-form {
    padding: 18px;
  }

  .contact-orb {
    width: min(72vw, 230px);
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 16px;
  }

  .legal-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-header .button {
    width: 100%;
    justify-content: center;
  }
}
