:root {
  --bg: #05070d;
  --bg-soft: #0a0d16;
  --panel: rgba(14, 18, 29, 0.72);
  --panel-solid: #0d111d;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: #f4f2ed;
  --muted: #9aa1b2;
  --cyan: #28c7ff;
  --blue: #5967ff;
  --violet: #a75cff;
  --pink: #f35bc7;
  --lime: #a9ffcb;
  --shell: min(1200px, calc(100vw - 64px));
  --radius-lg: 34px;
  --radius-md: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 8%, rgba(76, 89, 255, 0.15), transparent 31rem),
    radial-gradient(circle at 85% 31%, rgba(167, 92, 255, 0.11), transparent 28rem),
    var(--bg);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

button {
  color: inherit;
  font: inherit;
}

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

::selection {
  color: #03050a;
  background: #8ee8ff;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.72'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.12;
  filter: blur(72px);
  background: var(--blue);
  transform: translate3d(calc(var(--mouse-x, 50vw) - 50%), calc(var(--mouse-y, 20vh) - 50%), 0);
  transition: opacity 0.3s ease;
}

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--shell);
  min-height: 68px;
  padding: 10px 12px 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: rgba(5, 7, 13, 0.68);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px) saturate(135%);
  transform: translateX(-50%);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  border-color: rgba(132, 177, 255, 0.22);
  background: rgba(5, 7, 13, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
}

.brand-logo-art {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 54px;
  height: 27px;
  overflow: hidden;
  border-radius: 5px;
  background: #03050a;
}

.brand-logo-art img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 69px;
  max-width: none;
  height: 69px;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.brand-sub {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #c4c8d1;
  font-size: 0.76rem;
  font-weight: 600;
}

.desktop-nav a,
.footer-links a {
  transition: color 0.2s ease;
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
  padding: 13px 17px;
  border-radius: 12px;
  color: #080a11;
  background: #f4f2ed;
  font-size: 0.75rem;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.header-cta:hover {
  background: #bfefff;
  transform: translateY(-2px);
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(48px, 7vw, 112px);
  align-items: center;
  min-height: 100svh;
  padding-top: 142px;
  padding-bottom: 78px;
}

.hero::after {
  position: absolute;
  right: -15%;
  bottom: 2%;
  z-index: -1;
  width: 720px;
  height: 240px;
  content: "";
  background: radial-gradient(ellipse, rgba(43, 125, 255, 0.2), transparent 66%);
  filter: blur(28px);
  transform: rotate(-13deg);
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(116, 156, 255, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit::after {
  position: absolute;
  top: 14%;
  left: 14%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}

.hero-orbit-one {
  top: 18%;
  right: -7%;
  width: 640px;
  height: 640px;
  animation: orbit 22s linear infinite;
}

.hero-orbit-two {
  top: 29%;
  right: 3%;
  width: 400px;
  height: 400px;
  animation: orbit 17s linear infinite reverse;
}

.eyebrow {
  margin: 0 0 22px;
  color: #b9c0ce;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 9px 1px 0;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
}

.hero h1,
.section-heading h2,
.about h2,
.records h2,
.support h2,
.order h2,
.case-dialog h2,
.contact h2 {
  margin: 0;
  font-family: Impact, "Arial Black", sans-serif;
  font-weight: 900;
  letter-spacing: 0.015em;
  line-height: 1.04;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(4rem, 7.7vw, 8.3rem);
}

.gradient-text,
.section-heading h2 span,
.about h2 span,
.support h2 span,
.order h2 span,
.contact h2 span {
  color: #8edfff;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .gradient-text,
  .section-heading h2 span,
  .about h2 span,
  .support h2 span,
  .order h2 span,
  .contact h2 span {
    color: transparent;
    background: linear-gradient(100deg, #f5f3ef 4%, #80dcff 40%, #9c72ff 73%, #f478d1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.hero-lead {
  max-width: 640px;
  margin: 30px 0 0;
  color: #adb3bf;
  font-size: clamp(1rem, 1.45vw, 1.2rem);
}

.hero-actions,
.records-links,
.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 0.79rem;
  font-weight: 800;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

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

.button-primary {
  color: #060810;
  background: linear-gradient(125deg, #f7f5f0, #bfeaff 60%, #b9abff);
  box-shadow: 0 14px 42px rgba(91, 133, 255, 0.17);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.button-ghost:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.07);
}

.hero-art {
  position: relative;
  width: min(100%, 500px);
  justify-self: end;
  perspective: 1200px;
}

.hero-image-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 42px;
  background: #080a0f;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5), 0 0 90px rgba(71, 127, 255, 0.11);
  transform: rotateY(-8deg) rotateX(2deg);
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-art:hover .hero-image-card {
  transform: rotateY(-2deg) rotateX(0deg) translateY(-5px);
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.04);
}

.hero-image-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 24%, transparent 68%, rgba(42, 157, 255, 0.12));
}

.hero-image-shine {
  position: absolute;
  top: -20%;
  left: -60%;
  z-index: 1;
  width: 38%;
  height: 150%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent);
  transform: rotate(18deg);
  animation: shine 6s ease-in-out infinite;
}

.floating-label {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9px;
  background: rgba(8, 11, 19, 0.82);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
  color: #dfe3eb;
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.floating-label span {
  color: var(--cyan);
}

.label-one { top: 11%; left: -10%; animation: float 4.5s ease-in-out infinite; }
.label-two { top: 43%; right: -8%; animation: float 5s ease-in-out 0.4s infinite; }
.label-three { bottom: 9%; left: -4%; animation: float 4.8s ease-in-out 0.8s infinite; }

.hero-status {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
}

.hero-status > div:first-child {
  display: flex;
  gap: 24px;
  align-items: center;
}

.status-kicker {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-status strong {
  font-size: 0.84rem;
}

.status-date {
  display: flex;
  gap: 14px;
  align-items: center;
}

.status-date span {
  padding: 5px 8px;
  border-radius: 6px;
  color: #0b0d14;
  background: var(--lime);
  font-size: 0.57rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.status-date strong {
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
}

.ticker {
  overflow: hidden;
  padding: 18px 0;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 25px;
  animation: ticker 34s linear infinite;
}

.ticker span {
  color: #d9dce3;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.ticker i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  box-shadow: 0 0 12px var(--blue);
}

.projects,
.showreel,
.services,
.process,
.about,
.feed,
.support,
.order {
  padding-top: 140px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(250px, 400px);
  gap: 40px;
  align-items: end;
  margin-bottom: 54px;
}

.section-heading h2,
.about h2,
.support h2,
.order h2,
.contact h2 {
  font-size: clamp(3.2rem, 6vw, 6.8rem);
}

.section-heading > p,
.contact > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.98rem;
}

.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(20, 25, 40, 0.8), rgba(9, 12, 21, 0.86));
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.17);
}

