:root {
  --bg: #090111;
  --bg-2: #14031e;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --line: rgba(255, 255, 255, 0.11);
  --text: #f8f1ff;
  --muted: #beb0d4;
  --soft: #a489c2;
  --violet: #b100ff;
  --violet-deep: #7b15ff;
  --magenta: #d100ff;
  --glow: #dd7aff;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
  --container: 1240px;
  --radius: 5px;
  --radius-sm: 5px;
  --scene-y: 0px;
  --mouse-x: 0px;
  --mouse-y: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: rgba(193, 84, 255, 0.92) rgba(18, 5, 28, 0.92);
}

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

::-webkit-scrollbar-track {
  background: linear-gradient(180deg, rgba(15, 4, 24, 0.98), rgba(24, 7, 34, 0.98));
  border-left: 1px solid rgba(255, 255, 255, 0.04);
}

::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(177, 0, 255, 0.98), rgba(123, 21, 255, 0.94), rgba(209, 0, 255, 0.9)) padding-box;
  box-shadow:
    0 0 22px rgba(177, 0, 255, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(180deg, rgba(198, 84, 255, 1), rgba(145, 42, 255, 0.96), rgba(224, 71, 255, 0.92)) padding-box;
}

::-webkit-scrollbar-corner {
  background: rgba(15, 4, 24, 0.98);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(177, 0, 255, 0.18), transparent 20%),
    radial-gradient(circle at 78% 12%, rgba(209, 0, 255, 0.14), transparent 18%),
    linear-gradient(180deg, #090111 0%, #100217 34%, #170522 100%);
  color: var(--text);
  font-family: "Inter", sans-serif;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.site-shell {
  position: relative;
}

.floating-contact-dock {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.floating-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(177, 0, 255, 0.92), rgba(123, 21, 255, 0.92));
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(177, 0, 255, 0.18);
  backdrop-filter: blur(18px);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.floating-contact-link svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: #ffffff;
}

.floating-contact-link::after {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 0.75rem);
  padding: 0.55rem 0.75rem;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 1, 17, 0.9);
  color: #f4ebff;
  font-size: 0.78rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
}

.floating-contact-link:hover {
  transform: translateY(-3px);
  border-color: rgba(221, 122, 255, 0.24);
  box-shadow:
    0 22px 44px rgba(0, 0, 0, 0.32),
    0 0 28px rgba(177, 0, 255, 0.24);
}

.floating-contact-link:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.floating-contact-link.is-instagram {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    linear-gradient(135deg, rgba(209, 0, 255, 0.92), rgba(177, 0, 255, 0.88));
}

.noise-layer {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -5;
  opacity: 0.08;
  background-image:
    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: 120px 120px;
  mask-image: radial-gradient(circle at center, black, transparent 88%);
}

.scroll-scene {
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  perspective: 1600px;
  transform-style: preserve-3d;
}

.scene-orb,
.scene-grid-plane,
.scene-object {
  position: absolute;
  will-change: transform;
}

.scene-orb {
  border-radius: 999px;
  filter: blur(110px);
}

.orb-one {
  top: 10%;
  left: 4%;
  width: 320px;
  height: 320px;
  background: rgba(161, 76, 255, 0.28);
  transform: translate3d(calc(var(--mouse-x) * -0.08), calc(var(--scene-y) * 0.18 + var(--local-shift, 0px)), 0);
}

.orb-two {
  top: 42%;
  right: 4%;
  width: 360px;
  height: 360px;
  background: rgba(255, 107, 214, 0.2);
  transform: translate3d(calc(var(--mouse-x) * 0.06), calc(var(--scene-y) * -0.12 + var(--local-shift, 0px)), 0);
}

.scene-grid-plane {
  left: 50%;
  bottom: -20vh;
  width: 120vw;
  height: 55vh;
  transform: translateX(-50%) rotateX(78deg) translateY(calc(var(--scene-y) * 0.08 + var(--local-shift, 0px)));
  background-image:
    linear-gradient(rgba(221, 122, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(221, 122, 255, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 16%);
  background-size: 72px 72px, 72px 72px, 100% 100%;
  opacity: 0.24;
  mask-image: linear-gradient(to top, black 15%, transparent 82%);
}

.scene-object {
  transform-style: preserve-3d;
}

.scene-ring {
  top: 12%;
  right: 18%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 60px rgba(177, 0, 255, 0.2),
    inset 0 0 50px rgba(209, 0, 255, 0.06);
  transform:
    translate3d(calc(var(--mouse-x) * 0.04), calc(var(--scene-y) * -0.24 + var(--local-shift, 0px) + var(--mouse-y) * 0.03), 0)
    rotateX(72deg)
    rotateY(18deg)
    rotateZ(16deg);
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.015), transparent 58%),
    conic-gradient(from 90deg, rgba(177, 0, 255, 0.18), transparent 22%, rgba(123, 21, 255, 0.14) 38%, transparent 56%, rgba(209, 0, 255, 0.16) 74%, transparent 88%);
}

.scene-ring::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 1px dashed rgba(221, 122, 255, 0.18);
  opacity: 0.9;
}

.ring-core {
  position: absolute;
  inset: 24%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 0 40px rgba(214, 135, 255, 0.08),
    0 0 22px rgba(177, 0, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 36%),
    radial-gradient(circle at center, rgba(177, 0, 255, 0.1), transparent 64%);
}

.scene-cube {
  top: 48%;
  left: 8%;
  width: 150px;
  height: 150px;
  transform:
    translate3d(calc(var(--mouse-x) * -0.03), calc(var(--scene-y) * -0.34 + var(--local-shift, 0px)), 0)
    rotateX(58deg)
    rotateY(-28deg)
    rotateZ(8deg);
}

.scene-cube .face {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 18%),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.07) 0,
      rgba(255, 255, 255, 0.07) 1px,
      transparent 1px,
      transparent 16px
    ),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(177, 0, 255, 0.035));
  backdrop-filter: blur(18px);
  box-shadow:
    inset 0 0 40px rgba(214, 135, 255, 0.06),
    inset 0 22px 0 rgba(255, 255, 255, 0.025);
}

.face-front { transform: translateZ(75px); }
.face-back { transform: rotateY(180deg) translateZ(75px); }
.face-left { transform: rotateY(-90deg) translateZ(75px); }
.face-right { transform: rotateY(90deg) translateZ(75px); }
.face-top { transform: rotateX(90deg) translateZ(75px); }
.face-bottom { transform: rotateX(-90deg) translateZ(75px); }

