:root {
  --black: #050505;
  --ink: #0b0d14;
  --white: #f8f8fb;
  --paper: #f1f1f7;
  --paper-2: #e9ecf6;
  --muted: #6d7281;
  --line: rgba(12, 15, 27, 0.12);
  --blue: #2458ff;
  --cyan: #00dcff;
  --violet: #5b2cff;
  --magenta: #7b6cff;
  --logo-gradient: linear-gradient(135deg, #5b2cff 0%, #2458ff 48%, #00dcff 100%);
  --logo-gradient-soft: linear-gradient(135deg, rgba(91, 44, 255, 0.34), rgba(36, 88, 255, 0.38) 50%, rgba(0, 220, 255, 0.32));
  --radius: 8px;
  --wide: min(1720px, calc(100% - 140px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

::selection {
  color: var(--white);
  background: var(--blue);
}

.wide-container,
.container {
  width: var(--wide);
  margin: 0 auto;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background: var(--paper);
}

.site-header {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  width: var(--wide);
  pointer-events: none;
  transform: translateX(-50%);
}

.brand,
.header-actions,
.nav-pill {
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  padding: 0;
  border-radius: 0;
  color: var(--white);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  font-size: 1.1rem;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 42px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 12px rgba(0, 220, 255, 0.2))
    drop-shadow(0 14px 28px rgba(0, 0, 0, 0.18));
}

.brand-symbol {
  position: relative;
  width: 34px;
  height: 22px;
}

.brand-symbol::before,
.brand-symbol::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border-left: 6px solid var(--blue);
  border-bottom: 6px solid var(--blue);
}

.brand-symbol::before {
  left: 0;
  transform: translateY(-50%) rotate(45deg);
}

.brand-symbol::after {
  right: 0;
  transform: translateY(-50%) rotate(-135deg);
}

.nav-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.18);
}

.nav-pill a,
.nav-pill button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius);
  color: #11131a;
  background: transparent;
  font-weight: 720;
}

.nav-pill a:hover,
.nav-pill button:hover {
  background: #f0f1f6;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown button::after {
  content: "⌄";
  margin-left: 8px;
  font-size: 0.85em;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: grid;
  min-width: 220px;
  padding: 8px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-dropdown.is-open .dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-panel a {
  justify-content: flex-start;
}

.nav-dropdown-mega {
  position: static;
}

.mega-menu {
  position: fixed;
  top: 82px;
  left: 50%;
  width: min(1340px, calc(100vw - 48px));
  min-width: 0;
  grid-template-columns: minmax(300px, 0.92fr) repeat(3, minmax(220px, 1fr));
  gap: 24px;
  padding: 28px 32px 30px;
  border: 1px solid rgba(36, 88, 255, 0.12);
  border-radius: 26px;
  background:
    radial-gradient(circle at 6% 8%, rgba(0, 220, 255, 0.13), transparent 18rem),
    radial-gradient(circle at 90% 88%, rgba(91, 44, 255, 0.12), transparent 20rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(246, 248, 255, 0.97));
  box-shadow:
    0 34px 90px rgba(3, 8, 28, 0.28),
    0 12px 36px rgba(36, 88, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  transform: translateX(-50%) translateY(-8px);
}

.nav-dropdown-mega.is-open .mega-menu {
  transform: translateX(-50%) translateY(0);
}

.mega-menu a {
  min-height: 0;
  padding: 0;
  border-radius: 16px;
  color: var(--ink);
}

.mega-menu a:hover {
  background: transparent;
}

.mega-menu .mega-feature {
  display: grid;
  align-items: start;
  justify-items: start;
  text-align: left;
}

.mega-feature {
  position: relative;
  overflow: hidden;
  grid-row: 1 / span 2;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 28px;
  min-height: 390px;
  padding: 34px 32px !important;
  color: #fff !important;
  background:
    radial-gradient(circle at 85% 20%, rgba(0, 220, 255, 0.38), transparent 9rem),
    radial-gradient(circle at 12% 90%, rgba(255, 255, 255, 0.2), transparent 8rem),
    linear-gradient(145deg, #8b6cff 0%, #2458ff 48%, #0717ff 100%) !important;
  box-shadow:
    0 28px 60px rgba(36, 88, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  isolation: isolate;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.mega-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.85), transparent 76%);
  opacity: 0.58;
  z-index: 0;
}

.mega-feature::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(0, 220, 255, 0.34);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 220, 255, 0.14), transparent 62%);
  z-index: 0;
}

.mega-feature > * {
  position: relative;
  z-index: 1;
}

.mega-feature:hover {
  transform: translateY(-2px);
  box-shadow:
    0 34px 76px rgba(36, 88, 255, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.mega-feature span,
.mega-column > strong {
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mega-feature span {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.9);
}

.mega-feature strong {
  display: block;
  max-width: 100%;
  font-size: clamp(30px, 2.35vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.mega-feature small {
  display: block;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.55;
}

.mega-feature em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 48px;
  margin-top: auto;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  font-style: normal;
  font-weight: 850;
}

.mega-column {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 13px;
  min-height: 390px;
  padding: 30px 28px;
  border: 1px solid rgba(12, 15, 27, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 251, 255, 0.78));
  box-shadow:
    0 16px 44px rgba(3, 8, 28, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.mega-column::after {
  content: "";
  position: absolute;
  inset: auto -32px -46px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 220, 255, 0.08), transparent 68%);
  pointer-events: none;
}

.mega-column > strong {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(12, 15, 27, 0.11);
  color: rgba(11, 13, 20, 0.48);
}

.mega-column a {
  position: relative;
  display: grid;
  gap: 4px;
  padding: 13px 34px 13px 22px;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.mega-column a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 21px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--logo-gradient);
  box-shadow: 0 0 14px rgba(0, 220, 255, 0.32);
}

.mega-column a::after {
  content: "\2192";
  position: absolute;
  right: 13px;
  top: 13px;
  color: var(--blue);
  font-weight: 900;
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.mega-column a:hover {
  background: rgba(36, 88, 255, 0.07);
  box-shadow: inset 0 0 0 1px rgba(36, 88, 255, 0.08);
  transform: translateX(3px);
}

.mega-column a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.mega-column b {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.2;
}

.mega-column span {
  color: rgba(11, 13, 20, 0.58);
  font-size: 0.92rem;
  line-height: 1.42;
}

.mega-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 82px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(12, 15, 27, 0.1);
  color: var(--ink);
}

.mega-strip span {
  font-weight: 900;
}

.mega-strip p {
  margin: 0;
  color: rgba(11, 13, 20, 0.58);
  font-size: 0.88rem;
}

.mega-strip a {
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  color: #fff;
  background: var(--logo-gradient);
  box-shadow: 0 16px 44px rgba(36, 88, 255, 0.25);
  font-weight: 900;
}

.header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--logo-gradient);
  box-shadow:
    0 18px 60px rgba(36, 88, 255, 0.32),
    0 0 34px rgba(0, 220, 255, 0.18);
  font-weight: 850;
}

.header-cta::after {
  content: "↗";
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-left: 10px;
  border-radius: var(--radius);
  color: var(--violet);
  background: #fff;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: var(--radius);
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 4px;
  background: #11131a;
  transition: transform 0.18s ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 44%, rgba(0, 220, 255, 0.24), transparent 22rem),
    radial-gradient(circle at 82% 58%, rgba(91, 44, 255, 0.28), transparent 34rem),
    radial-gradient(circle at 16% 78%, rgba(36, 88, 255, 0.16), transparent 26rem),
    linear-gradient(140deg, #02040d 0%, #050713 46%, #02030a 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: -18%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 70% 38%, rgba(0, 220, 255, 0.3), transparent 28%),
    radial-gradient(ellipse at 84% 64%, rgba(91, 44, 255, 0.34), transparent 32%),
    radial-gradient(ellipse at 28% 72%, rgba(36, 88, 255, 0.2), transparent 32%);
  filter: blur(26px);
  opacity: 0.72;
  transform: translate3d(0, 0, 0);
  animation: universeDrift 18s ease-in-out infinite;
}

.hero::after {
  inset: -26%;
  background:
    conic-gradient(from 110deg at 74% 52%, transparent 0deg, rgba(0, 220, 255, 0.18) 54deg, transparent 116deg, rgba(91, 44, 255, 0.2) 178deg, transparent 250deg, rgba(255, 255, 255, 0.08) 292deg, transparent 360deg);
  filter: blur(34px);
  mix-blend-mode: screen;
  opacity: 0.46;
  animation: universeSweep 22s linear infinite;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  mix-blend-mode: screen;
}

.hero-polygons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
}

.hero-polygons span {
  position: absolute;
  width: 430px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  clip-path: polygon(20% 0, 100% 32%, 72% 100%, 0 68%);
}

.hero-polygons span:nth-child(1) {
  top: 15%;
  right: 26%;
  transform: rotate(-14deg);
}

.hero-polygons span:nth-child(2) {
  top: 34%;
  right: -4%;
  transform: rotate(20deg);
}

.hero-polygons span:nth-child(3) {
  bottom: 8%;
  left: 34%;
  transform: rotate(8deg);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.8fr);
  gap: 48px;
  align-items: center;
  min-height: 100svh;
  padding: 132px 0 70px;
}

.hero-copy h1 {
  max-width: 1180px;
  margin: 0;
  font-size: clamp(62px, 7.4vw, 146px);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hero-copy h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(112deg, #5b2cff 0%, #2458ff 42%, #00dcff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter:
    drop-shadow(0 0 18px rgba(36, 88, 255, 0.2))
    drop-shadow(0 0 34px rgba(0, 220, 255, 0.12));
}

.hero-copy p {
  max-width: 660px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.55;
}

.hero-offer-rotator {
  display: inline-flex;
  align-items: center;
  flex: 1 1 auto;
  gap: 20px;
  max-width: 820px;
  min-height: 74px;
  margin-top: 0;
  color: #fff;
}

.hero-offer-icon {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 68px;
  height: 68px;
  border-radius: 999px;
  color: #fff;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.48), transparent 18%),
    var(--logo-gradient);
  box-shadow:
    0 0 22px rgba(0, 220, 255, 0.38),
    0 0 54px rgba(36, 88, 255, 0.36),
    0 0 72px rgba(91, 44, 255, 0.2);
  transition:
    opacity 0.34s ease,
    filter 0.34s ease,
    transform 0.34s ease,
    background 0.34s ease;
}

.hero-offer-icon::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 1px solid rgba(0, 220, 255, 0.28);
  opacity: 0.6;
  filter: blur(1px);
}