.project-featured {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 620px;
}

.project-visual {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  background: #0b0f19;
}

.project-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.4s ease;
}

.project-card:hover .project-cover {
  transform: scale(1.025);
}

.media-source {
  position: absolute;
  right: 22px;
  bottom: 20px;
  z-index: 4;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(5, 7, 13, 0.7);
  backdrop-filter: blur(12px);
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.media-source:hover {
  border-color: rgba(118, 221, 255, 0.48);
  color: white;
  background: rgba(24, 40, 68, 0.78);
}

.project-index {
  position: absolute;
  top: 24px;
  left: 26px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.cyber-visual {
  display: grid;
  place-items: center;
  background: #090b13;
}

.cyber-visual::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, rgba(4, 6, 12, 0.02) 45%, rgba(4, 6, 12, 0.72));
}

.scanlines {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(255, 255, 255, 0.02) 3px 4px);
  mix-blend-mode: overlay;
}

.project-copy {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 56px);
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 10px;
  border: 1px solid rgba(106, 176, 255, 0.25);
  border-radius: 99px;
  color: #bcd8ff;
  background: rgba(73, 126, 255, 0.08);
}

.pill-live {
  border-color: rgba(169, 255, 203, 0.28);
  color: var(--lime);
  background: rgba(90, 255, 157, 0.07);
}

.pill-muted {
  border-color: var(--line);
  color: #abb1bc;
  background: rgba(255, 255, 255, 0.03);
}

.project-copy h3 {
  margin: 27px 0 22px;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(3rem, 5vw, 5.7rem);
  font-weight: 900;
  letter-spacing: 0.018em;
  line-height: 1.05;
}

.project-copy > p {
  margin: 0;
  color: #abb1bd;
  font-size: 0.95rem;
}

.feature-list {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  color: #d9dce3;
  font-size: 0.78rem;
}

.feature-list span {
  color: var(--cyan);
  font-size: 0.6rem;
  font-weight: 900;
}

.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  margin-top: auto;
  padding-top: 30px;
}

.project-links a,
.text-link,
.service-card a {
  color: #e7e9ef;
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.2);
  text-underline-offset: 6px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.text-link {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.project-links a:hover,
.text-link:hover,
.service-card a:hover {
  color: var(--cyan);
  text-decoration-color: var(--cyan);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.project-compact .project-copy {
  min-height: 500px;
}

.project-compact .project-copy h3 {
  font-size: clamp(4rem, 6.3vw, 6.8rem);
}

.project-compact .compact-links {
  margin-top: auto;
  padding-top: 30px;
}

.compact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.seam-visual {
  display: grid;
  place-items: center;
  background: #080808;
}

.seam-visual::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(4, 4, 6, 0.76));
}

.frost-visual {
  display: grid;
  place-items: center;
  background: #0a101a;
}

.frost-visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, rgba(7, 16, 30, 0.12), rgba(4, 10, 20, 0.8));
}

.frost-visual .project-cover {
  filter: saturate(0.72) contrast(1.08) brightness(0.88);
}

.frost-visual::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  opacity: 0.13;
  background-image: radial-gradient(circle, white 0 1px, transparent 1.5px);
  background-size: 43px 43px;
  transform: rotate(12deg) scale(1.2);
}

.frost-title {
  position: relative;
  z-index: 3;
  margin-top: auto;
  margin-bottom: 36px;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  letter-spacing: 0.02em;
  line-height: 0.92;
  text-align: center;
  text-shadow: 0 0 60px rgba(125, 223, 255, 0.25);
}

.frost-title span {
  display: block;
  margin-top: 10px;
  color: #a8e8ff;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.14em;
  letter-spacing: 0.48em;
}