.scene-panel {
  top: 58%;
  right: 10%;
  width: 300px;
  height: 180px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(209, 0, 255, 0.035));
  backdrop-filter: blur(18px);
  box-shadow:
    var(--shadow),
    inset 0 0 60px rgba(214, 135, 255, 0.08);
  transform:
    translate3d(calc(var(--mouse-x) * 0.05), calc(var(--scene-y) * -0.2 + var(--local-shift, 0px) + var(--mouse-y) * -0.02), 0)
    rotateX(68deg)
    rotateY(-12deg)
    rotateZ(-24deg);
}

.scene-panel::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 16px;
  height: 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 10px center, rgba(209, 0, 255, 0.9) 0 3px, transparent 4px),
    radial-gradient(circle at 28px center, rgba(177, 0, 255, 0.6) 0 3px, transparent 4px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 38%);
}

.panel-lines {
  position: absolute;
  inset: 44px 18px 18px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 22%),
    linear-gradient(90deg, rgba(177, 0, 255, 0.18), transparent 34%),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08) 0,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px,
      transparent 18px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 64px
    );
}

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

.section {
  position: relative;
  padding: 7rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(9, 1, 17, 0.54);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition:
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease,
    background 0.28s ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 10px));
  opacity: 0;
}

.header-row,
.hero-actions,
.statement-layout,
.footer-row {
  display: flex;
}

.header-row {
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.72rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-logo {
  display: block;
  width: 118px;
  height: auto;
  filter:
    drop-shadow(0 0 24px rgba(177, 0, 255, 0.16))
    drop-shadow(0 0 40px rgba(123, 21, 255, 0.12));
}

.footer-brand .brand-logo {
  width: 132px;
}

.main-nav {
  display: flex;
  gap: 2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.mobile-nav {
  display: none;
}

.main-nav a,
.mobile-nav a,
.footer-links a {
  transition: color 0.25s ease;
}

.main-nav a:hover,
.mobile-nav a:hover,
.footer-links a:hover {
  color: white;
}

.main-nav a.is-active {
  color: white;
  position: relative;
}

.main-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.7rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(177, 0, 255, 0.95), rgba(255, 107, 214, 0.95));
  box-shadow: 0 0 18px rgba(177, 0, 255, 0.3);
}

.mobile-nav-toggle {
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.04);
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  transition:
    border-color 0.24s ease,
    background 0.24s ease,
    box-shadow 0.24s ease,
    transform 0.24s ease;
}

.mobile-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #f2e9ff;
  transition:
    transform 0.24s ease,
    opacity 0.24s ease;
}

.mobile-nav-toggle:hover {
  border-color: rgba(221, 122, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease;
}

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

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--violet), #ce00ff 58%, var(--violet-deep));
  box-shadow: 0 20px 65px rgba(177, 0, 255, 0.3);
}

.button-secondary,
.button-ghost {
  padding: 0.82rem 1.2rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.button-secondary:hover,
.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  padding-top: 4.25rem;
}

.benefits-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 2rem;
  align-items: start;
}

.eyebrow {
  margin: 0;
  color: #d9c3ff;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero h1,
.statement-sticky h2,
.section-head h2,
.benefit-card h2,
.contact-copy h2 {
  margin: 1.1rem 0 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.05em;
  line-height: 0.97;
}

.hero h1 {
  margin: 0;
  max-width: 920px;
  font-size: clamp(2.45rem, 6.3vw, 4.9rem);
}

.hero-text,
.statement-block p,
.service-copy p,
.benefit-item p,
.timeline-card p,
.showcase-copy span,
.contact-text,
.footer-text {
  color: var(--muted);
  line-height: 1.85;
}

.hero-text {
  max-width: 620px;
  margin: 1.25rem auto 0;
  font-size: 1.06rem;
  text-align: center;
}

.hero-actions {
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.hero-board,
.statement-block,
.service-band,
.benefit-card,
.benefit-item,
.timeline-card,
.showcase-card,
.audiences-shell,
.contact-copy,
.contact-form-shell,
.contact-panel,
.board-cell,
.hero-floating {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.contact-panel strong,
.contact-panel a {
  display: block;
  font-size: 1rem;
}

.showcase-copy p,
.contact-panel span {
  margin: 0;
  color: #d5b8ff;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-stage {
  text-align: center;
}

.hero-topline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.hero-note {
  color: var(--soft);
  font-size: 0.92rem;
}

.hero-headline {
  max-width: 980px;
  margin: 1.3rem auto 0;
}

.hero-board-wrap {
  position: relative;
  margin-top: 3rem;
  padding: 2.5rem 0 1rem;
}

.hero-board {
  position: relative;
  overflow: hidden;
  max-width: 840px;
  margin: 0 auto;
  padding: 1.2rem;
  border-radius: 36px;
}

.hero-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 107, 214, 0.14), transparent 26%),
    radial-gradient(circle at bottom right, rgba(161, 76, 255, 0.22), transparent 28%);
}

.hero-board-screen {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 28px;
  padding: 1.3rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    rgba(11, 5, 17, 0.78);
}

.board-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #dcc8fb;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.board-center {
  padding: 3.4rem 0 2.6rem;
}

.board-line {
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.85), transparent);
}

.board-line + .board-line {
  margin-top: 1rem;
}

.board-line-strong { width: 100%; }
.board-line-mid { width: 68%; margin-inline: auto; }
.board-line-soft { width: 34%; margin-inline: auto; }

.board-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.board-cell {
  padding: 1rem;
  border-radius: 20px;
  text-align: left;
}

.board-cell strong,
.hero-floating strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.board-cell span,
.hero-floating span {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.92rem;
}

.hero-floating {
  position: absolute;
  width: 220px;
  padding: 1rem;
  border-radius: 22px;
  text-align: left;
}

.hero-floating-left {
  left: 4%;
  top: 0;
  transform: rotate(-8deg) translateY(calc(var(--scene-y) * -0.03));
}

.hero-floating-right {
  right: 4%;
  top: 3.2rem;
  transform: rotate(8deg) translateY(calc(var(--scene-y) * -0.04));
}

.hero-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.1rem;
}

.hero-strip span {
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #e8dcfb;
  font-size: 0.88rem;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease,
    color 0.28s ease;
  cursor: default;
}

