:root {
  --bg-dark: #111418;
  --bg-dark-1: #191f24;
  --bg-dark-2: #232a31;
  --bg-dark-3: #2b343c;
  --bg-dark-4: #38434f;
  --text-white: #ffffff;
  --text-light: #dee3e4;
  --text-muted: #8e9a9d;
  --primary: #4843d2;
  --primary-hover: #342fc3;
  --border-dark: rgba(250, 250, 250, 0.12);
  --shadow-soft: 0 0 15px rgba(0, 0, 0, 0.065);
  --shadow-md: 0 0 50px -35px rgba(0, 0, 0, 0.4);
  --sidebar-width: 280px;
  --header-mobile: 68px;
  --container: min(1140px, calc(100% - 2rem));
  --scroll-y: 0px;
  --pointer-x: 50%;
  --pointer-y: 32%;
}

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

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-width: 320px;
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 14px;
  overflow-x: hidden;
  isolation: isolate;
}

body.menu-open {
  overflow: hidden;
}

body.is-intro-active,
body.is-intro-exiting {
  overflow: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  opacity: 0.16;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px);
  background-size: 22px 22px, 28px 28px;
}

body::after {
  inset: auto -10rem -10rem auto;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(72, 67, 210, 0.18), transparent 66%);
  filter: blur(24px);
  opacity: 0.7;
}

::selection {
  background: rgba(72, 67, 210, 0.35);
  color: var(--text-white);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

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

.site-shell {
  position: relative;
  min-height: 100vh;
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: none;
  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
}

body.is-intro-active .site-shell {
  opacity: 0;
  visibility: hidden;
  transform: none;
  transition: none;
}

body.is-intro-exiting .site-shell {
  opacity: 1;
  visibility: visible;
  transform: none;
}

body.is-ready .site-shell {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: #000000;
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.65s ease;
  will-change: opacity, transform, filter;
}

.intro-screen::before,
.intro-screen::after {
  content: "";
  position: absolute;
  pointer-events: none;
  transition:
    opacity 0.28s linear,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.intro-screen::before {
  inset: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.intro-screen::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0)
  );
  transform: translateX(-50%);
}

.intro-screen__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 76rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  text-align: center;
  transition:
    transform 0.3s cubic-bezier(0.18, 0.9, 0.24, 1.14),
    opacity 0.24s linear,
    filter 0.24s linear;
  will-change: transform, opacity, filter;
}

.intro-screen__line {
  width: min(18rem, 38vw);
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.92),
    rgba(255, 255, 255, 0)
  );
  opacity: 0;
  transform: scaleX(0.35);
  animation: intro-line-reveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
  transition:
    transform 0.2s cubic-bezier(0.18, 0.9, 0.24, 1.14),
    opacity 0.16s linear,
    filter 0.16s linear;
}

.intro-screen__title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(0.5rem, 1.8vw, 1.35rem);
  color: #ffffff;
  font-size: clamp(2rem, 6.8vw, 5.8rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  transform: scale(0.88);
  filter: blur(14px);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.12);
  animation:
    intro-title-appear 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.14s forwards,
    intro-title-breathe 1.2s ease-in-out 1.05s infinite alternate;
  transition:
    transform 0.22s cubic-bezier(0.18, 0.9, 0.24, 1.14),
    opacity 0.18s linear,
    filter 0.18s linear,
    letter-spacing 0.22s cubic-bezier(0.18, 0.9, 0.24, 1.14);
  will-change: transform, opacity, filter;
}

.intro-screen__title span {
  display: block;
}

body.is-intro-exiting .intro-screen {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  filter: blur(2px);
}

body.is-intro-exiting .intro-screen::before {
  opacity: 0;
  transform: scale(1.02);
}

body.is-intro-exiting .intro-screen::after {
  opacity: 0;
  transform: translateX(-50%) scaleY(1.16);
}

body.is-intro-exiting .intro-screen__inner {
  transform: translate3d(0, -54px, 0) scale(1.06);
  opacity: 0;
  filter: blur(12px);
}