.stat-row {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 28px;
  padding-top: 21px;
  border-top: 1px solid var(--line);
}

.stat-row strong {
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.stat-row span {
  max-width: 120px;
  color: var(--muted);
  font-size: 0.65rem;
  line-height: 1.25;
}

.service-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
  border-color: rgba(115, 186, 255, 0.28);
  background: rgba(255, 255, 255, 0.045);
  transform: translateY(-5px);
}

.service-card::after {
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  content: "";
  background: rgba(76, 116, 255, 0.08);
  filter: blur(30px);
}

.service-wide {
  grid-column: span 2;
}

.service-accent {
  background: linear-gradient(145deg, rgba(107, 73, 255, 0.14), rgba(255, 67, 192, 0.07));
}

.service-number {
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 900;
}

.service-icon {
  margin-top: 34px;
  color: #a7e9ff;
  font-size: 2.5rem;
  line-height: 1;
}

.service-card h3 {
  margin: 25px 0 13px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.service-card p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.service-card a {
  position: absolute;
  left: 27px;
  bottom: 27px;
  z-index: 1;
}

.tag-row {
  position: absolute;
  left: 27px;
  bottom: 27px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-row span {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: #bfc5d0;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about {
  display: grid;
  grid-template-columns: minmax(340px, 0.88fr) 1.12fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
}

.about-poster {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.35);
}

.about-poster img {
  width: 100%;
  aspect-ratio: 0.75;
  object-fit: cover;
}

.poster-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(4, 6, 12, 0.82);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.about-lead {
  max-width: 650px;
  margin: 32px 0 0;
  color: #b4b9c4;
  font-size: 1.07rem;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 43px;
  border-block: 1px solid var(--line);
}

.about-facts > div {
  padding: 25px 20px 25px 0;
}

.about-facts > div + div {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.about-facts strong {
  display: block;
  font-size: 1.9rem;
  letter-spacing: -0.05em;
}

.about-facts span {
  display: block;
  max-width: 130px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.3;
}

.ghost-note {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 30px;
  padding: 18px 20px;
  border: 1px solid rgba(127, 202, 255, 0.18);
  border-radius: 18px;
  background: rgba(91, 117, 255, 0.055);
}

.ghost-note strong {
  font-size: 0.88rem;
}

.ghost-note p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.mini-ghost {
  position: relative;
  flex: 0 0 auto;
  width: 51px;
  height: 51px;
  border-radius: 52% 52% 42% 42%;
  background: linear-gradient(160deg, #fff, #d9efff 55%, #cbbfff);
  box-shadow: 0 0 22px rgba(114, 207, 255, 0.32);
}

.mini-ghost::before,
.mini-ghost::after {
  position: absolute;
  top: 20px;
  width: 6px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background: #07101b;
}

.mini-ghost::before { left: 14px; }
.mini-ghost::after { right: 14px; }

.mini-ghost i {
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 13px;
  background: linear-gradient(135deg, #d6f3ff, #aa9fff);
  clip-path: polygon(0 0, 18% 48%, 36% 10%, 54% 58%, 72% 8%, 100% 48%, 100% 0);
}

.records {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  overflow: hidden;
  margin-top: 140px;
  padding: clamp(38px, 6vw, 80px);
  border: 1px solid rgba(209, 113, 255, 0.2);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(120deg, rgba(111, 71, 255, 0.15), rgba(7, 9, 17, 0.2) 45%, rgba(255, 67, 195, 0.08)),
    #0a0d17;
}

.records h2 {
  font-size: clamp(4rem, 7.4vw, 8rem);
}

.records-copy {
  position: relative;
  z-index: 1;
  align-self: end;
}

.records-copy > p {
  margin: 0;
  color: #b5bac5;
  font-size: 1rem;
}

.records-glow {
  position: absolute;
  top: -70%;
  right: 8%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(148, 64, 255, 0.18);
  filter: blur(80px);
}

.support-card {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5.5vw, 72px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 86% 18%, rgba(83, 199, 255, 0.12), transparent 25rem),
    linear-gradient(140deg, #0d1220, #090c15);
}

.support-card::before {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(119, 190, 255, 0.14);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 100px rgba(74, 129, 255, 0.13), inset 0 0 100px rgba(74, 129, 255, 0.07);
}

.support-topline,
.support-main,
.support-details {
  position: relative;
  z-index: 1;
}

.support-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.support-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
  padding-top: 52px;
}

.support-goal {
  min-width: 180px;
  text-align: right;
}

.support-goal span {
  display: block;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.support-goal strong {
  display: block;
  margin-top: 5px;
  font-size: 2.5rem;
  letter-spacing: -0.06em;
}

.support-details {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 55px;
  align-items: start;
  margin-top: 45px;
}

.support-details > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.support-items {
  display: grid;
}

.support-items > div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.support-items span {
  color: var(--cyan);
  font-size: 0.58rem;
  font-weight: 900;
}

.support-items p,
.support-items strong {
  margin: 0;
  font-size: 0.76rem;
}

.support-items p { color: #ced2da; }
.support-items strong { font-variant-numeric: tabular-nums; }

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 140px;
  padding: 110px 30px;
  border-block: 1px solid var(--line);
  text-align: center;
}

.contact h2 {
  max-width: 980px;
}

.contact > p:not(.eyebrow) {
  max-width: 540px;
  margin-top: 28px;
}

.button-large {
  min-height: 60px;
  margin-top: 35px;
  padding-inline: 28px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 70px;
  padding-top: 80px;
  padding-bottom: 35px;
}

.footer-brand .brand-logo-art {
  width: 142px;
  height: 64px;
  border-radius: 10px;
}

.footer-brand .brand-logo-art img {
  width: 180px;
  height: 180px;
}

.footer-brand p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links span {
  margin-bottom: 8px;
  color: #747c8d;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  color: #b9bfca;
  font-size: 0.78rem;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  color: #747b89;
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ghost-assistant {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 60;
}

.assistant-toggle {
  position: relative;
  display: grid;
  width: 72px;
  height: 72px;
  margin-left: auto;
  padding: 0;
  overflow: visible;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: #0c1020;
  box-shadow: 0 16px 55px rgba(0, 0, 0, 0.45), 0 0 32px rgba(84, 155, 255, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.assistant-toggle:hover {
  transform: translateY(-5px) scale(1.03);
}

.assistant-toggle-face {
  position: absolute;
  inset: 5px;
  overflow: hidden;
  border-radius: 50%;
  background-image: url("assets/evo-ghost-poster.webp");
  background-position: 50% 29%;
  background-size: 285px auto;
  box-shadow: inset 0 0 16px rgba(255, 255, 255, 0.12);
}

.assistant-ping {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 12px;
  height: 12px;
  border: 2px solid #0b0e18;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(169, 255, 203, 0.9);
}

.assistant-panel {
  position: absolute;
  right: 0;
  bottom: 86px;
  width: min(350px, calc(100vw - 32px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  visibility: hidden;
  opacity: 0;
  background: rgba(8, 11, 19, 0.94);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(24px);
  transform: translateY(15px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}

.ghost-assistant.open .assistant-panel {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.assistant-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid var(--line);
}

.assistant-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-image: url("assets/evo-ghost-poster.webp");
  background-position: 50% 29%;
  background-size: 170px auto;
}

.assistant-head strong,
.assistant-head span {
  display: block;
}

.assistant-head strong { font-size: 0.77rem; }
.assistant-head span { color: var(--muted); font-size: 0.58rem; }
.assistant-head span i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--lime);
}

.assistant-head button {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  color: #aeb4bf;
  background: transparent;
  font-size: 1.25rem;
  cursor: pointer;
}

.assistant-body {
  padding: 16px;
}

.assistant-message {
  margin: 0 0 15px;
  padding: 13px;
  border: 1px solid rgba(111, 177, 255, 0.14);
  border-radius: 13px 13px 13px 4px;
  color: #d6d9e0;
  background: rgba(86, 119, 255, 0.07);
  font-size: 0.73rem;
}

.assistant-actions {
  display: grid;
  gap: 7px;
}

.assistant-actions button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #cdd1d9;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.67rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.assistant-actions button:hover {
  border-color: rgba(100, 185, 255, 0.27);
  background: rgba(96, 129, 255, 0.08);
}

.showreel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(310px, 0.72fr);
  gap: 18px;
}

.reel-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel-solid);
}

.reel-video {
  grid-row: span 2;
  min-height: 620px;
  padding: 16px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 15px;
  background: #020305;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.reel-copy {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 24px 10px 8px;
}

.reel-copy span,
.reel-overlay > span {
  color: var(--cyan);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.reel-copy strong,
.reel-overlay strong {
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  letter-spacing: -0.03em;
}

.reel-cyber img,
.reel-frost img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reel-frost img {
  object-position: 50% 46%;
}

.reel-card:hover > img {
  transform: scale(1.035);
}

.reel-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 9px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(3, 5, 10, 0.04) 25%, rgba(3, 5, 10, 0.92));
}

.reel-overlay a,
.reel-overlay button {
  width: fit-content;
  margin-top: 9px;
  padding: 0;
  border: 0;
  color: #f2f4f8;
  background: transparent;
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.25);
  text-underline-offset: 6px;
  cursor: pointer;
}

.proof {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 40px;
  align-items: stretch;
  margin-top: 22px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.022);
}

