:root {
  color-scheme: dark;
  --bg: #070816;
  --bg-deep: #050613;
  --night: #120a2e;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-strong: rgba(255, 255, 255, 0.075);
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.18);
  --text: #f6f6f8;
  --muted: #a9a7b5;
  --soft: #d9d7e4;
  --purple: #7c3aed;
  --magenta: #ff2d9a;
  --rose: #ec4899;
  --blue: #3b82f6;
  --cyan: #22d3ee;
  --green: #34d399;
  --grad-primary: linear-gradient(95deg, var(--blue), var(--purple), var(--magenta));
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --glow: 0 0 34px rgba(255, 45, 154, 0.32);
  --radius: 8px;
  --radius-sm: 6px;
  --container: 1180px;
  --nav-height: 72px;
  --font-main: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-accent: var(--font-main);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  overflow-x: clip;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 14% 16%, rgba(124, 58, 237, 0.28), transparent 30rem),
    radial-gradient(circle at 88% 42%, rgba(255, 45, 154, 0.18), transparent 34rem),
    linear-gradient(180deg, #070816 0%, #08091b 48%, #050613 100%);
  color: var(--text);
  font-family: var(--font-main);
  font-weight: 400;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
b {
  font-weight: 500;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  opacity: 0.68;
  background-image:
    radial-gradient(circle, rgba(246, 246, 248, 0.95) 0 1.15px, transparent 2px),
    radial-gradient(circle, rgba(59, 130, 246, 0.76) 0 1.15px, transparent 2.2px),
    radial-gradient(circle, rgba(255, 45, 154, 0.58) 0 0.95px, transparent 2px);
  background-position:
    0 0,
    42px 84px,
    120px 36px;
  background-size:
    145px 145px,
    205px 205px,
    260px 230px;
  mask-image: linear-gradient(180deg, #000 0%, #000 72%, transparent 92%);
  animation: bodyParticles 14s linear infinite;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  cursor: pointer;
}

::selection {
  background: rgba(255, 45, 154, 0.32);
  color: #fff;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  border-radius: 999px;
  background: #fff;
  color: #08091b;
  padding: 0.7rem 1rem;
  font-weight: 500;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 20px;
  right: 0;
  left: 0;
  z-index: 100;
  transition: top 220ms ease;
}

.navbar {
  position: relative;
  width: min(calc(100% - 48px), 1320px);
  min-height: 82px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  border: 1px solid rgba(159, 171, 255, 0.5);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(102, 111, 173, 0.2), rgba(21, 22, 58, 0.3) 38%, rgba(8, 9, 30, 0.54)),
    rgba(18, 19, 48, 0.5);
  padding: 0.62rem 0.78rem 0.62rem 1.35rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(116, 100, 255, 0.2),
    inset 18px 0 44px rgba(71, 113, 255, 0.055),
    inset -18px 0 44px rgba(255, 64, 180, 0.045),
    0 22px 64px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(104, 91, 255, 0.1),
    0 0 30px rgba(88, 101, 255, 0.18),
    0 0 56px rgba(186, 62, 255, 0.08);
  backdrop-filter: blur(30px) saturate(1.45) brightness(1.08);
  -webkit-backdrop-filter: blur(30px) saturate(1.45) brightness(1.08);
  transition:
    min-height 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.navbar::before {
  position: absolute;
  top: 1px;
  right: 5%;
  left: 5%;
  height: 42%;
  pointer-events: none;
  border-radius: 30px 30px 50% 50%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.035) 48%, transparent),
    linear-gradient(90deg, transparent, rgba(137, 190, 255, 0.16), rgba(255, 117, 210, 0.11), transparent);
  opacity: 0.9;
  content: "";
}

.navbar::after {
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 31px;
  background: linear-gradient(112deg, transparent 10%, rgba(255, 255, 255, 0.045) 31%, transparent 46%);
  content: "";
}

.site-header.is-scrolled {
  top: 9px;
}

.site-header.is-scrolled .navbar {
  min-height: 68px;
  background:
    linear-gradient(180deg, rgba(93, 101, 159, 0.22), rgba(18, 19, 51, 0.43) 40%, rgba(7, 8, 27, 0.68)),
    rgba(14, 15, 39, 0.62);
  border-color: rgba(150, 157, 255, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(118, 100, 255, 0.18),
    0 16px 48px rgba(0, 0, 0, 0.46),
    0 0 28px rgba(105, 91, 255, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0.65rem;
  font-weight: 500;
  color: #fff;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(124, 58, 237, 0.42));
}

.brand span {
  font-size: 1rem;
}

.nav-brand {
  position: relative;
  z-index: 1;
  grid-column: 1;
  justify-self: start;
  min-width: 0;
  background: transparent;
}

.nav-brand .brand-logo {
  display: block;
  flex-shrink: 0;
  width: auto;
  height: 52px;
  max-width: 210px;
  object-fit: contain;
  background: transparent;
  filter: none;
}

.nav-panel {
  display: contents;
}

.nav-links {
  position: relative;
  z-index: 1;
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 1.65vw, 1.45rem);
  margin: 0;
  padding: 0;
  list-style: none;
  white-space: nowrap;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-radius: 999px;
  color: rgba(249, 249, 253, 0.88);
  padding-inline: 0.28rem;
  font-size: 0.92rem;
  font-weight: 500;
  text-shadow: 0 0 18px transparent;
  transition:
    color 180ms ease,
    text-shadow 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: center;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--magenta));
  box-shadow: 0 0 12px rgba(171, 66, 255, 0.68);
  content: "";
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: #fff;
  text-shadow: 0 0 18px rgba(150, 125, 255, 0.46);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018));
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  position: relative;
  z-index: 2;
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(183, 187, 255, 0.38);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045)),
    rgba(37, 38, 78, 0.38);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 8px 22px rgba(0, 0, 0, 0.22),
    0 0 18px rgba(100, 91, 255, 0.1);
  backdrop-filter: blur(16px);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(210, 207, 255, 0.62);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.19), rgba(255, 255, 255, 0.06)),
    rgba(48, 42, 95, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 10px 26px rgba(0, 0, 0, 0.26),
    0 0 22px rgba(135, 87, 255, 0.2);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle span + span {
  margin-top: 5px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  font-weight: 500;
  color: #fff;
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.btn svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-primary {
  background: linear-gradient(105deg, var(--blue), var(--purple) 48%, var(--magenta));
  background-size: 180% 180%;
  box-shadow: 0 18px 44px rgba(236, 72, 153, 0.26);
}

.btn-primary::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateX(-105%);
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  content: "";
  transition: transform 520ms ease;
}

.btn-primary:hover::before,
.btn-primary:focus-visible::before {
  transform: translateX(105%);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.btn-small {
  min-height: 44px;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
}

.nav-panel > .btn-small {
  grid-column: 3;
  justify-self: end;
  min-height: 44px;
  padding-inline: 1.15rem;
  white-space: nowrap;
}

.nav-cta {
  position: relative;
  z-index: 1;
  border-color: rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 42%),
    linear-gradient(105deg, #4387ff, #8d42ef 50%, #f529a4);
  background-size: 100% 100%, 180% 180%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -1px 0 rgba(116, 35, 139, 0.28),
    0 12px 34px rgba(236, 72, 153, 0.28),
    0 0 22px rgba(91, 91, 255, 0.16);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 14px 38px rgba(236, 72, 153, 0.34),
    0 0 30px rgba(109, 100, 255, 0.25);
}

.nav-cta svg {
  width: 17px;
  height: 17px;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--glow);
}

.section {
  position: relative;
  padding: clamp(5rem, 9vw, 8rem) 0;
}

.services,
.credentials,
.method,
.portfolio,
.about,
.final-cta,
.contact {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.section-dark,
.section-deep {
  background:
    radial-gradient(circle at 12% 28%, rgba(124, 58, 237, 0.2), transparent 32rem),
    radial-gradient(circle at 86% 74%, rgba(255, 45, 154, 0.16), transparent 30rem),
    linear-gradient(180deg, rgba(7, 8, 22, 0.96), rgba(8, 9, 27, 0.98));
}

.services,
.portfolio,
.about,
.contact {
  background:
    radial-gradient(circle at 92% 20%, rgba(59, 130, 246, 0.08), transparent 28rem),
    radial-gradient(circle at 8% 82%, rgba(236, 72, 153, 0.07), transparent 30rem),
    linear-gradient(180deg, rgba(7, 8, 22, 0.9), rgba(10, 10, 28, 0.94));
}

.section-deep::before,
.services::before,
.portfolio::before,
.contact::before {
  position: absolute;
  right: 0;
  left: 0;
  top: -1px;
  height: 120px;
  pointer-events: none;
  background:
    radial-gradient(65% 72px at 50% 0%, rgba(124, 58, 237, 0.32), transparent 70%),
    linear-gradient(90deg, transparent, rgba(255, 45, 154, 0.35), transparent);
  opacity: 0.38;
  mask-image: linear-gradient(180deg, #000, transparent);
  content: "";
}

.hero {
  min-height: 88svh;
  display: grid;
  align-items: center;
  padding-top: 8.5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  contain: paint;
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    radial-gradient(circle, rgba(124, 58, 237, 0.28) 0 1px, transparent 2.2px),
    radial-gradient(circle, rgba(59, 130, 246, 0.22) 0 1px, transparent 2.1px);
  background-position: 0 0, 36px 42px;
  background-size: 130px 130px, 190px 180px;
  mask-image: radial-gradient(circle at 72% 42%, #000 0%, transparent 68%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -8%;
  left: 0;
  height: 260px;
  pointer-events: none;
  background:
    radial-gradient(55% 120px at 50% 45%, rgba(255, 45, 154, 0.36), transparent 72%),
    repeating-linear-gradient(
      172deg,
      transparent 0 16px,
      rgba(124, 58, 237, 0.18) 17px,
      transparent 18px
    );
  filter: blur(0.2px);
  opacity: 0.7;
  transform: skewY(-3deg);
  content: "";
}

.hero-orbit {
  position: absolute;
  right: 2%;
  top: 16%;
  width: min(46vw, 540px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 45, 154, 0.2), transparent 58%),
    conic-gradient(from 150deg, transparent, rgba(59, 130, 246, 0.46), transparent, rgba(255, 45, 154, 0.5), transparent);
  filter: blur(18px);
  opacity: 0.65;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(340px, 0.86fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.hero-content {
  max-width: 720px;
  text-align: left;
}

.hero-visual {
  position: relative;
  isolation: isolate;
  display: grid;
  width: min(100%, 520px);
  aspect-ratio: 1;
  place-items: center;
  justify-self: end;
}

.hero-visual::before {
  position: absolute;
  inset: 16%;
  z-index: -2;
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 48%, rgba(124, 58, 237, 0.48), rgba(59, 130, 246, 0.16) 42%, transparent 70%);
  filter: blur(18px);
  content: "";
}

.hero-emblem {
  position: relative;
  z-index: 2;
  width: min(86%, 440px);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  mask-image: radial-gradient(circle, #000 0 48%, rgba(0, 0, 0, 0.96) 58%, transparent 74%);
  animation: floatSymbol 8s ease-in-out infinite;
}

.hero-emblem img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  transform: scale(1.65);
  filter: drop-shadow(0 0 28px rgba(124, 58, 237, 0.3));
}

.visual-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.visual-ring-outer {
  inset: 4%;
  border: 1px solid rgba(124, 58, 237, 0.35);
  box-shadow:
    inset 0 0 40px rgba(59, 130, 246, 0.08),
    0 0 42px rgba(124, 58, 237, 0.12);
  animation: rotateRing 18s linear infinite;
}

.visual-ring-inner {
  inset: 17%;
  border: 1px dashed rgba(255, 45, 154, 0.3);
  animation: rotateRing 14s linear infinite reverse;
}

.visual-spark {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 10px #fff,
    0 0 24px var(--magenta);
}

.spark-one {
  top: 15%;
  right: 19%;
}

.spark-two {
  right: 6%;
  bottom: 35%;
  width: 5px;
  height: 5px;
  background: var(--cyan);
}

.spark-three {
  bottom: 13%;
  left: 22%;
  width: 4px;
  height: 4px;
  background: var(--magenta);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  margin: 0 0 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.16), rgba(255, 45, 154, 0.14));
  padding: 0.4rem 0.8rem;
  color: #ff84ce;
  font-size: 0.78rem;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-main);
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.1rem, 6vw, 5.7rem);
  line-height: 1;
  font-weight: 500;
  text-wrap: balance;
}

.title-accent {
  background: linear-gradient(95deg, var(--blue), var(--purple), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.title-accent {
  display: inline;
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  vertical-align: baseline;
  text-shadow: 0 0 28px rgba(255, 45, 154, 0.16);
}

.hero-accent {
  font-size: 1em;
}

.title-line {
  display: block;
}

.title-line .title-accent {
  white-space: nowrap;
}

.hero-text {
  max-width: 690px;
  margin: 1.35rem 0 0;
  color: var(--soft);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

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

.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  padding: 0.55rem 0.8rem;
  color: var(--soft);
  font-size: 0.92rem;
  font-weight: 500;
}

.proof-list li::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--magenta));
  box-shadow: 0 0 14px rgba(255, 45, 154, 0.72);
  content: "";
}

.hero {
  min-height: 100svh;
  padding-top: 8.6rem;
  padding-bottom: 3.4rem;
  background:
    radial-gradient(circle at 73% 48%, rgba(80, 42, 208, 0.18), transparent 34rem),
    radial-gradient(circle at 11% 28%, rgba(44, 89, 220, 0.08), transparent 30rem),
    linear-gradient(110deg, #050614 0%, #070818 44%, #080617 100%);
}

.hero::after {
  right: 0;
  bottom: -90px;
  left: 0;
  height: 260px;
  transform: none;
  background:
    radial-gradient(55% 100px at 55% 40%, rgba(255, 45, 154, 0.16), transparent 72%),
    linear-gradient(90deg, transparent, rgba(73, 78, 255, 0.12), transparent);
  filter: blur(18px);
  opacity: 0.72;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.72) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(89, 122, 255, 0.65) 0 1px, transparent 1.5px);
  background-position:
    20px 14px,
    84px 110px;
  background-size:
    230px 230px,
    310px 310px;
  opacity: 0.2;
  mask-image: linear-gradient(180deg, #000, transparent 86%);
}

.hero-layout {
  width: min(calc(100% - 48px), 1390px);
  grid-template-columns: minmax(500px, 0.9fr) minmax(620px, 1.1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}

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

.hero .eyebrow {
  gap: 0.48rem;
  min-height: 38px;
  margin-bottom: 1.6rem;
  border-color: rgba(255, 66, 190, 0.56);
  background: rgba(18, 12, 47, 0.7);
  padding: 0.45rem 0.95rem;
  color: #ff9bd8;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 22px rgba(203, 55, 255, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero .eyebrow svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-title {
  max-width: none;
  font-size: clamp(3.8rem, 5.35vw, 5.7rem);
  line-height: 0.99;
  letter-spacing: 0;
  text-wrap: initial;
}

.hero-line {
  display: block;
  color: #fff;
}

.hero-line + .hero-line {
  margin-top: 0.14em;
}

.hero-line-gradient {
  width: max-content;
  max-width: 100%;
  font-size: 0.845em;
  white-space: nowrap;
}

.hero-text {
  max-width: 640px;
  margin-top: 1.65rem;
  color: rgba(231, 229, 240, 0.82);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.75;
}

.hero-actions {
  gap: 0.9rem;
  margin-top: 1.85rem;
}

.hero-actions .btn {
  min-height: 58px;
  padding-inline: 1.45rem;
}

.hero-actions .btn-secondary {
  border-color: rgba(184, 181, 255, 0.5);
  background: rgba(8, 9, 27, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-actions .btn-secondary:hover,
.hero-actions .btn-secondary:focus-visible {
  border-color: rgba(255, 85, 191, 0.58);
  background: rgba(28, 19, 60, 0.78);
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 690px;
  margin-top: 1.8rem;
}

.proof-list li {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0.15rem 0.7rem;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 500;
}

.proof-list li:first-child {
  padding-left: 0;
}

.proof-list li:last-child {
  padding-right: 0;
}

.proof-list li + li::after {
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
  content: "";
}

.proof-list li::before {
  content: none;
}

.proof-list svg {
  width: 26px;
  height: 26px;
  stroke: #a855f7;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.46));
}

.proof-list span {
  display: grid;
  min-width: 0;
}

.proof-list strong {
  overflow-wrap: anywhere;
  line-height: 1.35;
}

.proof-list small {
  margin-top: 0.12rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  isolation: isolate;
  display: block;
  width: 100%;
  max-width: none;
  aspect-ratio: 1.34;
  justify-self: stretch;
  filter: drop-shadow(0 32px 60px rgba(0, 0, 0, 0.4));
}

.hero-visual::before {
  inset: 9% 5% 4%;
  z-index: -1;
  border-radius: 38%;
  background: radial-gradient(circle, rgba(151, 54, 255, 0.3), rgba(61, 80, 255, 0.1) 46%, transparent 72%);
  filter: blur(28px);
}

.hero-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: polygon(13% 0, 87% 0, 100% 15%, 100% 85%, 88% 100%, 12% 100%, 0 85%, 0 15%);
  background: #070816;
  box-shadow: inset 0 0 0 1px rgba(155, 128, 255, 0.28);
}

.hero-scene::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 6, 20, 0.22), transparent 22%),
    linear-gradient(180deg, transparent 62%, rgba(6, 7, 21, 0.12));
  content: "";
}

.hero-scene-image {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  animation: sceneDrift 16s ease-in-out infinite alternate;
}

.scene-logo {
  position: absolute;
  top: 17%;
  left: 50%;
  z-index: 3;
  width: clamp(112px, 21%, 168px);
  aspect-ratio: 1;
  transform: translateX(-50%);
  animation: logoBreath 4.8s ease-in-out infinite;
}

.scene-logo img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  filter:
    saturate(1.18)
    brightness(1.18)
    drop-shadow(0 0 12px rgba(255, 255, 255, 0.5))
    drop-shadow(0 0 28px rgba(178, 59, 255, 0.9));
}

.scene-particle {
  position: absolute;
  z-index: 4;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 8px #fff,
    0 0 18px #9f48ff;
  animation: sceneTwinkle 3.6s ease-in-out infinite;
}

.particle-one {
  top: 20%;
  left: 24%;
}

.particle-two {
  top: 31%;
  right: 19%;
  animation-delay: -1.1s;
}

.particle-three {
  top: 48%;
  left: 19%;
  width: 3px;
  height: 3px;
  animation-delay: -2.3s;
}

.particle-four {
  top: 15%;
  right: 35%;
  width: 3px;
  height: 3px;
  animation-delay: -0.6s;
}

.particle-five {
  right: 25%;
  bottom: 27%;
  animation-delay: -1.8s;
}

.section-heading {
  max-width: min(1120px, 100%);
  margin: 0 auto clamp(2.2rem, 5vw, 4rem);
  text-align: center;
}

.section-heading h2,
.about-copy h2,
.cta-panel h2 {
  font-family: var(--font-main);
  margin: 0;
  font-size: clamp(2.15rem, 4.4vw, 3.75rem);
  line-height: 1.08;
  font-weight: 500;
}