body.is-intro-exiting .intro-screen__title {
  animation: none;
  transform: translate3d(0, -14px, 0) scale(1.1, 0.96);
  opacity: 0;
  filter: blur(14px);
  letter-spacing: 0.3em;
}

body.is-intro-exiting .intro-screen__line {
  transform: scaleX(1.22);
  opacity: 0;
  filter: blur(4px);
}

body.is-ready .intro-screen {
  opacity: 0;
  visibility: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: var(--sidebar-width);
  right: 0;
  height: 3px;
  z-index: 60;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(72, 67, 210, 0.6), var(--primary), rgba(255, 255, 255, 0.95));
  transform: scaleX(0);
  transform-origin: left center;
  box-shadow: 0 0 18px rgba(72, 67, 210, 0.45);
}

.side-header {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--sidebar-width);
  z-index: 30;
  background: var(--bg-dark);
  border-right: 1px solid rgba(250, 250, 250, 0.07);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.side-header::before {
  content: "";
  position: absolute;
  inset: -18% -30% auto;
  height: 16rem;
  background: radial-gradient(circle at center, rgba(72, 67, 210, 0.24), transparent 65%);
  pointer-events: none;
  filter: blur(18px);
}

.side-header::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, rgba(72, 67, 210, 0), rgba(72, 67, 210, 0.5), rgba(72, 67, 210, 0));
  opacity: 0.45;
}

.side-header__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sidebar-avatar {
  position: relative;
  width: 160px;
  height: 160px;
  margin-bottom: 1.1rem;
  padding: 0.6rem;
  border-radius: 999px;
  background: var(--bg-dark-2);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 24px 42px rgba(0, 0, 0, 0.24);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.sidebar-avatar::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  border: 1px solid rgba(72, 67, 210, 0.2);
  opacity: 0.55;
  animation: pulse-ring 4.6s ease-in-out infinite;
}

.sidebar-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  display: block;
  object-fit: cover;
  object-position: center 28%;
}

.sidebar-avatar:hover,
.sidebar-avatar:focus-visible {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 28px 60px rgba(72, 67, 210, 0.18);
}

.sidebar-brand {
  display: block;
  text-align: center;
  margin-bottom: 1.6rem;
}

.sidebar-brand strong {
  display: block;
  color: var(--text-white);
  font-size: 1.45rem;
  font-weight: 600;
}

.sidebar-brand span {
  display: block;
  margin-top: 0.35rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.sidebar-panel {
  width: 100%;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sidebar-nav a {
  position: relative;
  padding: 0.6rem 0;
  color: var(--text-white);
  font-weight: 500;
}

.sidebar-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.28rem;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(72, 67, 210, 0), rgba(72, 67, 210, 1), rgba(72, 67, 210, 0));
  transition: width 0.25s ease, left 0.25s ease;
}

.sidebar-nav a:hover,
.sidebar-nav a:focus-visible,
.sidebar-nav a.is-active {
  color: rgba(250, 250, 250, 0.75);
}

.sidebar-nav a:hover::after,
.sidebar-nav a:focus-visible::after,
.sidebar-nav a.is-active::after {
  left: 10%;
  width: 80%;
}

.sidebar-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.8rem;
}

.sidebar-meta span {
  min-height: 2rem;
  padding: 0 0.8rem;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(250, 250, 250, 0.12);
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.menu-toggle {
  display: none;
  width: 25px;
  height: 30px;
  padding: 10px;
  margin: 0;
  position: relative;
  border: none;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
  transition: 0.25s ease-in-out;
}

.menu-toggle span:nth-child(1) {
  top: 7px;
}

.menu-toggle span:nth-child(2) {
  top: 14px;
}

.menu-toggle span:nth-child(3) {
  top: 21px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 3px;
  left: 3px;
  transform: rotate(45deg);
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  left: 3px;
  transform: rotate(-45deg);
}

.main-content {
  margin-left: var(--sidebar-width);
}

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

.bg-dark {
  background: var(--bg-dark);
}

.bg-dark-1 {
  background: var(--bg-dark-1);
}

.bg-dark-2 {
  background: var(--bg-dark-2);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--pointer-x) var(--pointer-y),
    rgba(255, 255, 255, 0.12),
    transparent 26%
  );
  opacity: 0.9;
}