.hero-strip span:hover {
  transform: translateY(-2px);
  border-color: rgba(221, 122, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.22),
    0 0 22px rgba(177, 0, 255, 0.12);
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
}

.page-card,
.final-cta,
.page-hero-inner {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.page-card {
  display: block;
  padding: 1.5rem;
  border-radius: 26px;
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease;
}

.page-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 135, 255, 0.3);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
}

.page-card p {
  margin: 0;
  color: #d5b8ff;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 700;
}

.page-card h3 {
  margin: 0.9rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: 1.4rem;
}

.page-card span {
  display: block;
  margin-top: 0.8rem;
  color: var(--muted);
  line-height: 1.75;
}

.final-cta {
  padding: 1.8rem;
  border-radius: 30px;
  text-align: center;
}

.page-hero {
  padding-top: 4.4rem;
  padding-bottom: 3rem;
}

.page-hero-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 34px;
  text-align: center;
}

.page-hero-inner h1 {
  margin: 1rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.9rem, 7vw, 5rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.page-hero-text {
  max-width: 720px;
  margin: 1.2rem auto 0;
  color: var(--muted);
  line-height: 1.85;
}

.page-hero-services,
.page-hero-process,
.page-hero-projects,
.page-hero-contact {
  padding-top: 4rem;
}

.services-hero,
.process-hero,
.projects-hero,
.contact-hero {
  position: relative;
}

.services-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.2rem;
  align-items: end;
}

.services-hero-copy h1,
.process-hero-copy h1,
.projects-hero-copy h1,
.contact-hero-panel h1 {
  margin: 0.9rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.services-hero-copy .page-hero-text,
.process-hero-copy .page-hero-text,
.projects-hero-copy .page-hero-text,
.contact-hero-panel .page-hero-text {
  margin: 1rem 0 0;
  max-width: 520px;
  text-align: left;
}

.services-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.services-tile,
.process-chip,
.contact-side-card,
.contact-hero-panel {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.services-tile {
  min-height: 170px;
  padding: 1.2rem;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at top right, rgba(255,107,214,0.16), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
}

.services-tile span,
.contact-side-card span {
  color: #d5b8ff;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
}

.services-tile strong,
.contact-side-card strong {
  display: block;
  margin-top: 0.7rem;
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
}

.services-tile-large {
  min-height: 220px;
  background:
    radial-gradient(circle at 20% 20%, rgba(161,76,255,0.2), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
}

.services-tile-wide {
  grid-column: span 2;
  min-height: 140px;
}

.process-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 1.2rem;
  align-items: center;
}

.process-hero-flow {
  position: relative;
  min-height: 280px;
}

.process-chip {
  position: absolute;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  color: #f2e9ff;
  font-weight: 600;
}

.process-chip span {
  display: block;
  margin-bottom: 0.45rem;
  color: #d5b8ff;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.process-chip-a { left: 0; top: 0; transform: rotate(-8deg); width: 160px; }
.process-chip-b { left: 34%; top: 22%; transform: rotate(6deg); width: 180px; }
.process-chip-c { left: 16%; bottom: 8%; transform: rotate(-4deg); width: 200px; }
.process-chip-d { right: 0; top: 10%; transform: rotate(10deg); width: 170px; }

.projects-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 1.3rem;
  align-items: center;
}

.projects-techstage {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 24% 28%, rgba(209, 0, 255, 0.12), transparent 18%),
    radial-gradient(circle at 76% 30%, rgba(123, 21, 255, 0.14), transparent 18%),
    linear-gradient(145deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
}

.projects-tech-grid,
.projects-tech-orbit,
.projects-tech-core,
.projects-tech-beam,
.projects-tech-node {
  position: absolute;
}

.projects-tech-grid {
  inset: 8% 6%;
  background-image:
    linear-gradient(rgba(221, 122, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(221, 122, 255, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black 48%, transparent 92%);
  opacity: 0.55;
}

.projects-tech-orbit {
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
}

.orbit-outer {
  width: 270px;
  height: 270px;
  animation: rotateSlow 22s linear infinite;
}

.orbit-mid {
  width: 190px;
  height: 190px;
  border-style: dashed;
  border-color: rgba(221, 122, 255, 0.14);
  animation: rotateSlow 16s linear infinite reverse;
}

.orbit-inner {
  width: 98px;
  height: 98px;
  border-color: rgba(209, 0, 255, 0.16);
  animation: rotateSlow 12s linear infinite;
}

.projects-tech-core {
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--violet), var(--magenta));
  box-shadow: 0 0 32px rgba(177, 0, 255, 0.45);
}

.projects-tech-beam {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.42), transparent);
  animation: pulseLine 4.8s ease-in-out infinite;
}

.beam-a { left: 10%; right: 14%; top: 28%; }
.beam-b { left: 18%; right: 10%; top: 50%; animation-delay: 0.7s; }
.beam-c { left: 12%; right: 16%; bottom: 28%; animation-delay: 1.4s; }

.projects-tech-node {
  padding: 0.62rem 0.88rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.035);
  color: #eadcff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
}

.projects-tech-node.node-a { left: 8%; top: 15%; animation: floatSoft 7s ease-in-out infinite; }
.projects-tech-node.node-b { right: 10%; top: 18%; animation: floatSoft 8s ease-in-out infinite 0.4s; }
.projects-tech-node.node-c { right: 12%; bottom: 16%; animation: floatSoft 7.6s ease-in-out infinite 0.8s; }
.projects-tech-node.node-d { left: 14%; bottom: 20%; animation: floatSoft 8.2s ease-in-out infinite 1.2s; }
.projects-tech-node.node-e { left: 50%; bottom: 8%; transform: translateX(-50%); animation: floatSoft 7.8s ease-in-out infinite 0.6s; }

.projects-techstage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, transparent 24%, rgba(9, 1, 17, 0.14) 70%, rgba(9, 1, 17, 0.28) 100%);
  pointer-events: none;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 280px;
  gap: 1rem;
  align-items: stretch;
}

.contact-hero-panel {
  padding: 2rem;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255,107,214,0.18), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
}

.contact-hero-side {
  display: grid;
  gap: 1rem;
}

.contact-side-card {
  border-radius: 24px;
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 160px;
}

.contact-side-card.accent {
  background:
    radial-gradient(circle at 20% 20%, rgba(161,76,255,0.22), transparent 26%),
    linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
}

.services-lab {
  padding-top: 4rem;
}