.section-heading p:not(.section-kicker) {
  max-width: 760px;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.card-grid {
  display: grid;
  gap: 1.3rem;
}

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

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.feature-card,
.project-card,
.contact-form,
.contact-card,
.stats-grid article {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.service-card,
.feature-card {
  min-height: 100%;
  padding: clamp(1.25rem, 2.2vw, 1.7rem);
  overflow: hidden;
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease,
    background 200ms ease;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card > p {
  margin: 0;
}

.service-card .check-list {
  margin-top: auto;
  padding-top: 1.15rem;
}

.service-card::after,
.feature-card::after {
  position: absolute;
  top: -44px;
  right: -44px;
  width: 120px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.28), transparent 70%);
  content: "";
}

.service-card:hover,
.feature-card:hover,
.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 45, 154, 0.38);
  box-shadow: 0 28px 82px rgba(124, 58, 237, 0.18), var(--glow);
}

.icon-box,
.contact-icon,
.gift-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--cyan), var(--purple) 52%, var(--magenta));
  color: #fff;
  box-shadow: 0 16px 35px rgba(124, 58, 237, 0.28);
}

.icon-box svg,
.contact-icon svg,
.gift-icon svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.feature-card h3,
.project-card h3,
.timeline-item h3 {
  margin: 1.25rem 0 0.65rem;
  font-size: 1.22rem;
  line-height: 1.25;
}

.service-card p,
.feature-card p,
.project-card p,
.timeline-item p,
.about-copy p,
.site-footer p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 0.55rem;
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--soft);
  font-size: 0.95rem;
}

.check-list li {
  display: flex;
  gap: 0.55rem;
}

.check-list li::before {
  color: #ff7cc9;
  font-weight: 500;
  content: "✓";
}

.services {
  overflow: hidden;
  padding-block: clamp(5.5rem, 8vw, 7.5rem);
}

.services-heading {
  max-width: 1040px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.services-heading h2 {
  font-size: clamp(2.35rem, 5vw, 4.45rem);
  line-height: 1.05;
  text-wrap: balance;
}

.services-heading p:not(.section-kicker) {
  max-width: 780px;
  line-height: 1.75;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.45rem);
  align-items: stretch;
}

.services .service-card-visual {
  display: flex;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  border-color: rgba(126, 118, 255, 0.3);
  border-radius: 24px;
  background:
    linear-gradient(155deg, rgba(35, 31, 82, 0.7), rgba(8, 9, 28, 0.9) 52%, rgba(28, 12, 47, 0.72)),
    rgba(8, 9, 27, 0.92);
  padding: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 28px 70px rgba(0, 0, 0, 0.24);
  isolation: isolate;
}

.services .service-card-visual::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(91, 132, 255, 0.15), transparent 30%),
    linear-gradient(315deg, rgba(255, 45, 154, 0.12), transparent 34%);
  opacity: 0.7;
  content: "";
}

.services .service-card-visual::after {
  top: auto;
  right: -70px;
  bottom: -90px;
  width: 220px;
  background: radial-gradient(circle, rgba(255, 45, 154, 0.2), transparent 68%);
  opacity: 0.62;
}

.services .service-card-visual:nth-child(2) {
  border-color: rgba(90, 112, 255, 0.34);
}

.services .service-card-visual:nth-child(3) {
  border-color: rgba(202, 92, 255, 0.32);
}

.services .service-card-visual:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 80, 181, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 32px 82px rgba(70, 38, 160, 0.24),
    0 0 42px rgba(255, 45, 154, 0.12);
}

.service-media {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #070816;
}

.service-media::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 35%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(8, 9, 28, 0.96));
  content: "";
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition:
    transform 500ms ease,
    filter 500ms ease;
}

.service-card-visual:hover .service-media img {
  transform: scale(1.035);
  filter: saturate(1.08) brightness(1.04);
}

.service-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0.2rem clamp(1.25rem, 2vw, 1.6rem) clamp(1.45rem, 2.5vw, 1.9rem);
}

.service-content h3 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.24rem, 1.6vw, 1.48rem);
  line-height: 1.25;
}

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

.service-points {
  display: grid;
  gap: 0.66rem;
  margin: auto 0 0;
  padding: 1.25rem 0 0;
  list-style: none;
  color: var(--soft);
  font-size: 0.92rem;
  font-weight: 500;
}

.service-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.62rem;
}

.service-points li::before {
  display: grid;
  flex: 0 0 19px;
  width: 19px;
  height: 19px;
  margin-top: 0.12rem;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  color: #fff;
  font-size: 0.68rem;
  line-height: 1;
  box-shadow: 0 0 14px rgba(255, 45, 154, 0.28);
  content: "✓";
}

.services-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: clamp(1.8rem, 3.5vw, 2.7rem);
  text-align: center;
}

.services-action-text {
  max-width: 540px;
  margin: 0;
  color: var(--soft);
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  line-height: 1.65;
}

.services-action .btn {
  min-width: 230px;
}

.method {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.75rem, 7vw, 6.5rem);
}

.method::before {
  position: absolute;
  top: 12%;
  left: 50%;
  width: min(860px, 80vw);
  height: 420px;
  transform: translateX(-50%);
  pointer-events: none;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.13), transparent 68%);
  filter: blur(22px);
  content: "";
}

.method .section-heading {
  max-width: 960px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.method .section-heading h2 {
  font-size: clamp(2.15rem, 4.2vw, 3.7rem);
}

.method .section-heading p:not(.section-kicker) {
  max-width: 760px;
}

.process-timeline {
  --timeline-progress: 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.process-timeline::before,
.process-timeline::after {
  position: absolute;
  top: 75px;
  left: 12.5%;
  width: 75%;
  height: 2px;
  border-radius: 999px;
  content: "";
}

.process-timeline::before {
  background: rgba(255, 255, 255, 0.13);
}

.process-timeline::after {
  transform: scaleX(var(--timeline-progress));
  transform-origin: left;
  background: linear-gradient(90deg, var(--blue), var(--purple), var(--magenta));
  box-shadow: 0 0 22px rgba(255, 45, 154, 0.6);
}

.process-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 30px 64px 1fr;
  justify-items: center;
  gap: 0.85rem;
  text-align: center;
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #ff91d3;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.process-icon {
  position: relative;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    linear-gradient(135deg, rgba(59, 130, 246, 0.78), rgba(124, 58, 237, 0.9) 56%, rgba(255, 45, 154, 0.76));
  box-shadow:
    0 0 0 8px rgba(124, 58, 237, 0.06),
    0 14px 38px rgba(124, 58, 237, 0.42);
}

.process-icon::after {
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: inherit;
  content: "";
}

.process-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-body {
  width: 100%;
  min-height: 180px;
  margin-top: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(8, 9, 28, 0.38);
  padding: clamp(1.2rem, 2vw, 1.55rem);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 24px 54px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.process-step:hover .process-body {
  transform: translateY(-4px);
  border-color: rgba(255, 88, 185, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 28px 64px rgba(51, 24, 121, 0.22);
}

.process-body h3 {
  min-height: 2.5em;
  margin: 0 0 0.75rem;
  font-size: 1.12rem;
  line-height: 1.25;
}

.process-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.portfolio {
  overflow: hidden;
}

.portfolio > .container {
  position: relative;
}

.portfolio > .container::before,
.portfolio > .container::after {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border: 1px solid transparent;
  border-radius: 50%;
  opacity: 0.28;
  content: "";
}

.portfolio > .container::before {
  top: 16%;
  left: -16%;
  width: 34%;
  aspect-ratio: 1;
  border-left-color: rgba(73, 118, 255, 0.28);
  border-top-color: rgba(255, 45, 154, 0.2);
  filter: blur(0.2px) drop-shadow(0 0 24px rgba(124, 58, 237, 0.16));
}

.portfolio > .container::after {
  right: -18%;
  bottom: 8%;
  width: 38%;
  aspect-ratio: 1;
  border-right-color: rgba(255, 45, 154, 0.24);
  border-bottom-color: rgba(73, 118, 255, 0.18);
  filter: blur(0.2px) drop-shadow(0 0 24px rgba(255, 45, 154, 0.13));
}

.portfolio .section-heading,
.portfolio-grid {
  position: relative;
  z-index: 1;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}

.project-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.project-media {
  position: relative;
  min-height: 260px;
  padding: 1rem;
  overflow: hidden;
  background: #111827;
}

.project-media::before {
  position: absolute;
  inset: 0;
  opacity: 0.82;
  content: "";
}

.project-media > span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  padding: 0.36rem 0.62rem;
  color: #151525;
  font-size: 0.76rem;
  font-weight: 500;
}

.project-green::before {
  background:
    linear-gradient(135deg, rgba(10, 24, 18, 0.95), rgba(19, 101, 73, 0.45)),
    radial-gradient(circle at 82% 10%, rgba(52, 211, 153, 0.55), transparent 32%),
    linear-gradient(160deg, transparent 0 48%, rgba(255, 255, 255, 0.14) 49% 50%, transparent 51%);
}

.project-odor::before {
  background:
    linear-gradient(135deg, rgba(34, 8, 23, 0.95), rgba(122, 21, 55, 0.45)),
    radial-gradient(circle at 74% 18%, rgba(255, 45, 154, 0.45), transparent 34%),
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(255, 255, 255, 0.07) 29px, transparent 30px);
}

.project-meisei::before {
  background:
    linear-gradient(135deg, rgba(24, 18, 13, 0.95), rgba(175, 120, 48, 0.38)),
    radial-gradient(circle at 72% 20%, rgba(255, 213, 128, 0.5), transparent 34%),
    linear-gradient(160deg, transparent 0 50%, rgba(255, 255, 255, 0.12) 51% 53%, transparent 54%);
}

.project-new::before {
  background:
    linear-gradient(135deg, rgba(12, 15, 40, 0.98), rgba(46, 28, 98, 0.62)),
    radial-gradient(circle at 78% 18%, rgba(59, 130, 246, 0.48), transparent 34%),
    repeating-linear-gradient(135deg, transparent 0 22px, rgba(124, 58, 237, 0.1) 23px, transparent 24px);
}

.browser-frame {
  position: absolute;
  right: 1.1rem;
  bottom: 1.1rem;
  left: 1.1rem;
  z-index: 1;
  display: grid;
  gap: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(7, 8, 22, 0.72);
  padding: 1rem;
  color: #fff;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(10px);
}

.browser-frame div {
  width: 46px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--magenta));
}

.browser-frame strong {
  font-size: 1.45rem;
  line-height: 1;
}

.browser-frame small {
  color: var(--soft);
}

.project-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.25rem;
}

.project-body h3 {
  margin-top: 0;
}

.project-body p {
  margin: 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0;
}

.tag-list span {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.13);
  padding: 0.32rem 0.55rem;
  color: #e7ddff;
  font-size: 0.75rem;
  font-weight: 500;
}

.project-body a {
  margin-top: auto;
  padding-top: 0.35rem;
  color: #ff7cc9;
  font-weight: 500;
}

.portfolio-grid-five {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
}

.project-card-showcase {
  grid-column: span 2;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.028)),
    radial-gradient(circle at 50% 0%, rgba(255, 45, 154, 0.1), transparent 42%),
    rgba(7, 8, 22, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 22px 64px rgba(0, 0, 0, 0.24);
}

.project-card-showcase::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(73, 118, 255, 0.22), transparent 26%, transparent 74%, rgba(255, 45, 154, 0.2));
  opacity: 0;
  transition: opacity 220ms ease;
  content: "";
}

.project-card-showcase:hover::before,
.project-card-showcase:focus-within::before {
  opacity: 0.42;
}

.portfolio-grid-five .project-card-showcase:nth-child(4) {
  grid-column: 2 / span 2;
}

.project-cover {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  margin: clamp(0.62rem, 1vw, 0.8rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.13), transparent 40%),
    #090a18;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
  color: inherit;
  text-decoration: none;
}

.project-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 420ms ease, filter 420ms ease;
}

.project-cover::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4, 5, 16, 0) 56%, rgba(4, 5, 16, 0.42) 100%),
    radial-gradient(circle at 82% 12%, rgba(255, 45, 154, 0.14), transparent 34%);
  content: "";
}

.project-cover span {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(7, 8, 22, 0.62);
  padding: 0.32rem 0.64rem;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 500;
  backdrop-filter: blur(12px);
}

.project-card-showcase:hover .project-cover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.03);
}

.project-cover:focus-visible {
  outline: 2px solid rgba(255, 45, 154, 0.82);
  outline-offset: 4px;
}

.project-card-showcase .project-body {
  position: relative;
  z-index: 1;
  padding: 0.18rem clamp(1rem, 1.55vw, 1.25rem) clamp(1.05rem, 1.8vw, 1.3rem);
}

.project-sector {
  margin: 0 0 0.35rem;
  color: #ff86cf;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.project-card-showcase .project-body h3 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.18rem, 1.55vw, 1.38rem);
  line-height: 1.22;
}

.project-card-showcase .project-body > p:not(.project-sector) {
  color: rgba(217, 215, 228, 0.86);
  font-size: 0.9rem;
  line-height: 1.55;
}

.project-card-showcase .project-body a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
}

.project-card-showcase .project-body a::after {
  content: "→";
  transition: transform 180ms ease;
}

.project-card-showcase .project-body a:hover::after,
.project-card-showcase .project-body a:focus-visible::after {
  transform: translateX(4px);
}

@media (max-width: 980px) {
  .portfolio-grid-five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-card-showcase,
  .portfolio-grid-five .project-card-showcase:nth-child(4) {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .portfolio-grid-five {
    grid-template-columns: 1fr;
  }

  .project-cover {
    margin: 0.65rem;
  }
}

.about {
  padding-block: clamp(4.5rem, 7vw, 6rem);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.about-copy .section-kicker {
  margin-bottom: 1rem;
}

.about-copy h2 {
  margin-bottom: 1.2rem;
}

.about-copy p {
  max-width: 620px;
  font-size: 1.08rem;
}

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

.stats-grid article {
  display: grid;
  min-height: 132px;
  place-items: center;
  padding: 1.35rem;
  text-align: center;
}

.stats-grid strong {
  display: block;
  background: linear-gradient(95deg, var(--blue), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
  font-weight: 500;
}

.stats-grid span {
  color: var(--muted);
  font-weight: 500;
}

.credentials {
  overflow: hidden;
  padding-block: clamp(3.6rem, 6vw, 5.6rem);
}

.credentials-head {
  margin-inline: auto;
  max-width: 680px;
  text-align: center;
}

.credentials-head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.2rem, 4.2vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.credentials-marquee {
  position: relative;
  overflow: hidden;
  margin-top: clamp(1.8rem, 3vw, 2.6rem);
  border: 1px solid rgba(159, 128, 255, 0.22);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(12, 13, 36, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 24px 70px rgba(61, 73, 255, 0.11),
    0 0 80px rgba(255, 45, 154, 0.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.credentials-marquee::before,
.credentials-marquee::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(18%, 180px);
  pointer-events: none;
  content: "";
}

.credentials-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(7, 8, 23, 0.96), transparent);
}

.credentials-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(7, 8, 23, 0.96), transparent);
}

.credentials-track {
  display: flex;
  width: max-content;
  gap: 0;
  padding: 0.9rem;
  animation: credentialsMarquee 38s linear infinite;
  will-change: transform;
}

.credentials-set {
  display: flex;
  flex-shrink: 0;
  gap: 0.9rem;
  padding-right: 0.9rem;
}

.credential-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-width: max-content;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 0.72rem 1rem 0.72rem 0.72rem;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.13), transparent 32%),
    linear-gradient(135deg, rgba(68, 102, 255, 0.18), rgba(255, 45, 154, 0.12)),
    rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.credential-logo {
  display: inline-grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.95), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(237, 239, 247, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 10px 24px rgba(124, 58, 237, 0.2);
}

.credential-logo img {
  width: 74%;
  height: 74%;
  object-fit: contain;
}

.final-cta {
  position: relative;
  text-align: center;
  overflow: hidden;
  padding-block: clamp(5rem, 8vw, 7rem);
  contain: paint;
}

.final-cta::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(55% 70% at 50% 50%, rgba(78, 89, 255, 0.16), transparent 72%),
    linear-gradient(115deg, rgba(59, 130, 246, 0.06), transparent 40%, rgba(255, 45, 154, 0.07));
  content: "";
}

.cta-panel {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(8, 9, 28, 0.66);
  padding: clamp(2.4rem, 5.5vw, 4.6rem) clamp(1.25rem, 6vw, 5.25rem);
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 40px 100px rgba(0, 0, 0, 0.28),
    0 0 72px rgba(124, 58, 237, 0.1);
  backdrop-filter: blur(22px);
}

.cta-panel::before {
  position: absolute;
  top: -70px;
  left: 12%;
  width: 76%;
  height: 150px;
  pointer-events: none;
  background:
    radial-gradient(52% 58px at 50% 50%, rgba(255, 45, 154, 0.16), transparent 76%),
    radial-gradient(42% 48px at 58% 54%, rgba(59, 130, 246, 0.11), transparent 78%);
  filter: blur(18px);
  opacity: 0.75;
  content: "";
}

.cta-panel::after {
  position: absolute;
  right: 10%;
  bottom: -90px;
  left: 10%;
  height: 150px;
  pointer-events: none;
  background: radial-gradient(ellipse, rgba(255, 45, 154, 0.2), transparent 70%);
  filter: blur(14px);
  content: "";
}

.cta-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(52px);
  opacity: 0.19;
}

.cta-glow-left {
  top: -110px;
  left: -80px;
  background: var(--blue);
}

.cta-glow-right {
  right: -80px;
  bottom: -110px;
  background: var(--magenta);
}

@media (max-width: 920px) {
  .cta-glow {
    width: 160px;
    height: 160px;
    filter: blur(42px);
  }

  .cta-glow-left {
    left: 8px;
  }

  .cta-glow-right {
    right: 8px;
  }
}

.cta-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 1.15rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.035)),
    rgba(34, 30, 73, 0.72);
  box-shadow:
    0 0 0 9px rgba(124, 58, 237, 0.06),
    0 0 42px rgba(124, 58, 237, 0.42);
}

.cta-icon svg {
  width: 29px;
  height: 29px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  padding: 0.35rem 0.8rem;
  color: #ff91d3;
  font-size: 0.76rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

#ctaTitle {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  line-height: 1.06;
  text-wrap: balance;
}

.cta-nowrap {
  white-space: nowrap;
}

.cta-panel .cta-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 1.2rem auto 1.6rem;
  color: var(--soft);
  font-size: 1.08rem;
  line-height: 1.75;
}

.cta-trust {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cta-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  padding: 0.45rem 0.82rem;
  color: var(--soft);
  font-size: 0.88rem;
  font-weight: 500;
}

.cta-trust li::before {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  color: #fff;
  font-size: 0.72rem;
  line-height: 1;
  content: "✓";
}