.hero-offer-icon svg {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-offer-text {
  display: block;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 24px;
  font-weight: 760;
  line-height: 1.28;
  text-shadow:
    0 0 24px rgba(0, 220, 255, 0.18),
    0 0 44px rgba(91, 44, 255, 0.16);
  transition:
    opacity 0.34s ease,
    filter 0.34s ease,
    transform 0.34s ease;
}

.hero-offer-rotator.is-changing .hero-offer-icon {
  opacity: 0.48;
  filter: blur(2px);
  transform: scale(0.94);
}

.hero-offer-rotator.is-changing .hero-offer-text {
  opacity: 0.18;
  filter: blur(7px);
  transform: translateY(7px);
}

.hero-orbit {
  --star-color: var(--cyan);
  --star-glow: rgba(0, 220, 255, 0.56);
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
}

.hero-orbit::before {
  content: "";
  position: absolute;
  width: min(620px, 88vw);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 220, 255, 0.3), transparent 28%),
    radial-gradient(circle at 58% 42%, rgba(91, 44, 255, 0.3), transparent 52%),
    radial-gradient(circle at 42% 62%, rgba(36, 88, 255, 0.2), transparent 58%);
  filter: blur(34px);
  opacity: 0.5;
}

.orbit-ring {
  position: absolute;
  width: min(600px, 86vw);
  aspect-ratio: 1;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.18)) drop-shadow(0 0 36px rgba(0, 220, 255, 0.24));
  transform: rotate(-8deg);
}

.orbit-ring::before,
.orbit-ring::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 20px #fff;
}

.orbit-ring::before {
  top: -6px;
  left: 52%;
}

.orbit-ring::after {
  bottom: 12%;
  right: 6%;
}

.orbit-label {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(5, 8, 16, 0.42);
  color: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(10px);
  font-size: clamp(14px, 1.08vw, 21px);
  font-weight: 800;
  white-space: nowrap;
  line-height: 1;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.22);
  opacity: 0.34;
  filter: blur(1.6px);
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    color 0.35s ease,
    filter 0.35s ease,
    opacity 0.35s ease,
    transform 0.35s ease;
}

.orbit-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 16px currentColor;
}

.orbit-label:hover {
  opacity: 1;
  color: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 220, 255, 0.44);
  transform: translateY(-3px);
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.05),
    0 0 24px rgba(0, 220, 255, 0.24);
}

.orbit-label.is-active {
  color: #fff;
  opacity: 1;
  filter: blur(0);
  border-color: var(--star-color);
  background: rgba(6, 10, 22, 0.78);
  transform: translateY(-2px) scale(1.025);
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.06),
    0 0 24px var(--star-glow),
    0 0 54px rgba(91, 44, 255, 0.22);
  text-shadow:
    0 0 16px rgba(255, 255, 255, 0.72),
    0 0 30px var(--star-glow);
}

.orbit-label.is-active::before {
  color: var(--star-color);
}

.orbit-label-a {
  top: -48px;
  left: 27%;
}

.orbit-label-b {
  top: 14%;
  right: -70px;
  animation-delay: -1s;
}

.orbit-label-c {
  top: 47%;
  right: -90px;
  animation-delay: -2s;
}

.orbit-label-d {
  bottom: -50px;
  left: 34%;
  color: rgba(255, 255, 255, 0.68);
  animation-delay: -3s;
}

.orbit-label-e {
  bottom: 15%;
  right: -98px;
  animation-delay: -4s;
}

.orbit-label-f {
  bottom: 6%;
  left: -86px;
  animation-delay: -5s;
}

.orbit-label-g {
  top: 28%;
  left: -116px;
  color: rgba(0, 220, 255, 0.86);
  text-shadow: 0 0 28px rgba(0, 220, 255, 0.6);
  animation-delay: -6s;
}

.hero-orbit .orbit-label.is-active {
  color: #fff;
  text-shadow:
    0 0 16px rgba(255, 255, 255, 0.72),
    0 0 30px var(--star-glow);
}

.galaxy-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: min(280px, 42vw);
  aspect-ratio: 1;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: filter 0.42s ease;
  filter:
    drop-shadow(0 0 28px var(--star-glow))
    drop-shadow(0 0 74px rgba(36, 88, 255, 0.24));
}

.galaxy-star {
  width: 100%;
  overflow: visible;
  transform-origin: 50% 50%;
  filter:
    drop-shadow(0 0 20px rgba(255, 255, 255, 0.18))
    drop-shadow(0 0 46px rgba(0, 220, 255, 0.44))
    drop-shadow(0 0 96px rgba(91, 44, 255, 0.3));
  animation: galaxyHover 6.5s ease-in-out infinite;
}

.galaxy-star-glow {
  fill: url(#helfano-star-glow);
  opacity: 0.74;
  transform-origin: 160px 160px;
}

.galaxy-rings {
  transform-origin: 160px 160px;
  transform: rotate(-12deg);
}

.galaxy-ring {
  fill: none;
  stroke: rgba(255, 255, 255, 0.32);
  stroke-width: 1.2;
  opacity: 0.5;
  vector-effect: non-scaling-stroke;
}

.galaxy-ring-b {
  transform-origin: 160px 160px;
  transform: rotate(72deg);
  stroke: rgba(0, 220, 255, 0.46);
  opacity: 0.44;
}

.galaxy-star-body {
  transform-origin: 160px 160px;
}

.galaxy-star-point {
  fill: url(#helfano-star-gradient);
  opacity: 0.72;
  stroke: rgba(255, 255, 255, 0.5);
  stroke-width: 1.15;
  vector-effect: non-scaling-stroke;
}

.galaxy-star-point-soft {
  opacity: 0.42;
  stroke: rgba(255, 255, 255, 0.26);
}

.galaxy-star-facet {
  fill: url(#helfano-star-gradient);
  stroke: rgba(255, 255, 255, 0.34);
  stroke-width: 1.1;
  vector-effect: non-scaling-stroke;
  mix-blend-mode: screen;
}

.galaxy-star-facet-a {
  opacity: 0.78;
}

.galaxy-star-facet-b,
.galaxy-star-facet-c {
  opacity: 0.48;
}

.galaxy-star-facet-d,
.galaxy-star-facet-e {
  opacity: 0.42;
}

.galaxy-star-facet-f {
  opacity: 0.68;
}

.galaxy-star-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.46);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.6;
  vector-effect: non-scaling-stroke;
}

.hero-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: -44px;
}

.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.58);
}

.hero-proof p {
  margin: 0;
  font-size: 1.12rem;
}

.proof-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 999px;
  background: var(--blue);
}

.proof-icon::before {
  content: "";
  width: 26px;
  height: 24px;
  border: 4px solid #bfc8ff;
  border-top: 0;
  border-radius: 8px;
}

.hero-work-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 172px;
  min-height: 62px;
  padding: 0 26px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--logo-gradient);
  box-shadow:
    0 18px 56px rgba(36, 88, 255, 0.28),
    0 0 32px rgba(0, 220, 255, 0.14);
  font-size: 1.1rem;
  font-weight: 850;
}

.light-section {
  color: var(--ink);
  background: var(--paper);
}

.works,
.services,
.process,
.logos,
.faq-section {
  padding: clamp(86px, 9vw, 132px) 0;
}

.syn-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
  color: #05070d;
  font-size: 1rem;
  font-weight: 820;
  text-transform: uppercase;
}

.syn-label span {
  font-weight: 500;
}

.syn-label i {
  display: block;
  width: 32px;
  height: 3px;
  background: var(--blue);
}

.syn-label-dark {
  color: #fff;
}

.large-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  margin-bottom: 84px;
}

.large-heading-row h2,
.large-heading-row h1,
.services-main-title,
.process-title,
.logo-title,
.faq-title {
  margin: 0;
  max-width: 1120px;
  font-size: clamp(38px, 4.1vw, 76px);
  line-height: 1.18;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.work-gallery-page {
  min-height: 100svh;
  padding: clamp(132px, 11vw, 176px) 0 clamp(88px, 9vw, 132px);
  color: var(--ink);
  background: var(--paper);
}

.work-page-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.55fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 54px;
}

.work-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: #05070d;
  font-size: 1rem;
  font-weight: 820;
  text-transform: uppercase;
}

.work-kicker::before {
  content: "01";
  font-weight: 500;
}

.work-kicker::after {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  background: var(--blue);
}

.work-page-intro h1 {
  max-width: 1060px;
  margin: 0;
  font-size: clamp(44px, 5.2vw, 92px);
  line-height: 1.06;
  font-weight: 680;
  letter-spacing: -0.04em;
}

.work-page-intro p {
  max-width: 560px;
  margin: 0;
  color: rgba(13, 16, 28, 0.66);
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.5;
}

.work-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
  align-items: center;
  margin-bottom: 54px;
}

.work-filter-bar button {
  border: 0;
  padding: 0;
  color: rgba(11, 13, 20, 0.52);
  background: transparent;
  font-size: clamp(18px, 1.35vw, 27px);
  font-weight: 520;
  letter-spacing: -0.02em;
  transition: color 0.2s ease, transform 0.2s ease;
}

.work-filter-bar button:hover,
.work-filter-bar button.is-active {
  color: #05070d;
}

.work-filter-bar button.is-active {
  transform: translateY(-2px);
}

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

.work-card {
  min-width: 0;
}

.work-card.is-hidden {
  display: none;
}

.work-card a {
  position: relative;
  display: block;
  min-height: clamp(320px, 25vw, 460px);
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  background: #101218;
  isolation: isolate;
  box-shadow: 0 22px 70px rgba(11, 13, 20, 0.08);
}

.work-card a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.76), transparent 52%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.1), transparent 42%);
}

.work-card .work-media {
  position: absolute;
  inset: 0;
  background: #151923;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.work-card .work-screenshot {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.work-card-latest a {
  box-shadow:
    0 28px 90px rgba(36, 88, 255, 0.18),
    0 0 0 1px rgba(0, 220, 255, 0.18) inset;
}

.work-card-latest .work-open {
  color: #06111c;
  background: var(--logo-gradient);
  box-shadow:
    0 18px 48px rgba(0, 220, 255, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.26) inset;
}

.work-card:hover .work-media {
  transform: scale(1.05);
  filter: saturate(1.08) contrast(1.04);
}

.work-card-dolaku .work-media,
.work-card-beauty .work-media,
.work-card-ai .work-media {
  display: grid;
  place-items: center;
}

.work-card .work-media .project-site-preview,
.work-card .work-media .project-demo-preview {
  width: min(82%, 520px);
  transform: perspective(900px) rotateX(5deg) rotateY(-9deg) scale(0.92);
}

.work-card .work-media .project-ai-preview {
  width: min(44%, 260px);
}

.work-card .work-media .project-browser-bar {
  min-height: 34px;
  padding: 0 12px;
}

.work-card .work-media .project-browser-bar > span {
  width: 7px;
  height: 7px;
}

.work-card .work-media .project-browser-bar small {
  font-size: 0.68rem;
}

.work-card .work-media .project-site-hero {
  gap: 8px;
  padding: 22px;
}

.work-card .work-media .project-site-hero strong,
.work-card .work-media .project-demo-preview strong {
  font-size: clamp(1.55rem, 2.4vw, 3rem);
}