.services-lab-stage {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  gap: 1.2rem;
  align-items: center;
  min-height: 620px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    radial-gradient(circle at 18% 22%, rgba(161, 76, 255, 0.14), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(255, 107, 214, 0.14), transparent 20%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.services-lab-copy h1 {
  margin: 0.9rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(3.1rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.services-lab-copy .page-hero-text {
  max-width: 430px;
  margin: 1.1rem 0 0;
  text-align: left;
}

.services-lab-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.services-lab-visual {
  position: relative;
  min-height: 520px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.03), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}

.services-sphere,
.services-sphere-ring,
.services-sphere-core,
.services-beam,
.services-signal {
  position: absolute;
}

.services-sphere {
  left: 50%;
  top: 50%;
  width: 220px;
  height: 220px;
  transform: translate(-50%, -50%);
}

.services-sphere-ring {
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 0 34px rgba(214,135,255,0.1), inset 0 0 30px rgba(255,107,214,0.06);
}

.ring-outer {
  animation: rotateSlow 20s linear infinite;
}

.ring-middle {
  inset: 16%;
  animation: rotateSlow 14s linear infinite reverse;
}

.ring-inner {
  inset: 34%;
  animation: rotateSlow 10s linear infinite;
}

.services-sphere-core {
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--magenta));
  transform: translate(-50%, -50%);
  box-shadow: 0 0 34px rgba(214,135,255,0.55);
}

.services-beam {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  animation: pulseLine 5s ease-in-out infinite;
}

.beam-a { left: 10%; right: 10%; top: 24%; }
.beam-b { left: 18%; right: 18%; top: 50%; animation-delay: 0.6s; }
.beam-c { left: 12%; right: 12%; bottom: 24%; animation-delay: 1.2s; }

.services-signal {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  color: #f0e3ff;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(18px);
}

.signal-web { left: 7%; top: 18%; animation: floatSoft 7s ease-in-out infinite; }
.signal-apps { right: 9%; top: 24%; animation: floatSoft 8s ease-in-out infinite 0.5s; }
.signal-host { left: 12%; bottom: 18%; animation: floatSoft 7.4s ease-in-out infinite 1s; }
.signal-mail { right: 14%; bottom: 16%; animation: floatSoft 8.2s ease-in-out infinite 1.4s; }
.signal-fivem { left: 50%; bottom: 8%; transform: translateX(-50%); animation: floatSoft 7.8s ease-in-out infinite 0.8s; }

.services-marquee-band {
  padding-top: 1.2rem;
  padding-bottom: 1rem;
}

.services-marquee {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  padding: 1rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  box-shadow: var(--shadow);
}

.services-marquee span {
  color: #e9dbff;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.services-composition {
  padding-top: 1.5rem;
}

.services-grid-alt {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.service-panel {
  grid-column: span 4;
  min-height: 250px;
  padding: 1.45rem;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(255,107,214,0.14), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease;
}

.service-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 135, 255, 0.3);
}

.service-panel span {
  color: #d5b8ff;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 700;
}

.service-panel h3 {
  margin: 0.8rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: 1.55rem;
}

.service-panel p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  line-height: 1.78;
}

.service-panel-feature {
  grid-column: span 8;
  min-height: 320px;
  background:
    radial-gradient(circle at 20% 20%, rgba(161,76,255,0.18), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
}

.service-panel-wide {
  grid-column: span 6;
}

.services-detail-band {
  padding-top: 1.4rem;
}

.services-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1rem;
}

.services-detail-card,
.detail-point {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.services-detail-card {
  padding: 1.6rem;
  border-radius: 28px;
}

.services-detail-card h2 {
  margin: 1rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.06;
}

.services-detail-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.detail-point {
  min-height: 180px;
  padding: 1.25rem;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.detail-point strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
}

.detail-point span {
  display: block;
  margin-top: 0.6rem;
  color: var(--muted);
  line-height: 1.7;
}

.statement-layout {
  align-items: flex-start;
  gap: 2rem;
}

.statement-sticky,
.statement-flow {
  flex: 1 1 0;
}

.statement-sticky {
  position: sticky;
  top: 7rem;
}

.statement-sticky h2,
.section-head h2,
.benefit-card h2,
.contact-copy h2 {
  font-size: clamp(2.2rem, 4.7vw, 4.1rem);
}

.statement-flow {
  display: grid;
  gap: 1rem;
}

.statement-block {
  padding: 1.5rem;
  border-radius: 26px;
}

.statement-block span,
.service-index {
  color: var(--glow);
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
}

.section-head {
  max-width: 880px;
}

.services-rail {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

.service-band {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 220px;
  gap: 1.5rem;
  align-items: center;
  padding: 1.4rem 1.5rem;
  border-radius: 26px;
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease;
}

.service-band:hover,
.benefit-item:hover,
.timeline-card:hover,
.showcase-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 135, 255, 0.3);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
}

.service-copy h3,
.benefit-item h3,
.showcase-copy h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
}

.service-tag {
  justify-self: end;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: #e8d7ff;
  font-size: 0.88rem;
}

.benefits-layout {
  align-items: stretch;
}

.benefit-card,
.contact-copy,
.contact-form-shell {
  padding: 1.7rem;
  border-radius: 30px;
}

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

.benefit-item {
  padding: 1.5rem;
  border-radius: 24px;
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease;
}

.process-timeline {
  position: relative;
  display: grid;
  gap: 1rem;
  margin-top: 2.8rem;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  width: 1px;
  background: linear-gradient(180deg, rgba(214, 135, 255, 0.65), rgba(214, 135, 255, 0.08));
}

.timeline-item {
  position: relative;
  padding-left: 3rem;
}

.timeline-dot {
  position: absolute;
  top: 1.45rem;
  left: 7px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--magenta));
  box-shadow: 0 0 30px rgba(214, 135, 255, 0.6);
}

.timeline-card {
  padding: 1.35rem 1.5rem;
  border-radius: 24px;
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease;
}

.timeline-card strong {
  display: block;
  margin-bottom: 0.55rem;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.8rem;
}

.showcase-wide {
  grid-row: auto;
}

.showcase-card {
  overflow: hidden;
  border-radius: 30px;
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease;
}

.showcase-visual {
  position: relative;
  min-height: 150px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.showcase-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 1, 17, 0.18), rgba(9, 1, 17, 0.46)),
    radial-gradient(circle at top right, rgba(177, 0, 255, 0.1), transparent 30%);
  backdrop-filter: blur(3px);
  pointer-events: none;
}