.hero-mask,
.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-mask {
  background: rgba(17, 20, 24, 0.82);
  z-index: 1;
}

.hero-mask::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 20, 24, 0.28), rgba(17, 20, 24, 0.82)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: auto, 140px 140px, 140px 140px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 92%);
}

.hero-bg {
  background:
    radial-gradient(circle at 20% 20%, rgba(72, 67, 210, 0.34), transparent 26%),
    radial-gradient(circle at 80% 28%, rgba(255, 255, 255, 0.06), transparent 18%),
    linear-gradient(140deg, rgba(35, 42, 49, 0.95), rgba(17, 20, 24, 1));
  z-index: 0;
  transform: translateY(calc(var(--scroll-y) * 0.08));
  will-change: transform;
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.75;
  animation: float-glow 12s ease-in-out infinite alternate;
}

.hero-bg::before {
  width: 28rem;
  height: 28rem;
  top: -10%;
  left: -4%;
  background: radial-gradient(circle at center, rgba(72, 67, 210, 0.46), transparent 62%);
}

.hero-bg::after {
  width: 22rem;
  height: 22rem;
  right: 4%;
  bottom: -8%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1), transparent 62%);
  animation-direction: alternate-reverse;
  animation-duration: 10s;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 0 6rem;
}

.hero-content[data-reveal] {
  opacity: 1;
  transform: none;
}

.hero-content[data-reveal] > * {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.hero-content[data-reveal].is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.hero-content[data-reveal].is-visible > *:nth-child(1) { transition-delay: 80ms; }
.hero-content[data-reveal].is-visible > *:nth-child(2) { transition-delay: 150ms; }
.hero-content[data-reveal].is-visible > *:nth-child(3) { transition-delay: 220ms; }
.hero-content[data-reveal].is-visible > *:nth-child(4) { transition-delay: 300ms; }
.hero-content[data-reveal].is-visible > *:nth-child(5) { transition-delay: 380ms; }

.hero-eyebrow {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 0 0 0.75rem;
  color: var(--text-white);
  font-size: clamp(2.8rem, 7vw, 5.1rem);
  font-weight: 600;
  text-shadow: 0 14px 45px rgba(0, 0, 0, 0.26);
}

.hero-typed-line {
  min-height: 2.2rem;
  margin: 0 auto 1rem;
  color: var(--text-white);
  font-size: clamp(1.2rem, 2.6vw, 1.95rem);
  font-weight: 500;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 576px) {
  .hero-typed-line {
    flex-direction: column;
    min-height: 4.4rem;
  }
}

.typed-text {
  color: var(--primary);
  display: inline-block;
  text-align: left;
  min-width: 11em;
  margin-left: 0.35em;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    filter 0.22s ease;
}

.typed-text.is-changing {
  opacity: 0;
  transform: translateY(8px);
  filter: blur(6px);
}

@media (max-width: 576px) {
  .typed-text {
    text-align: center;
    margin-left: 0;
    min-width: 100%;
  }
}

.hero-lead,
.section-lead,
.about-story p,
.service-box p,
.feature-project__content p,
.accordion-panel p,
.quote-card p,
.contact-box p,
.contact-list li,
.footer-row p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.9;
}

.hero-lead {
  max-width: 48rem;
  color: var(--text-light);
  font-size: 1.08rem;
}

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

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.75rem;
  transform: translateX(-50%);
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
}

.hero-scroll span {
  width: 0.9rem;
  height: 0.9rem;
  border-right: 2px solid rgba(255, 255, 255, 0.7);
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  transform: rotate(45deg);
  animation: scroll-nudge 2s ease-in-out infinite;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.82rem 1.7rem;
  border: 1px solid transparent;
  border-radius: 0;
  font-weight: 500;
  overflow: hidden;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -120%;
  width: 60%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.26), transparent);
  transform: skewX(-18deg);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn:hover::before,