.cta-note {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 1rem auto 0;
  color: rgba(217, 215, 228, 0.72);
  font-size: 0.88rem;
  line-height: 1.6;
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.cta-actions .btn {
  min-width: 220px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(1.4rem, 4vw, 2.4rem);
  align-items: start;
}

.contact {
  padding-bottom: clamp(5rem, 8vw, 7rem);
}

.contact-form {
  display: grid;
  gap: 0.8rem;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.contact-form label {
  color: var(--soft);
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.95rem 1rem;
  color: #fff;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.contact-form select {
  color-scheme: dark;
  background-color: rgba(255, 255, 255, 0.06);
}

.contact-form select option {
  background: #111225;
  color: #f6f6f8;
  font-family: var(--font-main);
  font-weight: 400;
}

.contact-form select option:checked,
.contact-form select option:hover {
  background: #7c3aed;
  color: #fff;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 45, 154, 0.55);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(255, 45, 154, 0.11);
}

.form-button {
  width: 100%;
  margin-top: 0.7rem;
}

.form-status {
  min-height: 1.5rem;
  margin: 0.25rem 0 0;
  color: #8ef5c2;
  font-weight: 500;
}

.contact-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 1.6rem);
}

.contact-card a,
.contact-card > div,
.social-link {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.contact-card a,
.contact-card > div {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  padding: 1rem;
}

.contact-card small {
  display: block;
  color: var(--muted);
  font-size: 0.83rem;
}

.contact-card span:last-child {
  color: #fff;
  font-weight: 500;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 18% 18%, rgba(59, 130, 246, 0.14), transparent 28rem),
    linear-gradient(180deg, #080b1c, #060716);
  padding: 3.8rem 0 1.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr;
  gap: clamp(1.5rem, 5vw, 4rem);
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-brand img {
  display: block;
  width: auto !important;
  height: 48px !important;
  max-width: 190px;
  object-fit: contain;
  filter: none;
}

.site-footer h2 {
  margin: 0 0 1rem;
  font-size: 1rem;
}

.site-footer ul {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.site-footer a {
  color: var(--soft);
  transition: color 180ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
}

.social-link .contact-icon {
  width: 42px;
  height: 42px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.2rem;
  color: rgba(217, 215, 228, 0.74);
  font-size: 0.92rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
}

.reveal {
  transform: translateY(24px);
  opacity: 0;
  transition:
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 700ms ease;
}

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

@keyframes floatSymbol {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1deg);
  }
  50% {
    transform: translate3d(-8px, -18px, 0) rotate(1deg);
  }
}

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

@keyframes logoBreath {
  0%,
  100% {
    transform: translateX(-50%) scale(0.98);
    opacity: 0.9;
    filter: brightness(0.95);
  }
  50% {
    transform: translateX(-50%) scale(1.035);
    opacity: 1;
    filter: brightness(1.12);
  }
}

@keyframes sceneTwinkle {
  0%,
  100% {
    transform: scale(0.65);
    opacity: 0.25;
  }
  50% {
    transform: scale(1.35);
    opacity: 0.95;
  }
}

@keyframes credentialsMarquee {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes ambientParticles {
  from {
    background-position:
      18px 20px,
      90px 140px,
      160px 74px,
      0 0,
      0 0;
  }
  to {
    background-position:
      116px 136px,
      -12px 224px,
      42px 168px,
      0 84px,
      84px 0;
  }
}

@keyframes bodyParticles {
  from {
    background-position:
      0 0,
      42px 84px,
      120px 36px;
  }
  to {
    background-position:
      145px 188px,
      -88px 252px,
      230px -74px;
  }
}

@keyframes ambientGlow {
  from {
    transform: translate3d(-1.2%, 0, 0) scale(1);
    opacity: 0.34;
  }
  to {
    transform: translate3d(1.2%, -0.35%, 0) scale(1.035);
    opacity: 0.5;
  }
}

@keyframes sceneDrift {
  from {
    transform: scale(1.015) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.045) translate3d(-0.35%, -0.25%, 0);
  }
}

@media (max-width: 1080px) {
  .navbar {
    grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
    gap: 1rem;
  }

  .nav-links {
    gap: 0.8rem;
  }

  .nav-links a {
    font-size: 0.84rem;
  }

  .nav-panel > .btn-small {
    padding-inline: 0.95rem;
    font-size: 0.84rem;
  }

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

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

  .service-card-visual:last-child {
    grid-column: 1 / -1;
    width: calc((100% - clamp(1rem, 2vw, 1.45rem)) / 2);
    justify-self: center;
  }

  .hero-title {
    font-size: clamp(3.25rem, 5.8vw, 4.65rem);
  }

  .hero-layout {
    width: min(calc(100% - 36px), 1040px);
    grid-template-columns: minmax(0, 0.98fr) minmax(400px, 1.02fr);
    gap: 1.35rem;
  }

  .hero-line-gradient {
    font-size: 1em;
    white-space: normal;
  }

  .proof-list {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .proof-list li,
  .proof-list li:first-child {
    padding: 0;
  }

  .proof-list li + li::after {
    content: none;
  }
}

@media (max-width: 920px) {
  .site-header {
    top: 12px;
  }

  .navbar {
    width: min(calc(100% - 28px), var(--container));
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.8rem;
    border-radius: 28px;
    padding: 0.5rem 0.6rem 0.5rem 0.7rem;
  }

  .navbar::before {
    border-radius: 27px 27px 48% 48%;
  }

  .navbar::after {
    border-radius: 27px;
  }

  .nav-brand {
    grid-column: 1;
  }

  .nav-brand .brand-logo {
    width: auto;
    height: 42px;
    max-width: 176px;
    object-fit: contain;
  }

  .nav-toggle {
    grid-column: 2;
    justify-self: end;
    display: flex;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    z-index: 10;
    display: grid;
    gap: 1rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    border: 1px solid rgba(174, 179, 255, 0.42);
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(111, 117, 177, 0.24), rgba(29, 27, 70, 0.56) 38%, rgba(8, 9, 29, 0.82)),
      rgba(15, 16, 43, 0.8);
    padding: 1rem;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.22),
      inset 0 -1px 0 rgba(111, 96, 255, 0.14),
      0 24px 60px rgba(0, 0, 0, 0.46),
      0 0 28px rgba(104, 91, 255, 0.16);
    backdrop-filter: blur(30px) saturate(1.4);
    -webkit-backdrop-filter: blur(30px) saturate(1.4);
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

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

  .nav-links {
    grid-column: 1;
    grid-row: 1;
    display: grid;
    justify-self: stretch;
    gap: 0.25rem;
    white-space: normal;
  }

  .nav-links a {
    min-height: 48px;
    padding-inline: 0.85rem;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible,
  .nav-links a.is-active {
    background: linear-gradient(90deg, rgba(85, 112, 255, 0.11), rgba(255, 72, 187, 0.075));
  }

  .nav-panel .btn {
    width: 100%;
  }

  .nav-panel > .btn-small {
    grid-column: 1;
    grid-row: 2;
    justify-self: stretch;
    min-height: 52px;
  }

  .hero {
    min-height: auto;
    padding-top: 8.5rem;
    padding-bottom: 4.5rem;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-content {
    max-width: 760px;
  }

  .hero-visual {
    display: block;
    width: min(100%, 820px);
    aspect-ratio: 1.55;
    justify-self: center;
  }

  .card-grid.three,
  .about-layout,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    padding-left: 0.2rem;
  }

  .process-timeline::before,
  .process-timeline::after {
    top: 32px;
    left: 29px;
    width: 2px;
    height: calc(100% - 64px);
  }

  .process-timeline::after {
    transform: scaleY(var(--timeline-progress));
    transform-origin: top;
  }

  .process-step {
    grid-template-columns: 58px minmax(0, 1fr);
    grid-template-rows: auto auto;
    justify-items: stretch;
    gap: 0.65rem 1rem;
    text-align: left;
  }

  .process-number {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
  }

  .process-icon {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: start;
    width: 58px;
    height: 58px;
  }

  .process-body {
    grid-column: 2;
    grid-row: 2;
    min-height: 0;
    margin-top: 0;
  }

  .process-body h3 {
    min-height: 0;
  }

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

@media (max-width: 760px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card-visual:last-child {
    grid-column: auto;
    width: 100%;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 92px;
  }

  .container,
  .hero-layout {
    width: min(calc(100% - 28px), var(--container));
  }

  .navbar {
    min-height: 62px;
    border-radius: 18px;
  }

  .navbar::before {
    border-radius: 17px 17px 44% 44%;
  }

  .navbar::after {
    border-radius: 17px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .nav-brand .brand-logo {
    width: auto;
    height: 38px;
    max-width: 158px;
  }

  .brand span {
    font-size: 0.92rem;
  }

  .hero {
    padding-top: 7.7rem;
    padding-bottom: 4.2rem;
  }

  .hero-title {
    font-size: clamp(2.65rem, 12vw, 3.65rem);
    line-height: 1.01;
  }

  .hero-line-gradient {
    width: auto;
  }

  .hero-text {
    margin-top: 1.35rem;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions,
  .proof-list {
    display: grid;
  }

  .proof-list {
    gap: 0.85rem;
  }

  .proof-list li {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .hero-visual {
    width: 100%;
    aspect-ratio: 1.12;
    margin-top: 0.25rem;
  }

  .hero-scene {
    clip-path: polygon(10% 0, 90% 0, 100% 13%, 100% 87%, 90% 100%, 10% 100%, 0 87%, 0 13%);
  }

  .hero-scene-image {
    object-position: 52% center;
  }

  .scene-logo {
    top: 15%;
    width: 28%;
  }

  .btn {
    width: 100%;
    min-height: 54px;
    padding-inline: 1rem;
  }

  .section {
    padding: 4.4rem 0;
  }

  .section-heading {
    margin-bottom: 2rem;
  }

  .card-grid.four,
  .stats-grid {
    grid-template-columns: 1fr;
  }

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

  .service-card,
  .feature-card,
  .project-body,
  .contact-form,
  .contact-card {
    padding: 1.1rem;
  }

  .services .service-card-visual {
    border-radius: 20px;
    padding: 0;
  }

  .service-content {
    padding: 0.15rem 1.15rem 1.45rem;
  }

  .service-media {
    aspect-ratio: 4 / 3;
  }

  .services-action .btn {
    width: 100%;
  }

  .credentials {
    padding-block: 3.4rem;
  }

  .credentials-head h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .credentials-marquee {
    margin-inline: -0.2rem;
    border-radius: 22px;
  }

  .credentials-marquee::before,
  .credentials-marquee::after {
    width: 72px;
  }

  .credentials-track {
    padding: 0.75rem;
    animation-duration: 32s;
  }

  .credentials-set {
    gap: 0.65rem;
    padding-right: 0.65rem;
  }

  .credential-item {
    gap: 0.58rem;
    border-radius: 16px;
    padding: 0.62rem 0.82rem 0.62rem 0.62rem;
    font-size: 0.84rem;
  }

  .credential-logo {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    font-size: 0.7rem;
  }

  .project-media {
    min-height: 215px;
  }

  #ctaTitle {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .cta-panel {
    border-radius: 22px;
    padding: 2.15rem 1.1rem;
  }

  .cta-icon {
    width: 60px;
    height: 60px;
  }

  .cta-panel .cta-copy {
    font-size: 1rem;
    line-height: 1.65;
  }

  .cta-trust {
    display: grid;
    justify-content: stretch;
  }

  .cta-trust li {
    justify-content: center;
  }

  .cta-actions {
    display: grid;
  }

  .cta-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .footer-bottom {
    display: grid;
  }

  .footer-bottom div {
    justify-content: flex-start;
  }
}

/* Reference-aligned navigation and hero */
.nav-cta-mobile {
  display: none;
}

@media (min-width: 921px) {
  .site-header {
    top: 34px;
  }

  .site-header.is-scrolled {
    top: 12px;
  }

  .navbar,
  .site-header.is-scrolled .navbar {
    width: min(calc(100% - 76px), 1540px);
    min-height: 82px;
    grid-template-columns: minmax(280px, 0.62fr) minmax(760px, 1.38fr);
    gap: clamp(2rem, 4vw, 5.5rem);
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .navbar::before,
  .navbar::after {
    content: none;
  }

  .nav-brand .brand-logo {
    height: 68px;
    max-width: 255px;
  }

  .nav-panel {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-column: 2;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.2rem;
    min-height: 82px;
    overflow: hidden;
    border: 1px solid rgba(184, 158, 255, 0.5);
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(82, 82, 139, 0.2), rgba(18, 18, 49, 0.48) 42%, rgba(8, 9, 28, 0.74)),
      rgba(10, 11, 31, 0.62);
    padding: 0.65rem 0.8rem 0.65rem 2rem;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.19),
      inset 0 -1px 0 rgba(255, 43, 192, 0.17),
      0 20px 56px rgba(0, 0, 0, 0.38),
      0 0 24px rgba(72, 93, 255, 0.16),
      0 0 32px rgba(255, 45, 154, 0.08);
    backdrop-filter: blur(24px) saturate(1.35);
    -webkit-backdrop-filter: blur(24px) saturate(1.35);
  }

  .nav-panel::before {
    position: absolute;
    top: 0;
    right: 4%;
    left: 4%;
    height: 44%;
    z-index: -1;
    border-radius: 0 0 50% 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), transparent);
    pointer-events: none;
    content: "";
  }

  .nav-links {
    grid-column: 1;
    justify-self: stretch;
    justify-content: space-between;
    gap: clamp(0.7rem, 1.35vw, 1.55rem);
  }

  .nav-links a {
    font-size: clamp(0.84rem, 0.92vw, 1rem);
    font-weight: 500;
  }

  .nav-panel > .nav-cta-desktop {
    grid-column: 2;
    min-height: 52px;
    border: 1px solid transparent;
    background:
      linear-gradient(rgba(13, 14, 38, 0.9), rgba(10, 11, 31, 0.92)) padding-box,
      linear-gradient(105deg, #4387ff, #8d42ef 50%, #f529a4) border-box;
    padding-inline: 1.25rem;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 0 18px rgba(77, 93, 255, 0.14),
      0 0 22px rgba(245, 41, 164, 0.08);
  }
}

.hero {
  min-height: 100svh;
  padding-top: 8.8rem;
  padding-bottom: 2rem;
}

.hero-layout {
  width: min(calc(100% - 76px), 1540px);
  grid-template-columns: minmax(520px, 0.86fr) minmax(620px, 1.14fr);
  align-items: stretch;
  gap: clamp(1.25rem, 2.6vw, 3.1rem);
}

.hero-content {
  align-self: center;
  max-width: 720px;
  padding-block: 2.5rem 1.5rem;
}

.hero .eyebrow {
  display: none;
}

.hero-title {
  font-size: clamp(4.1rem, 5.45vw, 5.85rem);
  line-height: 1.02;
}

.hero-line-gradient {
  font-size: 0.82em;
}

.hero-text {
  max-width: 660px;
  margin-top: 1.7rem;
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 1.8rem;
}

.hero-actions .btn {
  min-height: 62px;
  padding-inline: 1.7rem;
}

.proof-list {
  margin-top: 2rem;
}

.hero-visual {
  align-self: start;
  min-height: 650px;
  aspect-ratio: 1.08;
  margin-top: -0.5rem;
}

.hero-scene {
  clip-path: none;
  border-radius: 0;
  box-shadow: none;
}

.hero-scene::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, #060716 0%, rgba(6, 7, 22, 0.66) 5%, transparent 23%),
    linear-gradient(180deg, rgba(5, 6, 19, 0.06), transparent 72%, rgba(5, 6, 19, 0.2));
  content: "";
}

.hero-scene-image {
  object-position: 51% center;
}

.scene-logo {
  top: 18%;
  width: clamp(126px, 22%, 190px);
}

@media (max-width: 1240px) and (min-width: 921px) {
  .navbar {
    width: min(calc(100% - 40px), 1180px);
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 1.5rem;
  }

  .nav-brand .brand-logo {
    height: 57px;
    max-width: 215px;
  }

  .nav-panel {
    padding-left: 1.25rem;
  }

  .nav-links {
    gap: 0.65rem;
  }

  .nav-links a {
    font-size: 0.8rem;
  }

  .nav-panel > .nav-cta-desktop {
    padding-inline: 0.9rem;
    font-size: 0.8rem;
  }

  .hero-layout {
    width: min(calc(100% - 40px), 1180px);
    grid-template-columns: minmax(440px, 0.9fr) minmax(500px, 1.1fr);
  }

  .hero-title {
    font-size: clamp(3.5rem, 5.45vw, 4.65rem);
  }

  .hero-visual {
    min-height: 570px;
  }

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

@media (max-width: 1080px) and (min-width: 921px) {
  .hero {
    min-height: auto;
    padding-top: 8.5rem;
    padding-bottom: 4.5rem;
  }

  .hero-layout {
    width: min(calc(100% - 40px), 1040px);
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-visual {
    grid-row: 1;
    width: 100%;
    min-height: 0;
    aspect-ratio: 1.5;
    margin: 0;
  }

  .hero-content {
    grid-row: 2;
    width: min(100%, 760px);
    max-width: none;
    margin-inline: auto;
    padding: 0;
  }

  .hero-title {
    font-size: clamp(3.8rem, 8vw, 5.5rem);
  }

  .hero-line-gradient {
    width: auto;
    font-size: 0.88em;
    white-space: nowrap;
  }

  .proof-list {
    max-width: 720px;
  }
}

@media (max-width: 920px) {
  .navbar,
  .site-header.is-scrolled .navbar {
    width: min(calc(100% - 28px), 880px);
    min-height: 78px;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: clamp(0.45rem, 2vw, 0.9rem);
    border-radius: 25px;
    padding: 0.55rem 0.65rem 0.55rem 0.85rem;
  }

  .navbar::before {
    border-radius: 24px 24px 48% 48%;
  }

  .navbar::after {
    border-radius: 24px;
  }

  .nav-brand .brand-logo {
    height: 46px;
    max-width: 190px;
  }

  .nav-cta-mobile {
    grid-column: 2;
    display: inline-flex;
    width: auto;
    min-height: 52px;
    padding-inline: 1.25rem;
    white-space: nowrap;
  }

  .nav-toggle {
    grid-column: 3;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    box-shadow: none;
  }

  .nav-toggle span {
    width: 25px;
    height: 2px;
  }

  .nav-panel > .nav-cta-desktop {
    display: none;
  }

  .nav-panel {
    top: calc(100% + 12px);
  }

  .hero {
    padding-top: 7rem;
    padding-bottom: 4.5rem;
  }

  .hero-layout {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .hero-visual {
    grid-row: 1;
    width: 100%;
    min-height: 0;
    aspect-ratio: 1.48;
    margin: 0;
  }

  .hero-content {
    grid-row: 2;
    width: min(calc(100% - 40px), 760px);
    max-width: none;
    margin-inline: auto;
    padding: 0;
  }

  .hero-title {
    font-size: clamp(3.25rem, 11vw, 5.5rem);
  }

  .hero-line-gradient {
    width: auto;
    font-size: 0.88em;
    white-space: nowrap;
  }

  .hero-scene::before {
    background: linear-gradient(180deg, transparent 72%, #050614 100%);
  }

  .proof-list {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: none;
  }

  .proof-list li,
  .proof-list li:first-child,
  .proof-list li:last-child {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 1rem;
    min-height: 84px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.9rem 0.25rem;
  }

  .proof-list li:last-child {
    border-bottom: 0;
  }

  .proof-list svg {
    width: 34px;
    height: 34px;
  }

  .proof-list strong {
    font-size: 1rem;
  }

  .proof-list small {
    margin-top: 0.2rem;
    font-size: 0.84rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 12px;
  }

  .navbar,
  .site-header.is-scrolled .navbar {
    min-height: 72px;
    border-radius: 22px;
    padding: 0.45rem 0.5rem 0.45rem 0.65rem;
  }

  .nav-brand .brand-logo {
    height: 38px;
    max-width: 150px;
  }

  .nav-cta-mobile {
    min-height: 48px;
    padding-inline: 0.95rem;
    font-size: 0.82rem;
  }

  .nav-cta-mobile svg {
    width: 16px;
    height: 16px;
  }

  .nav-toggle {
    width: 46px;
    height: 46px;
  }

  .hero {
    padding-top: 6.2rem;
  }

  .hero-layout {
    gap: 1.8rem;
  }

  .hero-visual {
    aspect-ratio: 1.48;
  }

  .hero-scene-image {
    object-position: 51% center;
  }

  .scene-logo {
    top: 16%;
    width: 27%;
  }

  .hero-content {
    width: min(calc(100% - 36px), 560px);
  }

  .hero-title {
    font-size: clamp(2.85rem, 12.2vw, 4rem);
    line-height: 1.04;
  }

  .hero-line + .hero-line {
    margin-top: 0.18em;
  }

  .hero-line-gradient {
    font-size: 0.77em;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 0.75rem;
  }

  .hero-actions .btn {
    min-height: 58px;
  }
}

@media (max-width: 430px) {
  .navbar {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 0.35rem;
  }

  .nav-brand .brand-logo {
    height: 34px;
    max-width: 125px;
  }

  .nav-cta-mobile {
    min-height: 44px;
    padding-inline: 0.7rem;
    font-size: 0.74rem;
  }

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

  .hero-title {
    font-size: clamp(2.6rem, 12vw, 3.35rem);
  }
}

/* Full-width hero background supplied by Netyn */
.hero {
  isolation: isolate;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background-color: #050615;
  background-image: url("assets/hero-netyn-background.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 8.6rem;
  padding-bottom: 3rem;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 4, 16, 0.18) 0%, rgba(3, 4, 16, 0.06) 34%, transparent 58%),
    linear-gradient(180deg, rgba(3, 4, 15, 0.08), transparent 72%, rgba(3, 4, 15, 0.24));
  animation: heroOverlayBreath 18s ease-in-out infinite alternate;
  content: "";
}

.hero::after {
  content: none;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  pointer-events: none;
  opacity: 0.58;
  mix-blend-mode: screen;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.58) 0 1.15px, transparent 2.25px),
    radial-gradient(circle, rgba(73, 118, 255, 0.68) 0 1.2px, transparent 2.35px),
    radial-gradient(circle, rgba(255, 45, 154, 0.52) 0 1.05px, transparent 2.2px),
    radial-gradient(circle, rgba(34, 211, 238, 0.38) 0 0.95px, transparent 2px),
    radial-gradient(34rem 24rem at 72% 38%, rgba(255, 45, 154, 0.13), transparent 74%),
    radial-gradient(30rem 22rem at 46% 72%, rgba(59, 130, 246, 0.1), transparent 76%);
  background-position:
    12px 18px,
    90px 126px,
    170px 72px,
    54px 210px,
    center,
    center;
  background-size:
    132px 118px,
    180px 160px,
    225px 190px,
    270px 230px,
    100% 100%,
    100% 100%;
  mask-image: radial-gradient(82% 78% at 44% 48%, #000 0 42%, rgba(0, 0, 0, 0.58) 66%, transparent 94%);
  animation: heroParticles 7.5s linear infinite, heroAmbientBreath 6s ease-in-out infinite alternate;
  will-change: background-position, transform, opacity;
}

.hero-ambient::before,
.hero-ambient::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.hero-ambient::before {
  opacity: 0.9;
  background:
    radial-gradient(circle at 18% 26%, rgba(255, 255, 255, 0.74) 0 1.4px, transparent 3px),
    radial-gradient(circle at 29% 42%, rgba(73, 118, 255, 0.68) 0 1.7px, transparent 4px),
    radial-gradient(circle at 41% 22%, rgba(255, 45, 154, 0.62) 0 1.35px, transparent 3.4px),
    radial-gradient(circle at 62% 33%, rgba(255, 255, 255, 0.5) 0 1.25px, transparent 3.2px),
    radial-gradient(circle at 76% 18%, rgba(73, 118, 255, 0.62) 0 1.5px, transparent 3.7px),
    radial-gradient(circle at 83% 55%, rgba(255, 45, 154, 0.58) 0 1.4px, transparent 3.5px),
    radial-gradient(circle at 52% 69%, rgba(255, 255, 255, 0.42) 0 1.2px, transparent 3px),
    radial-gradient(circle at 23% 74%, rgba(73, 118, 255, 0.52) 0 1.45px, transparent 3.6px),
    radial-gradient(circle at 12% 58%, rgba(255, 45, 154, 0.48) 0 1.25px, transparent 3.2px),
    radial-gradient(circle at 68% 76%, rgba(34, 211, 238, 0.44) 0 1.2px, transparent 3px),
    radial-gradient(circle at 91% 34%, rgba(255, 255, 255, 0.44) 0 1.15px, transparent 3px);
  filter: drop-shadow(0 0 8px rgba(124, 58, 237, 0.48));
  animation: heroParticleDrift 5.6s ease-in-out infinite alternate;
}

.hero-ambient::after {
  opacity: 0.24;
  background:
    radial-gradient(18rem 10rem at 24% 62%, rgba(59, 130, 246, 0.2), transparent 72%),
    radial-gradient(18rem 12rem at 74% 28%, rgba(255, 45, 154, 0.18), transparent 74%);
  filter: blur(12px);
  animation: heroGlowDrift 7s ease-in-out infinite alternate;
}

.hero-layout {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 76px), 1540px);
  display: block;
}

.hero-content {
  width: min(47%, 720px);
  max-width: 720px;
  margin: 0;
  padding: 1rem 0;
}

.hero .eyebrow {
  display: inline-flex;
  margin-bottom: 1.35rem;
}

.hero-title {
  font-size: clamp(4rem, 5.25vw, 5.6rem);
}

.hero-line-gradient {
  font-size: 0.84em;
}

.hero-text {
  max-width: 640px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.72);
}

.hero-visual {
  display: none;
}

@media (max-width: 1240px) and (min-width: 921px) {
  .hero {
    min-height: 900px;
    background-position: 58% center;
  }

  .hero-layout {
    width: min(calc(100% - 40px), 1180px);
  }

  .hero-content {
    width: min(52%, 620px);
  }

  .hero-title {
    font-size: clamp(3.35rem, 5.25vw, 4.45rem);
  }

  .hero-line-gradient {
    font-size: 0.9em;
    white-space: normal;
  }
}

@media (max-width: 920px) {
  .hero {
    min-height: auto;
    display: block;
    background-position: 68% top;
    background-size: auto 620px;
    padding-top: 34rem;
    padding-bottom: 4.5rem;
  }

  .hero::before {
    background:
      linear-gradient(180deg, transparent 0 390px, rgba(5, 6, 20, 0.48) 500px, #050614 610px),
      linear-gradient(90deg, rgba(5, 6, 20, 0.05), transparent 55%);
  }

  .hero-layout {
    width: 100%;
  }

  .hero-content {
    width: min(calc(100% - 40px), 760px);
    max-width: none;
    margin-inline: auto;
    padding: 2.25rem 0 0;
  }

  .hero .eyebrow {
    margin-bottom: 1.2rem;
  }

  .hero-title {
    font-size: clamp(3.2rem, 11vw, 5.4rem);
  }

  .hero-line-gradient {
    width: auto;
    font-size: 0.88em;
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  .hero {
    background-position: 70% top;
    background-size: auto 440px;
    padding-top: 23.5rem;
  }

  .hero::before {
    background:
      linear-gradient(180deg, transparent 0 250px, rgba(5, 6, 20, 0.52) 340px, #050614 435px),
      linear-gradient(90deg, rgba(5, 6, 20, 0.04), transparent 65%);
  }

  .hero-content {
    width: min(calc(100% - 36px), 560px);
    padding-top: 1.8rem;
  }

  .hero .eyebrow {
    min-height: 34px;
    margin-bottom: 1.05rem;
    padding: 0.38rem 0.8rem;
    font-size: 0.72rem;
  }

  .hero-title {
    font-size: clamp(2.75rem, 12vw, 3.8rem);
  }

  .hero-line-gradient {
    font-size: 0.78em;
  }
}

@media (max-width: 430px) {
  .hero {
    background-position: 69% top;
    background-size: auto 400px;
    padding-top: 21.5rem;
  }

  .hero::before {
    background: linear-gradient(180deg, transparent 0 220px, rgba(5, 6, 20, 0.55) 305px, #050614 395px);
  }

  .hero-title {
    font-size: clamp(2.55rem, 12vw, 3.25rem);
  }
}

/* Minimal navigation and compact mobile hero */
@media (min-width: 921px) {
  .nav-panel {
    overflow: visible;
    border-color: rgba(255, 255, 255, 0.16);
    background: #0b0c1d;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-panel::before {
    content: none;
  }

  .nav-panel > .nav-cta-desktop {
    border-color: rgba(255, 255, 255, 0.18);
    background: linear-gradient(105deg, #4387ff, #8d42ef 50%, #f529a4);
    box-shadow: 0 10px 24px rgba(115, 67, 238, 0.24);
  }
}

.nav-cta,
.nav-panel > .nav-cta-desktop {
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(105deg, #4387ff, #8d42ef 50%, #f529a4);
  box-shadow: 0 10px 24px rgba(115, 67, 238, 0.24);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.nav-panel > .nav-cta-desktop:hover,
.nav-panel > .nav-cta-desktop:focus-visible {
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 12px 28px rgba(115, 67, 238, 0.32);
}

@media (max-width: 920px) {
  .navbar,
  .site-header.is-scrolled .navbar {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: #0b0c1d;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.34);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .navbar::before,
  .navbar::after {
    content: none;
  }

  .nav-toggle {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    background: #121328;
  }

  .nav-toggle:hover,
  .nav-toggle:focus-visible {
    background: #191a32;
    box-shadow: none;
  }

  .nav-panel {
    border-color: rgba(255, 255, 255, 0.14);
    background: #0b0c1d;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible,
  .nav-links a.is-active {
    background: #15162c;
  }

  .hero-content {
    padding-top: 1.25rem;
  }

  .hero-actions {
    margin-top: 1.45rem;
  }

  .proof-list {
    margin-top: 1.25rem;
  }

  .proof-list li,
  .proof-list li:first-child,
  .proof-list li:last-child {
    min-height: 68px;
    padding: 0.65rem 0.25rem;
  }
}

@media (max-width: 640px) {
  .hero {
    background-size: auto 420px;
    padding-top: 22.5rem;
    padding-bottom: 3.5rem;
  }

  .hero::before {
    background:
      linear-gradient(180deg, transparent 0 240px, rgba(5, 6, 20, 0.5) 315px, #050614 415px),
      linear-gradient(90deg, rgba(5, 6, 20, 0.04), transparent 65%);
  }

  .hero-content {
    padding-top: 0.9rem;
  }

  .hero-text {
    margin-top: 1.15rem;
  }

  .hero-actions {
    margin-top: 1.25rem;
  }

  .proof-list {
    margin-top: 1rem;
  }

  .proof-list li,
  .proof-list li:first-child,
  .proof-list li:last-child {
    grid-template-columns: 32px minmax(0, 1fr);
    min-height: 64px;
    gap: 0.75rem;
    padding: 0.55rem 0.15rem;
  }

  .proof-list svg {
    width: 29px;
    height: 29px;
  }

  .proof-list strong {
    font-size: 0.92rem;
  }

  .proof-list small {
    font-size: 0.78rem;
  }
}

@media (max-width: 430px) {
  .hero {
    background-size: auto 380px;
    padding-top: 20.5rem;
  }

  .hero::before {
    background: linear-gradient(180deg, transparent 0 210px, rgba(5, 6, 20, 0.55) 285px, #050614 375px);
  }
}

/* Alternative B - Floating Centered navigation */
.nav-link-icon {
  display: none;
}

@media (min-width: 921px) {
  .site-header {
    top: 26px;
  }

  .site-header.is-scrolled {
    top: 12px;
  }

  .navbar,
  .site-header.is-scrolled .navbar {
    width: min(calc(100% - 64px), 1380px);
    min-height: 68px;
    grid-template-columns: minmax(235px, 1fr) minmax(760px, auto);
    gap: clamp(2rem, 5vw, 6rem);
  }

  .nav-brand .brand-logo {
    height: 54px;
    max-width: 210px;
  }

  .nav-panel {
    min-height: 64px;
    border: 1px solid rgba(142, 118, 255, 0.42);
    border-radius: 22px;
    background: rgba(10, 10, 29, 0.74);
    padding: 0.4rem 0.55rem 0.4rem 1.35rem;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 14px 36px rgba(0, 0, 0, 0.34),
      0 0 20px rgba(99, 82, 255, 0.1);
    backdrop-filter: blur(14px) saturate(1.18);
    -webkit-backdrop-filter: blur(14px) saturate(1.18);
  }

  .nav-links {
    gap: clamp(0.55rem, 1.1vw, 1.15rem);
  }

  .nav-links a {
    min-height: 42px;
    padding-inline: 0.32rem;
    font-size: clamp(0.78rem, 0.82vw, 0.9rem);
  }

  .nav-links a::after {
    bottom: 3px;
    height: 2px;
  }

  .nav-panel > .nav-cta-desktop {
    min-height: 46px;
    padding-inline: 1rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 1180px) and (min-width: 921px) {
  .navbar,
  .site-header.is-scrolled .navbar {
    width: min(calc(100% - 36px), 1144px);
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 1.25rem;
  }

  .nav-brand .brand-logo {
    height: 48px;
    max-width: 185px;
  }

  .nav-panel {
    padding-left: 0.9rem;
  }

  .nav-links {
    gap: 0.5rem;
  }

  .nav-links a {
    font-size: 0.74rem;
  }

  .nav-panel > .nav-cta-desktop {
    padding-inline: 0.8rem;
    font-size: 0.74rem;
  }
}

@media (max-width: 920px) {
  body.nav-open::after {
    position: fixed;
    inset: 0;
    z-index: 90;
    pointer-events: none;
    background: rgba(3, 4, 17, 0.68);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    content: "";
  }

  .site-header,
  .site-header.is-scrolled {
    top: 12px;
  }

  .navbar,
  .site-header.is-scrolled .navbar {
    width: min(calc(100% - 28px), 560px);
    min-height: 70px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
    border: 1px solid rgba(142, 118, 255, 0.34);
    border-radius: 21px;
    background: rgba(9, 10, 27, 0.88);
    padding: 0.5rem 0.65rem 0.5rem 0.8rem;
    box-shadow:
      0 14px 34px rgba(0, 0, 0, 0.34),
      0 0 18px rgba(107, 80, 255, 0.09);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .nav-brand {
    grid-column: 1;
  }

  .nav-brand .brand-logo {
    height: 40px;
    max-width: 158px;
  }

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

  .nav-toggle {
    grid-column: 2;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 10px;
    background: transparent;
  }

  .nav-toggle:hover,
  .nav-toggle:focus-visible {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-panel {
    top: calc(100% + 12px);
    right: 50%;
    left: auto;
    width: min(calc(100vw - 44px), 360px);
    transform: translate(50%, -10px) scale(0.985);
    gap: 0.8rem;
    overflow: hidden;
    border: 1px solid rgba(168, 118, 255, 0.42);
    border-radius: 24px;
    background:
      linear-gradient(155deg, rgba(26, 23, 66, 0.82), rgba(8, 9, 28, 0.94)),
      rgba(9, 10, 29, 0.92);
    padding: 0.85rem;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 24px 54px rgba(0, 0, 0, 0.5),
      0 0 28px rgba(124, 58, 237, 0.14);
    backdrop-filter: blur(18px) saturate(1.18);
    -webkit-backdrop-filter: blur(18px) saturate(1.18);
    transition:
      transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
      opacity 180ms ease;
  }

  .nav-panel.is-open {
    transform: translate(50%, 0) scale(1);
  }

  .nav-links {
    gap: 0.18rem;
  }

  .nav-links a {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 0.8rem;
    min-height: 50px;
    border-radius: 14px;
    padding: 0.55rem 0.85rem;
    font-size: 0.92rem;
    font-weight: 500;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible,
  .nav-links a.is-active {
    transform: none;
    background: linear-gradient(90deg, rgba(83, 85, 191, 0.24), rgba(221, 47, 174, 0.08));
  }

  .nav-link-icon {
    display: block;
    width: 20px;
    height: 20px;
    stroke: rgba(230, 228, 255, 0.86);
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .nav-links a.is-active .nav-link-icon {
    stroke: #ff4fb4;
    filter: drop-shadow(0 0 7px rgba(255, 79, 180, 0.5));
  }

  .nav-panel > .nav-cta-desktop {
    display: inline-flex;
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    min-height: 50px;
    margin-top: 0.2rem;
    padding-inline: 1rem;
    font-size: 0.88rem;
  }
}

@media (max-width: 430px) {
  .navbar,
  .site-header.is-scrolled .navbar {
    width: calc(100% - 24px);
    min-height: 66px;
    padding: 0.42rem 0.55rem 0.42rem 0.7rem;
  }

  .nav-brand .brand-logo {
    height: 36px;
    max-width: 140px;
  }

  .nav-toggle {
    width: 43px;
    height: 43px;
  }

  .nav-panel {
    width: min(calc(100vw - 32px), 350px);
    padding: 0.75rem;
  }

  .nav-links a {
    min-height: 48px;
  }
}

/* Final centered desktop menu and centered mobile brand */
@media (min-width: 921px) {
  .navbar,
  .site-header.is-scrolled .navbar {
    grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
    gap: clamp(1rem, 2.2vw, 2.5rem);
  }

  .nav-brand {
    grid-column: 1;
    justify-self: start;
  }

  .nav-panel {
    grid-column: 2;
    justify-self: center;
    width: max-content;
    grid-template-columns: auto;
    padding: 0.4rem 1.2rem;
  }

  .nav-links {
    grid-column: 1;
  }

  .nav-panel > .nav-cta-menu {
    display: none;
  }

  .navbar > .nav-cta-desktop {
    grid-column: 3;
    justify-self: end;
    display: inline-flex;
    min-height: 46px;
    padding-inline: 1rem;
    white-space: nowrap;
    font-size: 0.82rem;
  }
}

@media (max-width: 1180px) and (min-width: 921px) {
  .navbar,
  .site-header.is-scrolled .navbar {
    grid-template-columns: minmax(175px, 1fr) auto minmax(175px, 1fr);
    gap: 0.9rem;
  }

  .nav-panel {
    padding-inline: 0.75rem;
  }

  .navbar > .nav-cta-desktop {
    padding-inline: 0.8rem;
    font-size: 0.74rem;
  }
}

@media (max-width: 920px) {
  .navbar > .nav-cta-desktop {
    display: none;
  }

  .nav-panel > .nav-cta-menu {
    display: inline-flex;
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    min-height: 50px;
    margin-top: 0.2rem;
    padding-inline: 1rem;
    font-size: 0.88rem;
  }

  .nav-brand {
    transition:
      left 200ms ease,
      transform 200ms ease;
  }

  body.nav-open .nav-brand {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    transform: translate(calc(-50% - 6px), -50%);
  }
}

/* Scrolled navigation rail */
.site-header.is-scrolled {
  top: 0;
  padding-block: 8px;
  background:
    linear-gradient(180deg, rgba(5, 6, 20, 0.98), rgba(5, 6, 20, 0.92)),
    rgba(5, 6, 20, 0.94);
  border-bottom: 1px solid rgba(142, 118, 255, 0.18);
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.38),
    0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header.is-scrolled .navbar {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header.is-scrolled .navbar::before,
.site-header.is-scrolled .navbar::after {
  opacity: 0;
}

@media (min-width: 921px) {
  .site-header.is-scrolled {
    top: 0;
  }

  .site-header.is-scrolled .navbar {
    width: min(calc(100% - 56px), 1380px);
    min-height: 64px;
    border-radius: 24px;
    grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
    gap: clamp(1rem, 2.2vw, 2.5rem);
  }

  .site-header.is-scrolled .nav-brand .brand-logo {
    height: 46px;
    max-width: 185px;
  }

  .site-header.is-scrolled .nav-panel {
    grid-column: 2;
    justify-self: center;
    width: max-content;
    min-height: 56px;
    background: rgba(8, 9, 28, 0.58);
    border-color: rgba(168, 118, 255, 0.3);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.07),
      0 8px 22px rgba(0, 0, 0, 0.2);
  }

  .site-header.is-scrolled .navbar > .nav-cta-desktop {
    grid-column: 3;
    justify-self: end;
  }
}

@media (max-width: 920px) {
  .site-header.is-scrolled {
    padding-block: 7px;
  }
}

/* Continuous section transitions */
main {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(74% 520px at 50% 13%, rgba(255, 45, 154, 0.105), transparent 76%),
    radial-gradient(58% 560px at 18% 31%, rgba(124, 58, 237, 0.095), transparent 78%),
    radial-gradient(60% 600px at 84% 47%, rgba(59, 130, 246, 0.08), transparent 78%),
    radial-gradient(58% 520px at 42% 67%, rgba(255, 45, 154, 0.065), transparent 80%),
    radial-gradient(52% 480px at 68% 82%, rgba(73, 118, 255, 0.06), transparent 78%),
    linear-gradient(180deg, #050614 0%, #080817 18%, #09081d 38%, #070817 60%, #08081b 80%, #050614 100%);
}

main::before {
  position: absolute;
  inset: 80svh 0 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.58) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(255, 45, 154, 0.48) 0 1px, transparent 2.1px),
    radial-gradient(circle, rgba(73, 118, 255, 0.42) 0 1px, transparent 2.05px);
  background-position:
    18px 20px,
    90px 140px,
    160px 74px;
  background-size:
    150px 132px,
    220px 190px,
    285px 250px;
  opacity: 0.38;
  mask-image: linear-gradient(180deg, transparent 0, #000 12%, #000 82%, transparent 100%);
  animation: ambientParticles 11s linear infinite;
  content: "";
}

main::after {
  position: absolute;
  inset: 60svh -10% 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(72% 150px at 50% 4%, rgba(255, 45, 154, 0.055), transparent 82%),
    conic-gradient(from 245deg at 50% 32%, transparent 0 34%, rgba(255, 45, 154, 0.036) 44%, rgba(73, 118, 255, 0.032) 56%, transparent 68% 100%),
    radial-gradient(46% 220px at 22% 16%, rgba(255, 45, 154, 0.08), transparent 78%),
    radial-gradient(42% 220px at 78% 38%, rgba(73, 118, 255, 0.07), transparent 78%),
    radial-gradient(48% 230px at 48% 66%, rgba(255, 45, 154, 0.07), transparent 80%),
    radial-gradient(44% 220px at 56% 86%, rgba(124, 58, 237, 0.075), transparent 80%);
  background-repeat: no-repeat;
  background-position:
    center 4%,
    center 12%,
    center 9%,
    center 36%,
    center 61%,
    center 82%;
  background-size:
    auto,
    auto,
    auto,
    auto,
    auto,
    auto;
  opacity: 0.58;
  mix-blend-mode: screen;
  mask-image: linear-gradient(180deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  animation: ambientGlow 8s ease-in-out infinite alternate;
  content: "";
}

main > section {
  position: relative;
  z-index: 1;
  isolation: isolate;
}

.services > .container,
.method > .container,
.portfolio > .container,
.about > .container,
.credentials > .container,
.final-cta > .container,
.contact > .container {
  position: relative;
  z-index: 2;
}

.section-deep,
.services,
.method,
.portfolio,
.about,
.credentials,
.final-cta,
.contact {
  background-color: transparent;
}

.section-deep::before,
.services::before,
.portfolio::before,
.contact::before {
  top: auto;
  height: auto;
  opacity: 1;
  mask-image: none;
  background: none;
}

.hero {
  overflow: visible;
  contain: layout;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: clamp(-130px, -8vw, -82px);
  left: 0;
  z-index: 1;
  height: clamp(380px, 38vw, 620px);
  pointer-events: none;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 360' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' x2='1600' y1='0' y2='0' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%233b82f6' stop-opacity='.2'/%3E%3Cstop offset='.24' stop-color='%237c3aed' stop-opacity='.55'/%3E%3Cstop offset='.5' stop-color='%23ff2d9a' stop-opacity='.78'/%3E%3Cstop offset='.76' stop-color='%237c3aed' stop-opacity='.48'/%3E%3Cstop offset='1' stop-color='%233b82f6' stop-opacity='.22'/%3E%3C/linearGradient%3E%3Cfilter id='b'%3E%3CfeGaussianBlur stdDeviation='10'/%3E%3C/filter%3E%3C/defs%3E%3Cpath d='M-80 170 C170 260 360 248 535 192 C760 120 930 170 1110 218 C1300 270 1440 210 1680 148' fill='none' stroke='url(%23g)' stroke-width='18' opacity='.2' filter='url(%23b)'/%3E%3Cpath d='M-80 170 C170 260 360 248 535 192 C760 120 930 170 1110 218 C1300 270 1440 210 1680 148' fill='none' stroke='url(%23g)' stroke-width='2.2' opacity='.48'/%3E%3Cpath d='M-70 208 C190 284 405 274 620 230 C820 190 980 205 1170 250 C1340 290 1480 270 1670 220' fill='none' stroke='url(%23g)' stroke-width='1' opacity='.16'/%3E%3C/svg%3E"),
    radial-gradient(66% 220px at 48% 62%, rgba(255, 45, 154, 0.2), transparent 78%),
    radial-gradient(48% 240px at 68% 76%, rgba(73, 118, 255, 0.14), transparent 80%),
    radial-gradient(54% 190px at 34% 90%, rgba(124, 58, 237, 0.11), transparent 80%),
    linear-gradient(180deg, transparent 0%, rgba(5, 6, 20, 0.38) 34%, rgba(6, 7, 20, 0.92) 78%, #070817 100%);
  background-repeat: no-repeat;
  background-position: center 64%, center, center, center, center;
  background-size: 112% 70%, auto, auto, auto, auto;
  content: "";
}

.services {
  margin-top: 0;
  overflow: visible;
  padding-block: clamp(5.5rem, 8vw, 7.5rem);
  background: transparent;
}

.services::before {
  position: absolute;
  inset: clamp(-340px, -22vw, -240px) -18% auto;
  z-index: 1;
  height: clamp(560px, 44vw, 760px);
  pointer-events: none;
  background:
    radial-gradient(72% 180px at 48% 38%, rgba(255, 45, 154, 0.09), transparent 82%),
    conic-gradient(from 250deg at 50% 56%, transparent 0 34%, rgba(255, 45, 154, 0.04) 44%, rgba(73, 118, 255, 0.034) 56%, transparent 70% 100%),
    radial-gradient(58% 210px at 48% 46%, rgba(255, 45, 154, 0.075), transparent 84%),
    radial-gradient(42% 190px at 66% 52%, rgba(73, 118, 255, 0.052), transparent 86%),
    radial-gradient(70% 280px at 50% 60%, rgba(6, 7, 20, 0.18), transparent 88%);
  background-repeat: no-repeat;
  background-position: center 34%, center 42%, center, center, center;
  background-size: auto, auto, auto, auto, auto;
  opacity: 0.86;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 76%, transparent 100%);
  animation: transitionMist 9s ease-in-out infinite alternate;
  content: "";
}

.services::after {
  position: absolute;
  right: -20%;
  bottom: clamp(-250px, -15vw, -170px);
  left: -20%;
  z-index: 0;
  height: clamp(460px, 34vw, 620px);
  pointer-events: none;
  background:
    radial-gradient(42% 160px at 34% 52%, rgba(255, 45, 154, 0.075), transparent 82%),
    radial-gradient(46% 170px at 70% 44%, rgba(83, 95, 255, 0.06), transparent 84%),
    linear-gradient(112deg, transparent 12%, rgba(255, 45, 154, 0.026) 38%, rgba(59, 130, 246, 0.024) 58%, transparent 84%),
    conic-gradient(from 250deg at 50% 70%, transparent 0 34%, rgba(255, 45, 154, 0.032) 44%, rgba(59, 130, 246, 0.03) 55%, transparent 68% 100%);
  opacity: 0.52;
  mask-image: radial-gradient(86% 76% at 50% 50%, #000 0 36%, transparent 82%);
  animation: transitionAurora 7.5s ease-in-out infinite alternate;
  content: "";
}

.method {
  overflow: visible;
  padding-block: clamp(4.75rem, 7vw, 6.5rem);
  background: transparent;
}

.method::before {
  position: absolute;
  top: clamp(-290px, -17vw, -190px);
  right: -18%;
  left: -18%;
  z-index: 0;
  height: clamp(520px, 42vw, 760px);
  pointer-events: none;
  background:
    radial-gradient(58% 210px at 50% 32%, rgba(124, 58, 237, 0.052), transparent 82%),
    radial-gradient(44% 190px at 60% 56%, rgba(255, 45, 154, 0.038), transparent 84%),
    radial-gradient(62% 260px at 50% 72%, rgba(59, 130, 246, 0.026), transparent 86%);
  mask-image: radial-gradient(86% 74% at 50% 48%, #000 0 42%, transparent 86%);
  animation: transitionMist 9.5s ease-in-out infinite alternate-reverse;
  content: "";
}

.method::after {
  position: absolute;
  inset: 4% -8% 8%;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(124, 58, 237, 0.58) 0 1.2px, transparent 2.45px),
    radial-gradient(circle, rgba(59, 130, 246, 0.42) 0 1px, transparent 2.2px),
    radial-gradient(44% 210px at 52% 42%, rgba(124, 58, 237, 0.13), transparent 78%);
  background-position:
    22px 18px,
    148px 92px,
    center;
  background-size:
    155px 128px,
    240px 210px,
    auto;
  opacity: 0.32;
  mask-image: radial-gradient(74% 76% at 50% 44%, #000 0 45%, transparent 86%);
  animation: sectionParticles 10s linear infinite;
  content: "";
}

.portfolio {
  margin-top: 0;
  overflow: visible;
  padding-top: clamp(5rem, 9vw, 8rem);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.portfolio::before {
  position: absolute;
  inset: -7% -6% 34%;
  z-index: 0;
  height: auto;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 16%, rgba(59, 130, 246, 0.06) 38%, rgba(255, 45, 154, 0.06) 56%, transparent 82%),
    radial-gradient(44% 180px at 74% 44%, rgba(255, 45, 154, 0.1), transparent 78%),
    radial-gradient(34% 150px at 24% 34%, rgba(59, 130, 246, 0.09), transparent 76%);
  opacity: 0.5;
  mask-image: linear-gradient(180deg, transparent, #000 22%, transparent 92%);
  animation: sectionGlowSweep 8.5s ease-in-out infinite alternate;
  content: "";
}

.portfolio::after {
  position: absolute;
  inset: auto -4% -120px;
  z-index: 0;
  height: clamp(360px, 34vw, 560px);
  pointer-events: none;
  background:
    radial-gradient(42% 160px at 50% 42%, rgba(255, 45, 154, 0.07), transparent 78%),
    radial-gradient(circle, rgba(124, 58, 237, 0.22) 0 1px, transparent 2.2px),
    radial-gradient(circle, rgba(59, 130, 246, 0.16) 0 1px, transparent 2.1px);
  background-position:
    center,
    24px 18px,
    142px 86px;
  background-size:
    auto,
    180px 160px,
    260px 220px;
  opacity: 0.2;
  mask-image: linear-gradient(180deg, transparent 0%, #000 20%, #000 72%, transparent 100%);
  animation: transitionDataFlow 11s linear infinite;
  content: "";
}

.about {
  position: relative;
  overflow: visible;
  background: transparent;
}

.about::after {
  position: absolute;
  inset: 12% -8% -10%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(255, 45, 154, 0.52) 0 1.25px, transparent 2.6px),
    radial-gradient(circle, rgba(73, 118, 255, 0.42) 0 1.1px, transparent 2.35px),
    radial-gradient(52% 220px at 50% 68%, rgba(255, 45, 154, 0.16), transparent 78%),
    radial-gradient(38% 180px at 76% 28%, rgba(59, 130, 246, 0.1), transparent 74%);
  background-position:
    28px 40px,
    150px 92px,
    center,
    center;
  background-size:
    165px 140px,
    245px 210px,
    auto,
    auto;
  opacity: 0.34;
  mask-image: radial-gradient(82% 78% at 50% 58%, #000 0 42%, transparent 86%);
  animation: sectionParticlesReverse 10.5s linear infinite;
  content: "";
}

.final-cta {
  overflow: visible;
  background: transparent;
}

.final-cta::before {
  content: none;
}

.final-cta::after {
  position: absolute;
  inset: -18% -10%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(42% 180px at 28% 34%, rgba(59, 130, 246, 0.14), transparent 78%),
    radial-gradient(48% 210px at 72% 62%, rgba(255, 45, 154, 0.16), transparent 80%),
    conic-gradient(from 210deg at 50% 56%, transparent 0 38%, rgba(255, 45, 154, 0.052) 47%, rgba(59, 130, 246, 0.046) 57%, transparent 68% 100%);
  opacity: 0.7;
  mix-blend-mode: screen;
  mask-image: radial-gradient(78% 70% at 50% 50%, #000 0 40%, transparent 88%);
  animation: ctaFieldBreath 6.8s ease-in-out infinite alternate;
  content: "";
}

.contact {
  background: transparent;
}

.contact::before {
  position: absolute;
  inset: -10% -5% 18%;
  z-index: 0;
  height: auto;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.38) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(255, 45, 154, 0.45) 0 1.1px, transparent 2.25px),
    radial-gradient(circle, rgba(59, 130, 246, 0.4) 0 1px, transparent 2.2px);
  background-position:
    44px 28px,
    136px 118px,
    220px 64px;
  background-size:
    150px 130px,
    210px 185px,
    280px 240px;
  opacity: 0.3;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 74%, transparent);
  animation: contactParticles 9.5s linear infinite;
  content: "";
}

@keyframes transitionAurora {
  from {
    transform: translate3d(-1.2%, 0, 0) scale(1);
    opacity: 0.56;
  }
  to {
    transform: translate3d(1.2%, -10px, 0) scale(1.04);
    opacity: 0.78;
  }
}

@keyframes transitionDataFlow {
  from {
    background-position:
      center,
      0 0,
      0 0,
      center;
  }
  to {
    background-position:
      center,
      0 78px,
      78px 0,
      center;
  }
}

@keyframes transitionDataFlowDense {
  from {
    background-position:
      20px 24px,
      120px 72px,
      0 0,
      0 0,
      center;
  }
  to {
    background-position:
      126px 118px,
      8px 206px,
      0 78px,
      78px 0,
      center;
  }
}

@keyframes sectionParticles {
  from {
    background-position:
      22px 18px,
      148px 92px,
      center;
  }
  to {
    background-position:
      132px 118px,
      28px 206px,
      center;
  }
}

@keyframes sectionParticlesReverse {
  from {
    background-position:
      28px 40px,
      150px 92px,
      center,
      center;
  }
  to {
    background-position:
      -76px 152px,
      270px -12px,
      center,
      center;
  }
}

@keyframes contactParticles {
  from {
    background-position:
      44px 28px,
      136px 118px,
      220px 64px;
  }
  to {
    background-position:
      156px 132px,
      12px 214px,
      340px -52px;
  }
}

@keyframes sectionGlowSweep {
  from {
    transform: translate3d(-1.4%, 0, 0) scale(1);
    opacity: 0.38;
  }
  to {
    transform: translate3d(1.4%, -0.6%, 0) scale(1.035);
    opacity: 0.66;
  }
}

@keyframes ctaFieldBreath {
  from {
    transform: translate3d(-0.8%, 0.2%, 0) scale(1);
    opacity: 0.44;
  }
  to {
    transform: translate3d(0.8%, -0.5%, 0) scale(1.04);
    opacity: 0.82;
  }
}

@keyframes heroParticles {
  from {
    background-position:
      12px 18px,
      90px 126px,
      170px 72px,
      54px 210px,
      center,
      center;
  }
  to {
    background-position:
      132px 154px,
      -26px 238px,
      34px 192px,
      190px 44px,
      center,
      center;
  }
}

@keyframes heroAmbientBreath {
  from {
    transform: translate3d(-0.4%, 0, 0) scale(1);
    opacity: 0.28;
  }
  to {
    transform: translate3d(0.5%, -0.35%, 0) scale(1.025);
    opacity: 0.42;
  }
}

@keyframes heroParticleDrift {
  from {
    transform: translate3d(-0.45%, 0.25%, 0) scale(1);
    opacity: 0.54;
  }
  to {
    transform: translate3d(0.85%, -0.7%, 0) scale(1.015);
    opacity: 0.86;
  }
}

@keyframes heroGlowDrift {
  from {
    transform: translate3d(-0.8%, 0, 0) scale(1);
    opacity: 0.18;
  }
  to {
    transform: translate3d(0.65%, -0.55%, 0) scale(1.04);
    opacity: 0.28;
  }
}

@keyframes heroOverlayBreath {
  from {
    opacity: 0.92;
  }
  to {
    opacity: 1;
  }
}

@keyframes transitionMist {
  from {
    transform: translate3d(-0.8%, 0, 0) scale(1);
    opacity: 0.64;
  }
  to {
    transform: translate3d(0.8%, -8px, 0) scale(1.025);
    opacity: 0.9;
  }
}

@media (max-width: 760px) {
  main::before {
    opacity: 0.2;
  }

  .hero::after {
    height: 210px;
  }

  .services {
    margin-top: 0;
    padding-block: 4.4rem;
  }

  .services::before {
    height: 230px;
  }

  .services::after {
    bottom: -130px;
    height: 320px;
    opacity: 0.62;
  }

  .method {
    padding-block: 4.4rem;
  }

  .method::before {
    top: -95px;
    height: 430px;
  }

  .portfolio {
    margin-top: 0;
    padding-top: 4.4rem;
  }

  .portfolio::after {
    opacity: 0.16;
  }

  .about::after {
    height: 220px;
  }

  .final-cta::before {
    inset: -80px 0 -1px;
  }
}

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

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

  body::before,
  main::before,
  main::after,
  .hero::before,
  .hero-ambient,
  .hero-ambient::before,
  .hero-ambient::after,
  .services::before,
  .services::after,
  .method::before,
  .method::after,
  .portfolio::before,
  .portfolio::after,
  .about::after,
  .final-cta::after,
  .contact::before {
    animation: none !important;
  }

  .credentials-track {
    animation-duration: 70s !important;
  }
}

@media (max-width: 920px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header,
  .site-header.is-scrolled {
    right: 0;
    left: 0;
    width: 100%;
  }

  .navbar,
  .site-header.is-scrolled .navbar {
    width: calc(100vw - 44px) !important;
    max-width: calc(100vw - 44px);
    grid-template-columns: minmax(0, 1fr) 44px;
    margin-inline: auto;
    overflow: hidden;
  }

  .container,
  .hero-layout {
    width: min(calc(100vw - 36px), var(--container)) !important;
    max-width: calc(100vw - 36px);
  }

  .hero-content {
    width: calc(100vw - 36px) !important;
    max-width: 560px !important;
    margin-inline: auto;
  }

  .hero-text {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
    max-width: 100%;
  }

  .hero-actions .btn,
  .cta-actions .btn,
  .form-button {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .nav-brand {
    min-width: 0;
    max-width: 100%;
  }

  .nav-brand .brand-logo {
    width: auto;
    max-width: min(150px, calc(100vw - 104px));
    object-fit: contain;
  }

  .nav-toggle {
    justify-self: end;
    flex: 0 0 auto;
  }
}

/* Final conversion polish */
html,
body {
  overflow-x: clip;
}

@media (min-width: 921px) {
  .hero-title {
    max-width: 650px;
    font-size: clamp(3.35rem, 4.45vw, 5rem);
    line-height: 1.04;
  }

  .hero-content {
    width: min(45%, 680px);
  }
}

@media (max-width: 640px) {
  .site-header,
  .navbar {
    max-width: 100vw;
  }

  .hero-content,
  .section > .container,
  .site-footer > .footer-grid,
  .footer-bottom {
    width: min(calc(100% - 32px), var(--container));
    margin-inline: auto;
  }

  .hero-title {
    font-size: clamp(2.32rem, 10.6vw, 3.1rem);
    line-height: 1.08;
  }

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

  .hero-accent {
    font-size: 0.78em;
    white-space: nowrap;
  }
}

@media (max-width: 430px) {
  .hero-title {
    font-size: clamp(2.2rem, 10.2vw, 2.82rem);
  }

  .hero-accent {
    font-size: 0.74em;
  }
}

.stats-grid strong .stat-number {
  background: linear-gradient(95deg, var(--blue), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font: inherit;
}

.contact-form h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-weight: 500;
}

.contact-form-note {
  margin: -0.25rem 0 0.45rem;
  color: rgba(217, 215, 228, 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
}

.contact-card a,
.contact-card > div {
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 45, 154, 0.3);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}

.contact-card .contact-priority {
  border-color: rgba(255, 45, 154, 0.28);
  background:
    linear-gradient(135deg, rgba(73, 118, 255, 0.12), rgba(255, 45, 154, 0.1)),
    rgba(255, 255, 255, 0.055);
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.025)),
    rgba(18, 19, 42, 0.7);
  color: #f4efff;
  box-shadow: none;
}

.contact-card .contact-priority .contact-icon {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--purple), var(--magenta));
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.75;
}

@media (max-width: 640px) {
  .contact-layout {
    gap: 1rem;
  }

  .contact-card {
    order: -1;
  }
}

/* Premium method redesign */
h1,
h2,
h3,
.section-title {
  font-family: var(--font-main);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.title-accent {
  font-family: var(--font-main);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.method {
  overflow: hidden;
  padding-block: clamp(5.6rem, 8vw, 7.4rem);
}

.method::before {
  opacity: 0.78;
}

.method-heading {
  max-width: 980px;
  margin-inline: auto;
  margin-bottom: clamp(2.4rem, 5vw, 4rem);
  text-align: center;
}

.method-heading .section-kicker {
  min-height: 42px;
  padding: 0.55rem 1.15rem;
  border-color: rgba(255, 45, 154, 0.48);
  background:
    linear-gradient(135deg, rgba(73, 118, 255, 0.15), rgba(255, 45, 154, 0.12)),
    rgba(255, 255, 255, 0.045);
  font-size: clamp(0.88rem, 1vw, 1rem);
  text-transform: none;
  letter-spacing: 0;
}

.method-heading .section-title {
  max-width: 980px;
  margin-inline: auto;
  font-size: clamp(2.65rem, 5.2vw, 5rem);
  font-weight: 700;
  line-height: 1.02;
}

.method-heading .title-accent {
  display: inline-block;
  font-size: 1.02em;
  line-height: 0.95;
}

.method-title-mobile {
  display: none;
}

.method-heading p:not(.section-kicker) {
  max-width: 680px;
  margin-top: 1rem;
  color: rgba(246, 246, 248, 0.78);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
}

.method-steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(0.85rem, 1.7vw, 1.45rem);
  align-items: center;
}

.method-card {
  position: relative;
  display: flex;
  min-height: clamp(382px, 33vw, 432px);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  border: 1px solid rgba(116, 108, 255, 0.42);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 27%, rgba(33, 45, 128, 0.2), transparent 42%),
    radial-gradient(circle at 50% 79%, rgba(255, 45, 154, 0.09), transparent 48%),
    linear-gradient(180deg, #05071b 0%, #050719 48%, #050617 100%);
  padding: clamp(1.25rem, 2vw, 1.55rem) clamp(1.1rem, 2.4vw, 2rem) clamp(1.55rem, 2.4vw, 2.2rem);
  text-align: center;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 68px rgba(4, 5, 18, 0.34),
    0 0 36px rgba(124, 58, 237, 0.1);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.method-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(73, 118, 255, 0.12), transparent 32%, transparent 70%, rgba(255, 45, 154, 0.12)),
    radial-gradient(circle at 50% 78%, rgba(255, 45, 154, 0.08), transparent 48%);
  opacity: 0.6;
  content: "";
}

.method-card::after {
  position: absolute;
  right: 10%;
  bottom: -38%;
  left: 10%;
  height: 54%;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(255, 45, 154, 0.24), transparent 70%);
  filter: blur(26px);
  opacity: 0.5;
  content: "";
}

.method-card:hover,
.method-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(255, 69, 184, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 30px 90px rgba(9, 8, 30, 0.42),
    0 0 42px rgba(255, 45, 154, 0.18);
}

.method-number {
  position: relative;
  z-index: 2;
  display: inline-grid;
  align-self: flex-start;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.035)),
    linear-gradient(135deg, rgba(73, 118, 255, 0.8), rgba(124, 58, 237, 0.7), rgba(255, 45, 154, 0.76));
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 0 24px rgba(124, 58, 237, 0.42);
}

.method-illustration {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 300px);
  aspect-ratio: 1;
  place-items: center;
  margin: clamp(0.05rem, 0.9vw, 0.55rem) auto clamp(0.75rem, 1.6vw, 1.15rem);
  color: rgba(235, 237, 255, 0.92);
}

.method-illustration::before,
.method-illustration::after {
  content: none;
}

.method-visual {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 0;
  opacity: 1;
  filter:
    drop-shadow(0 0 18px rgba(73, 118, 255, 0.16))
    drop-shadow(0 0 26px rgba(255, 45, 154, 0.12));
  mix-blend-mode: normal;
  -webkit-mask-image: none;
  mask-image: none;
}

.method-illustration svg {
  width: 100%;
  height: auto;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  filter:
    drop-shadow(0 0 12px rgba(73, 118, 255, 0.45))
    drop-shadow(0 0 18px rgba(255, 45, 154, 0.28));
}

.method-illustration svg .method-panel {
  stroke: rgba(146, 132, 255, 0.7);
  stroke-width: 2.4;
}

.method-illustration svg .method-arc {
  stroke: rgba(80, 129, 255, 0.72);
  stroke-width: 2.2;
}

.method-illustration svg .method-arc-soft {
  stroke: rgba(255, 45, 154, 0.58);
  stroke-dasharray: 12 9;
}

.method-illustration svg .method-dotline {
  stroke-width: 7;
}

.method-orbit {
  position: absolute;
  right: 10%;
  bottom: 1%;
  left: 10%;
  height: 34px;
  border: 1px solid rgba(124, 58, 237, 0.34);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.16), transparent 70%);
  filter: blur(0.1px);
}

.method-glow-stroke {
  stroke: rgba(223, 104, 255, 0.92);
}

.method-illustration svg .method-glow-stroke,
.method-illustration svg .method-flash,
.method-illustration svg .method-flame {
  stroke: #d767ff;
}

.method-illustration-discovery svg {
  color: #9e8cff;
}

.method-illustration-preview svg {
  color: #768cff;
}

.method-illustration-launch svg {
  color: #b486ff;
}

.method-card h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #fff;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.method-card p {
  position: relative;
  z-index: 2;
  max-width: 290px;
  margin: 1rem auto 0;
  color: rgba(246, 246, 248, 0.78);
  font-size: clamp(0.98rem, 1.18vw, 1.08rem);
  line-height: 1.55;
}

.method-connector {
  position: relative;
  z-index: 3;
  display: grid;
  width: clamp(42px, 4.4vw, 62px);
  height: clamp(42px, 4.4vw, 62px);
  place-items: center;
  border: 1px solid rgba(255, 69, 184, 0.38);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 45, 154, 0.2), transparent 65%),
    rgba(12, 10, 31, 0.72);
  color: #ff91e0;
  box-shadow:
    0 0 0 1px rgba(124, 58, 237, 0.08),
    0 0 24px rgba(255, 45, 154, 0.24);
}

.method-connector::before,
.method-connector::after {
  position: absolute;
  top: 50%;
  width: clamp(20px, 2.3vw, 34px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 45, 154, 0.72), transparent);
  content: "";
}

.method-connector::before {
  right: 100%;
}

.method-connector::after {
  left: 100%;
}

.method-connector svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1100px) and (min-width: 761px) {
  .method-steps {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-inline: auto;
  }

  .method-card {
    min-height: 340px;
  }

  .method-connector {
    justify-self: center;
    transform: rotate(90deg);
  }
}

@media (max-width: 760px) {
  .method {
    padding-block: 4.6rem;
  }

  .method > .container {
    width: min(calc(100vw - 32px), var(--container)) !important;
    max-width: calc(100vw - 32px);
    margin-inline: auto;
  }

  .method-heading {
    margin-bottom: 2rem;
    max-width: 100%;
  }

  .method-heading .section-title {
    max-width: 100%;
    font-size: clamp(2rem, 8.7vw, 2.55rem);
    line-height: 1.05;
    overflow-wrap: normal;
  }

  .method-heading .title-accent {
    font-size: 1em;
    white-space: normal;
  }

  .method-title-desktop {
    display: none;
  }

  .method-title-mobile {
    display: block;
  }

  .method-title-mobile:nth-of-type(4) {
    margin-top: -0.12em;
    font-size: 0.9em;
  }

  .method-heading p:not(.section-kicker) {
    width: 100%;
    max-width: 330px;
    font-size: 0.96rem;
    white-space: normal;
  }

  .method-steps {
    grid-template-columns: 1fr;
    gap: 0.95rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .method-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 0;
    border-radius: 22px;
    padding: 1.05rem 1rem 1.35rem;
  }

  .method-number {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    font-size: 1.18rem;
  }

  .method-illustration {
    width: min(100%, 232px);
    margin-top: 0.35rem;
    margin-bottom: 0.8rem;
  }

  .method-visual {
    border-radius: 0;
  }

  .method-card h3 {
    font-size: 1.45rem;
  }

  .method-card p {
    max-width: 300px;
    margin-top: 0.65rem;
    font-size: 0.96rem;
  }

  .method-connector {
    justify-self: center;
    width: 42px;
    height: 42px;
    transform: rotate(90deg);
  }

  .method-connector::before,
  .method-connector::after {
    width: 18px;
  }
}

/* Final visual polish: no clipped italic words, no visible section bands */
.title-accent,
.title-line .title-accent,
.hero-accent,
.cta-nowrap {
  display: inline-block;
  overflow: visible;
  padding-inline: 0.035em 0.22em;
  margin-inline: -0.035em 0;
  line-height: 1.12;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.section-title,
.section-heading h2,
.about-copy h2,
.cta-panel h2,
.hero-title {
  overflow: visible;
}

.hero::after {
  bottom: clamp(-190px, -12vw, -120px);
  height: clamp(430px, 36vw, 580px);
  background:
    radial-gradient(62% 210px at 46% 58%, rgba(255, 45, 154, 0.16), transparent 82%),
    radial-gradient(48% 230px at 68% 72%, rgba(73, 118, 255, 0.12), transparent 84%),
    radial-gradient(54% 180px at 34% 84%, rgba(124, 58, 237, 0.1), transparent 84%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
  filter: blur(14px);
  opacity: 0.78;
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(92% 72% at 50% 54%, #000 0 34%, rgba(0, 0, 0, 0.58) 58%, transparent 88%);
  mask-image: radial-gradient(92% 72% at 50% 54%, #000 0 34%, rgba(0, 0, 0, 0.58) 58%, transparent 88%);
}

.services::before,
.services::after,
.method::before,
.portfolio::before,
.portfolio::after,
.about::after,
.final-cta::after,
.contact::before {
  inset: -18% -12% !important;
  height: auto !important;
  background:
    radial-gradient(42% 170px at 28% 34%, rgba(73, 118, 255, 0.08), transparent 82%),
    radial-gradient(46% 190px at 72% 62%, rgba(255, 45, 154, 0.09), transparent 84%),
    radial-gradient(52% 210px at 50% 50%, rgba(124, 58, 237, 0.06), transparent 86%) !important;
  background-repeat: no-repeat !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: blur(12px);
  opacity: 0.42 !important;
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(82% 72% at 50% 50%, rgba(0, 0, 0, 0.92) 0 24%, rgba(0, 0, 0, 0.42) 54%, transparent 86%) !important;
  mask-image: radial-gradient(82% 72% at 50% 50%, rgba(0, 0, 0, 0.92) 0 24%, rgba(0, 0, 0, 0.42) 54%, transparent 86%) !important;
}

.method::after {
  inset: 0 -6% !important;
  opacity: 0.18 !important;
  -webkit-mask-image: radial-gradient(78% 70% at 50% 48%, #000 0 34%, transparent 82%) !important;
  mask-image: radial-gradient(78% 70% at 50% 48%, #000 0 34%, transparent 82%) !important;
}

.services,
.method,
.portfolio,
.about,
.credentials,
.final-cta,
.contact {
  background: transparent !important;
}

main > section {
  border-top: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none;
}

/* Method cards: integrated visual style matching the provided reference */
.method-card {
  min-height: clamp(520px, 43vw, 620px);
  justify-content: flex-start;
  border-color: rgba(159, 171, 255, 0.62);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 30%, rgba(33, 70, 180, 0.22), transparent 44%),
    radial-gradient(circle at 50% 76%, rgba(255, 45, 154, 0.18), transparent 50%),
    radial-gradient(circle at 50% 48%, rgba(4, 8, 32, 0.96), transparent 70%),
    linear-gradient(180deg, #02051a 0%, #03051a 52%, #050417 100%);
  padding: clamp(1.35rem, 2vw, 1.85rem) clamp(1.25rem, 2vw, 1.8rem) clamp(2.15rem, 2.8vw, 2.8rem);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(255, 45, 154, 0.18),
    0 28px 80px rgba(0, 0, 0, 0.34),
    0 0 42px rgba(80, 92, 255, 0.1);
}

.method-card::before {
  background:
    linear-gradient(135deg, rgba(90, 129, 255, 0.16), transparent 32%, transparent 70%, rgba(255, 45, 154, 0.14)),
    radial-gradient(circle at 50% 30%, rgba(2, 5, 26, 0.4), transparent 58%),
    radial-gradient(circle at 50% 86%, rgba(255, 45, 154, 0.13), transparent 46%);
  opacity: 0.76;
}

.method-card::after {
  right: 12%;
  bottom: 0;
  left: 12%;
  height: 36%;
  background: radial-gradient(ellipse at center, rgba(255, 45, 154, 0.28), transparent 72%);
  filter: blur(30px);
  opacity: 0.58;
}

.method-number {
  width: 66px;
  height: 66px;
  border-radius: 16px;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  box-shadow:
    0 0 26px rgba(80, 114, 255, 0.34),
    0 0 22px rgba(255, 45, 154, 0.18);
}

.method-illustration {
  width: min(100%, 340px);
  margin: clamp(0.4rem, 1.2vw, 0.8rem) auto clamp(1.35rem, 2.2vw, 1.8rem);
  isolation: isolate;
}

.method-illustration::before {
  position: absolute;
  right: 8%;
  bottom: 8%;
  left: 8%;
  z-index: 1;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(73, 118, 255, 0.34), rgba(255, 45, 154, 0.64), transparent);
  box-shadow:
    0 0 16px rgba(255, 45, 154, 0.28),
    0 0 26px rgba(73, 118, 255, 0.18);
  content: "";
}

.method-illustration::after {
  position: absolute;
  inset: -2% -6% 0;
  z-index: -1;
  pointer-events: none;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 46%, rgba(73, 118, 255, 0.18), transparent 62%),
    radial-gradient(circle at 52% 70%, rgba(255, 45, 154, 0.16), transparent 70%);
  filter: blur(20px);
  opacity: 0.9;
  content: "";
}

.method-visual {
  width: 118%;
  height: 118%;
  margin: -9%;
  object-fit: contain;
  opacity: 1;
  filter:
    drop-shadow(0 0 18px rgba(73, 118, 255, 0.2))
    drop-shadow(0 0 28px rgba(255, 45, 154, 0.16));
  mix-blend-mode: screen;
  -webkit-mask-image: none;
  mask-image: none;
}

.method-card h3 {
  max-width: 290px;
  font-size: clamp(1.8rem, 2.45vw, 2.45rem);
  font-weight: 700;
  line-height: 1.06;
}

.method-card p {
  max-width: 310px;
  margin-top: 1.1rem;
  color: rgba(246, 246, 248, 0.82);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.45;
}

.method-connector {
  width: clamp(48px, 4.8vw, 66px);
  height: clamp(48px, 4.8vw, 66px);
  border-color: rgba(255, 91, 201, 0.5);
  background:
    radial-gradient(circle, rgba(255, 45, 154, 0.2), transparent 67%),
    rgba(8, 8, 27, 0.78);
  color: #ff8bd7;
  box-shadow:
    0 0 0 1px rgba(124, 58, 237, 0.1),
    0 0 30px rgba(255, 45, 154, 0.26);
}

@media (max-width: 1100px) and (min-width: 761px) {
  .method-card {
    min-height: 500px;
  }
}

@media (max-width: 760px) {
  .method-card {
    min-height: 0;
    border-radius: 26px;
    padding: 1.05rem 1rem 1.55rem;
  }

  .method-number {
    width: 54px;
    height: 54px;
    border-radius: 13px;
    font-size: 1.22rem;
  }

  .method-illustration {
    width: min(100%, 260px);
    margin: 0.2rem auto 1rem;
  }

  .method-card h3 {
    font-size: 1.62rem;
  }

  .method-card p {
    max-width: 285px;
    font-size: 0.98rem;
  }
}

/* Method final redesign: custom integrated SVG visuals, no raster image blocks */
.method-card {
  min-height: clamp(500px, 40vw, 575px);
  justify-content: flex-start;
  border: 1px solid rgba(130, 150, 255, 0.46);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 28%, rgba(67, 105, 255, 0.14), transparent 38%),
    radial-gradient(circle at 50% 82%, rgba(255, 45, 154, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(7, 10, 32, 0.94), rgba(4, 6, 22, 0.98));
  padding: clamp(1.25rem, 2vw, 1.65rem) clamp(1.15rem, 2vw, 1.75rem) clamp(1.8rem, 2.6vw, 2.35rem);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -1px 0 rgba(255, 45, 154, 0.12),
    0 26px 72px rgba(0, 0, 0, 0.3),
    0 0 38px rgba(93, 104, 255, 0.09);
}

.method-card::before {
  background:
    linear-gradient(135deg, rgba(73, 118, 255, 0.18), transparent 28%, transparent 72%, rgba(255, 45, 154, 0.16)),
    radial-gradient(circle at 50% 40%, rgba(2, 5, 24, 0.16), transparent 60%);
  opacity: 0.8;
}

.method-card::after {
  right: 12%;
  bottom: -10%;
  left: 12%;
  height: 38%;
  background: radial-gradient(ellipse at center, rgba(255, 45, 154, 0.25), transparent 72%);
  filter: blur(30px);
  opacity: 0.52;
}

.method-number {
  width: 62px;
  height: 62px;
  border-radius: 15px;
  font-weight: 700;
}

.method-illustration {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 310px);
  aspect-ratio: 1.18;
  place-items: center;
  margin: clamp(0.35rem, 1vw, 0.75rem) auto clamp(1.35rem, 2vw, 1.7rem);
  isolation: isolate;
}

.method-illustration::before {
  position: absolute;
  inset: 7% 4% 3%;
  z-index: -2;
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 48%, rgba(73, 118, 255, 0.2), transparent 62%),
    radial-gradient(circle at 54% 70%, rgba(255, 45, 154, 0.16), transparent 68%),
    linear-gradient(180deg, rgba(8, 12, 42, 0.38), rgba(5, 7, 25, 0.08));
  filter: blur(6px);
  content: "";
}

.method-illustration::after {
  position: absolute;
  right: 8%;
  bottom: 9%;
  left: 8%;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(65, 132, 255, 0.36), rgba(255, 45, 154, 0.7), transparent);
  box-shadow:
    0 0 16px rgba(255, 45, 154, 0.28),
    0 0 28px rgba(73, 118, 255, 0.18);
  content: "";
}

.method-graphic {
  width: 100%;
  height: auto;
  overflow: visible;
  fill: none;
  stroke: rgba(218, 224, 255, 0.9);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter:
    drop-shadow(0 0 10px rgba(73, 118, 255, 0.42))
    drop-shadow(0 0 18px rgba(255, 45, 154, 0.24));
}

.method-panel,
.method-ui,
.method-core,
.method-core-soft,
.method-rocket {
  vector-effect: non-scaling-stroke;
}

.method-panel {
  stroke: url("#methodPaint");
  stroke: rgba(96, 130, 255, 0.88);
}

.method-ui {
  stroke: rgba(157, 146, 255, 0.92);
}

.method-orb {
  stroke: rgba(73, 118, 255, 0.76);
}

.method-orb-soft {
  stroke: rgba(255, 45, 154, 0.58);
  stroke-dasharray: 12 10;
}

.method-core,
.method-core-soft {
  stroke: rgba(210, 93, 255, 0.95);
}

.method-core-soft {
  stroke: rgba(72, 126, 255, 0.74);
}

.method-dotline,
.method-spark {
  stroke: rgba(235, 223, 255, 0.96);
  stroke-width: 7;
}

.method-logo-mark,
.method-logo-mini,
.method-flash,
.method-flame,
.method-rocket,
.method-window {
  stroke: #ff5fd2;
  filter:
    drop-shadow(0 0 8px rgba(255, 45, 154, 0.42))
    drop-shadow(0 0 12px rgba(73, 118, 255, 0.28));
}

.method-logo-mark,
.method-logo-mini {
  stroke-width: 4;
}

.method-flash {
  stroke: #ff5fd2;
}

.method-flame {
  stroke: #ff7edb;
}

.method-cloud,
.method-speed,
.method-bars,
.method-lens {
  stroke: rgba(255, 95, 210, 0.78);
}

.method-chat,
.method-data {
  stroke: rgba(89, 143, 255, 0.9);
}

.method-card h3 {
  max-width: 300px;
  font-size: clamp(1.58rem, 2.1vw, 2.05rem);
  line-height: 1.1;
}

.method-card p {
  max-width: 300px;
  margin-top: 0.85rem;
  font-size: clamp(0.98rem, 1.18vw, 1.08rem);
  line-height: 1.52;
}

.method-connector {
  width: clamp(44px, 4.1vw, 58px);
  height: clamp(44px, 4.1vw, 58px);
  border-color: rgba(255, 91, 201, 0.42);
  background:
    radial-gradient(circle, rgba(255, 45, 154, 0.18), transparent 68%),
    rgba(8, 9, 28, 0.76);
}

.method-connector::before,
.method-connector::after {
  opacity: 0.72;
}

@media (max-width: 1100px) and (min-width: 761px) {
  .method-card {
    min-height: 440px;
  }
}

@media (max-width: 760px) {
  .method-card {
    min-height: 0;
    border-radius: 24px;
    padding: 1.05rem 1rem 1.45rem;
  }

  .method-number {
    width: 52px;
    height: 52px;
    border-radius: 12px;
  }

  .method-illustration {
    width: min(100%, 245px);
    margin: 0.25rem auto 1rem;
  }

  .method-card h3 {
    font-size: 1.46rem;
  }

  .method-card p {
    max-width: 290px;
    font-size: 0.96rem;
  }
}

/* Method section final balance: visible heading, richer cards, compact hierarchy */
.method {
  scroll-margin-top: 132px;
  padding-top: clamp(7.2rem, 10vw, 9rem) !important;
  padding-bottom: clamp(5.2rem, 7.5vw, 6.8rem) !important;
  overflow: visible !important;
}

.method-heading {
  margin-bottom: clamp(2rem, 3.5vw, 3rem) !important;
}

.method-heading .section-title {
  font-weight: 800;
  line-height: 1.08;
  max-width: 1040px;
}

.method-heading .title-accent {
  font-weight: 700;
  line-height: 1.08;
}

.method-steps {
  align-items: stretch;
}

.method-card {
  min-height: clamp(430px, 34vw, 500px);
  justify-content: flex-start;
  border-color: rgba(128, 155, 255, 0.5);
  border-radius: 28px;
  background:
    radial-gradient(circle at 48% 30%, rgba(51, 87, 210, 0.16), transparent 38%),
    radial-gradient(circle at 50% 82%, rgba(255, 45, 154, 0.13), transparent 46%),
    linear-gradient(180deg, rgba(8, 11, 36, 0.92), rgba(5, 6, 22, 0.98));
  padding: clamp(1.05rem, 1.45vw, 1.35rem) clamp(1.05rem, 1.8vw, 1.55rem) clamp(1.45rem, 2vw, 1.85rem);
}

.method-card::before {
  background:
    linear-gradient(135deg, rgba(73, 118, 255, 0.16), transparent 28%, transparent 70%, rgba(255, 45, 154, 0.13)),
    radial-gradient(circle at 50% 42%, rgba(3, 7, 28, 0.22), transparent 62%);
  opacity: 0.7;
}

.method-card::after {
  bottom: -14%;
  height: 42%;
  opacity: 0.48;
}

.method-number {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  font-size: clamp(1.18rem, 1.8vw, 1.45rem);
}

.method-illustration {
  width: min(100%, 330px);
  aspect-ratio: 1.32;
  margin: clamp(0.15rem, 0.6vw, 0.45rem) auto clamp(0.75rem, 1.4vw, 1rem);
}

.method-illustration::before {
  inset: 0 0 4%;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 46%, rgba(73, 118, 255, 0.22), transparent 60%),
    radial-gradient(circle at 54% 72%, rgba(255, 45, 154, 0.15), transparent 68%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
  filter: blur(5px);
}

.method-illustration::after {
  right: 7%;
  bottom: 4%;
  left: 7%;
}

.method-graphic {
  width: 105%;
  max-width: none;
  transform: translateY(-2px);
  stroke-width: 3;
}

.method-grid {
  stroke: rgba(88, 113, 255, 0.16);
  stroke-width: 1;
}

.method-surface {
  fill: rgba(12, 15, 48, 0.34);
  stroke: rgba(93, 145, 255, 0.88);
}

.method-chip {
  fill: rgba(255, 45, 154, 0.08);
  stroke: rgba(255, 111, 215, 0.72);
}

.method-chip-text,
.method-scan,
.method-clock,
.method-check {
  stroke: rgba(255, 137, 225, 0.9);
}

.method-node {
  stroke: rgba(235, 223, 255, 0.95);
  stroke-width: 7;
}

.method-audit-core {
  stroke: url("#auditPaint");
}

.method-illustration-preview .method-panel,
.method-illustration-preview .method-orb,
.method-illustration-preview .method-flash {
  stroke: url("#previewPaint");
}

.method-illustration-launch .method-panel,
.method-illustration-launch .method-orb,
.method-illustration-launch .method-rocket,
.method-illustration-launch .method-check {
  stroke: url("#launchPaint");
}

.method-card h3 {
  max-width: 310px;
  margin-top: 0;
  font-size: clamp(1.5rem, 1.85vw, 1.88rem);
  line-height: 1.1;
}

.method-card p {
  max-width: 300px;
  margin-top: 0.65rem;
  font-size: clamp(0.94rem, 1.05vw, 1.02rem);
  line-height: 1.48;
}

.method-connector {
  align-self: center;
  width: clamp(40px, 3.6vw, 52px);
  height: clamp(40px, 3.6vw, 52px);
}

@media (max-width: 1100px) and (min-width: 761px) {
  .method {
    scroll-margin-top: 118px;
  }

  .method-card {
    min-height: 410px;
  }

  .method-illustration {
    width: min(100%, 300px);
  }
}

@media (max-width: 760px) {
  .method {
    scroll-margin-top: 96px;
    padding-top: 5.4rem !important;
    padding-bottom: 4.6rem !important;
  }

  .method-heading .section-title {
    font-size: clamp(2rem, 8.3vw, 2.45rem);
    line-height: 1.1;
  }

  .method-card {
    min-height: 0;
    padding: 1rem 0.95rem 1.35rem;
  }

  .method-illustration {
    width: min(100%, 260px);
    margin: 0.1rem auto 0.8rem;
  }

  .method-graphic {
    width: 102%;
  }

  .method-card h3 {
    font-size: 1.42rem;
  }

  .method-card p {
    font-size: 0.94rem;
  }
}

/* Method icon upgrade inspired by the premium neon reference */
.method-illustration {
  width: min(100%, 350px);
  aspect-ratio: 1.42;
  margin-top: 0;
  margin-bottom: clamp(0.7rem, 1.15vw, 0.95rem);
}

.method-symbol {
  position: absolute;
  z-index: 4;
  width: clamp(34px, 3.4vw, 48px);
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 10px rgba(73, 118, 255, 0.42))
    drop-shadow(0 0 14px rgba(255, 45, 154, 0.32));
  pointer-events: none;
}

.method-symbol-audit {
  top: 43%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.method-symbol-preview {
  top: 21%;
  left: 25%;
  width: clamp(28px, 2.8vw, 38px);
}

.method-symbol-launch {
  top: 17%;
  left: 50%;
  width: clamp(28px, 2.7vw, 38px);
  transform: translateX(-50%);
}

.method-graphic {
  width: 112%;
  transform: translateY(-3px);
  stroke-width: 3.15;
}

.method-shadow-disc,
.method-shadow-panel {
  fill: rgba(12, 13, 48, 0.36);
  stroke: rgba(73, 118, 255, 0.1);
}

.method-shadow-panel {
  fill: rgba(8, 12, 44, 0.42);
}

.method-glow-beam {
  stroke: url("#auditPaint");
  stroke-width: 1.5;
  opacity: 0.88;
  filter:
    drop-shadow(0 0 8px rgba(255, 45, 154, 0.45))
    drop-shadow(0 0 12px rgba(73, 118, 255, 0.25));
}

.method-illustration-preview .method-glow-beam {
  stroke: url("#previewPaint");
}

.method-illustration-launch .method-glow-beam {
  stroke: url("#launchPaint");
}

.method-orb {
  stroke-width: 2.6;
  filter:
    drop-shadow(0 0 9px rgba(73, 118, 255, 0.38))
    drop-shadow(0 0 14px rgba(124, 58, 237, 0.22));
}

.method-core,
.method-core-soft,
.method-panel,
.method-surface,
.method-rocket {
  filter:
    drop-shadow(0 0 10px rgba(73, 118, 255, 0.34))
    drop-shadow(0 0 18px rgba(255, 45, 154, 0.22));
}

.method-card {
  min-height: clamp(440px, 34vw, 505px);
}

.method-card h3 {
  margin-top: 0.1rem;
}

.method-connector {
  transform: translateY(-1.1rem);
}

@media (max-width: 1100px) and (min-width: 761px) {
  .method-connector {
    transform: rotate(90deg);
  }
}

/* Professional method scenes: clean UI compositions instead of sketchy line art */
.method-illustration {
  width: min(100%, 330px);
  aspect-ratio: 1.32;
  margin: 0 auto clamp(0.8rem, 1.2vw, 1rem);
}

.method-scene,
.method-scene * {
  box-sizing: border-box;
}

.method-scene {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 48%, rgba(73, 118, 255, 0.16), transparent 58%),
    radial-gradient(circle at 55% 74%, rgba(255, 45, 154, 0.14), transparent 64%);
  overflow: visible;
  filter:
    drop-shadow(0 0 18px rgba(73, 118, 255, 0.18))
    drop-shadow(0 0 26px rgba(255, 45, 154, 0.12));
}

.method-scene::after {
  position: absolute;
  right: 8%;
  bottom: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(73, 118, 255, 0.35), rgba(255, 45, 154, 0.7), transparent);
  box-shadow: 0 0 18px rgba(255, 45, 154, 0.25);
  content: "";
}

.scene-orbit {
  position: absolute;
  inset: 14% 18% 12%;
  border: 2px solid rgba(73, 118, 255, 0.58);
  border-right-color: rgba(255, 45, 154, 0.62);
  border-bottom-color: rgba(255, 45, 154, 0.3);
  border-radius: 50%;
  box-shadow:
    0 0 18px rgba(73, 118, 255, 0.18),
    inset 0 0 28px rgba(124, 58, 237, 0.1);
}

.scene-orbit-soft {
  inset: 23% 26% 20%;
  border-color: rgba(124, 58, 237, 0.24);
  transform: rotate(-12deg);
}

.scene-widget,
.scene-browser,
.launch-window,
.scene-logo-tile,
.scene-lens {
  position: absolute;
  border: 1px solid rgba(126, 151, 255, 0.58);
  background:
    linear-gradient(180deg, rgba(20, 25, 67, 0.72), rgba(9, 10, 34, 0.64));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 18px rgba(73, 118, 255, 0.18),
    0 0 24px rgba(255, 45, 154, 0.1);
  backdrop-filter: blur(10px);
}

.scene-lens {
  top: 28%;
  left: 34%;
  display: grid;
  width: 34%;
  aspect-ratio: 1;
  place-items: center;
  border-width: 2px;
  border-color: rgba(79, 124, 255, 0.82);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 45, 154, 0.18), transparent 45%),
    rgba(7, 9, 30, 0.72);
}

.scene-lens::before {
  position: absolute;
  inset: 15%;
  border: 1px solid rgba(255, 45, 154, 0.66);
  border-radius: 50%;
  content: "";
}

.scene-lens::after {
  position: absolute;
  right: -24%;
  bottom: -20%;
  width: 34%;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #8b5cf6, #ff2d9a);
  box-shadow: 0 0 14px rgba(255, 45, 154, 0.35);
  transform: rotate(45deg);
  content: "";
}

.scene-lens img,
.scene-logo-tile img {
  width: 52%;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 8px rgba(73, 118, 255, 0.4))
    drop-shadow(0 0 12px rgba(255, 45, 154, 0.3));
}

.scene-chat {
  top: 23%;
  left: 10%;
  display: flex;
  width: 28%;
  height: 22%;
  align-items: center;
  justify-content: center;
  gap: 8%;
  border-radius: 14px;
}

.scene-chat span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #bda7ff;
  box-shadow: 0 0 10px rgba(124, 58, 237, 0.5);
}