.proof-intro {
  padding: 10px 28px 10px 3px;
  border-right: 1px solid var(--line);
}

.proof-intro .eyebrow {
  margin-bottom: 11px;
}

.proof-intro strong {
  display: block;
  max-width: 280px;
  font-size: 1.12rem;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.proof-stats a {
  padding: 10px 18px;
  border-left: 1px solid var(--line);
}

.proof-stats a:first-child {
  border-left: 0;
}

.proof-stats strong,
.proof-stats span {
  display: block;
}

.proof-stats strong {
  font-size: clamp(1.65rem, 2.5vw, 2.4rem);
  letter-spacing: -0.05em;
}

.proof-stats span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.59rem;
  line-height: 1.25;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.018);
}

.process-step {
  position: relative;
  min-height: 310px;
  padding: 30px;
}

.process-step + .process-step {
  border-left: 1px solid var(--line);
}

.process-step::after {
  position: absolute;
  top: 39px;
  right: -5px;
  z-index: 2;
  width: 9px;
  height: 9px;
  border: 2px solid var(--bg);
  border-radius: 50%;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 15px rgba(40, 199, 255, 0.65);
}

.process-step:last-child::after {
  display: none;
}

.process-step > span {
  color: var(--cyan);
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.process-step strong {
  display: block;
  margin-top: 75px;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.process-step p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.process-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding: 20px 24px;
  border: 1px solid rgba(118, 186, 255, 0.18);
  border-radius: 16px;
  background: rgba(72, 109, 255, 0.055);
  font-size: 0.78rem;
}

.process-cta span {
  color: var(--muted);
}

.process-cta a {
  font-weight: 800;
}

.feed-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
}