.showcase-image {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: scale(1.12);
  filter: brightness(0.58) saturate(0.82) contrast(1.02) blur(1.2px);
}

.showcase-copy {
  padding: 1.15rem;
}

.showcase-copy h3 {
  margin-top: 0.65rem;
  font-size: 1.16rem;
  line-height: 1.1;
}

.showcase-copy span {
  display: block;
  margin-top: 0.65rem;
  line-height: 1.65;
  font-size: 0.93rem;
}

.showcase-points {
  display: grid;
  gap: 0.7rem;
  margin: 0.95rem 0 0;
  padding: 0;
  list-style: none;
}

.showcase-points li {
  display: grid;
  gap: 0.24rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.showcase-points strong {
  color: #f0e3ff;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-points span {
  margin-top: 0;
  font-size: 0.9rem;
  line-height: 1.62;
  color: var(--muted);
}

.feedback-stage {
  padding: 1.6rem 0 0;
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.feedback-card {
  position: relative;
  overflow: hidden;
  min-height: 248px;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  background:
    radial-gradient(circle at top right, rgba(214, 135, 255, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease;
}

.feedback-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 135, 255, 0.26);
  background:
    radial-gradient(circle at top right, rgba(214, 135, 255, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.038));
}

.feedback-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.05);
  color: #eadcff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feedback-card h3 {
  margin: 1rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: 1.12rem;
  line-height: 1.15;
}

.feedback-card p {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.72;
}

.feedback-card strong {
  display: inline-block;
  margin-top: 1.1rem;
  color: #f1e6ff;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


.audiences-shell {
  padding: 2rem;
  border-radius: 34px;
}

.audience-track {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.audience-track span {
  padding: 0.88rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: #f0e3ff;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease,
    color 0.28s ease;
  cursor: default;
}

.audience-track span:hover {
  transform: translateY(-2px);
  border-color: rgba(221, 122, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.22),
    0 0 22px rgba(177, 0, 255, 0.12);
}

.contact-text {
  margin-top: 1.4rem;
}

.contact-copy-compact h2 {
  font-size: clamp(1.45rem, 2.1vw, 1.95rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.contact-copy-compact .contact-text {
  max-width: 420px;
  margin-top: 0.85rem;
  font-size: 0.95rem;
  line-height: 1.68;
}

.contact-panels {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-panel {
  padding: 1.2rem;
  border-radius: 22px;
}

.contact-panel a {
  margin-top: 0.5rem;
}

.contact-panel a:hover {
  color: white;
}

.legal-stack {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.legal-block {
  padding: 1.25rem 1.35rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.legal-block h3 {
  margin: 0 0 0.8rem;
  font-family: "Sora", sans-serif;
  font-size: 1.08rem;
}

.legal-block p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

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

.contact-response-note {
  margin: 1rem 0 0;
  color: rgba(229, 215, 251, 0.72);
  font-size: 0.9rem;
  line-height: 1.6;
}

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

.contact-form label {
  display: grid;
  gap: 0.55rem;
}

.contact-form label span {
  color: #e5d7fb;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(12, 6, 19, 0.82);
  color: white;
  outline: none;
  transition: border-color 0.24s ease, box-shadow 0.24s ease;
}

.select-shell {
  position: relative;
  width: 100%;
  border-radius: 5px;
  border: 1px solid rgba(221, 122, 255, 0.16);
  background:
    radial-gradient(circle at 100% 0%, rgba(177, 0, 255, 0.18), transparent 42%),
    rgba(12, 6, 19, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  transition: border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.native-select {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(229, 215, 251, 0.52);
}

.select-trigger {
  position: relative;
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: white;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
}

.select-trigger::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 3.15rem;
  border-left: 1px solid rgba(221, 122, 255, 0.14);
  background: rgba(221, 122, 255, 0.08);
  pointer-events: none;
}

.select-trigger::after {
  content: "";
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 10L12 15L17 10' stroke='%23eadcff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.24s ease;
}

.custom-select.is-open .select-trigger::after {
  transform: rotate(180deg);
}

.select-trigger-text {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.55rem);
  display: grid;
  gap: 0.4rem;
  padding: 0.45rem;
  border-radius: 5px;
  border: 1px solid rgba(221, 122, 255, 0.18);
  background:
    radial-gradient(circle at 90% 0%, rgba(177, 0, 255, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(20, 4, 31, 0.98), rgba(9, 1, 15, 0.98));
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.42),
    0 0 34px rgba(177, 0, 255, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;
  z-index: 6;
}

.custom-select.is-open .select-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.select-option {
  position: relative;
  width: 100%;
  padding: 0.88rem 0.95rem;
  border: 1px solid transparent;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.028);
  color: #f8f1ff;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.select-option:hover,
.select-option.is-active {
  border-color: rgba(221, 122, 255, 0.28);
  background:
    linear-gradient(90deg, rgba(177, 0, 255, 0.18), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.04);
}

.select-option:hover {
  transform: translateY(-1px);
}

.select-option.is-active::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  border-radius: 5px 0 0 5px;
  background: linear-gradient(180deg, var(--violet), var(--magenta));
}

.select-shell:hover,
.select-shell:focus-within,
.custom-select.is-open {
  border-color: rgba(221, 122, 255, 0.38);
  box-shadow:
    0 0 0 4px rgba(177, 0, 255, 0.08),
    0 18px 54px rgba(0, 0, 0, 0.22);
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
  border-radius: 5px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(214, 135, 255, 0.44);
  box-shadow: 0 0 0 4px rgba(214, 135, 255, 0.09);
}

.select-shell:focus-within {
  border-color: rgba(214, 135, 255, 0.44);
  box-shadow:
    0 0 0 4px rgba(214, 135, 255, 0.09);
}

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

.statement-block {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at top right, rgba(255, 107, 214, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.035));
}

.statement-block h3 {
  margin: 0.8rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: 1.45rem;
}

.statement-block p {
  margin: 0.65rem 0 0;
}

.overview-band {
  padding-top: 1rem;
}

.overview-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  align-items: stretch;
  min-height: 420px;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 15% 25%, rgba(161, 76, 255, 0.14), transparent 22%),
    radial-gradient(circle at 85% 20%, rgba(255, 107, 214, 0.14), transparent 20%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.overview-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.4rem;
}

.overview-copy p {
  margin: 0;
  color: #d5b8ff;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 700;
}

.overview-copy h2 {
  margin: 0.9rem 0 0;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-family: "Sora", sans-serif;
  line-height: 1.05;
}

.overview-copy span {
  display: block;
  max-width: 340px;
  color: var(--muted);
  line-height: 1.8;
}

.overview-visual {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.03), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}

.overview-core,
.overview-orbit,
.overview-line,
.overview-pill {
  position: absolute;
}

.overview-core {
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  transform: translate(-50%, -50%);
}

.overview-core-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 0 30px rgba(214,135,255,0.14), inset 0 0 30px rgba(161,76,255,0.08);
  animation: rotateSlow 14s linear infinite;
}

.overview-core-ring-inner {
  inset: 22%;
  animation-direction: reverse;
  animation-duration: 11s;
}

.overview-core-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--magenta));
  transform: translate(-50%, -50%);
  box-shadow: 0 0 26px rgba(214,135,255,0.6);
}