.scene-data {
  bottom: 18%;
  left: 11%;
  display: flex;
  width: 29%;
  height: 24%;
  align-items: flex-end;
  justify-content: center;
  gap: 9%;
  border-color: rgba(255, 93, 211, 0.55);
  border-radius: 14px;
  padding-bottom: 7%;
}

.scene-data i {
  width: 10%;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, #ff6bd6, #7c3aed);
  box-shadow: 0 0 10px rgba(255, 45, 154, 0.36);
}

.scene-data i:nth-child(1) { height: 28%; }
.scene-data i:nth-child(2) { height: 48%; }
.scene-data i:nth-child(3) { height: 68%; }

.method-scene-preview .scene-browser {
  top: 20%;
  left: 20%;
  width: 61%;
  height: 54%;
  border-radius: 18px;
}

.browser-bar {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 24%;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(126, 151, 255, 0.34);
  padding-inline: 12px;
}

.browser-bar i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #ff69d7;
  box-shadow: 0 0 8px rgba(255, 45, 154, 0.44);
}

.browser-bar b {
  margin-left: auto;
  border: 1px solid rgba(255, 111, 215, 0.5);
  border-radius: 999px;
  padding: 2px 9px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.7rem;
  font-weight: 700;
}

.browser-media {
  position: absolute;
  bottom: 16%;
  left: 12%;
  width: 38%;
  height: 34%;
  border: 1px solid rgba(126, 151, 255, 0.45);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(73, 118, 255, 0.24), rgba(255, 45, 154, 0.2)),
    rgba(255, 255, 255, 0.04);
}