.btn:focus-visible::before {
  transform: translateX(290%) skewX(-18deg);
}

.btn-light {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--primary);
  box-shadow: 0 14px 35px rgba(72, 67, 210, 0.24);
}

.btn-light:hover,
.btn-light:focus-visible {
  background: #ecebff;
  border-color: #ecebff;
  box-shadow: 0 18px 44px rgba(72, 67, 210, 0.3);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(250, 250, 250, 0.5);
  color: var(--text-white);
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
  background: rgba(250, 250, 250, 0.1);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.08);
}

.btn-small {
  min-height: 2.8rem;
  padding: 0.75rem 1.35rem;
}

.section {
  padding: 6.5rem 0;
}

.section-center {
  text-align: center;
}

.section-center.narrow {
  width: min(52rem, calc(100% - 2rem));
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  margin: 0 0 1rem;
  color: var(--text-white);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.45;
}

.section-title--left {
  text-align: left;
}

.section-lead {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

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

.about-box {
  margin-top: 2rem;
  padding: 2.75rem;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: 2rem;
  border: 3px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.6rem;
}

.values-grid,
.stats-grid,
.services-grid,
.bento-grid,
.quote-grid,
.contact-wrap {
  perspective: 1200px;
}

.about-story h3,
.service-box h3,
.feature-project__content h3,
.contact-box h3 {
  margin: 0 0 1rem;
  color: var(--text-white);
  font-size: 1.6rem;
  font-weight: 600;
}

.about-story p + p {
  margin-top: 1rem;
}

.about-story .btn {
  margin-top: 1.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.value-box {
  --card-lift: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 50%;
  --card-glow-opacity: 0;
  position: relative;
  isolation: isolate;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.5rem;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: translate3d(0, var(--card-lift), 0) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.value-box::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255, 255, 255, 0.14), transparent 42%);
  opacity: var(--card-glow-opacity);
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 0;
}

.value-box > * {
  position: relative;
  z-index: 1;
}

.value-box:hover {
  --card-lift: -4px;
  --card-glow-opacity: 1;
  border-color: rgba(72, 67, 210, 0.28);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  background: rgba(72, 67, 210, 0.05);
}

.value-box__icon {
  color: var(--primary);
  display: flex;
  align-items: center;
}

.value-box__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.value-box span {
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
}

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

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

.stat-box {
  --card-lift: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 50%;
  --card-glow-opacity: 0;
  position: relative;
  isolation: isolate;
  padding: 1.6rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.45rem;
  transform: translate3d(0, var(--card-lift), 0) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.stat-box::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(72, 67, 210, 0.18), transparent 42%);
  opacity: var(--card-glow-opacity);
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.stat-box > * {
  position: relative;
  z-index: 1;
}