.work-card .work-media .project-site-hero p,
.work-card .work-media .project-demo-preview p {
  display: none;
}

.work-card .work-media .project-site-sections {
  gap: 8px;
  padding: 12px;
}

.work-card .work-media .project-site-sections span {
  padding: 9px 6px;
  font-size: 0.66rem;
}

.work-card .work-media .project-demo-split span {
  min-height: 112px;
}

.work-card .work-media .project-ai-phone {
  padding: 24px;
  border-width: 6px;
  border-radius: 42px;
}

.work-card .work-media .project-ai-phone strong {
  font-size: clamp(1.5rem, 2.5vw, 3rem);
}

.work-card > a > strong,
.work-card > a > small,
.work-open {
  position: absolute;
  z-index: 2;
}

.work-card > a > strong {
  left: 28px;
  right: 28px;
  bottom: 72px;
  font-size: clamp(28px, 2.35vw, 44px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.work-card > a > small {
  left: 28px;
  bottom: 26px;
  display: inline-flex;
  width: max-content;
  max-width: calc(100% - 56px);
  padding: 9px 18px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(8, 10, 17, 0.32);
  backdrop-filter: blur(10px);
  font-size: 0.98rem;
  font-weight: 760;
}

.work-open {
  top: 28px;
  right: 28px;
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  border-radius: 999px;
  color: #fff;
  background: #101014;
  font-size: 0.8rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
}

.work-open::after {
  content: "↗";
  font-size: 2rem;
  letter-spacing: 0;
}

.work-card.is-featured a {
  outline: 3px solid var(--blue);
  outline-offset: -3px;
}

.work-card-dolaku .work-media {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), transparent 42%),
    repeating-linear-gradient(90deg, transparent 0 44px, rgba(255, 255, 255, 0.09) 45px 47px),
    linear-gradient(135deg, #071018, #16364a 44%, #0d1018);
}

.work-card-dolaku .work-media::before,
.work-card-beauty .work-media::before,
.work-card-ai .work-media::before {
  content: none;
}

.work-card-dolaku .work-media::before,
.work-card-bdz .work-media::before,
.work-card-shop .work-media::before {
  content: "";
  position: absolute;
  inset: 18% 12% auto auto;
  width: 64%;
  aspect-ratio: 1.7;
  border: 10px solid rgba(255, 255, 255, 0.78);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(0, 220, 255, 0.22), rgba(36, 88, 255, 0.24)),
    rgba(255, 255, 255, 0.08);
  transform: perspective(900px) rotateX(8deg) rotateY(-15deg);
}

.work-card-beauty .work-media {
  background:
    radial-gradient(circle at 72% 18%, rgba(227, 196, 152, 0.68), transparent 32%),
    linear-gradient(145deg, #0d0908, #a9825e 54%, #211511);
}

.work-card-beauty .work-media::before {
  content: "";
  position: absolute;
  right: 12%;
  bottom: 16%;
  width: 66%;
  aspect-ratio: 1.8;
  border: 8px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0 48%, rgba(255, 238, 210, 0.72) 48%),
    rgba(255, 255, 255, 0.16);
  transform: rotate(4deg);
}

.work-card-drive .work-media {
  background:
    radial-gradient(circle at 72% 22%, rgba(255, 255, 255, 0.9), transparent 18%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.92), rgba(198, 207, 210, 0.78) 42%, rgba(70, 76, 72, 0.58)),
    linear-gradient(135deg, #dfe4e8, #5b6868);
}

.work-card-drive .work-media::before {
  content: "";
  position: absolute;
  right: 12%;
  bottom: 18%;
  width: 42%;
  height: 16%;
  border-radius: 999px 999px 20px 20px;
  background: #f9fafb;
  box-shadow: inset 0 -16px 0 rgba(0, 0, 0, 0.42), 0 22px 40px rgba(0, 0, 0, 0.22);
}

.work-card-bdz .work-media {
  background:
    radial-gradient(circle at 68% 16%, rgba(255, 255, 255, 0.5), transparent 24%),
    linear-gradient(145deg, #05070d, #29323d 58%, #0a0b0f);
}

.work-card-consultant .work-media {
  background:
    radial-gradient(circle at 36% 26%, rgba(0, 220, 255, 0.32), transparent 28%),
    radial-gradient(circle at 78% 72%, rgba(91, 44, 255, 0.28), transparent 34%),
    linear-gradient(145deg, #162c45, #0d111b);
}

.work-card-consultant .work-media::before {
  content: "";
  position: absolute;
  inset: 18% 20% 16% 20%;
  border-radius: 999px 999px 38px 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.1)),
    var(--logo-gradient-soft);
  filter: blur(0.2px);
}

.work-card-shop .work-media {
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.78), transparent 22%),
    linear-gradient(145deg, #eef5f8, #9a9287 46%, #141414);
}

.work-card-app .work-media {
  background:
    radial-gradient(circle at 34% 38%, rgba(0, 220, 255, 0.22), transparent 28%),
    linear-gradient(145deg, #071a24, #152b35 52%, #070a10);
}

.work-card-app .work-media::before {
  content: "";
  position: absolute;
  top: 12%;
  left: 33%;
  width: 34%;
  height: 76%;
  border: 8px solid rgba(255, 255, 255, 0.66);
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(0, 220, 255, 0.2), rgba(36, 88, 255, 0.42));
}

.work-card-brand .work-media {
  background:
    radial-gradient(circle at 24% 26%, rgba(0, 220, 255, 0.34), transparent 25%),
    radial-gradient(circle at 78% 72%, rgba(91, 44, 255, 0.44), transparent 32%),
    linear-gradient(135deg, #f3f5fb, #b7c4d7 36%, #101827);
}

.work-card-ai .work-media {
  background:
    radial-gradient(circle at 50% 44%, rgba(0, 220, 255, 0.34), transparent 24%),
    radial-gradient(circle at 54% 62%, rgba(91, 44, 255, 0.44), transparent 34%),
    #0c0f17;
}

.work-card-ai .work-media::before {
  content: "";
  position: absolute;
  inset: 17% 30%;
  border: 7px solid rgba(255, 255, 255, 0.54);
  border-radius: 42px;
  background: rgba(0, 0, 0, 0.54);
}

.work-card-dolaku .work-media::before,
.work-card-beauty .work-media::before,
.work-card-ai .work-media::before {
  content: none;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 72px;
  padding: 0 28px;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  color: var(--blue);
  font-size: 1.2rem;
  font-weight: 720;
}

.project-rail {
  position: relative;
  min-height: clamp(520px, 43vw, 720px);
  overflow: hidden;
  border-radius: 18px;
  isolation: isolate;
  background:
    radial-gradient(circle at 72% 22%, rgba(36, 88, 255, 0.12), transparent 24rem),
    radial-gradient(circle at 16% 84%, rgba(0, 220, 255, 0.08), transparent 22rem);
}

.project-rail::before {
  content: "";
  position: absolute;
  inset: 10% 0 12% 56%;
  z-index: 0;
  border: 1px solid rgba(36, 88, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  filter: blur(0.2px);
}

.project-card {
  position: absolute;
  top: 0;
  height: 100%;
  min-height: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18%) scale(0.92);
  transition:
    opacity 0.62s ease,
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.62s ease;
  will-change: transform, opacity;
}

.project-card.is-active {
  left: 0;
  z-index: 3;
  width: min(68%, 1080px);
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.project-card-featured.is-active {
  width: min(72%, 1160px);
}

.project-card.is-next {
  top: 8%;
  right: 0;
  z-index: 2;
  width: 34%;
  height: 78%;
  opacity: 0.72;
  pointer-events: auto;
  transform: translateX(0) scale(0.96);
  filter: saturate(0.9) contrast(0.96);
}

.project-card.is-prev {
  top: 18%;
  right: 8%;
  z-index: 1;
  width: 28%;
  height: 62%;
  opacity: 0.18;
  transform: translateX(22%) scale(0.92);
  filter: blur(2px) saturate(0.72);
}

.project-art {
  position: relative;
  display: grid;
  place-items: center;
  height: 100%;
  overflow: hidden;
  border: 3px solid var(--blue);
  border-radius: var(--radius);
  background: #111;
  box-shadow:
    0 34px 90px rgba(12, 15, 27, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  transition: transform 0.55s ease, border-color 0.55s ease, box-shadow 0.55s ease;
}

.project-card.is-next .project-art {
  border-color: rgba(36, 88, 255, 0.34);
  box-shadow: 0 24px 70px rgba(12, 15, 27, 0.08);
}

.project-card.is-prev .project-art {
  border-color: rgba(36, 88, 255, 0.12);
}

.project-card.is-active:hover .project-art {
  transform: translateY(-4px);
  border-color: rgba(0, 220, 255, 0.8);
  box-shadow:
    0 40px 110px rgba(12, 15, 27, 0.18),
    0 0 44px rgba(0, 220, 255, 0.12);
}

.project-art::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 48%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent);
  pointer-events: none;
}

.project-screenshot {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.015);
  transition: transform 0.8s ease, filter 0.8s ease;
}

.project-card.is-active .project-screenshot {
  transform: scale(1.045);
}

.project-card.is-next .project-screenshot,
.project-card.is-prev .project-screenshot {
  filter: saturate(0.86) contrast(0.95);
}