.browser-line {
  position: absolute;
  right: 12%;
  height: 3px;
  border-radius: 999px;
  background: rgba(157, 146, 255, 0.78);
}

.line-one { top: 45%; width: 30%; }
.line-two { top: 57%; width: 38%; }
.line-three { top: 69%; width: 24%; }

.scene-logo-tile {
  top: 18%;
  left: 17%;
  display: grid;
  width: 16%;
  aspect-ratio: 1;
  place-items: center;
  border-color: rgba(255, 93, 211, 0.45);
  border-radius: 12px;
}

.scene-bolt {
  position: absolute;
  right: 16%;
  bottom: 13%;
  width: 23%;
  aspect-ratio: 0.65;
  background: linear-gradient(180deg, #5b9dff, #ff2d9a);
  clip-path: polygon(58% 0, 16% 52%, 48% 52%, 30% 100%, 90% 38%, 56% 38%);
  filter:
    drop-shadow(0 0 10px rgba(73, 118, 255, 0.45))
    drop-shadow(0 0 16px rgba(255, 45, 154, 0.4));
}

.scene-speed {
  position: absolute;
  left: 5%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #ff2d9a);
  box-shadow: 0 0 12px rgba(255, 45, 154, 0.38);
}

.scene-speed-a { top: 48%; width: 22%; }
.scene-speed-b { top: 58%; width: 30%; }

.launch-window {
  top: 26%;
  left: 18%;
  width: 60%;
  height: 48%;
  border-radius: 18px;
}

.launch-code {
  position: absolute;
  left: 15%;
  height: 3px;
  border-radius: 999px;
  background: rgba(157, 146, 255, 0.72);
}

.code-a { top: 44%; width: 34%; }
.code-b { top: 56%; width: 42%; }
.code-c { top: 68%; width: 28%; }

.launch-logo {
  top: 13%;
  left: 45%;
  width: 18%;
}

.scene-rocket {
  position: absolute;
  right: 18%;
  top: 28%;
  width: 18%;
  height: 48%;
  border: 2px solid rgba(96, 158, 255, 0.9);
  border-radius: 50% 50% 42% 42%;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 45, 154, 0.48), transparent 13%),
    linear-gradient(180deg, rgba(73, 118, 255, 0.22), rgba(255, 45, 154, 0.14));
  box-shadow:
    0 0 16px rgba(73, 118, 255, 0.38),
    0 0 24px rgba(255, 45, 154, 0.22);
}