.overview-orbit {
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.08);
}

.orbit-a {
  inset: 13% 18%;
  animation: rotateSlow 22s linear infinite;
}

.orbit-b {
  inset: 23% 28%;
  animation: rotateSlow 18s linear infinite reverse;
}

.overview-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  animation: pulseLine 4.6s ease-in-out infinite;
}

.line-a { left: 12%; right: 12%; top: 28%; }
.line-b { left: 20%; right: 20%; top: 50%; animation-delay: 0.6s; }
.line-c { left: 16%; right: 16%; bottom: 26%; animation-delay: 1.2s; }

.overview-pill {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  color: #ebdfff;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pill-a { left: 8%; top: 16%; animation: floatSoft 7s ease-in-out infinite; }
.pill-b { right: 10%; top: 22%; animation: floatSoft 8s ease-in-out infinite 0.5s; }
.pill-c { left: 12%; bottom: 18%; animation: floatSoft 8.4s ease-in-out infinite 1s; }
.pill-d { right: 14%; bottom: 14%; animation: floatSoft 7.6s ease-in-out infinite 1.4s; }

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulseLine {
  0%, 100% { opacity: 0.25; transform: scaleX(0.94); }
  50% { opacity: 0.9; transform: scaleX(1); }
}

@keyframes floatSoft {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.section-head-compact {
  max-width: 680px;
}

.page-links .page-grid {
  margin-top: 1.8rem;
}

.page-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
}

.page-card::before {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -30px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(161, 76, 255, 0.2), transparent 65%);
}

.page-card h3 {
  font-size: 1.55rem;
}

.benefit-card {
  background:
    radial-gradient(circle at top right, rgba(255, 107, 214, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.035));
}