.stat-box strong {
  display: block;
  color: var(--text-muted);
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.stat-box p {
  margin: 0;
  color: var(--text-light);
}

.stat-box:hover {
  --card-lift: -5px;
  --card-glow-opacity: 1;
  border-color: rgba(72, 67, 210, 0.25);
  background: linear-gradient(180deg, rgba(72, 67, 210, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

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

.service-box {
  --card-lift: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 50%;
  --card-glow-opacity: 0;
  position: relative;
  isolation: isolate;
  padding: 2.3rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.45rem;
  transform: translate3d(0, var(--card-lift), 0) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.service-box::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(72, 67, 210, 0.18), transparent 42%);
  opacity: var(--card-glow-opacity);
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.service-box > * {
  position: relative;
  z-index: 1;
}

.service-icon {
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 1rem;
  display: grid;
  place-items: center;
  color: var(--primary);
  font-weight: 600;
  background: rgba(72, 67, 210, 0.1);
  transition: transform 0.28s ease, background 0.28s ease;
}

.service-box:hover {
  --card-lift: -6px;
  --card-glow-opacity: 1;
  border-color: rgba(72, 67, 210, 0.28);
  background: linear-gradient(180deg, rgba(72, 67, 210, 0.06), rgba(255, 255, 255, 0.015));
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.22);
}

.service-box:hover .service-icon {
  transform: scale(1.08);
  background: rgba(72, 67, 210, 0.22);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(240px, auto);
  gap: 0;
  border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bento-item {
  --card-lift: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 50%;
  --card-glow-opacity: 0;
  position: relative;
  isolation: isolate;
  background: var(--bg-dark);
  border-radius: 0;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transform: translate3d(0, var(--card-lift), 0) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
}

.bento-item::before {
  content: "";
  position: absolute;
  inset: -20% -60%;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.1), transparent 70%);
  opacity: 0;
  transform: translateX(-20%);
  transition:
    opacity 0.45s ease,
    transform 0.75s ease;
  pointer-events: none;
}

.bento-item:hover {
  --card-lift: -4px;
  --card-glow-opacity: 1;
  opacity: 1;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
}

.bento-item:hover::before {
  opacity: 1;
  transform: translateX(20%);
}

.bento-item:nth-child(2n) {
  border-right: 0;
}

.bento-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.bento-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  width: 100%;
  transition: transform 0.3s ease;
}

.bento-content h3 {
  color: var(--text-white);
  font-size: 1.5rem;
  margin: 0.5rem 0 1rem;
}

.bento-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 32rem;
}

.bento-number {
  position: absolute;
  right: -0.6rem;
  bottom: -1.3rem;
  font-size: 6.4rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.04);
  z-index: 1;
  line-height: 1;
  transition: transform 0.3s ease, color 0.3s ease;
}

.bento-item:hover .bento-content {
  transform: translateY(-4px);
}

.bento-item:hover .bento-number {
  transform: scale(1.04);
  color: rgba(255, 255, 255, 0.08);
}

.bento-content .text-link {
  margin-top: auto;
  align-self: flex-start;
  color: var(--text-white);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.95rem;
  background: rgba(255,255,255, 0.08);
  padding: 0.6rem 1.2rem;
  border-radius: 2rem;
  transition: background 0.2s ease;
}

.bento-content .text-link:hover,
.bento-content .text-link:focus-visible {
  background: rgba(255,255,255, 0.15);
}

.feature-badge {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 1rem;
  align-self: flex-start;
}

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

  .bento-item {
    min-height: 260px;
  }
}