.scene-rocket i,
.scene-rocket b {
  position: absolute;
  content: "";
}

.scene-rocket i {
  right: -42%;
  bottom: 17%;
  left: -42%;
  height: 28%;
  background: linear-gradient(90deg, rgba(73, 118, 255, 0.7), rgba(255, 45, 154, 0.7));
  clip-path: polygon(0 100%, 30% 0, 50% 62%, 70% 0, 100% 100%);
}

.scene-rocket b {
  bottom: -34%;
  left: 50%;
  width: 46%;
  height: 42%;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff2d9a, rgba(124, 58, 237, 0));
  filter: blur(2px) drop-shadow(0 0 14px rgba(255, 45, 154, 0.48));
  transform: translateX(-50%);
}

.scene-check {
  position: absolute;
  right: 10%;
  top: 28%;
  width: 17%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 93, 211, 0.5);
  border-radius: 50%;
  background: rgba(8, 9, 28, 0.7);
  box-shadow: 0 0 18px rgba(255, 45, 154, 0.22);
}

.scene-check::before {
  position: absolute;
  inset: 34% 25%;
  border-right: 3px solid #ff72dc;
  border-bottom: 3px solid #ff72dc;
  transform: rotate(45deg);
  content: "";
}

@media (max-width: 760px) {
  .method-illustration {
    width: min(100%, 255px);
  }
}