.project-card-featured.is-active .project-art {
  border-color: rgba(0, 220, 255, 0.86);
  box-shadow:
    0 36px 110px rgba(36, 88, 255, 0.2),
    0 0 70px rgba(0, 220, 255, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.project-feature-badge {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(0, 220, 255, 0.44);
  border-radius: 999px;
  color: #06111c;
  background: var(--logo-gradient);
  box-shadow: 0 16px 42px rgba(0, 220, 255, 0.28);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.project-card > h3 {
  position: absolute;
  left: 34px;
  bottom: 82px;
  z-index: 3;
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.project-card > p {
  position: absolute;
  left: 34px;
  bottom: 32px;
  z-index: 3;
  display: inline-flex;
  margin: 0;
  padding: 9px 20px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.25);
  font-size: 1rem;
  font-weight: 680;
}

.project-card.is-next > h3 {
  left: 24px;
  right: 24px;
  bottom: 70px;
  font-size: clamp(1.55rem, 2vw, 2.4rem);
}

.project-card.is-next > p {
  left: 24px;
  bottom: 26px;
}

.project-card.is-next .round-link,
.project-card.is-prev .round-link,
.project-card.is-next .project-feature-badge,
.project-card.is-prev .project-feature-badge,
.project-card.is-prev > h3,
.project-card.is-prev > p {
  opacity: 0;
  pointer-events: none;
}

.project-carousel-controls {
  position: absolute;
  right: clamp(22px, 3vw, 44px);
  bottom: clamp(22px, 3vw, 44px);
  z-index: 6;
  display: flex;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(12, 15, 27, 0.12);
  border-radius: 999px;
  background: rgba(248, 248, 251, 0.74);
  box-shadow: 0 18px 44px rgba(12, 15, 27, 0.12);
  backdrop-filter: blur(14px);
}

.project-carousel-controls button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(12, 15, 27, 0.24);
  transition: width 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.project-carousel-controls button:hover,
.project-carousel-controls button.is-active {
  width: 34px;
  background: var(--logo-gradient);
  transform: translateY(-1px);
}

.project-card-dolaku .project-art {
  background:
    radial-gradient(circle at 35% 60%, rgba(36, 188, 196, 0.78), transparent 28%),
    linear-gradient(145deg, #083f4a, #091b28 58%, #020407);
}

.project-card-beauty .project-art {
  background:
    radial-gradient(circle at 82% 12%, rgba(230, 196, 152, 0.74), transparent 32%),
    linear-gradient(145deg, #1c1512, #a98664 52%, #1b1513);
}

.project-card-ai .project-art {
  background:
    radial-gradient(circle at 50% 42%, rgba(143, 107, 255, 0.75), transparent 32%),
    radial-gradient(circle at 80% 72%, rgba(0, 220, 255, 0.3), transparent 32%),
    #11131a;
}

.project-site-preview,
.project-demo-preview,
.project-ai-preview {
  position: relative;
  z-index: 1;
  color: #fff;
}

.project-site-preview,
.project-demo-preview {
  display: grid;
  align-content: start;
  width: min(720px, 78%);
  aspect-ratio: 1.52;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background: rgba(6, 9, 16, 0.76);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  transform: perspective(1000px) rotateX(4deg) rotateY(-8deg);
}

.project-demo-preview {
  transform: perspective(1000px) rotateX(5deg) rotateY(-6deg);
}

.project-browser-bar {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  background: rgba(8, 10, 16, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.project-browser-bar > span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(0, 220, 255, 0.6);
}

.project-browser-bar > span:nth-child(2) {
  background: var(--blue);
}

.project-browser-bar > span:nth-child(3) {
  background: var(--violet);
}

.project-browser-bar small {
  min-width: 0;
  margin-left: 10px;
  padding: 7px 12px;
  overflow: hidden;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  font-size: clamp(0.72rem, 0.9vw, 0.94rem);
  font-weight: 760;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-site-hero,
.project-demo-preview {
  text-align: left;
}

.project-site-hero {
  display: grid;
  align-content: center;
  gap: 13px;
  min-height: 58%;
  padding: clamp(24px, 3vw, 42px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.16)),
    radial-gradient(circle at 74% 34%, rgba(0, 220, 255, 0.26), transparent 32%),
    linear-gradient(135deg, rgba(10, 69, 77, 0.9), rgba(2, 9, 15, 0.92));
}

.project-site-hero em,
.project-demo-preview p,
.project-ai-phone span {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.78rem, 0.95vw, 1rem);
  font-style: normal;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-site-hero strong,
.project-demo-preview strong,
.project-ai-phone strong {
  max-width: 90%;
  font-size: clamp(2.15rem, 4.4vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.project-site-hero p {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.45;
}

.project-site-hero i,
.project-ai-phone i {
  display: inline-flex;
  width: max-content;
  margin-top: 4px;
  padding: 11px 16px;
  border-radius: 999px;
  color: #031018;
  background: var(--cyan);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 860;
}

.project-site-sections {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.project-site-sections span {
  min-width: 0;
  padding: 13px 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(0, 0, 0, 0.18);
  font-size: 0.82rem;
  font-weight: 760;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-demo-beauty {
  padding-bottom: 24px;
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 215, 174, 0.32), transparent 28%),
    linear-gradient(145deg, rgba(22, 15, 12, 0.86), rgba(161, 121, 84, 0.72));
}

.project-demo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 48%;
}

.project-demo-split span {
  min-height: 150px;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.46), transparent 20%),
    linear-gradient(145deg, #1b1513, #d2a878);
}

.project-demo-split span:last-child {
  background:
    radial-gradient(circle at 52% 34%, rgba(255, 255, 255, 0.38), transparent 20%),
    linear-gradient(145deg, #d9b180, #2b1913);
}

.project-demo-preview strong {
  display: block;
  max-width: 560px;
  padding: 26px 30px 0;
  color: #fff;
  font-size: clamp(2rem, 3.9vw, 4.7rem);
}

.project-demo-preview p {
  margin: 12px 30px 0;
  letter-spacing: 0.08em;
}

.project-ai-preview {
  display: grid;
  place-items: center;
  width: min(380px, 52%);
  aspect-ratio: 0.62;
}

.project-ai-phone {
  display: grid;
  align-content: end;
  gap: 16px;
  width: 100%;
  height: 100%;
  padding: 34px;
  border: 8px solid rgba(255, 255, 255, 0.7);
  border-radius: 54px;
  background:
    radial-gradient(circle at 50% 28%, rgba(91, 44, 255, 0.42), transparent 32%),
    linear-gradient(145deg, rgba(0, 0, 0, 0.9), rgba(10, 18, 24, 0.96));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.project-ai-phone strong {
  font-size: clamp(1.9rem, 3.5vw, 4rem);
}

.project-ai-phone p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
  line-height: 1.45;
}

.project-card.is-next .project-site-preview,
.project-card.is-next .project-demo-preview,
.project-card.is-next .project-ai-preview {
  width: 82%;
  transform: scale(0.92);
}

.project-card.is-next .project-site-hero strong,
.project-card.is-next .project-demo-preview strong,
.project-card.is-next .project-ai-phone strong {
  font-size: clamp(1.55rem, 2.4vw, 3rem);
}

.project-window,
.laptop-mock,
.phone-mock {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 62%;
  aspect-ratio: 1.4;
  border: 4px solid rgba(255, 255, 255, 0.75);
  border-radius: 42px;
  color: #fff;
  text-align: center;
  backdrop-filter: blur(6px);
}

.project-window strong,
.laptop-mock strong,
.phone-mock strong {
  font-size: clamp(2.2rem, 4vw, 4.9rem);
  line-height: 1;
}

.project-window small,
.laptop-mock span,
.phone-mock span {
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.laptop-mock {
  width: 74%;
  aspect-ratio: 1.75;
  border-radius: 22px;
  transform: perspective(800px) rotateX(8deg) rotateY(-8deg);
}

.phone-mock {
  width: 42%;
  aspect-ratio: 0.55;
  border-radius: 46px;
  background: rgba(0, 0, 0, 0.64);
}

.round-link {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 152px;
  min-height: 58px;
  padding: 0 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(91, 44, 255, 0.96) 0%, rgba(36, 88, 255, 0.98) 48%, rgba(0, 220, 255, 0.96) 100%);
  box-shadow:
    0 18px 54px rgba(36, 88, 255, 0.35),
    0 0 42px rgba(0, 220, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.38);
  text-transform: uppercase;
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.round-link::after {
  content: "↗";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  color: #07111c;
  background: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: 0;
}

.round-link::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -30%;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: skewX(-18deg);
  transition: left 0.55s ease;
}

.round-link:hover {
  transform: translateY(-3px);
  filter: saturate(1.12);
  box-shadow:
    0 24px 70px rgba(36, 88, 255, 0.46),
    0 0 62px rgba(0, 220, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.round-link:hover::before {
  left: 118%;
}

.services {
  border-top: 1px solid var(--line);
  overflow: visible;
}

.services-main-title {
  max-width: none;
  margin-bottom: clamp(52px, 6vw, 92px);
}

.service-accordion {
  display: grid;
  align-items: start;
  gap: 14px;
  padding-bottom: clamp(42px, 6vw, 82px);
}

.service-panel {
  position: relative;
  top: auto;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(12, 15, 27, 0.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 84% 18%, rgba(36, 88, 255, 0.09), transparent 22rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(242, 245, 255, 0.98));
  box-shadow:
    0 18px 54px rgba(12, 15, 27, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease, background 0.32s ease;
  backdrop-filter: blur(16px);
}

.service-panel + .service-panel {
  margin-top: 0;
}

.service-panel:hover,
.service-panel:focus-within,
.service-panel.is-open {
  z-index: 8;
  border-color: rgba(36, 88, 255, 0.28);
  background:
    radial-gradient(circle at 88% 20%, rgba(0, 220, 255, 0.12), transparent 20rem),
    radial-gradient(circle at 14% 88%, rgba(91, 44, 255, 0.08), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 248, 255, 0.98));
  box-shadow:
    0 30px 90px rgba(12, 15, 27, 0.13),
    0 0 54px rgba(0, 220, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transform: translateY(-2px);
}

.service-trigger {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  min-height: clamp(82px, 6.2vw, 118px);
  padding: clamp(24px, 2.8vw, 38px) clamp(24px, 4vw, 58px);
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-size: clamp(28px, 2.55vw, 48px);
  font-weight: 720;
  letter-spacing: -0.035em;
  line-height: 1.05;
  transition: color 0.25s ease;
}

.service-trigger > span:last-child {
  min-width: 0;
  overflow-wrap: normal;
}

.service-trigger::after {
  content: "Ansehen";
  margin-left: auto;
  padding: 10px 16px;
  border: 1px solid rgba(36, 88, 255, 0.22);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(36, 88, 255, 0.06);
  font-size: 0.9rem;
  font-weight: 820;
  letter-spacing: 0;
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.service-panel:hover .service-trigger::after,
.service-panel:focus-within .service-trigger::after,
.service-panel.is-open .service-trigger::after {
  content: "Geöffnet";
  opacity: 1;
  transform: translateX(0);
}

.service-panel:hover .service-trigger,
.service-panel:focus-within .service-trigger,
.service-panel.is-open .service-trigger {
  color: #05070d;
}

.diamond {
  width: 18px;
  height: 18px;
  background: #07070a;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  flex: 0 0 auto;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.service-panel:hover .diamond,
.service-panel:focus-within .diamond,
.service-panel.is-open .diamond {
  background: var(--logo-gradient);
  box-shadow: 0 0 26px rgba(0, 220, 255, 0.34);
  transform: rotate(45deg) scale(0.86);
}

.service-content {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 0.92fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: center;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 clamp(28px, 4.5vw, 72px);
  transform: translateY(18px);
  transition: max-height 0.58s ease, opacity 0.35s ease, padding 0.35s ease, transform 0.35s ease;
}

.service-panel:hover .service-content,
.service-panel:focus-within .service-content,
.service-panel.is-open .service-content {
  max-height: 760px;
  padding-bottom: clamp(30px, 3.6vw, 50px);
  opacity: 1;
  transform: translateY(0);
}

.service-copy p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.65;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.tag-row span {
  padding: 9px 18px;
  border-radius: 999px;
  color: var(--blue);
  background: #dedfff;
  font-size: 1rem;
  font-weight: 720;
}

.service-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
  box-shadow:
    0 24px 70px rgba(12, 15, 27, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(14px) scale(0.985);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent 46%),
    radial-gradient(circle at 18% 18%, rgba(0, 220, 255, 0.14), transparent 28%),
    radial-gradient(circle at 82% 76%, rgba(91, 44, 255, 0.18), transparent 30%);
  pointer-events: none;
}

.service-panel:hover .service-image,
.service-panel:focus-within .service-image,
.service-panel.is-open .service-image {
  transform: translateY(0) scale(1);
  box-shadow:
    0 34px 90px rgba(12, 15, 27, 0.22),
    0 0 40px rgba(0, 220, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 0.65s ease, filter 0.65s ease;
}

.service-panel:hover .service-image img,
.service-panel:focus-within .service-image img,
.service-panel.is-open .service-image img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.03);
}

.service-image-web {
  background:
    radial-gradient(circle at 60% 50%, rgba(255, 255, 255, 0.28), transparent 30%),
    linear-gradient(145deg, #050505, #2b2c31);
}

.service-image-ai {
  background:
    radial-gradient(circle at 52% 36%, rgba(143, 107, 255, 0.62), transparent 32%),
    #141319;
}

.service-image-process {
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 220, 255, 0.42), transparent 30%),
    linear-gradient(135deg, #0e171c, #070708);
}

.service-image-mobile {
  background:
    radial-gradient(circle at 50% 28%, rgba(91, 44, 255, 0.42), transparent 30%),
    linear-gradient(145deg, #050505, #20222d);
}

.service-image-ecommerce {
  background:
    radial-gradient(circle at 30% 20%, rgba(0, 220, 255, 0.22), transparent 30%),
    radial-gradient(circle at 76% 72%, rgba(91, 44, 255, 0.28), transparent 32%),
    linear-gradient(145deg, #120f18, #050505);
}

.service-image-brand {
  background:
    radial-gradient(circle at 76% 22%, rgba(36, 88, 255, 0.42), transparent 34%),
    radial-gradient(circle at 20% 74%, rgba(91, 44, 255, 0.24), transparent 32%),
    #07070c;
}

.service-image-marketing {
  background:
    radial-gradient(circle at 50% 46%, rgba(0, 220, 255, 0.32), transparent 32%),
    linear-gradient(145deg, #080d14, #050505);
}

.service-image-video {
  background:
    radial-gradient(circle at 50% 50%, rgba(91, 44, 255, 0.36), transparent 32%),
    linear-gradient(145deg, #0d0d12, #050505);
}

.device-pair {
  position: relative;
  width: 70%;
  height: 210px;
}

.device-pair span {
  position: absolute;
  bottom: 0;
  width: 58%;
  height: 170px;
  border: 8px solid #202126;
  border-radius: 18px;
  background: linear-gradient(135deg, #f4f7ff, #b9c4d9);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.34);
}

.device-pair span:first-child {
  left: 0;
  transform: rotate(-6deg);
}

.device-pair span:last-child {
  right: 0;
  transform: rotate(8deg);
}

.chat-device {
  width: min(310px, 70%);
  aspect-ratio: 0.7;
  padding: 28px;
  border: 8px solid #25252b;
  border-radius: 44px;
  color: #fff;
  background: #06060a;
}

.chat-device strong {
  display: block;
  margin-top: 60%;
  font-size: 2rem;
}

.chat-device p {
  color: rgba(255, 255, 255, 0.7);
}

.app-device {
  display: grid;
  align-content: end;
  gap: 14px;
  width: min(300px, 62%);
  aspect-ratio: 0.62;
  padding: 28px;
  border: 8px solid #26272e;
  border-radius: 46px;
  color: #fff;
  background:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(145deg, #090912, #15172a);
  background-size: 30px 30px, 30px 30px, auto;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42), 0 0 34px rgba(91, 44, 255, 0.22);
}

.app-device strong {
  font-size: 2.2rem;
  line-height: 1;
}

.app-device p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.shop-board,
.brand-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(80px, 1fr));
  gap: 14px;
  width: min(420px, 76%);
  transform: rotate(-6deg);
}

.shop-board span,
.brand-tiles span {
  aspect-ratio: 1.2;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(0, 220, 255, 0.24), rgba(36, 88, 255, 0.45), rgba(91, 44, 255, 0.26));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.brand-tiles {
  grid-template-columns: repeat(3, minmax(64px, 1fr));
  transform: rotate(8deg);
}

.brand-tiles span:nth-child(odd) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 32%),
    linear-gradient(145deg, rgba(91, 44, 255, 0.42), rgba(36, 88, 255, 0.48));
}

.growth-lines {
  display: grid;
  gap: 22px;
  width: min(460px, 78%);
}

.growth-lines span {
  height: 62px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 220, 255, 0.22), var(--cyan), var(--blue), var(--magenta));
  box-shadow: 0 16px 46px rgba(36, 88, 255, 0.22);
}

.growth-lines span:nth-child(1) {
  width: 62%;
}

.growth-lines span:nth-child(2) {
  width: 84%;
}

.growth-lines span:nth-child(3) {
  width: 100%;
}

.video-frame {
  position: relative;
  display: grid;
  place-items: center;
  width: min(500px, 80%);
  aspect-ratio: 16 / 9;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(145deg, rgba(36, 88, 255, 0.24), rgba(91, 44, 255, 0.22));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42), inset 0 0 50px rgba(255, 255, 255, 0.06);
}

.video-frame span {
  width: 82px;
  height: 82px;
  border-radius: 999px;
  background: #fff;
  clip-path: polygon(34% 22%, 34% 78%, 82% 50%);
  filter: drop-shadow(0 0 28px rgba(255, 255, 255, 0.48));
}

.flow-lines {
  display: grid;
  gap: 24px;
  width: 64%;
}

.flow-lines span {
  height: 54px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--violet));
  box-shadow: 0 20px 54px rgba(36, 88, 255, 0.28);
}

.process-title {
  max-width: 1050px;
  margin-bottom: clamp(42px, 5vw, 72px);
}

.process-stack {
  display: grid;
  gap: clamp(20px, 2.2vw, 32px);
  justify-items: stretch;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.process-card {
  position: relative;
  top: auto;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  width: 100%;
  min-height: auto;
  overflow: hidden;
  padding: clamp(34px, 4.4vw, 62px);
  border: 1px solid rgba(36, 88, 255, 0.14);
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 18%, rgba(0, 220, 255, 0.12), transparent 20rem),
    radial-gradient(circle at 14% 86%, rgba(91, 44, 255, 0.16), transparent 20rem),
    linear-gradient(135deg, #10131d, #05070d 72%);
  box-shadow:
    0 28px 90px rgba(12, 15, 27, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
  isolation: isolate;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 220, 255, 0.3);
  box-shadow:
    0 34px 100px rgba(15, 24, 48, 0.22),
    0 0 58px rgba(0, 220, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.11);
}

.process-card > div:first-child {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 0 clamp(24px, 3.4vw, 54px);
  align-items: start;
}

.process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.12));
}

.process-card::after {
  content: attr(data-process-word);
  position: absolute;
  right: clamp(22px, 4vw, 76px);
  bottom: clamp(10px, 1.4vw, 24px);
  z-index: -1;
  color: rgba(255, 255, 255, 0.045);
  font-size: clamp(68px, 8vw, 136px);
  font-weight: 950;
  line-height: 0.76;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  filter: drop-shadow(0 0 34px rgba(0, 220, 255, 0.1));
  pointer-events: none;
}

.process-card + .process-card {
  margin-top: 0;
}

.process-card span {
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  min-width: 64px;
  height: 64px;
  padding: 0;
  border: 1px solid rgba(0, 220, 255, 0.28);
  border-radius: 20px;
  color: #06111c;
  background: var(--logo-gradient);
  box-shadow:
    0 18px 44px rgba(0, 220, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  font-size: 22px;
  font-weight: 900;
}

.process-card h3 {
  grid-column: 2;
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4.2vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.process-card p {
  grid-column: 2;
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.24vw, 21px);
  line-height: 1.6;
}

.process-card h3::after {
  content: "";
  display: block;
  width: min(180px, 42vw);
  height: 3px;
  margin-top: clamp(18px, 2vw, 26px);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--violet), transparent);
  box-shadow: 0 0 28px rgba(0, 220, 255, 0.32);
  transform-origin: left center;
  animation: process-text-line 5.4s ease-in-out infinite;
}

.process-card-one {
  background:
    radial-gradient(circle at 78% 20%, rgba(0, 220, 255, 0.16), transparent 20rem),
    linear-gradient(135deg, #101722, #06080f 72%);
}

.process-card-two {
  background:
    radial-gradient(circle at 82% 18%, rgba(91, 44, 255, 0.22), transparent 20rem),
    linear-gradient(135deg, #15111f, #07070d 72%);
}

.process-card-three {
  background:
    radial-gradient(circle at 80% 18%, rgba(0, 220, 255, 0.16), transparent 20rem),
    radial-gradient(circle at 18% 84%, rgba(36, 88, 255, 0.12), transparent 22rem),
    linear-gradient(135deg, #0c1822, #05070d 72%);
}

@keyframes process-text-line {
  0%,
  100% {
    transform: scaleX(0.42);
    opacity: 0.52;
  }

  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

.dark-split,
.dark-contact {
  padding: clamp(92px, 10vw, 148px) 0;
  color: #fff;
  background: #050505;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.56fr) minmax(0, 1fr);
  gap: clamp(54px, 8vw, 120px);
  align-items: center;
}

.portrait-frame {
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.about-text h2,
.contact-copy h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(46px, 5.5vw, 102px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.about-text p,
.contact-copy p {
  max-width: 780px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(18px, 1.35vw, 23px);
  line-height: 1.62;
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.about-pills span {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 720;
}

.logos {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 86% 18%, rgba(91, 44, 255, 0.18), transparent 26rem),
    radial-gradient(circle at 12% 82%, rgba(0, 220, 255, 0.16), transparent 24rem),
    linear-gradient(135deg, #071018, #05070d 68%, #0d1020);
}

.logos::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 50% 50%, #000 0 38%, transparent 76%);
  pointer-events: none;
}

.logos::after {
  content: "";
  position: absolute;
  inset: auto -12% 14% auto;
  width: min(560px, 46vw);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(0, 220, 255, 0.22), rgba(36, 88, 255, 0.12) 34%, transparent 68%);
  filter: blur(8px);
  opacity: 0.75;
  pointer-events: none;
  animation: logo-ambient 9s ease-in-out infinite;
}

.logos .wide-container {
  position: relative;
  z-index: 1;
}

.logo-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.54fr);
  gap: clamp(28px, 5vw, 86px);
  align-items: end;
  margin-bottom: clamp(38px, 5vw, 72px);
}

.logo-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 9px 13px;
  border: 1px solid rgba(0, 220, 255, 0.22);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(0, 220, 255, 0.07);
  box-shadow: 0 0 28px rgba(0, 220, 255, 0.08);
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-title {
  max-width: 960px;
  color: #fff;
}

.logo-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.58;
}

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

.logo-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  padding: clamp(24px, 2.2vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 220, 255, 0.14), transparent 14rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.logo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 34%, rgba(0, 220, 255, 0.14) 45%, transparent 56%);
  opacity: 0;
  transform: translateX(-120%);
  transition: opacity 0.25s ease;
}

.logo-card::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -54px;
  width: 150px;
  aspect-ratio: 1;
  border: 1px solid rgba(0, 220, 255, 0.18);
  border-radius: 42px;
  transform: rotate(18deg);
  background: rgba(36, 88, 255, 0.08);
}

.logo-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 220, 255, 0.34);
  box-shadow:
    0 30px 86px rgba(0, 0, 0, 0.32),
    0 0 46px rgba(0, 220, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.logo-card:hover::before {
  opacity: 1;
  animation: logo-shine 1.1s ease forwards;
}

.logo-card span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 34px;
  border-radius: 14px;
  color: #05101a;
  background: var(--logo-gradient);
  box-shadow: 0 14px 34px rgba(0, 220, 255, 0.18);
  font-size: 0.92rem;
  font-weight: 900;
}

.logo-card h3 {
  position: relative;
  z-index: 1;
  max-width: 310px;
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.logo-card p {
  position: relative;
  z-index: 1;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.55;
}

.logo-ticker {
  position: relative;
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.logo-ticker::before,
.logo-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 120px;
  pointer-events: none;
}

.logo-ticker::before {
  left: 0;
  background: linear-gradient(90deg, #071018, transparent);
}

.logo-ticker::after {
  right: 0;
  background: linear-gradient(270deg, #0d1020, transparent);
}

.logo-ticker div {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  width: max-content;
  min-width: max-content;
  padding: 12px;
  will-change: transform;
  animation: logo-ticker 38s linear infinite;
}

.logo-ticker span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.055);
  font-weight: 780;
  white-space: nowrap;
}

@keyframes logo-shine {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(120%);
  }
}

@keyframes logo-ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes logo-ambient {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.58;
  }

  50% {
    transform: translate3d(-34px, -20px, 0) scale(1.08);
    opacity: 0.86;
  }
}