.feed-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 350px;
  padding: 27px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(18, 23, 37, 0.88), rgba(8, 11, 19, 0.92));
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.feed-card:hover {
  border-color: rgba(115, 188, 255, 0.3);
  transform: translateY(-5px);
}

.feed-card::after {
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  content: "";
  background: rgba(81, 115, 255, 0.11);
  filter: blur(35px);
}

.feed-card-primary {
  background:
    radial-gradient(circle at 85% 0%, rgba(66, 196, 255, 0.15), transparent 17rem),
    linear-gradient(145deg, rgba(20, 31, 51, 0.94), rgba(7, 11, 20, 0.94));
}

.feed-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.57rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.feed-card-top .live-dot {
  margin: 0;
}

.feed-card > strong {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 360px;
  margin-top: 70px;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.feed-card > p {
  position: relative;
  z-index: 1;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.feed-link {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 24px;
  font-size: 0.69rem;
  font-weight: 800;
}

.feed-all {
  display: block;
  width: fit-content;
  margin: 24px 0 0 auto;
  color: #dce1e9;
  font-size: 0.73rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.22);
  text-underline-offset: 6px;
}

.order-shell {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(45px, 7vw, 90px);
  padding: clamp(34px, 6vw, 76px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 7% 12%, rgba(104, 72, 255, 0.13), transparent 24rem),
    linear-gradient(145deg, #0d111d, #080b13);
}

.order-intro > p:not(.eyebrow) {
  max-width: 450px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.order-faq {
  display: grid;
  gap: 0;
  margin-top: 45px;
  border-top: 1px solid var(--line);
}

.order-faq details {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.order-faq summary {
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 800;
}

.order-faq details p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.order-form {
  display: grid;
  gap: 18px;
  align-self: start;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
}

.order-form label {
  display: grid;
  gap: 8px;
}

.order-form label > span {
  color: #b8bec9;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.order-form small {
  color: #707787;
  font-size: 0.9em;
}

.order-form select,
.order-form textarea,
.order-form input {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  color: #f2f3f5;
  background: rgba(4, 7, 13, 0.72);
  font: inherit;
  font-size: 0.78rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.order-form textarea {
  min-height: 128px;
  resize: vertical;
}

.order-form select:focus,
.order-form textarea:focus,
.order-form input:focus {
  border-color: rgba(88, 195, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(57, 155, 255, 0.08);
}

.order-form select option {
  color: #f2f3f5;
  background: #0b0f18;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.order-submit {
  width: 100%;
  margin-top: 4px;
  cursor: pointer;
}

.order-status {
  min-height: 18px;
  margin: -5px 0 0;
  color: var(--lime);
  font-size: 0.66rem;
}

.case-dialog {
  width: min(1080px, calc(100vw - 34px));
  max-height: calc(100svh - 34px);
  padding: 0;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 28px;
  color: var(--text);
  background: #080b13;
  box-shadow: 0 40px 160px rgba(0, 0, 0, 0.75);
}

.case-dialog::backdrop {
  background: rgba(1, 3, 8, 0.82);
  backdrop-filter: blur(14px);
}

.case-dialog-shell {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
}

.case-dialog-close {
  position: fixed;
  top: max(26px, calc((100vh - min(780px, 100vh - 34px)) / 2 + 14px));
  right: max(26px, calc((100vw - min(1080px, 100vw - 34px)) / 2 + 14px));
  z-index: 5;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: white;
  background: rgba(6, 9, 15, 0.76);
  font-size: 1.4rem;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.case-dialog-media {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #05070c;
}

.case-dialog-media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-dialog-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(3, 5, 9, 0.75));
}

.case-dialog-media > span {
  position: absolute;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.case-dialog-video {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: #030406;
}

.case-dialog-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.case-dialog-copy {
  padding: clamp(35px, 5vw, 62px);
}

.case-dialog h2 {
  font-size: clamp(3rem, 5.5vw, 6rem);
}

.case-dialog-lead {
  margin: 25px 0 0;
  color: #c1c6d0;
  font-size: 1rem;
}

.case-dialog-grid {
  display: grid;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}

.case-dialog-grid > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.case-dialog-grid span {
  color: var(--cyan);
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-dialog-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.73rem;
}

.case-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.case-feature-list li {
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #cbd0d9;
  background: rgba(255, 255, 255, 0.024);
  font-size: 0.67rem;
}

.case-dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.not-found-page {
  display: grid;
  min-height: 100svh;
  padding: 28px;
  place-items: center;
  overflow: hidden;
}

.not-found-page::before,
.not-found-page::after {
  position: fixed;
  width: min(70vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgba(117, 198, 255, 0.12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.not-found-page::before {
  top: -40%;
  right: -15%;
  box-shadow: 0 0 160px rgba(119, 95, 255, 0.1);
}

.not-found-page::after {
  bottom: -55%;
  left: -18%;
  box-shadow: 0 0 180px rgba(93, 215, 255, 0.08);
}

.not-found-card {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  padding: clamp(32px, 7vw, 80px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(16, 20, 34, 0.96), rgba(6, 8, 14, 0.96));
  box-shadow: 0 35px 120px rgba(0, 0, 0, 0.5);
}

.not-found-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 60px;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.not-found-brand img {
  width: 62px;
  height: 32px;
  object-fit: cover;
  object-position: 50% 48%;
  border-radius: 7px;
}

.not-found-card h1 {
  margin: 18px 0 24px;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(3.7rem, 10vw, 7.8rem);
  font-weight: 900;
  letter-spacing: 0.015em;
  line-height: 1.04;
  text-transform: uppercase;
}

.not-found-card h1 span {
  color: transparent;
  background: linear-gradient(100deg, #f5f3ef 4%, #80dcff 40%, #9c72ff 73%, #f478d1);
  -webkit-background-clip: text;
  background-clip: text;
}

.not-found-card > p:not(.eyebrow) {
  max-width: 540px;
  margin: 0 0 34px;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes ticker {
  to { transform: translateX(-50%); }
}

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

@keyframes shine {
  0%, 38% { transform: translateX(0) rotate(18deg); }
  68%, 100% { transform: translateX(560%) rotate(18deg); }
}

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

@keyframes pulseRing {
  0%, 100% { transform: scale(1); opacity: 0.82; }
  50% { transform: scale(1.035); opacity: 1; }
}

@media (max-width: 1000px) {
  :root { --shell: min(100% - 40px, 900px); }
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .header-cta { display: none; }
  .menu-button {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: rgba(255,255,255,.03);
  }
  .menu-button span { width: 17px; height: 1px; background: white; transition: transform .2s ease; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 45;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 100px 30px 40px;
    visibility: hidden;
    opacity: 0;
    background: rgba(5, 7, 13, 0.98);
    transition: opacity .25s ease, visibility .25s;
  }
  .mobile-menu.open { visibility: visible; opacity: 1; }
  .mobile-menu a { font-family: Impact, "Arial Black", sans-serif; font-size: clamp(2.5rem, 9vw, 4.5rem); line-height: .92; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 160px; }
  .hero-copy { max-width: 800px; }
  .hero-art { width: min(75vw, 520px); justify-self: center; }
  .hero-status { margin-top: 25px; }
  .project-featured { grid-template-columns: 1fr; }
  .project-featured .project-visual { min-height: 530px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-compact { display: grid; grid-template-columns: .9fr 1.1fr; }
  .project-compact .project-copy { min-height: 470px; }
  .showreel-grid { grid-template-columns: 1fr 1fr; }
  .reel-video { grid-column: 1 / -1; min-height: 520px; }
  .proof { grid-template-columns: 1fr; gap: 34px; }
  .proof-stats { width: 100%; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(3) { border-left: 0; }
  .process-step:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .feed-grid { grid-template-columns: 1fr 1fr; }
  .feed-card:last-child { grid-column: 1 / -1; }
  .order-shell { grid-template-columns: 1fr; }
  .order-copy { position: static; }
  .case-dialog-shell { grid-template-columns: 1fr; }
  .case-dialog-media { min-height: 520px; }
  .service-bento { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: .8fr 1.2fr; gap: 44px; }
  .about-facts { grid-template-columns: 1fr; }
  .about-facts > div { display: grid; grid-template-columns: 100px 1fr; align-items: center; padding: 14px 0; }
  .about-facts > div + div { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
  .about-facts span { margin: 0; }
  .records { gap: 45px; }
}

@media (max-width: 720px) {
  :root { --shell: calc(100% - 28px); --radius-lg: 24px; }
  .cursor-glow { display: none; }
  .hero { overflow: hidden; }
  .site-header { top: 10px; min-height: 60px; padding: 8px 9px 8px 15px; border-radius: 15px; }
  .brand-sub { display: none; }
  .hero { gap: 50px; padding-top: 128px; padding-bottom: 45px; }
  .hero h1 { font-size: clamp(3.8rem, 18vw, 6.3rem); }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .button { min-height: 50px; padding-inline: 14px; gap: 10px; }
  .hero-art { width: min(92vw, 500px); }
  .hero-image-card { border-radius: 28px; transform: none; }
  .hero-art:hover .hero-image-card { transform: translateY(-3px); }
  .label-one { left: -1%; }
  .label-two { right: -1%; }
  .label-three { left: 2%; }
  .hero-status { align-items: flex-start; }
  .hero-status > div:first-child { flex-direction: column; gap: 5px; align-items: flex-start; max-width: 65%; }
  .projects, .showreel, .process, .services, .about, .feed, .support, .order { padding-top: 95px; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 38px; }
  .section-heading h2, .about h2, .support h2, .order h2, .contact h2 { font-size: clamp(3.3rem, 15vw, 5rem); }
  .section-heading > p { max-width: 450px; }
  .project-featured .project-visual { min-height: 420px; }
  .project-copy { padding: 26px 22px 30px; }
  .project-copy h3 { font-size: clamp(3.2rem, 14vw, 5rem); }
  .project-compact { display: block; }
  .project-compact .project-visual { min-height: 360px; }
  .project-compact .project-copy { min-height: 480px; }
  .showreel-grid { grid-template-columns: 1fr; }
  .reel-video { grid-column: auto; min-height: 420px; }
  .reel-card { min-height: 390px; }
  .proof { padding-block: 55px; }
  .proof-stats { grid-template-columns: 1fr 1fr; }
  .proof-stats a:nth-child(3) { border-left: 0; }
  .proof-stats a:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .proof-stats strong { font-size: 2rem; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { min-height: 290px; border-left: 0; border-top: 1px solid var(--line); }
  .process-step:first-child { border-top: 0; }
  .process-step::after { display: none; }
  .feed-grid { grid-template-columns: 1fr; }
  .feed-card:last-child { grid-column: auto; }
  .feed-card { min-height: 300px; }
  .order-shell { padding: 28px 20px; border-radius: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .case-dialog { width: calc(100% - 20px); max-height: calc(100dvh - 20px); }
  .case-dialog-media { min-height: 340px; }
  .case-dialog-copy { padding: 32px 20px 26px; }
  .case-dialog h2 { font-size: clamp(2.8rem, 13vw, 4.5rem); }
  .case-dialog-grid > div { grid-template-columns: 72px 1fr; }
  .case-feature-list { grid-template-columns: 1fr; }
  .case-dialog-close { position: absolute; top: 12px; right: 12px; }
  .service-bento { grid-template-columns: 1fr; }
  .service-wide { grid-column: span 1; }
  .about { grid-template-columns: 1fr; }
  .about-poster { max-width: 520px; margin-inline: auto; }
  .about-facts > div { grid-template-columns: 90px 1fr; }
  .records { grid-template-columns: 1fr; gap: 30px; margin-top: 95px; }
  .records h2 { font-size: clamp(3.7rem, 17vw, 6rem); }
  .support-main, .support-details { grid-template-columns: 1fr; }
  .support-goal { text-align: left; }
  .support-details { gap: 30px; margin-top: 30px; }
  .support-items > div { grid-template-columns: auto 1fr; }
  .support-items strong { grid-column: 2; }
  .support-actions { align-items: flex-start; flex-direction: column; }
  .contact { margin-top: 95px; padding-block: 80px; }
  .site-footer { grid-template-columns: 1fr; gap: 45px; }
  .footer-links { gap: 18px; }
  .footer-bottom { gap: 20px; }
  .ghost-assistant { right: 15px; bottom: 15px; }
  .assistant-toggle { width: 64px; height: 64px; }
  .assistant-toggle-face { background-size: 255px auto; }
  .assistant-panel { bottom: 77px; }

  body {
    background-color: var(--bg);
    background-image:
      radial-gradient(circle at 12% 8%, rgba(76, 89, 255, 0.15), transparent 25rem),
      radial-gradient(circle at 92% 70%, rgba(167, 92, 255, 0.1), transparent 23rem),
      linear-gradient(180deg, #05070d, #070913 52%, #05070d);
    background-repeat: repeat-y, repeat-y, no-repeat;
    background-size: 100% 960px, 100% 1180px, 100% 100%;
  }

  .noise {
    position: absolute;
    height: 100%;
    opacity: 0.022;
  }

  main,
  .site-footer {
    overflow: clip;
  }

  .site-header {
    top: max(10px, env(safe-area-inset-top));
    width: calc(100% - 24px - env(safe-area-inset-left) - env(safe-area-inset-right));
  }

  .mobile-menu {
    overflow-y: auto;
    padding:
      calc(92px + env(safe-area-inset-top))
      calc(22px + env(safe-area-inset-right))
      calc(32px + env(safe-area-inset-bottom))
      calc(22px + env(safe-area-inset-left));
  }

  .mobile-menu a {
    font-size: clamp(2.4rem, 12vw, 4rem);
    line-height: 1.02;
  }

  .hero {
    gap: 28px;
    min-height: auto;
    padding-top: calc(108px + env(safe-area-inset-top));
    padding-bottom: 34px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3.05rem, 14vw, 4.8rem);
    letter-spacing: 0.01em;
    line-height: 1.02;
    text-wrap: balance;
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .hero-art {
    width: 100%;
    margin-top: 2px;
  }

  .hero-image-card {
    aspect-ratio: 16 / 10;
    border-radius: 22px;
  }

  .hero-image-card img {
    object-position: 50% 52%;
  }

  .hero-orbit-one {
    top: 18%;
    right: -62%;
    width: 430px;
    height: 430px;
    opacity: 0.55;
    animation: none;
  }

  .hero-orbit-two {
    display: none;
  }

  .floating-label {
    padding: 7px 9px;
    font-size: 0.5rem;
  }

  .label-one { left: 2%; }
  .label-two { right: 2%; }
  .label-three { left: 4%; }

  .hero-status {
    gap: 18px;
    margin-top: 8px;
  }

  .section-heading h2,
  .about h2,
  .support h2,
  .order h2,
  .contact h2 {
    max-width: 100%;
    font-size: clamp(2.85rem, 12.5vw, 4.25rem);
    line-height: 1.03;
    text-wrap: balance;
  }

  .projects,
  .showreel,
  .process,
  .services,
  .about,
  .feed,
  .support,
  .order {
    padding-top: 76px;
  }

  .project-featured .project-visual {
    min-height: 310px;
  }

  .project-compact .project-visual {
    min-height: 270px;
  }

  .project-copy,
  .project-compact .project-copy {
    min-height: auto;
    padding: 24px 20px 26px;
  }

  .project-copy h3,
  .project-compact .project-copy h3 {
    max-width: 100%;
    font-size: clamp(2.85rem, 13vw, 4rem);
    line-height: 1.02;
    overflow-wrap: normal;
  }

  .project-copy > p,
  .section-heading > p,
  .about-lead,
  .records-copy > p,
  .support-details > p,
  .order-intro > p:not(.eyebrow) {
    overflow-wrap: anywhere;
  }

  .reel-video {
    min-height: auto;
    padding: 11px;
  }

  .reel-card {
    min-height: 300px;
  }

  .reel-copy {
    padding: 19px 10px 12px;
  }

  .reel-overlay {
    padding: 21px;
  }

  .proof {
    gap: 0;
    padding: 22px 20px;
  }

  .proof-intro {
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-stats a {
    min-width: 0;
    padding: 17px 12px;
  }

  .process-step {
    min-height: auto;
    padding: 24px 22px 26px;
  }

  .process-step strong {
    margin-top: 38px;
  }

  .process-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 18px 20px;
  }

  .feed-card {
    min-height: auto;
    padding: 22px 20px;
  }

  .feed-card-top {
    flex-wrap: wrap;
    gap: 8px 14px;
  }

  .feed-card > strong {
    margin-top: 46px;
    font-size: clamp(1.35rem, 7vw, 1.8rem);
  }

  .feed-card > p {
    font-size: 0.82rem;
  }

  .feed-link {
    margin-top: 34px;
  }

  .records {
    gap: 24px;
    margin-top: 76px;
    padding: 27px 22px;
  }

  .records h2 {
    max-width: 100%;
    font-size: clamp(3rem, 14vw, 4.7rem);
    line-height: 1.02;
  }

  .records-glow {
    top: -30%;
    right: -45%;
    width: 360px;
    height: 360px;
  }

  .support-card {
    padding: 25px 20px;
  }

  .support-topline {
    flex-wrap: wrap;
    gap: 10px;
  }

  .support-main {
    padding-top: 38px;
  }

  .support-goal {
    min-width: 0;
  }

  .support-card::before {
    top: -100px;
    right: -150px;
    width: 290px;
    height: 290px;
  }

  .order-shell {
    gap: 30px;
    padding: 26px 18px;
  }

  .order-form {
    gap: 16px;
    padding: 17px;
  }

  .order-form select,
  .order-form textarea,
  .order-form input {
    font-size: 16px;
  }

  .case-dialog {
    width: calc(100% - 12px);
    max-height: calc(100dvh - 12px);
    border-radius: 20px;
    scrollbar-color: rgba(128, 151, 196, 0.65) rgba(5, 7, 12, 0.85);
    scrollbar-width: thin;
  }

  .case-dialog::-webkit-scrollbar {
    width: 6px;
  }

  .case-dialog::-webkit-scrollbar-track {
    background: rgba(5, 7, 12, 0.85);
  }

  .case-dialog::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background: rgba(128, 151, 196, 0.65);
  }

  .case-dialog-media {
    min-height: 300px;
  }

  .case-dialog h2 {
    font-size: clamp(2.6rem, 12.5vw, 3.8rem);
    line-height: 1.03;
  }

  .case-dialog-grid > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .case-dialog-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ghost-assistant {
    right: max(10px, env(safe-area-inset-right));
    bottom: max(10px, env(safe-area-inset-bottom));
  }

  .assistant-toggle {
    width: 56px;
    height: 56px;
  }

  .assistant-toggle-face {
    background-size: 220px auto;
  }

  .assistant-panel {
    bottom: 66px;
    width: min(340px, calc(100vw - 20px));
    max-height: calc(100dvh - 92px - env(safe-area-inset-top));
    overflow-y: auto;
    border-radius: 18px;
  }
}

@media (max-width: 430px) {
  .hero-actions { grid-template-columns: 1fr; }
  .hero-status { align-items: flex-start; flex-direction: column; }
  .hero-status > div:first-child { max-width: 100%; }
  .status-date { width: 100%; justify-content: space-between; }
  .proof-stats { grid-template-columns: 1fr; }
  .proof-stats a { border-left: 0; }
  .proof-stats a:nth-child(n + 2) { border-top: 1px solid var(--line); }
  .order-submit { width: 100%; }
  .floating-label { font-size: 0.49rem; }
  .label-one { top: 8%; }
  .label-two { top: 45%; }
  .label-three { bottom: 6%; }
  .cyber-core { font-size: 5.1rem; }
  .project-compact .project-copy h3 { font-size: clamp(2.7rem, 12.5vw, 3.4rem); }
  .records-links { display: grid; grid-template-columns: 1fr; }
  .records-links .button,
  .support-actions .button { width: 100%; }
  .footer-links { grid-template-columns: 1fr 1fr; row-gap: 34px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