@media (max-width: 760px) {
  .method-illustration {
    width: min(100%, 270px);
    aspect-ratio: 1.35;
  }

  .method-symbol {
    width: 34px;
  }

  .method-symbol-preview,
  .method-symbol-launch {
    width: 29px;
  }

  .method-connector {
    transform: rotate(90deg);
  }
}

/* Final method polish: premium blended visuals, no sketchy custom line art */
.method {
  scroll-margin-top: 132px;
  padding-top: clamp(7.4rem, 9vw, 9.2rem) !important;
  padding-bottom: clamp(5.4rem, 7vw, 7rem) !important;
}

.method-heading {
  margin-bottom: clamp(2.4rem, 4vw, 3.4rem) !important;
}

.method-heading .section-title {
  max-width: 980px;
  font-weight: 700;
  line-height: 1.08;
}

.title-accent,
.title-line .title-accent,
.hero-accent,
.cta-nowrap {
  padding-right: 0.08em;
  padding-bottom: 0.04em;
  overflow: visible;
}

.method-steps {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: clamp(1.15rem, 2vw, 2rem);
  align-items: stretch;
}

.method-card {
  min-height: clamp(500px, 37vw, 570px);
  justify-content: flex-start;
  padding: clamp(1.25rem, 1.7vw, 1.55rem) clamp(1.1rem, 1.9vw, 1.65rem) clamp(1.65rem, 2.1vw, 2rem);
  border: 1px solid rgba(142, 165, 255, 0.52);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 27%, rgba(72, 115, 255, 0.16), transparent 41%),
    radial-gradient(circle at 50% 92%, rgba(255, 45, 154, 0.17), transparent 45%),
    linear-gradient(180deg, rgba(3, 8, 33, 0.98), rgba(4, 5, 24, 0.99) 52%, rgba(18, 5, 28, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(255, 45, 154, 0.16),
    0 24px 70px rgba(0, 0, 0, 0.32),
    0 0 42px rgba(73, 118, 255, 0.08);
}

.method-card::before {
  background:
    linear-gradient(135deg, rgba(91, 134, 255, 0.16), transparent 30%, transparent 70%, rgba(255, 45, 154, 0.16)),
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.035), transparent 46%);
  opacity: 0.92;
}