.faq-title {
  margin-bottom: 76px;
}

.faq-accordion {
  display: flex;
  gap: 32px;
  min-height: 560px;
  align-items: stretch;
}

.faq-tab,
.faq-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.faq-tab {
  display: grid;
  place-items: center;
  flex: 0 0 122px;
  padding: 18px;
  color: var(--ink);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: clamp(1.4rem, 2vw, 2.1rem);
  font-weight: 520;
}

.faq-panel {
  display: none;
  flex: 1 1 680px;
  min-width: 520px;
  grid-template-columns: 52px minmax(220px, 0.78fr) minmax(260px, 1fr);
  gap: 26px;
  align-items: center;
  padding: 32px;
}

.faq-panel.is-open {
  display: grid;
}

.faq-panel span {
  align-self: stretch;
  writing-mode: vertical-rl;
  font-weight: 800;
}

.faq-panel::before {
  content: "";
  width: 100%;
  aspect-ratio: 0.9;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 80%, rgba(36, 88, 255, 0.84), transparent 34%),
    linear-gradient(135deg, #f7f7fb, #c8cdfd);
}

.faq-panel h3 {
  margin: 0;
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  line-height: 1.14;
}

.faq-panel p {
  margin: 18px 0 0;
  color: #313745;
  font-size: 1.08rem;
  line-height: 1.64;
}