.benefit-item {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.audiences-shell {
  background:
    radial-gradient(circle at top left, rgba(161, 76, 255, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.03));
}

.final-cta {
  padding: 2rem;
  background:
    radial-gradient(circle at top center, rgba(255, 107, 214, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.final-cta-text {
  max-width: 520px;
  margin: 1rem auto 0;
  color: var(--muted);
  line-height: 1.8;
}

.site-footer {
  padding: 1rem 0 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-row {
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand {
  margin: 0;
}

.footer-text {
  max-width: 620px;
  margin-top: 0.7rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  color: var(--muted);
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.2rem;
  flex-wrap: wrap;
}

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

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.04);
  color: #f5edff;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease,
    box-shadow 0.24s ease;
}

.footer-social-link svg {
  width: 19px;
  height: 19px;
  display: block;
  fill: currentColor;
}

.footer-social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(221, 122, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.22),
    0 0 18px rgba(177, 0, 255, 0.14);
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }

@media (max-width: 1120px) {
  .benefits-layout,
  .contact-layout,
  .statement-layout,
  .showcase-grid,
  .feedback-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .statement-sticky {
    position: static;
  }

  .service-band {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .service-tag {
    justify-self: start;
    grid-column: 2;
  }

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

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

  .overview-showcase {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .services-hero,
  .process-hero,
  .projects-hero,
  .contact-hero {
    grid-template-columns: 1fr;
  }

  .services-lab-stage,
  .services-detail-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .services-grid-alt {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-panel-feature,
  .service-panel-wide,
  .service-panel {
    grid-column: span 1;
  }

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

  .contact-hero {
    gap: 1rem;
  }

  .contact-hero-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-floating-left {
    left: 0;
  }

  .hero-floating-right {
    right: 0;
  }
}

@media (max-width: 860px) {
  .main-nav {
    display: none;
  }

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

  .mobile-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
    width: 100%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    margin-top: 0;
    border-top: 0 solid rgba(255, 255, 255, 0.06);
    transition:
      max-height 0.32s ease,
      opacity 0.24s ease,
      padding 0.24s ease,
      margin-top 0.24s ease,
      border-width 0.24s ease;
  }

  .mobile-nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.035);
    color: #eadcff;
    font-size: 0.9rem;
    line-height: 1.1;
  }

  .mobile-nav a.is-active {
    color: white;
    border-color: rgba(221, 122, 255, 0.28);
    background: rgba(255, 255, 255, 0.09);
    box-shadow:
      0 10px 28px rgba(0, 0, 0, 0.18),
      0 0 18px rgba(177, 0, 255, 0.14);
  }

  .site-header.is-mobile-open .mobile-nav {
    max-height: 420px;
    opacity: 1;
    padding: 0.95rem 0 0.7rem;
    margin-top: 0.65rem;
    border-top-width: 1px;
  }

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

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

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

  .section {
    padding: 5rem 0;
  }

  .benefit-list,
  .form-row,
  .page-grid {
    grid-template-columns: 1fr;
  }

  .statement-flow {
    grid-template-columns: 1fr;
  }

  .overview-showcase {
    padding: 1rem;
  }

  .overview-visual {
    min-height: 360px;
  }

  .services-hero-grid,
  .projects-techstage,
  .contact-hero-side,
  .services-detail-points,
  .services-grid-alt {
    grid-template-columns: 1fr;
  }

  .projects-techstage {
    min-height: 300px;
  }

  .services-tile-wide {
    grid-column: auto;
  }

  .services-lab-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .services-lab-visual {
    min-height: 420px;
  }

  .services-sphere {
    width: 170px;
    height: 170px;
  }

  .process-hero-flow {
    min-height: 220px;
  }

  .process-chip-a { left: 0; top: 0; }
  .process-chip-b { left: 38%; top: 8%; }
  .process-chip-c { left: 10%; bottom: 0; }
  .process-chip-d { right: 0; top: 40%; }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-floating {
    position: static;
    width: 100%;
    max-width: none;
    margin: 0 0 1rem;
    transform: none;
  }

  .hero-board-wrap {
    padding-top: 0.5rem;
  }

  .hero-floating-right,
  .hero-floating-left {
    right: auto;
    left: auto;
  }

  .overview-showcase {
    gap: 0.85rem;
  }

  .overview-copy {
    padding: 0.25rem;
  }

  .projects-techstage {
    min-height: 320px;
    background:
      radial-gradient(circle at 50% 26%, rgba(209, 0, 255, 0.12), transparent 18%),
      radial-gradient(circle at 50% 76%, rgba(123, 21, 255, 0.14), transparent 20%),
      linear-gradient(145deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
  }

  .projects-tech-grid {
    inset: 10% 8%;
    mask-image: radial-gradient(circle at center, black 46%, transparent 92%);
  }

  .projects-tech-orbit,
  .projects-tech-core {
    left: 50%;
    top: 50%;
  }

  .projects-tech-node.node-a { left: 10%; top: 14%; }
  .projects-tech-node.node-b { right: 10%; top: 14%; }
  .projects-tech-node.node-c { right: 12%; bottom: 14%; }
  .projects-tech-node.node-d { left: 12%; bottom: 14%; }
  .projects-tech-node.node-e { left: 50%; bottom: 8%; transform: translateX(-50%); }

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

  .scene-ring,
  .scene-panel {
    opacity: 0.7;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 2rem), var(--container));
  }

  .floating-contact-dock {
    right: 0.85rem;
    bottom: 0.85rem;
    gap: 0.6rem;
  }

  .floating-contact-link {
    width: 52px;
    height: 52px;
  }

  .floating-contact-link::after {
    display: none;
  }

  .header-row {
    flex-wrap: nowrap;
  }

  .mobile-nav {
    grid-template-columns: 1fr;
  }

  .mobile-nav a {
    width: 100%;
    text-align: left;
  }

  .footer-meta {
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .button-ghost {
    width: 100%;
  }

  .site-footer {
    padding: 1rem 0 2rem;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .footer-text {
    max-width: none;
    margin-top: 0.6rem;
  }

  .footer-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 1rem;
  }

  .footer-social {
    gap: 0.6rem;
  }

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

  .service-tag {
    grid-column: auto;
  }

  .benefit-card,
  .benefit-item,
  .timeline-card,
  .showcase-copy,
  .contact-copy,
  .contact-form-shell,
  .audiences-shell,
  .final-cta,
  .page-hero-inner,
  .page-card,
  .contact-hero-panel,
  .contact-side-card,
  .services-tile {
    padding: 1.3rem;
  }

  .board-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 16vw, 4.2rem);
  }

  .services-hero-copy .page-hero-text,
  .process-hero-copy .page-hero-text,
  .projects-hero-copy .page-hero-text,
  .contact-hero-panel .page-hero-text {
    text-align: left;
  }

  .scene-cube {
    left: auto;
    right: 8%;
    top: 66%;
    opacity: 0.6;
  }
}

.button,
.hero-board,
.hero-board-screen,
.board-cell,
.hero-floating,
.page-card,
.final-cta,
.page-hero-inner,
.services-tile,
.process-chip,
.collage-card,
.contact-side-card,
.contact-hero-panel,
.service-panel,
.services-detail-card,
.detail-point,
.statement-block,
.service-band,
.benefit-card,
.benefit-item,
.timeline-card,
.showcase-card,
.audiences-shell,
.contact-copy,
.contact-form-shell,
.contact-panel,
.select-shell,
.legal-block,
.showcase-visual,
.showcase-image,
.contact-form input,
.contact-form textarea,
.contact-form select {
  border-radius: 5px !important;
}

/* Responsive hardening pass */
img,
svg,
video,
canvas {
  max-width: 100%;
}

@media (max-width: 1180px) {
  .container {
    width: min(calc(100% - 3rem), var(--container));
  }

  .hero-floating {
    width: 190px;
  }

  .services-clean-intro,
  .services-clean-copy {
    min-height: 460px !important;
  }

  .services-clean-copy {
    max-width: 560px !important;
    padding: 2rem !important;
  }

  .services-clean-tech-orbit {
    left: 76% !important;
  }

  .services-clean-tech-core {
    left: 76% !important;
  }
}

@media (max-width: 980px) {
  .section {
    padding: 4.5rem 0;
  }

  .page-hero,
  .page-hero-services,
  .page-hero-process,
  .page-hero-projects,
  .page-hero-contact,
  .hero,
  .services-clean-hero {
    padding-top: 3.25rem !important;
  }

  .hero-board {
    max-width: 100%;
  }

  .hero-board-wrap {
    margin-top: 2rem;
  }

  .hero-floating {
    position: static;
    width: 100%;
    margin-bottom: 0.75rem;
    transform: none !important;
  }

  .services-clean-intro {
    min-height: auto !important;
  }

  .services-clean-copy {
    min-height: auto !important;
    max-width: none !important;
    padding: 1.5rem !important;
  }

  .services-clean-copy h1 {
    max-width: 680px !important;
  }

  .services-clean-techstage {
    position: relative !important;
    min-height: 320px !important;
    margin: 0 1rem 1rem !important;
    border-radius: 5px;
    overflow: hidden;
    background:
      radial-gradient(circle at center, rgba(177, 0, 255, 0.14), transparent 42%),
      rgba(255, 255, 255, 0.025);
  }

  .services-clean-tech-orbit,
  .services-clean-tech-core {
    left: 50% !important;
    top: 50% !important;
  }

  .services-clean-tech-beam.beam-a,
  .services-clean-tech-beam.beam-b,
  .services-clean-tech-beam.beam-c {
    left: 8% !important;
    right: 8% !important;
  }

  .services-clean-tech-node.node-a { left: 8% !important; top: 12% !important; }
  .services-clean-tech-node.node-b { right: 8% !important; top: 16% !important; }
  .services-clean-tech-node.node-c { left: 50% !important; top: auto !important; bottom: 10% !important; transform: translateX(-50%) !important; }
  .services-clean-tech-node.node-d { left: 10% !important; bottom: 18% !important; }
  .services-clean-tech-node.node-e { right: 10% !important; left: auto !important; bottom: 18% !important; }

  .process-hero-flow {
    order: 2;
  }

  .process-hero-copy {
    order: 1;
  }

  .projects-techstage {
    max-width: 720px;
    width: 100%;
  }

  .showcase-grid,
  .feedback-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-layout {
    gap: 1rem;
  }
}

@media (max-width: 860px) {
  .site-header .button-ghost {
    display: none;
  }

  .header-row {
    min-height: 62px;
  }

  .brand-logo {
    width: 92px;
  }

  .footer-brand .brand-logo {
    width: 108px;
  }

  .mobile-nav {
    position: relative;
    z-index: 31;
  }

  .site-header.is-mobile-open {
    background: rgba(9, 1, 17, 0.9);
  }

  .hero h1,
  .page-hero-inner h1,
  .services-hero-copy h1,
  .process-hero-copy h1,
  .projects-hero-copy h1,
  .contact-hero-panel h1,
  .services-clean-copy h1,
  .services-lab-copy h1 {
    font-size: clamp(2rem, 10vw, 3.45rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.045em;
  }

  .hero-text,
  .page-hero-text,
  .services-clean-text,
  .contact-text {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .services-clean-actions,
  .hero-actions,
  .services-lab-actions {
    gap: 0.7rem;
  }

  .services-clean-meta {
    gap: 0.5rem !important;
  }

  .services-clean-meta span,
  .hero-strip span,
  .audience-track span,
  .services-marquee span {
    font-size: 0.76rem;
  }

  .services-clean-tech-orbit.orbit-outer {
    width: 250px !important;
    height: 250px !important;
  }

  .services-clean-tech-orbit.orbit-mid {
    width: 174px !important;
    height: 174px !important;
  }

  .services-clean-tech-orbit.orbit-inner {
    width: 92px !important;
    height: 92px !important;
  }

  .process-chip {
    position: relative;
    inset: auto !important;
    width: auto !important;
    transform: none !important;
  }

  .process-hero-flow {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    min-height: auto;
  }

  .projects-techstage {
    min-height: 280px;
  }

  .orbit-outer {
    width: 230px;
    height: 230px;
  }

  .orbit-mid {
    width: 160px;
    height: 160px;
  }

  .orbit-inner {
    width: 84px;
    height: 84px;
  }

  .showcase-grid,
  .feedback-grid,
  .services-detail-points,
  .benefit-list,
  .form-row,
  .page-grid,
  .services-grid-alt {
    grid-template-columns: 1fr;
  }

  .service-panel,
  .service-panel-feature,
  .service-panel-wide {
    grid-column: auto;
    min-height: 190px;
  }

  .overview-showcase {
    min-height: auto;
  }

  .overview-visual {
    min-height: 300px;
  }

  .contact-form-shell {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.4rem), var(--container));
  }

  .section {
    padding: 3.5rem 0;
  }

  .page-hero,
  .hero,
  .services-clean-hero {
    padding-bottom: 2rem !important;
  }

  .brand-logo {
    width: 82px;
  }

  .mobile-nav-toggle {
    width: 42px;
    height: 42px;
  }

  .mobile-nav a {
    min-height: 44px;
    padding: 0.78rem 0.85rem;
  }

  .hero-stage,
  .page-hero-inner {
    text-align: left;
  }

  .hero-text {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .hero-actions,
  .services-clean-actions {
    align-items: stretch;
  }

  .hero-board-wrap {
    margin-top: 1.5rem;
  }

  .hero-board,
  .hero-board-screen {
    padding: 0.85rem;
  }

  .board-center {
    padding: 2rem 0 1.6rem;
  }

  .board-cell,
  .hero-floating,
  .statement-block,
  .service-band,
  .benefit-card,
  .benefit-item,
  .timeline-card,
  .showcase-copy,
  .contact-copy,
  .contact-form-shell,
  .audiences-shell,
  .final-cta,
  .page-hero-inner,
  .page-card,
  .contact-hero-panel,
  .contact-side-card,
  .services-tile,
  .services-clean-copy,
  .service-panel,
  .services-detail-card,
  .detail-point {
    padding: 1rem !important;
  }

  .services-clean-techstage {
    min-height: 260px !important;
    margin: 0 0.7rem 0.7rem !important;
  }

  .services-clean-tech-orbit.orbit-outer {
    width: 210px !important;
    height: 210px !important;
  }

  .services-clean-tech-orbit.orbit-mid {
    width: 142px !important;
    height: 142px !important;
  }

  .services-clean-tech-node,
  .projects-tech-node {
    padding: 0.48rem 0.62rem !important;
    font-size: 0.62rem !important;
    letter-spacing: 0.1em !important;
  }

  .projects-techstage {
    min-height: 250px;
  }

  .projects-tech-node.node-a { left: 7%; top: 12%; }
  .projects-tech-node.node-b { right: 7%; top: 12%; }
  .projects-tech-node.node-c { right: 8%; bottom: 12%; }
  .projects-tech-node.node-d { left: 8%; bottom: 12%; }
  .projects-tech-node.node-e { bottom: 6%; }

  .process-hero-flow {
    grid-template-columns: 1fr;
  }

  .showcase-visual,
  .showcase-image {
    min-height: 120px;
  }

  .contact-panels,
  .audience-track,
  .hero-strip {
    gap: 0.55rem;
  }

  .select-menu {
    max-height: 260px;
    overflow-y: auto;
  }

  .floating-contact-link {
    width: 46px;
    height: 46px;
  }

  .floating-contact-link svg {
    width: 21px;
    height: 21px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-social-link {
    width: 39px;
    height: 39px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(calc(100% - 1rem), var(--container));
  }

  .hero h1,
  .page-hero-inner h1,
  .services-hero-copy h1,
  .process-hero-copy h1,
  .projects-hero-copy h1,
  .contact-hero-panel h1,
  .services-clean-copy h1 {
    font-size: clamp(1.85rem, 11.5vw, 2.65rem) !important;
  }

  .button {
    padding: 0.82rem 0.95rem;
    font-size: 0.9rem;
  }

  .scene-ring,
  .scene-panel,
  .scene-cube {
    opacity: 0.36;
  }

  .overview-pill,
  .services-signal {
    font-size: 0.66rem;
    padding: 0.5rem 0.62rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea,
  .select-trigger {
    min-height: 50px;
    padding: 0.85rem;
  }
}