.method-card::after {
  right: 12%;
  bottom: 3%;
  left: 12%;
  height: 34%;
  background: radial-gradient(ellipse at center, rgba(255, 45, 154, 0.22), transparent 68%);
  opacity: 0.5;
}

.method-number {
  z-index: 4;
  width: 58px;
  height: 58px;
  border-radius: 15px;
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  font-weight: 700;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 0 24px rgba(124, 58, 237, 0.34);
}

.method-card-header {
  position: relative;
  z-index: 4;
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: clamp(0.2rem, 0.9vw, 0.55rem);
}

.method-step-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding-top: 0.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.12rem, 1.35vw, 1.35rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-shadow:
    0 0 18px rgba(124, 58, 237, 0.28),
    0 0 22px rgba(255, 45, 154, 0.18);
}

.method-step-label::after {
  position: absolute;
  right: -0.45rem;
  bottom: 0.24rem;
  left: 0.08rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(73, 118, 255, 0.85), rgba(255, 45, 154, 0.9), transparent);
  box-shadow: 0 0 12px rgba(255, 45, 154, 0.26);
  content: "";
}

.method-illustration {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 355px);
  aspect-ratio: 1.3;
  place-items: center;
  margin: clamp(0.15rem, 0.8vw, 0.5rem) auto clamp(0.85rem, 1.7vw, 1.25rem);
  overflow: visible;
  isolation: isolate;
}

.method-illustration::before {
  position: absolute;
  inset: 6% 4% 0;
  z-index: -2;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 48%, rgba(73, 118, 255, 0.24), transparent 58%),
    radial-gradient(circle at 50% 70%, rgba(255, 45, 154, 0.15), transparent 64%);
  filter: blur(10px);
  content: "";
}

.method-illustration::after {
  position: absolute;
  right: 10%;
  bottom: 1%;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(73, 118, 255, 0.5), rgba(255, 45, 154, 0.72), transparent);
  box-shadow: 0 0 18px rgba(255, 45, 154, 0.34);
  content: "";
}

.method-illustration img {
  display: block;
  width: 118%;
  max-width: none;
  height: auto;
  object-fit: contain;
  opacity: 0.96;
  mix-blend-mode: screen;
  filter:
    saturate(1.08)
    contrast(1.04)
    drop-shadow(0 0 18px rgba(73, 118, 255, 0.18))
    drop-shadow(0 0 26px rgba(255, 45, 154, 0.12));
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0 50%, rgba(0, 0, 0, 0.82) 68%, transparent 96%);
  mask-image: radial-gradient(ellipse at center, #000 0 50%, rgba(0, 0, 0, 0.82) 68%, transparent 96%);
}

.method-card h3 {
  max-width: 300px;
  margin-top: 0.1rem;
  color: #fff;
  font-size: clamp(1.65rem, 2.1vw, 2.15rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-shadow: 0 0 22px rgba(255, 255, 255, 0.08);
}

.method-card p {
  max-width: 300px;
  margin-top: 0.75rem;
  color: rgba(246, 246, 248, 0.82);
  font-size: clamp(0.96rem, 1.05vw, 1.05rem);
  font-weight: 400;
  line-height: 1.5;
}

.method-connector {
  align-self: center;
  width: 48px;
  height: 48px;
  transform: translateY(-1.3rem);
  border-color: rgba(255, 93, 211, 0.42);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 45, 154, 0.22), transparent 62%),
    rgba(10, 9, 33, 0.72);
  box-shadow:
    0 0 0 1px rgba(73, 118, 255, 0.12),
    0 0 28px rgba(255, 45, 154, 0.16);
}

.method-connector::before,
.method-connector::after {
  opacity: 0.48;
}

@media (max-width: 1180px) and (min-width: 761px) {
  .method-steps {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-inline: auto;
  }

  .method-card {
    min-height: 0;
  }

  .method-connector {
    margin-block: -0.4rem;
    transform: rotate(90deg);
  }
}

@media (max-width: 760px) {
  .method {
    scroll-margin-top: 96px;
    padding-top: 5.5rem !important;
    padding-bottom: 4.7rem !important;
  }

  .method-heading {
    margin-bottom: 2rem !important;
  }

  .method-heading .section-title {
    font-size: clamp(2rem, 8vw, 2.45rem);
    line-height: 1.12;
  }

  .method-steps {
    grid-template-columns: 1fr;
    gap: 0.95rem;
  }

  .method-card {
    min-height: 0;
    padding: 1rem 1rem 1.45rem;
    border-radius: 26px;
  }

  .method-number {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    font-size: 1.12rem;
  }

  .method-card-header {
    gap: 0.7rem;
    margin-bottom: 0.2rem;
  }

  .method-step-label {
    min-height: 28px;
    font-size: 1.02rem;
  }

  .method-illustration {
    width: min(100%, 270px);
    aspect-ratio: 1.28;
    margin: 0.05rem auto 0.8rem;
  }

  .method-illustration img {
    width: 112%;
  }

  .method-card h3 {
    font-size: 1.48rem;
    letter-spacing: -0.025em;
  }

  .method-card p {
    max-width: 290px;
    font-size: 0.94rem;
  }

  .method-connector {
    width: 42px;
    height: 42px;
    margin-block: -0.25rem;
    transform: rotate(90deg);
  }
}

/* Method cards: clean cropped-card layout with smooth top radius */
.method-card {
  overflow: hidden;
  border-radius: 32px;
  padding-top: clamp(1.35rem, 2vw, 1.8rem);
}

.method-card::before {
  border-radius: inherit;
}

.method-card::after {
  border-radius: 999px 999px 0 0;
}

.method-illustration {
  width: min(100%, 330px);
  margin-top: 0;
  margin-bottom: clamp(1rem, 1.7vw, 1.35rem);
  overflow: visible;
}

.method-illustration::before {
  inset: -2% -4% 0;
  border-radius: 32px 32px 18px 18px;
}

.method-illustration img {
  width: 112%;
  transform: translateY(-1%);
}

.method-card h3 {
  margin-top: 0;
}

.method-card-header,
.method-step-label {
  display: none;
}

@media (max-width: 760px) {
  .method-card {
    border-radius: 28px;
    padding-top: 1.2rem;
  }

  .method-illustration {
    width: min(100%, 260px);
    margin-bottom: 0.95rem;
  }

  .method-illustration img {
    width: 110%;
  }
}

/* Method cards: full-bleed visual top to remove visible pasted-image edges */
.method-card {
  min-height: clamp(405px, 29vw, 455px);
  overflow: hidden;
  padding: 0 0 clamp(1.05rem, 1.35vw, 1.3rem);
  border-radius: 32px;
}

.method-card::before,
.method-card::after {
  pointer-events: none;
}

.method-illustration {
  position: relative;
  width: 100%;
  height: clamp(210px, 16vw, 245px);
  margin: 0 0 clamp(0.78rem, 1.15vw, 1rem);
  overflow: hidden;
  border-radius: 32px 32px 0 0;
  background: #03051d;
}

.method-illustration::before {
  content: none;
}

.method-illustration::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(4, 5, 24, 0.72) 58%, rgba(18, 5, 28, 0.98));
  box-shadow: none;
  content: "";
}

.method-illustration img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center 47%;
  opacity: 1;
  mix-blend-mode: normal;
  transform: none;
  filter:
    saturate(1.08)
    contrast(1.04)
    drop-shadow(0 0 18px rgba(73, 118, 255, 0.16));
  -webkit-mask-image: none;
  mask-image: none;
}

.method-illustration-preview img {
  object-position: center 48%;
}

.method-illustration-launch img {
  object-position: center 49%;
}

.method-card h3,
.method-card p {
  padding-inline: clamp(1rem, 1.75vw, 1.5rem);
}

.method-card h3 {
  margin-top: 0;
  font-size: clamp(1.5rem, 1.85vw, 1.9rem);
}

.method-card p {
  margin-top: 0.5rem;
  line-height: 1.42;
}

@media (max-width: 760px) {
  .method-card {
    min-height: 0;
    padding-bottom: 1.2rem;
    border-radius: 28px;
  }

  .method-illustration {
    height: clamp(190px, 56vw, 235px);
    border-radius: 28px 28px 0 0;
  }

  .method-illustration img {
    width: 100%;
  }
}

/* Final live-site fixes: visible mobile nav, better method image crop, favicons stay cacheable */
@media (max-width: 920px) {
  body.nav-open::after {
    z-index: 80 !important;
    background: rgba(3, 4, 17, 0.72) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .site-header,
  .site-header.is-scrolled {
    z-index: 180 !important;
  }

  .navbar,
  .site-header.is-scrolled .navbar,
  body.nav-open .navbar {
    overflow: visible !important;
  }

  .nav-panel {
    z-index: 220 !important;
    visibility: hidden;
    opacity: 0;
    filter: none !important;
    background:
      linear-gradient(155deg, rgba(25, 22, 62, 0.98), rgba(7, 8, 25, 0.99)),
      #08091d !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .nav-panel.is-open {
    visibility: visible;
    opacity: 1 !important;
    filter: none !important;
    transform: translate(50%, 0) scale(1) !important;
    pointer-events: auto !important;
  }

  .nav-panel .nav-links,
  .nav-panel .nav-links li,
  .nav-panel .nav-links a,
  .nav-panel .btn {
    visibility: visible !important;
    opacity: 1 !important;
    filter: none !important;
  }

  .nav-panel .nav-links a {
    color: rgba(255, 255, 255, 0.94) !important;
  }

  .nav-panel .nav-links a span {
    color: inherit !important;
    text-shadow: none !important;
  }

  .nav-panel .nav-link-icon {
    opacity: 1 !important;
    filter: none !important;
  }
}

@media (max-width: 760px) {
  .method-card {
    padding-bottom: 1.05rem;
  }

  .method-illustration {
    height: clamp(238px, 66vw, 282px);
  }

  .method-illustration img {
    object-fit: cover;
    object-position: center 44%;
  }

  .method-illustration-discovery img {
    object-position: center 43%;
  }

  .method-illustration-preview img {
    object-position: center 45%;
  }

  .method-illustration-launch img {
    object-position: center 42%;
  }
}

/* Hostinger mobile menu hard fix: opaque panel, no transparent glass fallback */
@media (max-width: 920px) {
  body.nav-open {
    overflow: hidden !important;
  }

  body.nav-open::after {
    content: none !important;
    display: none !important;
  }

  body.nav-open .site-header,
  body.nav-open .site-header.is-scrolled {
    position: fixed !important;
    inset: 0 !important;
    z-index: 9999 !important;
    width: 100% !important;
    height: 100dvh !important;
    padding: max(1rem, env(safe-area-inset-top)) 0 1rem !important;
    background:
      radial-gradient(circle at 50% 0%, rgba(129, 77, 255, 0.14), transparent 36%),
      linear-gradient(180deg, rgba(4, 5, 18, 0.98), rgba(3, 4, 16, 0.96)) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  body.nav-open .navbar,
  body.nav-open .site-header.is-scrolled .navbar {
    position: relative !important;
    width: min(calc(100% - 28px), 560px) !important;
    max-width: 560px !important;
    min-height: 70px !important;
    margin-inline: auto !important;
    overflow: visible !important;
    background: #090a1b !important;
    border: 1px solid rgba(142, 118, 255, 0.42) !important;
    border-radius: 22px !important;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38) !important;
  }

  body.nav-open .nav-brand {
    z-index: 10002 !important;
  }

  body.nav-open .nav-toggle {
    z-index: 10003 !important;
  }

  body.nav-open .nav-panel,
  body.nav-open .nav-panel.is-open {
    position: fixed !important;
    top: calc(max(1rem, env(safe-area-inset-top)) + 88px) !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    width: min(calc(100vw - 32px), 390px) !important;
    max-height: calc(100dvh - 120px) !important;
    overflow-y: auto !important;
    display: grid !important;
    gap: 0.95rem !important;
    padding: 1rem !important;
    border: 1px solid rgba(168, 118, 255, 0.48) !important;
    border-radius: 24px !important;
    background:
      linear-gradient(160deg, rgba(20, 19, 50, 0.99), rgba(6, 7, 23, 0.99)),
      #08091d !important;
    box-shadow:
      0 24px 60px rgba(0, 0, 0, 0.68),
      0 0 30px rgba(124, 58, 237, 0.18) !important;
    transform: translateX(-50%) !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 10001 !important;
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  body.nav-open .nav-panel::before,
  body.nav-open .nav-panel::after {
    display: none !important;
    content: none !important;
  }

  body.nav-open .nav-links {
    display: grid !important;
    gap: 0.35rem !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    filter: none !important;
  }

  body.nav-open .nav-links li {
    display: block !important;
    width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  body.nav-open .nav-links a {
    display: grid !important;
    grid-template-columns: 26px minmax(0, 1fr) !important;
    align-items: center !important;
    min-height: 52px !important;
    width: 100% !important;
    padding: 0.65rem 0.85rem !important;
    border-radius: 14px !important;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.045) !important;
    visibility: visible !important;
    opacity: 1 !important;
    filter: none !important;
    text-shadow: none !important;
  }

  body.nav-open .nav-links a.is-active {
    background: linear-gradient(90deg, rgba(83, 85, 191, 0.36), rgba(221, 47, 174, 0.16)) !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06) !important;
  }

  body.nav-open .nav-links a span {
    color: inherit !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  body.nav-open .nav-link-icon {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    stroke: rgba(255, 255, 255, 0.86) !important;
    filter: none !important;
  }

  body.nav-open .nav-panel > .nav-cta-menu,
  body.nav-open .nav-panel > .nav-cta-desktop,
  body.nav-open .nav-panel > .btn-small {
    display: inline-flex !important;
    width: 100% !important;
    min-height: 52px !important;
    justify-content: center !important;
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
  }
}