.contact-grid {
  align-items: start;
}

.contact-links {
  display: grid;
  gap: 10px;
  max-width: 620px;
  margin-top: 34px;
}

.contact-links a,
.contact-links span {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.055);
  font-weight: 720;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

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

.contact-form label.full,
.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  outline: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  padding: 14px;
}

.contact-form select {
  appearance: none;
  color-scheme: dark;
}

.contact-form select option {
  color: #070a18;
  background: #fff;
}

.contact-form select option:checked {
  color: #070a18;
  background: #dce9ff;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(0, 220, 255, 0.72);
  box-shadow: 0 0 0 4px rgba(0, 220, 255, 0.12);
}

.form-submit {
  min-height: 58px;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  background: var(--blue);
  font-weight: 850;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--cyan);
  font-weight: 720;
}

.form-status.is-error {
  color: #ffb8c8;
}

.inquiry-page,
.pricing-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 76% 28%, rgba(0, 220, 255, 0.22), transparent 28rem),
    radial-gradient(circle at 88% 78%, rgba(91, 44, 255, 0.28), transparent 30rem),
    linear-gradient(135deg, #02040d, #070a18 62%, #050713);
}

.inquiry-page {
  min-height: 100svh;
  padding: clamp(150px, 14vw, 220px) 0 clamp(70px, 8vw, 120px);
}

.inquiry-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1fr);
  gap: clamp(36px, 5vw, 78px);
  align-items: stretch;
}

.inquiry-copy {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: clamp(18px, 2vw, 28px) 0;
}

.inquiry-copy h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(46px, 5.25vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.inquiry-copy h1 span {
  display: block;
  color: transparent;
  background: var(--logo-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 0 0 46px rgba(0, 220, 255, 0.16);
}

.pricing-hero h1 {
  margin: 0;
  font-size: clamp(56px, 7vw, 124px);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.inquiry-copy p,
.pricing-hero p {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 1.35vw, 23px);
  line-height: 1.62;
}

.inquiry-points,
.pricing-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.inquiry-points span,
.pricing-badges span {
  padding: 10px 14px;
  border: 1px solid rgba(0, 220, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(0, 220, 255, 0.07);
  font-weight: 800;
}

.inquiry-form {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  border-color: rgba(0, 220, 255, 0.2);
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 10%, rgba(0, 220, 255, 0.16), transparent 12rem),
    radial-gradient(circle at 88% 88%, rgba(91, 44, 255, 0.22), transparent 14rem),
    rgba(255, 255, 255, 0.07);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}

.inquiry-form .form-submit,
.inquiry-form .inquiry-privacy {
  grid-column: 1 / -1;
}

.inquiry-form .form-submit {
  background: var(--logo-gradient);
  box-shadow: 0 18px 54px rgba(36, 88, 255, 0.28);
}

.inquiry-privacy {
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.5;
}

.inquiry-privacy a {
  color: var(--cyan);
  font-weight: 800;
}

.inquiry-faq {
  position: relative;
  z-index: 1;
  margin-top: clamp(58px, 7vw, 108px);
  padding: clamp(24px, 3.6vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 14% 6%, rgba(0, 220, 255, 0.16), transparent 18rem),
    radial-gradient(circle at 92% 18%, rgba(91, 44, 255, 0.2), transparent 20rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
}

.inquiry-faq-header {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.48fr);
  gap: clamp(22px, 4vw, 70px);
  align-items: end;
}

.inquiry-faq-header .legal-kicker {
  grid-column: 1 / -1;
}

.inquiry-faq h2 {
  margin: 0;
  max-width: 940px;
  font-size: clamp(38px, 5.6vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.inquiry-faq-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.56;
}

.inquiry-faq-list {
  display: grid;
  gap: 12px;
  margin-top: clamp(28px, 4vw, 54px);
}

.inquiry-faq-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(5, 8, 16, 0.72);
  transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.inquiry-faq-item[open] {
  border-color: rgba(0, 220, 255, 0.3);
  background:
    radial-gradient(circle at 90% 18%, rgba(0, 220, 255, 0.12), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045));
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
}

.inquiry-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(18px, 2.2vw, 28px);
  color: #fff;
  cursor: pointer;
  font-size: clamp(19px, 1.6vw, 28px);
  font-weight: 850;
  line-height: 1.18;
  list-style: none;
}

.inquiry-faq-item summary::-webkit-details-marker {
  display: none;
}

.inquiry-faq-item summary::after {
  content: "+";
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: #06101c;
  background: var(--logo-gradient);
  box-shadow: 0 12px 30px rgba(0, 220, 255, 0.2);
  font-size: 1.25rem;
  font-weight: 900;
  transition: transform 0.22s ease;
}

.inquiry-faq-item[open] summary::after {
  transform: rotate(45deg);
}

.inquiry-faq-item p {
  max-width: 1040px;
  margin: -8px 0 0;
  padding: 0 clamp(18px, 2.2vw, 28px) clamp(20px, 2.4vw, 30px);
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(16px, 1.08vw, 19px);
  line-height: 1.66;
}

.pricing-hero {
  padding: clamp(150px, 14vw, 220px) 0 clamp(62px, 8vw, 110px);
}

.pricing-hero .container {
  position: relative;
  z-index: 1;
}

.pricing-section {
  padding: clamp(60px, 7vw, 112px) 0;
  background:
    radial-gradient(circle at 88% 8%, rgba(36, 88, 255, 0.08), transparent 28rem),
    var(--paper);
}

.price-intro {
  display: grid;
  gap: 16px;
  max-width: 980px;
  margin-bottom: clamp(28px, 4vw, 54px);
}

.price-intro span {
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-intro h2,
.pricing-transparent h2 {
  margin: 0;
  font-size: clamp(38px, 4.8vw, 82px);
  line-height: 1;
  letter-spacing: -0.055em;
}

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

.price-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 20px;
  min-height: 640px;
  padding: clamp(24px, 2.4vw, 36px);
  border: 1px solid rgba(12, 15, 27, 0.1);
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 12%, rgba(0, 220, 255, 0.18), transparent 14rem),
    linear-gradient(145deg, #142330, #08111c 72%);
  box-shadow: 0 28px 84px rgba(18, 22, 35, 0.14);
}

.price-card-featured {
  border-color: rgba(0, 220, 255, 0.56);
  box-shadow:
    0 32px 90px rgba(36, 88, 255, 0.18),
    0 0 44px rgba(0, 220, 255, 0.12);
}

.price-note {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #041018;
  background: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
}

.price-card h3 {
  margin: 10px 0 0;
  font-size: clamp(32px, 3vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  width: fit-content;
  padding: 16px 18px;
  border: 1px solid rgba(0, 220, 255, 0.4);
  border-radius: 16px;
  background: rgba(0, 220, 255, 0.08);
}

.price-amount strong {
  font-size: clamp(38px, 4vw, 60px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.price-amount span,
.price-card p,
.price-card li {
  color: rgba(255, 255, 255, 0.76);
}

.price-card p {
  margin: 0;
  font-weight: 720;
  line-height: 1.55;
}

.price-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  font-weight: 720;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(0, 220, 255, 0.56);
}

.price-card a,
.pricing-transparent a {
  align-self: end;
  display: inline-flex;
  justify-content: center;
  margin-top: auto;
  padding: 15px 18px;
  border-radius: 999px;
  color: #041018;
  background: linear-gradient(135deg, #91f6ff, #00dcff);
  font-weight: 900;
  box-shadow: 0 16px 42px rgba(0, 220, 255, 0.22);
}

.pricing-transparent {
  display: grid;
  gap: 22px;
  margin-top: clamp(34px, 5vw, 72px);
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(12, 15, 27, 0.1);
  border-radius: 26px;
  background:
    radial-gradient(circle at 8% 14%, rgba(0, 220, 255, 0.12), transparent 18rem),
    rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 80px rgba(18, 22, 35, 0.08);
}

.pricing-transparent p {
  max-width: 980px;
  margin: 0;
  color: rgba(11, 13, 20, 0.68);
  font-size: clamp(18px, 1.25vw, 22px);
  line-height: 1.65;
}

.pricing-transparent div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pricing-transparent span {
  padding: 16px;
  border: 1px solid rgba(12, 15, 27, 0.1);
  border-radius: 16px;
  color: rgba(11, 13, 20, 0.72);
  background: rgba(255, 255, 255, 0.66);
  font-weight: 780;
}

.pricing-transparent a {
  width: fit-content;
  color: #fff;
  background: var(--logo-gradient);
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(150px, 15vw, 230px) 0 clamp(58px, 8vw, 112px);
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(91, 44, 255, 0.24), transparent 28rem),
    radial-gradient(circle at 16% 72%, rgba(0, 220, 255, 0.16), transparent 24rem),
    linear-gradient(135deg, #05070d, #07111b 54%, #0d1020);
}

.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, #000, transparent 78%);
  pointer-events: none;
}

.legal-hero .container {
  position: relative;
  z-index: 1;
}

.legal-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-hero h1 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(58px, 8vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.legal-hero p {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.6;
}

.legal-section {
  padding: clamp(58px, 7vw, 104px) 0;
  background:
    radial-gradient(circle at 92% 8%, rgba(36, 88, 255, 0.08), transparent 28rem),
    var(--paper);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(240px, 330px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 70px);
  align-items: start;
}

.legal-aside {
  position: sticky;
  top: 28px;
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(12, 15, 27, 0.1);
  border-radius: 22px;
  background:
    radial-gradient(circle at 10% 12%, rgba(0, 220, 255, 0.14), transparent 12rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.58));
  box-shadow: 0 20px 60px rgba(18, 22, 35, 0.08);
}

.legal-aside strong {
  font-size: 1.05rem;
  font-weight: 880;
}

.legal-aside span,
.legal-aside a {
  color: rgba(11, 13, 20, 0.68);
  font-weight: 700;
}

.legal-aside a:hover {
  color: var(--blue);
}

.legal-content {
  padding: clamp(28px, 4vw, 58px);
  border: 1px solid rgba(12, 15, 27, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 80px rgba(18, 22, 35, 0.08);
}

.legal-content h2 {
  margin: 44px 0 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

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

.legal-content h3 {
  margin: 28px 0 10px;
  font-size: 1.18rem;
}

.legal-content p,
.legal-content li {
  color: rgba(11, 13, 20, 0.72);
  font-size: clamp(17px, 1.12vw, 20px);
  line-height: 1.72;
}

.legal-content p {
  margin: 0 0 16px;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 22px;
}

.legal-content a {
  color: var(--blue);
  font-weight: 800;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 7vw, 94px) 0 34px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 16%, rgba(36, 88, 255, 0.16), transparent 24rem),
    radial-gradient(circle at 12% 86%, rgba(0, 220, 255, 0.12), transparent 22rem),
    #111217;
}

.footer-cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 450px);
  gap: clamp(28px, 4vw, 76px);
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 72px);
  padding: clamp(28px, 4.5vw, 70px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 14% 28%, rgba(0, 220, 255, 0.22), transparent 22rem),
    radial-gradient(circle at 88% 24%, rgba(91, 44, 255, 0.24), transparent 24rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  background-size:
    54px 54px,
    54px 54px,
    auto,
    auto,
    auto;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 28px 80px rgba(0, 0, 0, 0.22);
}

.footer-cta-panel::before {
  content: none;
}

.footer-cta-panel::after {
  content: "";
  position: absolute;
  right: clamp(42px, 9vw, 180px);
  bottom: clamp(34px, 6vw, 92px);
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow:
    0 0 22px rgba(0, 220, 255, 0.8),
    0 0 60px rgba(91, 44, 255, 0.5);
  animation: footerPulse 3.6s ease-in-out infinite;
  pointer-events: none;
}

.footer-cta-copy {
  position: relative;
  z-index: 1;
}

.footer-cta-copy span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 0.95rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-cta-copy h2 {
  max-width: 980px;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 6vw, 112px);
  line-height: 0.98;
  font-weight: 760;
  letter-spacing: -0.045em;
}