.art-one {
  background:
    radial-gradient(circle at top left, rgba(72, 67, 210, 0.35), transparent 28%),
    linear-gradient(140deg, #2d2a7f, #171b22);
}

.art-two {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(140deg, #24303b, #111418);
}

.art-three {
  background:
    radial-gradient(circle at center, rgba(72, 67, 210, 0.42), transparent 24%),
    linear-gradient(140deg, #1e2430, #13171d);
}

.art-four {
  background:
    radial-gradient(circle at bottom left, rgba(72, 67, 210, 0.32), transparent 26%),
    linear-gradient(140deg, #38434f, #191f24);
}

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

.manifesto-section {
  padding-top: 0;
}

.manifesto-box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: 2.2rem;
  align-items: start;
  padding: 2.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.7rem;
  background:
    radial-gradient(circle at top right, rgba(72, 67, 210, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.manifesto-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: clamp(11rem, 21vw, 15rem);
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0)
  );
}

.manifesto-kicker {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.manifesto-copy h2 {
  margin: 0 0 1rem;
  color: var(--text-white);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.08;
  text-wrap: balance;
}

.manifesto-copy p {
  max-width: 42rem;
  color: var(--text-light);
  line-height: 1.9;
  font-size: 1.03rem;
}

.manifesto-copy p + p {
  margin-top: 0.9rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.4rem;
  color: var(--text-light);
  font-size: 1.15rem;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--primary);
}

.accordion {
  display: grid;
  gap: 0.75rem;
}

.accordion-item {
  background: transparent;
  transition: transform 0.22s ease;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 0;
  background: rgba(250, 250, 250, 0.12);
  color: var(--text-light);
  text-align: left;
  border-radius: 0.25rem;
  cursor: pointer;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.accordion-item.is-open .accordion-trigger {
  background: var(--primary);
  color: var(--text-white);
  box-shadow: 0 14px 34px rgba(72, 67, 210, 0.22);
}

.accordion-number {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1;
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.accordion-item.is-open .accordion-panel {
  padding: 0.9rem 0 0 1.1rem;
}

.accordion-panel p {
  color: var(--text-muted);
}

.accordion-item:hover .accordion-trigger {
  transform: translateX(4px);
}

.promo-section {
  padding: 0 0 6.5rem;
}

.promo-banner {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  background:
    linear-gradient(140deg, rgba(72, 67, 210, 0.94), rgba(72, 67, 210, 0.72));
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.promo-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24);
}

.promo-banner__mask {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 24%),
    linear-gradient(160deg, rgba(17, 20, 24, 0.12), rgba(17, 20, 24, 0.22));
}

.promo-banner__content {
  position: relative;
  z-index: 1;
  min-height: 320px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
}

.promo-banner__content h2 {
  max-width: 40rem;
  margin: 0 0 1.5rem;
  color: var(--text-white);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
}

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

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

.faq-card {
  text-align: left;
}

.faq-card h3 {
  margin-bottom: 0.9rem;
}

.quote-card {
  --card-lift: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 50%;
  --card-glow-opacity: 0;
  position: relative;
  isolation: isolate;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  transform: translate3d(0, var(--card-lift), 0) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.quote-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255, 255, 255, 0.14), transparent 42%);
  opacity: var(--card-glow-opacity);
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.quote-card > * {
  position: relative;
  z-index: 1;
}

.quote-mark {
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.quote-card:hover {
  --card-lift: -5px;
  --card-glow-opacity: 1;
  border-color: rgba(72, 67, 210, 0.25);
  background: rgba(72, 67, 210, 0.04);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

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

.contact-box {
  --card-lift: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 50%;
  --card-glow-opacity: 0;
  position: relative;
  isolation: isolate;
  padding: 2rem;
  background: var(--bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  transform: translate3d(0, var(--card-lift), 0) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.contact-box::after,
.bento-item::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255, 255, 255, 0.12), transparent 42%);
  opacity: var(--card-glow-opacity);
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 0;
}

.contact-box > * {
  position: relative;
  z-index: 1;
}

.contact-box:hover {
  --card-lift: -4px;
  --card-glow-opacity: 1;
  border-color: rgba(72, 67, 210, 0.22);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.18);
  background: linear-gradient(180deg, rgba(72, 67, 210, 0.05), rgba(255, 255, 255, 0.02));
}

.contact-list {
  margin: 0;
  padding-left: 1.2rem;
}

.contact-list li {
  margin-bottom: 0.75rem;
}

.contact-list li:last-child {
  margin-bottom: 0;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-row {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-copy {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.footer-copy span {
  display: inline;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--primary);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.menu-toggle:focus-visible,
.sidebar-nav a:focus-visible,
.btn:focus-visible,
.text-link:focus-visible,
.site-footer a:focus-visible,
.hero-scroll:focus-visible,
.accordion-trigger:focus-visible {
  outline: 2px solid rgba(72, 67, 210, 0.9);
  outline-offset: 3px;
}

@keyframes pulse-ring {
  0%,
  100% {
    transform: scale(0.98);
    opacity: 0.45;
  }

  50% {
    transform: scale(1.03);
    opacity: 0.75;
  }
}

@keyframes intro-line-reveal {
  0% {
    opacity: 0;
    transform: scaleX(0.35);
  }

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

@keyframes intro-title-appear {
  0% {
    opacity: 0;
    transform: scale(0.88);
    filter: blur(14px);
  }

  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes intro-title-breathe {
  0% {
    text-shadow: 0 0 14px rgba(255, 255, 255, 0.08);
  }

  100% {
    text-shadow: 0 0 26px rgba(255, 255, 255, 0.18);
  }
}

@keyframes float-glow {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    transform: translate3d(18px, -22px, 0) scale(1.08);
  }
}

@keyframes scroll-nudge {
  0%,
  100% {
    transform: translateY(0) rotate(45deg);
    opacity: 0.85;
  }

  50% {
    transform: translateY(6px) rotate(45deg);
    opacity: 1;
  }
}

@media (max-width: 991.98px) {
  .side-header {
    position: sticky;
    inset: 0 auto auto 0;
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid rgba(250, 250, 250, 0.07);
  }

  .side-header__inner {
    min-height: var(--header-mobile);
    height: auto;
    padding: 0 1rem;
    flex-direction: row;
    justify-content: space-between;
  }

  .sidebar-avatar {
    width: 48px;
    height: 48px;
    margin: 0;
    padding: 0.2rem;
  }

  .sidebar-brand {
    flex: 1;
    margin: 0 0 0 0.85rem;
    text-align: left;
  }

  .sidebar-brand strong {
    font-size: 1rem;
  }

  .sidebar-brand span {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .sidebar-panel {
    position: fixed;
    top: calc(var(--header-mobile) - 1px);
    left: 1rem;
    right: 1rem;
    padding: 1rem;
    background: rgba(17, 20, 24, 0.98);
    border: 1px solid rgba(250, 250, 250, 0.08);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }

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

  .scroll-progress {
    left: 0;
  }

  .intro-screen::before {
    inset: 1rem;
  }

  .sidebar-nav {
    align-items: flex-start;
  }

  .sidebar-nav a {
    width: 100%;
    padding: 0.75rem 0;
  }

  .sidebar-nav a::after {
    left: 0;
    bottom: 0.2rem;
  }

  .sidebar-nav a:hover::after,
  .sidebar-nav a:focus-visible::after,
  .sidebar-nav a.is-active::after {
    left: 0;
    width: 2.4rem;
  }

  .sidebar-meta {
    justify-content: flex-start;
  }

  .main-content {
    margin-left: 0;
  }

  .hero-content {
    min-height: calc(100vh - var(--header-mobile));
    padding-top: 4rem;
  }

  .about-box,
  .services-grid,
  .process-layout,
  .manifesto-box,
  .faq-grid,
  .quote-grid,
  .contact-wrap,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .manifesto-box::before {
    display: none;
  }

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

  .bento-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .bento-item:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .bento-item:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 767.98px) {
  .intro-screen__title {
    gap: 0.4rem;
    letter-spacing: 0.14em;
    font-size: clamp(1.7rem, 10vw, 3rem);
  }

  .intro-screen__line {
    width: min(12rem, 54vw);
  }

  .section,
  .promo-section {
    padding: 3.5rem 0;
  }

  .hero-content h1 {
    font-size: clamp(2.4rem, 10vw, 3.6rem);
  }

  .hero-typed-line {
    min-height: 3.2rem;
  }

  .about-box,
  .manifesto-box,
  .service-box,
  .contact-box,
  .quote-card {
    padding: 1.5rem;
  }

  .manifesto-copy h2 {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }

  .bento-content {
    padding: 1.5rem;
  }

  .bento-content h3 {
    font-size: 1.3rem;
  }

  .bento-number {
    font-size: 4.8rem;
  }

  .footer-row {
    min-height: auto;
    padding: 1.2rem 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .footer-copy span {
    display: block;
  }

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

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero-content[data-reveal] > * {
    opacity: 1;
    transform: none;
  }

  .intro-screen__title,
  .intro-screen__line {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .hero-section::after,
  body::after,
  .value-box::after,
  .stat-box::after,
  .service-box::after,
  .bento-item::after,
  .quote-card::after,
  .contact-box::after {
    opacity: 0 !important;
  }
}