.footer-cta-copy h2::first-line {
  color: #fff;
}

.footer-cta-action {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  justify-items: end;
  width: 100%;
}

.footer-fly-banner {
  position: relative;
  width: 100%;
  min-height: 112px;
  overflow: hidden;
  padding: 20px 22px 22px;
  border: 1px solid rgba(0, 220, 255, 0.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 28%, rgba(0, 220, 255, 0.22), transparent 9rem),
    radial-gradient(circle at 84% 70%, rgba(91, 44, 255, 0.26), transparent 10rem),
    linear-gradient(135deg, rgba(5, 8, 18, 0.82), rgba(16, 19, 35, 0.62));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 54px rgba(0, 0, 0, 0.24),
    0 0 42px rgba(0, 220, 255, 0.1);
  backdrop-filter: blur(18px);
}

.footer-fly-banner::before {
  content: "";
  position: absolute;
  inset: -45% auto -45% -35%;
  width: 46%;
  background: linear-gradient(90deg, transparent, rgba(0, 220, 255, 0.22), rgba(91, 44, 255, 0.2), transparent);
  filter: blur(8px);
  transform: translateX(-120%) skewX(-16deg);
  animation: footerBannerSweep 5.4s ease-in-out infinite;
  pointer-events: none;
}

.footer-fly-banner::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 20px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow:
    0 0 18px rgba(0, 220, 255, 0.9),
    0 0 36px rgba(36, 88, 255, 0.55);
}

.footer-fly-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(248, 248, 251, 0.68);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-fly-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--logo-gradient);
  box-shadow: 0 0 18px rgba(0, 220, 255, 0.7);
  transform: rotate(45deg);
}

.footer-fly-line {
  position: relative;
  z-index: 1;
  height: 42px;
  margin-top: 16px;
}

.footer-fly-line span {
  position: absolute;
  inset: 0 auto auto 0;
  max-width: 100%;
  color: #fff;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  font-weight: 850;
  line-height: 1.2;
  text-wrap: balance;
  opacity: 0;
  transform: translate3d(-18px, 18px, 0);
  animation: footerTextFlight 12s ease-in-out infinite;
}

.footer-fly-line span:nth-child(2) {
  animation-delay: 4s;
}

.footer-fly-line span:nth-child(3) {
  animation-delay: 8s;
}

.footer-cta-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 0 28px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--logo-gradient);
  box-shadow:
    0 18px 50px rgba(36, 88, 255, 0.28),
    0 0 34px rgba(0, 220, 255, 0.14);
  font-weight: 850;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-cta-button:hover {
  transform: translateY(-3px);
  box-shadow:
    0 22px 64px rgba(36, 88, 255, 0.36),
    0 0 44px rgba(0, 220, 255, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 76px);
  padding: clamp(46px, 5vw, 76px) 0;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-column strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  font-weight: 760;
  text-transform: uppercase;
}

.footer-column strong::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--blue);
  transform: rotate(45deg);
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 1.3vw, 25px);
  line-height: 1.35;
}

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

.footer-contact a:first-of-type {
  font-size: clamp(22px, 1.7vw, 32px);
  font-weight: 650;
}

.footer-bottom {
  position: relative;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 22px;
  align-items: end;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-watermark {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  z-index: 0;
  color: rgba(255, 255, 255, 0.06);
  font-size: clamp(90px, 17vw, 260px);
  line-height: 0.72;
  font-weight: 900;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.footer-brand,
.footer-bottom > span:not(.footer-watermark) {
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.footer-bottom > span:not(.footer-watermark) {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.footer-bottom > span:last-child {
  justify-self: end;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.18s;
}

@keyframes universeDrift {
  0%, 100% {
    transform: translate3d(-1%, 0, 0) scale(1);
  }
  45% {
    transform: translate3d(3%, -2%, 0) scale(1.04);
  }
  70% {
    transform: translate3d(-2%, 2%, 0) scale(1.02);
  }
}

@keyframes universeSweep {
  from {
    transform: rotate(0deg) scale(1.04);
  }
  to {
    transform: rotate(360deg) scale(1.04);
  }
}

@keyframes galaxyHover {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -12px, 0) scale(1.02);
  }
}

@keyframes footerOrb {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  50% {
    transform: translate3d(-14px, 10px, 0) rotate(8deg) scale(1.05);
  }
}

@keyframes footerPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.65;
  }
  50% {
    transform: scale(1.8);
    opacity: 1;
  }
}

@keyframes footerBannerSweep {
  0%, 52% {
    transform: translateX(-120%) skewX(-16deg);
    opacity: 0;
  }
  62% {
    opacity: 1;
  }
  82%, 100% {
    transform: translateX(360%) skewX(-16deg);
    opacity: 0;
  }
}

@keyframes footerTextFlight {
  0%, 100% {
    opacity: 0;
    transform: translate3d(-18px, 18px, 0);
    filter: blur(6px);
  }
  8%, 28% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
  36% {
    opacity: 0;
    transform: translate3d(18px, -14px, 0);
    filter: blur(5px);
  }
}

@media (max-width: 1180px) {
  :root {
    --wide: min(100% - 48px, 1720px);
  }

  .mega-menu {
    width: min(1060px, calc(100vw - 28px));
    grid-template-columns: minmax(250px, 0.9fr) repeat(3, minmax(170px, 1fr));
    gap: 14px;
    padding: 18px;
  }

  .mega-feature,
  .mega-column {
    min-height: 340px;
  }

  .mega-feature {
    gap: 20px;
    padding: 26px 22px !important;
  }

  .mega-feature strong {
    font-size: clamp(26px, 2.3vw, 34px);
  }

  .mega-column {
    gap: 8px;
    padding: 22px 20px;
  }

  .mega-column b {
    font-size: 0.98rem;
  }

  .mega-column span {
    font-size: 0.83rem;
  }

  .hero-inner,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-orbit {
    min-height: 480px;
  }

  .hero-bottom {
    margin-top: 0;
  }

  .large-heading-row {
    grid-template-columns: 1fr;
  }

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

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

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

  .inquiry-faq-header {
    grid-template-columns: 1fr;
  }

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

  .price-card {
    min-height: auto;
  }

  .logo-intro,
  .legal-layout {
    grid-template-columns: 1fr;
  }

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

  .legal-aside {
    position: relative;
    top: auto;
  }

  .service-content,
  .process-card {
    grid-template-columns: 1fr;
  }

  .faq-accordion {
    gap: 14px;
  }

  .faq-tab {
    flex-basis: 88px;
  }

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

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    width: calc(100% - 24px);
  }

  .brand {
    color: #fff;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(12, 15, 27, 0.12);
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  }

  .menu-toggle span {
    grid-area: 1 / 1;
    margin: 0;
    background: #0b0d14 !important;
  }

  .menu-toggle span:first-child {
    transform: translateY(-4px);
  }

  .menu-toggle span:last-child {
    transform: translateY(4px);
  }

  .menu-open .menu-toggle span:first-child {
    transform: rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: rotate(-45deg);
  }

  .header-cta {
    display: none;
  }

  .nav-pill {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    display: grid;
    gap: 6px;
    padding: 8px;
    border: 1px solid rgba(12, 15, 27, 0.12);
    border-radius: 18px;
    color: #0b0d14;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .nav-pill a,
  .nav-pill button {
    justify-content: center;
    color: #0b0d14 !important;
  }

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

  .dropdown-panel {
    position: static;
    display: none;
    border: 1px solid rgba(12, 15, 27, 0.1);
    background: #fff !important;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }

  .nav-dropdown.is-open .dropdown-panel {
    display: grid;
  }

  .mega-menu {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
    max-height: calc(100svh - 116px);
    overflow-y: auto;
    border-radius: 16px;
    color: #0b0d14;
    transform: none;
  }

  .nav-dropdown-mega.is-open .mega-menu {
    transform: none;
  }

  .mega-feature {
    grid-template-columns: 1fr;
    grid-row: auto;
    min-height: auto;
    padding: 18px !important;
  }

  .mega-feature span,
  .mega-feature strong,
  .mega-feature small,
  .mega-feature em {
    grid-column: auto;
    grid-row: auto;
  }

  .mega-column {
    padding: 12px;
  }

  .mega-strip {
    grid-column: auto;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 8px;
    padding: 14px 2px 0;
  }

  .mega-strip a {
    width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(58px, 15vw, 118px);
  }

  .hero-offer-text {
    font-size: 21px;
  }

  .orbit-label {
    display: none;
  }

  .project-rail {
    min-height: 560px;
  }

  .project-card.is-active {
    width: 76%;
  }

  .project-card.is-next {
    width: 34%;
    opacity: 0.42;
    transform: translateX(12%) scale(0.94);
  }

  .work-filter-bar {
    gap: 14px 22px;
  }

  .project-card {
    min-height: auto;
  }

  .project-art {
    height: 440px;
  }

  .service-panel {
    top: auto;
  }

  .service-panel + .service-panel {
    margin-top: 14px;
  }

  .process-card {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .process-card + .process-card {
    margin-top: 18px;
  }

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

  .faq-accordion {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .faq-tab {
    display: flex;
    justify-content: space-between;
    min-height: 58px;
    writing-mode: horizontal-tb;
  }

  .faq-panel,
  .faq-panel.is-open {
    display: grid;
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .faq-panel span {
    writing-mode: horizontal-tb;
  }

  .faq-panel::before {
    max-width: 320px;
  }
}

@media (max-width: 640px) {
  :root {
    --wide: min(100% - 28px, 1720px);
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    gap: 24px;
    align-items: start;
    padding: 96px 0 calc(52px + env(safe-area-inset-bottom));
  }

  .hero-copy h1 {
    font-size: clamp(48px, 14.8vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.045em;
  }

  .hero-copy p {
    margin-top: 22px;
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-offer-rotator {
    align-items: flex-start;
    gap: 14px;
    max-width: 100%;
    min-height: 60px;
    margin-top: 0;
  }

  .hero-offer-icon {
    width: 54px;
    height: 54px;
  }

  .hero-offer-icon svg {
    width: 26px;
    height: 26px;
  }

  .hero-offer-text {
    font-size: 18px;
    line-height: 1.35;
  }

  .hero-orbit {
    width: min(100%, 380px);
    min-height: 310px;
    justify-self: center;
    margin: 4px auto 0;
    padding: 18px 0 22px;
  }

  .hero-orbit::before {
    width: min(300px, 76vw);
    filter: blur(26px);
    opacity: 0.42;
  }

  .orbit-ring {
    width: min(255px, 66vw);
    border-color: rgba(255, 255, 255, 0.38);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.14)) drop-shadow(0 0 26px rgba(0, 220, 255, 0.2));
  }

  .orbit-ring::before,
  .orbit-ring::after {
    background: #fff;
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.9);
  }

  .orbit-label {
    display: none;
  }

  .galaxy-core {
    width: min(132px, 35vw);
  }

  .hero-bottom {
    display: grid;
    gap: 22px;
    margin-top: 2px;
  }

  .hero-work-button {
    width: 100%;
    min-height: 58px;
  }

  .work-gallery-page {
    padding-top: 112px;
  }

  .work-page-intro {
    gap: 24px;
    margin-bottom: 34px;
  }

  .work-filter-bar {
    margin-bottom: 34px;
  }

  .work-card a {
    min-height: 315px;
  }

  .work-card > a > strong {
    left: 22px;
    right: 22px;
    bottom: 66px;
  }

  .work-card > a > small {
    left: 22px;
    bottom: 22px;
  }

  .work-open {
    top: 18px;
    right: 18px;
    width: 92px;
    height: 92px;
    font-size: 0.7rem;
  }

  .works,
  .services,
  .process,
  .logos,
  .faq-section,
  .dark-split,
  .dark-contact {
    padding: 64px 0;
  }

  .services.light-section {
    color: var(--ink) !important;
    background:
      radial-gradient(circle at 84% 12%, rgba(0, 220, 255, 0.08), transparent 18rem),
      radial-gradient(circle at 18% 88%, rgba(91, 44, 255, 0.07), transparent 18rem),
      var(--paper) !important;
  }

  .services .syn-label,
  .services .syn-label strong,
  .services .services-main-title {
    color: var(--ink) !important;
  }

  .services .service-panel {
    color: var(--ink) !important;
    border-color: rgba(36, 88, 255, 0.18) !important;
    background:
      radial-gradient(circle at 88% 16%, rgba(0, 220, 255, 0.12), transparent 18rem),
      linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 255, 0.97)) !important;
  }

  .services .service-trigger,
  .services .service-panel.is-open .service-trigger {
    color: var(--ink) !important;
  }

  .services .service-copy p {
    color: var(--muted) !important;
  }

  .syn-label {
    margin-bottom: 24px;
  }

  .large-heading-row {
    margin-bottom: 42px;
  }

  .project-rail {
    min-height: 470px;
  }

  .project-card.is-active {
    left: 0;
    width: 100%;
  }

  .project-card.is-next,
  .project-card.is-prev {
    opacity: 0;
    pointer-events: none;
  }

  .project-art {
    height: 100%;
  }

  .project-card > h3 {
    left: 22px;
    bottom: 72px;
  }

  .project-card > p {
    left: 22px;
    bottom: 24px;
  }

  .project-window,
  .laptop-mock {
    width: 78%;
  }

  .phone-mock {
    width: 58%;
  }

  .round-link {
    top: 18px;
    right: 18px;
    left: auto;
    min-width: 132px;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 16px;
    font-size: 0.72rem;
  }

  .project-carousel-controls {
    left: 50%;
    right: auto;
    bottom: 18px;
    transform: translateX(-50%);
  }

  .service-trigger {
    padding: 24px;
    font-size: 30px;
  }

  .service-panel {
    position: relative;
    top: auto;
  }

  .service-panel + .service-panel {
    margin-top: 16px;
  }

  .service-panel:hover,
  .service-panel:focus-within,
  .service-panel.is-open {
    transform: none;
  }

  .service-trigger::after {
    display: none;
  }

  .service-content {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .process-card {
    min-height: auto;
  }

  .process-card > div:first-child {
    grid-template-columns: 1fr;
  }

  .process-card span {
    grid-row: auto;
    margin-bottom: 22px;
  }

  .process-card h3,
  .process-card p {
    grid-column: 1;
  }

  .process-card::after {
    right: auto;
    left: 24px;
    bottom: 12px;
    font-size: clamp(58px, 20vw, 96px);
    opacity: 0.72;
  }

  .process-card h3 {
    font-size: clamp(34px, 12vw, 56px);
  }

  .process-card p {
    margin-top: 18px;
  }

  .process-card h3::after {
    width: min(320px, 70vw);
  }

  .service-image {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .service-image img {
    min-height: 0;
  }

  .process-card {
    padding: 26px;
  }

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

  .logo-intro {
    gap: 18px;
  }

  .logo-card {
    min-height: auto;
  }

  .logo-ticker {
    margin-top: 24px;
  }

  .logo-ticker::before,
  .logo-ticker::after {
    width: 56px;
  }

  .legal-hero {
    padding: 126px 0 54px;
  }

  .legal-content,
  .legal-aside {
    border-radius: 18px;
  }

  .legal-content {
    padding: 24px;
  }

  .about-grid,
  .contact-grid {
    gap: 34px;
  }

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

  .inquiry-faq {
    padding: 22px;
    border-radius: 22px;
  }

  .inquiry-faq-item summary {
    align-items: flex-start;
    font-size: 1.08rem;
  }

  .inquiry-faq-item summary::after {
    width: 32px;
    height: 32px;
  }

  .inquiry-page,
  .pricing-hero {
    padding-top: 124px;
  }

  .pricing-transparent div {
    grid-template-columns: 1fr;
  }

  .footer-cta-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-cta-action {
    justify-items: stretch;
  }

  .footer-cta-panel::before {
    width: 190px;
    opacity: 0.7;
  }

  .footer-fly-banner {
    min-height: 106px;
    padding: 18px;
    border-radius: 18px;
  }

  .footer-fly-line {
    height: 48px;
  }

  .footer-cta-button {
    width: 100%;
  }

  .footer-content {
    padding: 38px 0;
  }

  .work-grid,
  .footer-content,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom > span:last-child {
    justify-self: start;
  }

  .footer-watermark {
    bottom: 64px;
  }
}

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

  .galaxy-star {
    animation: none;
  }

  .hero-offer-icon,
  .hero-offer-text,
  .project-card,
  .project-art,
  .project-carousel-controls button {
    transition: none;
  }

  .footer-cta-panel::before,
  .footer-cta-panel::after,
  .footer-fly-banner::before,
  .footer-fly-line span,
  .process-card h3::after,
  .logos::after,
  .logo-card:hover::before,
  .logo-ticker div {
    animation: none;
  }

  .process-card {
    transition: none;
  }

  .footer-fly-line {
    height: auto;
  }

  .footer-fly-line span {
    position: static;
    display: none;
    opacity: 1;
    transform: none;
    filter: none;
  }

  .footer-fly-line span:first-child {
    display: block;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
