:root {
  --bg-primary: #050508;
  --bg-secondary: #0a0a10;
  --bg-elevated: rgba(255, 255, 255, 0.035);
  --bg-elevated-strong: rgba(255, 255, 255, 0.065);
  --color-orange: #ff5f1f;
  --color-magenta: #c850c0;
  --color-teal: #4ecdc4;
  --color-blue: #4158d0;
  --gradient-primary: linear-gradient(135deg, #ff5f1f, #c850c0);
  --gradient-secondary: linear-gradient(135deg, #4158d0, #4ecdc4);
  --text-primary: #ffffff;
  --text-secondary: #a0a0b8;
  --text-muted: #64647b;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(255, 95, 31, 0.34);
  --shadow-soft: 0 24px 90px rgba(0, 0, 0, 0.34);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  min-width: 0;
}

html {
  scroll-behavior: auto;
  background: var(--bg-primary);
  overflow-x: hidden;
  overflow-x: clip;
  width: 100%;
}

body {
  min-height: 100vh;
  width: 100%;
  font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  background:
    linear-gradient(180deg, rgba(65, 88, 208, 0.06), transparent 24rem),
    var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  overflow-x: clip;
  cursor: none;
}

main,
section,
footer {
  max-width: 100%;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open #navbar {
  z-index: 2102;
  background: rgba(5, 5, 8, 0.92);
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

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

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

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

a {
  color: inherit;
}

::selection {
  background: rgba(255, 95, 31, 0.3);
  color: #fff;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--color-orange);
  border-radius: 2px;
}

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 0%;
  height: 3px;
  background: var(--gradient-primary);
  transition: width 0.05s linear;
}

#cursor-outer,
#cursor-inner {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
}

#cursor-outer {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255, 95, 31, 0.62);
  border-radius: 50%;
  transition: transform 0.12s ease, opacity 0.3s ease;
}

#cursor-inner {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-orange);
  z-index: 9999;
  transition: transform 0.05s ease;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Sora", "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

p {
  overflow-wrap: anywhere;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.body-text {
  max-width: 36rem;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.75;
}

.small-label {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-container {
  width: min(100%, 1200px);
  max-width: 100%;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.section-padding {
  padding: 7.5rem 0;
}

.section-header {
  margin-bottom: 4rem;
}

.section-header .body-text {
  margin-top: 1rem;
}

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

.section-center .body-text {
  margin-right: auto;
  margin-left: auto;
}

.section-headline {
  max-width: 54rem;
  font-size: 4.5rem;
}

.section-center .section-headline {
  margin: 0 auto;
}

.band-dark {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 12rem),
    var(--bg-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  border-radius: 999px;
  padding: 0.875rem 2rem;
  border: 1px solid transparent;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary {
  background: var(--gradient-primary);
  box-shadow: 0 12px 36px rgba(255, 95, 31, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 52px rgba(255, 95, 31, 0.42);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  border: 0;
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: padding var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), backdrop-filter var(--transition-fast);
}

#navbar.scrolled {
  padding: 0.75rem 0;
  background: rgba(5, 5, 8, 0.88);
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-inner {
  width: min(100%, 1560px);
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: max-content;
  text-decoration: none;
}

.brand-logo-img {
  width: 12.5rem;
  height: auto;
  max-height: 4.8rem;
  object-fit: contain;
}

.header-logo-icon {
  width: 12.5rem;
  max-height: 4.8rem;
}

.logo-text {
  color: #fff;
  font-family: "Sora", "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-links a {
  position: relative;
  display: inline-flex;
  min-height: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 1rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast), background var(--transition-fast);
}

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

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.nav-cta {
  min-height: 2.5rem;
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
}

.hamburger {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3125rem;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.hamburger span {
  width: 1.25rem;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transform-origin: center;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.hamburger.is-open {
  border-color: rgba(255, 95, 31, 0.45);
  background: rgba(255, 95, 31, 0.12);
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 7rem 1.5rem 2rem;
  background: rgba(5, 5, 8, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
}

.mobile-menu li + li {
  margin-top: 1.25rem;
}

.mobile-menu a:not(.btn-primary) {
  font-family: "Sora", "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
}

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  z-index: 1;
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  contain: paint;
  background: var(--bg-primary);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 5rem 5rem;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 85%);
}

.hero-glow-left,
.hero-glow-right,
.cta-glow-left,
.cta-glow-right {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  filter: blur(20px);
  opacity: 0.9;
}

.hero-glow-left {
  left: 0;
  top: 8rem;
  width: 38rem;
  height: 18rem;
  background: linear-gradient(110deg, rgba(255, 95, 31, 0.18), rgba(200, 80, 192, 0.05), transparent);
  transform: skewY(-8deg);
  animation: light-sweep 5s ease-in-out infinite alternate;
}

.hero-glow-right {
  right: 0;
  bottom: 3rem;
  width: 42rem;
  height: 20rem;
  background: linear-gradient(260deg, rgba(78, 205, 196, 0.15), rgba(65, 88, 208, 0.08), transparent);
  transform: skewY(9deg);
  animation: light-sweep 6s ease-in-out infinite alternate-reverse;
}

@keyframes light-sweep {
  0% { opacity: 0.62; transform: translate3d(0, 0, 0) skewY(-8deg); }
  100% { opacity: 1; transform: translate3d(2rem, -1rem, 0) skewY(-4deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 8rem 2.5rem 5rem;
}

.hero-visual {
  position: absolute;
  right: max(4rem, calc((100vw - 1560px) / 2 + 4rem));
  top: 50%;
  z-index: 2;
  width: min(30vw, 36rem);
  min-width: 24rem;
  transform: translateY(-44%);
  pointer-events: none;
  opacity: 0.94;
  animation: hero-visual-float 7s ease-in-out infinite;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 12% 4% 4% 8%;
  z-index: -1;
  border-radius: 44% 56% 52% 48%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 95, 31, 0.18), transparent 36%),
    radial-gradient(circle at 70% 62%, rgba(78, 205, 196, 0.18), transparent 42%);
  filter: blur(28px);
}

.hero-visual img {
  width: 100%;
  height: auto;
}

@keyframes hero-visual-float {
  0%, 100% { transform: translateY(-44%) translateX(0); }
  50% { transform: translateY(-47%) translateX(-0.75rem); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 2rem;
  color: var(--text-muted);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--color-orange);
  box-shadow: 0 0 12px var(--color-orange);
  animation: blink 2s ease-in-out infinite;
  flex: 0 0 auto;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.hero-headline {
  margin-bottom: 1.75rem;
  font-size: 7.25rem;
  max-width: 50rem;
}

.hero-headline .split-line {
  display: block;
}

.hero-sub {
  max-width: 36rem;
  margin-bottom: 3rem;
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.75;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: fit-content;
  max-width: 100%;
  flex-wrap: wrap;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.stat-item {
  min-width: 6.75rem;
  padding: 0.25rem 0;
  text-align: center;
}

.stat-num {
  color: #fff;
  font-family: "Sora", "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-size: 2.625rem;
  font-weight: 700;
}

.stat-plus {
  color: var(--color-orange);
  font-size: 1.75rem;
  font-weight: 700;
}

.stat-item p {
  margin-top: 0.25rem;
  color: var(--text-muted);
  font-size: 0.8125rem;
  line-height: 1.35;
}

.stat-divider {
  width: 1px;
  height: 3.75rem;
  background: linear-gradient(to bottom, transparent, rgba(255, 95, 31, 0.55), transparent);
}

.hero-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 2.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, var(--color-orange), transparent);
  animation: scroll-drop 2s ease-in-out infinite;
}

@keyframes scroll-drop {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.marquee-section {
  overflow: hidden;
  contain: paint;
  padding: 1.25rem 0;
  background: var(--bg-primary);
}

.marquee-top-line,
.marquee-bottom-line {
  height: 1px;
  background: var(--border-subtle);
}

.marquee-wrapper {
  overflow: hidden;
  padding: 1rem 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-right: 1.5rem;
  white-space: nowrap;
}

.marquee-content span {
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 600;
}

.marquee-content .dot {
  color: var(--color-orange);
  font-size: 1rem;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 1fr);
  gap: 5rem;
  align-items: center;
}

.about-left .body-text + .body-text {
  margin-top: 1rem;
}

.about-left .btn-primary {
  margin-top: 2.5rem;
}

.about-card-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-card,
.service-card,
.work-card,
.team-card,
.testi-card {
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.about-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem 2rem;
  border-radius: 1.25rem;
  transition: transform var(--transition-smooth), background var(--transition-smooth), border-color var(--transition-smooth);
}

.about-card.is-offset {
  transform: none;
}

.about-card:hover {
  transform: translateX(0.5rem);
  background: var(--bg-elevated-strong);
  border-color: rgba(255, 255, 255, 0.14);
}

.about-card.is-offset:hover {
  transform: translateY(-0.25rem);
}

.about-card-icon,
.service-icon {
  display: flex;
  width: 3.5rem;
  height: 3.5rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
}

.about-card-icon svg,
.service-icon svg,
.contact-info-item svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-orange {
  color: var(--color-orange);
  background: rgba(255, 95, 31, 0.12);
}

.icon-magenta {
  color: var(--color-magenta);
  background: rgba(200, 80, 192, 0.12);
}

.icon-teal {
  color: var(--color-teal);
  background: rgba(78, 205, 196, 0.12);
}

.icon-blue {
  color: var(--color-blue);
  background: rgba(65, 88, 208, 0.16);
}

.about-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.about-card p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.65;
}

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

.service-card {
  position: relative;
  min-height: 24rem;
  overflow: hidden;
  padding: 2.25rem 2rem;
  border-radius: 1.5rem;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), background var(--transition-smooth);
}

.service-card::before {
  content: attr(data-number);
  position: absolute;
  top: 0.875rem;
  right: 1.5rem;
  color: rgba(255, 255, 255, 0.04);
  font-family: "Sora", "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-0.5rem);
  border-color: rgba(255, 95, 31, 0.28);
  background: var(--bg-elevated-strong);
}

.service-icon {
  margin-bottom: 1.5rem;
}

.service-card h3 {
  margin-bottom: 0.875rem;
  font-size: 1.375rem;
}

.service-card p {
  margin-bottom: 1.25rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.75;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.service-tags span {
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.6875rem;
  font-weight: 700;
}

.service-link {
  color: var(--color-orange);
  font-size: 0.875rem;
  font-weight: 800;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.service-link:hover,
.service-link:focus-visible {
  color: var(--color-magenta);
}

.work-section {
  background:
    linear-gradient(180deg, rgba(78, 205, 196, 0.04), transparent 18rem),
    var(--bg-primary);
}

.work-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-areas:
    "large app"
    "large brand";
  gap: 1.25rem;
}

.work-card {
  display: grid;
  gap: 1.5rem;
  min-height: 20rem;
  padding: 1.25rem;
  border-radius: 1.5rem;
  overflow: hidden;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), background var(--transition-smooth);
}

.work-card:hover {
  transform: translateY(-0.375rem);
  border-color: rgba(78, 205, 196, 0.25);
  background: var(--bg-elevated-strong);
}

.work-card-large {
  grid-area: large;
}

.work-card:nth-child(2) {
  grid-area: app;
}

.work-card:nth-child(3) {
  grid-area: brand;
}

.work-card h3 {
  margin: 0.375rem 0 0.625rem;
  font-size: 1.55rem;
}

.work-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.work-visual {
  position: relative;
  min-height: 15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.125rem;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 95, 31, 0.12), transparent 45%),
    linear-gradient(225deg, rgba(78, 205, 196, 0.16), transparent 50%),
    #07070d;
}

.work-card-large .work-visual {
  min-height: 27rem;
}

.window-dot {
  position: relative;
  top: 1rem;
  left: 1rem;
  display: inline-block;
  width: 0.625rem;
  height: 0.625rem;
  margin-right: 0.375rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.mock-chart,
.mock-panel,
.mock-list {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.875rem;
  background: rgba(255, 255, 255, 0.055);
}

.mock-chart {
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  height: 45%;
  background:
    linear-gradient(140deg, rgba(255, 95, 31, 0.6), rgba(200, 80, 192, 0.12)),
    repeating-linear-gradient(90deg, transparent 0 14%, rgba(255,255,255,0.08) 14% 15%);
}

.mock-panel {
  top: 4.25rem;
  left: 2rem;
  width: 34%;
  height: 24%;
}

.mock-list {
  top: 4.25rem;
  right: 2rem;
  width: 42%;
  height: 24%;
  background: repeating-linear-gradient(180deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 1.5rem);
}

.app-visual,
.brand-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-shell {
  display: grid;
  place-items: center;
  width: 8rem;
  height: 13.5rem;
  border: 0.625rem solid rgba(255, 255, 255, 0.14);
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(65, 88, 208, 0.26), rgba(5, 5, 8, 0.96));
}

.phone-shell span {
  width: 2.5rem;
  height: 0.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.phone-shell strong {
  color: #fff;
  font-family: "Sora", "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-size: 2rem;
}

.phone-shell small {
  color: var(--text-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-visual {
  gap: 0.75rem;
}

.brand-tile {
  width: 4.5rem;
  height: 4.5rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: "Sora", "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.brand-tile:nth-child(3) {
  background: var(--gradient-primary);
}

.process-wrapper {
  position: relative;
  margin-top: 5rem;
}

.process-line-track {
  position: absolute;
  top: 0.5rem;
  bottom: 0.5rem;
  left: 1.1875rem;
  width: 2px;
  border-radius: 2px;
  background: var(--border-subtle);
}

.process-line-fill {
  width: 100%;
  height: 0%;
  border-radius: 2px;
  background: var(--gradient-primary);
  transition: height 0.1s linear;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 3.25rem;
  padding-left: 4.5rem;
}

.process-step {
  position: relative;
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  opacity: 0.42;
  transition: opacity 0.3s ease;
}

.process-step.active {
  opacity: 1;
}

.step-number {
  position: absolute;
  left: -4.1875rem;
  top: 0.125rem;
  width: 1.875rem;
  height: 1.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border-subtle);
  border-radius: 50%;
  background: var(--bg-primary);
  color: var(--text-muted);
  font-size: 0.6875rem;
  font-weight: 800;
  transition: border-color 0.4s ease, color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.process-step.active .step-number {
  border-color: var(--color-orange);
  background: rgba(255, 95, 31, 0.1);
  color: var(--color-orange);
  box-shadow: 0 0 20px rgba(255, 95, 31, 0.35);
}

.step-body h3 {
  margin-bottom: 0.625rem;
  font-size: 1.375rem;
}

.step-body p {
  max-width: 36rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.75;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  max-width: 54rem;
  margin: 4rem auto 0;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 27rem;
  padding: 3.25rem 2.25rem;
  border-radius: 1.75rem;
  text-align: center;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), background var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-0.5rem);
  border-color: rgba(255, 95, 31, 0.24);
  background: var(--bg-elevated-strong);
}

.team-avatar-wrap {
  position: relative;
  margin-bottom: 1.75rem;
}

.team-avatar,
.team-portrait {
  position: relative;
  z-index: 1;
  width: 6.875rem;
  height: 6.875rem;
}

.team-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: "Sora", "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  font-size: 2.125rem;
  font-weight: 700;
}

.team-portrait {
  display: block;
  width: 8.5rem;
  height: 8.5rem;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.32));
}

.orange-avatar,
.avatar-orange {
  border: 2px solid rgba(255, 95, 31, 0.32);
  background: linear-gradient(135deg, rgba(255, 95, 31, 0.15), rgba(200, 80, 192, 0.15));
  color: var(--color-orange);
}

.magenta-avatar,
.avatar-magenta {
  border: 2px solid rgba(200, 80, 192, 0.32);
  background: linear-gradient(135deg, rgba(200, 80, 192, 0.15), rgba(65, 88, 208, 0.15));
  color: var(--color-magenta);
}

.avatar-teal {
  border: 2px solid rgba(78, 205, 196, 0.32);
  background: linear-gradient(135deg, rgba(78, 205, 196, 0.15), rgba(65, 88, 208, 0.12));
  color: var(--color-teal);
}

.avatar-ring {
  position: absolute;
  inset: -0.75rem;
  z-index: 0;
  border-radius: 50%;
  animation: ring-pulse 3s ease-in-out infinite;
}

.orange-ring {
  background: radial-gradient(circle, rgba(255, 95, 31, 0.16), transparent 70%);
}

.magenta-ring {
  background: radial-gradient(circle, rgba(200, 80, 192, 0.16), transparent 70%);
}

@keyframes ring-pulse {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.team-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.625rem;
}

.team-role {
  display: block;
  margin-bottom: 1rem;
  color: var(--color-orange);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-card p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.75;
}

.team-socials,
.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.team-socials a,
.footer-socials a {
  width: 2.375rem;
  height: 2.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
  transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.team-socials a:hover,
.footer-socials a:hover,
.team-socials a:focus-visible,
.footer-socials a:focus-visible {
  border-color: var(--color-orange);
  background: rgba(255, 95, 31, 0.08);
  color: var(--color-orange);
  transform: translateY(-2px);
}

.testimonials-swiper {
  margin-top: 4rem;
  padding-bottom: 3rem;
}

.swiper-slide {
  height: auto;
}

.testi-card {
  height: 100%;
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2.5rem 2.25rem;
  border-radius: 1.5rem;
}

.testi-quote {
  height: 3rem;
  color: var(--color-orange);
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0.7;
  opacity: 0.35;
}

.testi-card p {
  flex: 1;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.8;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.testi-avatar {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 800;
}

.testi-info {
  min-width: 0;
}

.testi-info strong,
.testi-info span {
  display: block;
}

.testi-info strong {
  font-size: 0.9375rem;
}

.testi-info span {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.testi-stars {
  margin-left: auto;
  color: var(--color-orange);
  font-size: 0.875rem;
  font-weight: 800;
}

.swiper-pagination-bullet {
  background: var(--text-muted);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--color-orange);
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3.5rem;
}

.tech-item {
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  background: var(--bg-elevated);
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 700;
  transition: transform var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.tech-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 95, 31, 0.4);
  background: rgba(255, 95, 31, 0.08);
  color: #fff;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  contain: paint;
  padding: 8.75rem 2.5rem;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
  text-align: center;
}

.cta-glow-left {
  left: 0;
  top: 20%;
  width: 28rem;
  height: 14rem;
  background: linear-gradient(110deg, rgba(255, 95, 31, 0.16), rgba(200, 80, 192, 0.05), transparent);
}

.cta-glow-right {
  right: 0;
  bottom: 12%;
  width: 30rem;
  height: 15rem;
  background: linear-gradient(250deg, rgba(78, 205, 196, 0.13), rgba(65, 88, 208, 0.07), transparent);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 44rem;
  margin: 0 auto;
}

.cta-inner .section-headline {
  margin: 0 auto;
}

.cta-inner .body-text {
  margin: 1.25rem auto 0;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 5rem;
  align-items: start;
}

.contact-left .body-text {
  margin-top: 1.25rem;
  max-width: 24rem;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.contact-info-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-orange);
  flex: 0 0 auto;
}

.contact-info-item:nth-child(2) svg {
  color: var(--color-teal);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: var(--text-muted);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border-subtle);
  border-radius: 0.75rem;
  outline: none;
  background: var(--bg-elevated);
  color: var(--text-primary);
  padding: 0.875rem 1.125rem;
  font-size: 0.9375rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255, 95, 31, 0.52);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(255, 95, 31, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select option {
  background: #0a0a10;
  color: #fff;
}

footer {
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
}

.footer-container {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 5rem 2.5rem 2.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-bottom: 3.75rem;
}

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

.footer-brand-logo {
  width: 21rem;
  max-height: 7.75rem;
}

.footer-logo .logo-text {
  font-size: 1.25rem;
}

.footer-brand p {
  max-width: 18rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.75;
}

.footer-socials {
  margin-top: 1.5rem;
}

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

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-col h3 {
  margin-bottom: 0.25rem;
  color: var(--text-primary);
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.75rem;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8125rem;
}

#back-to-top {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 999;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 95, 31, 0.3);
  cursor: pointer;
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

#back-to-top:hover,
#back-to-top:focus-visible {
  transform: translateY(-0.25rem);
  box-shadow: 0 16px 40px rgba(255, 95, 31, 0.48);
}

@media (max-width: 1024px) {
  .section-container,
  .nav-inner {
    width: 100%;
  }

  .section-headline {
    font-size: 3.5rem;
  }

  .hero-visual {
    display: none;
  }

  .hero-headline {
    font-size: 5.6rem;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-card,
  .service-card,
  .work-card,
  .team-card,
  .testi-card {
    max-width: 100%;
  }

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

  .work-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "large"
      "app"
      "brand";
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  html,
  body {
    max-width: 100%;
    background: var(--bg-primary);
  }

  body {
    cursor: auto;
  }

  #cursor-outer,
  #cursor-inner {
    display: none;
  }

  .section-container,
  .nav-inner {
    width: 100%;
    max-width: 100%;
    padding-right: clamp(1rem, 5vw, 1.5rem);
    padding-left: clamp(1rem, 5vw, 1.5rem);
  }

  .brand-logo-img {
    width: 8.6rem;
    max-height: 3.45rem;
  }

  .footer-brand-logo {
    width: 15.5rem;
    max-height: 5.8rem;
  }

  .section-padding {
    padding: 4.5rem 0;
  }

  .section-headline {
    font-size: clamp(2.2rem, 8.5vw, 3rem);
    line-height: 1.08;
  }

  .section-header {
    margin-bottom: 2.75rem;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
    position: relative;
    z-index: 2103;
    flex: 0 0 auto;
  }

  .hero-content {
    padding: 7rem clamp(1rem, 5vw, 1.5rem) 5.5rem;
  }

  .hero-headline {
    font-size: 4rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-stats {
    gap: 1.25rem;
  }

  .stat-item {
    min-width: 5.75rem;
  }

  .stat-num {
    font-size: 2rem;
  }

  .stat-plus {
    font-size: 1.35rem;
  }

  .services-grid,
  .team-grid,
  .about-grid,
  .work-grid,
  .footer-top,
  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .about-left,
  .about-right,
  .contact-left,
  .contact-right,
  .section-header,
  .about-card-stack,
  .services-grid,
  .team-grid,
  .work-grid {
    width: 100%;
    max-width: 100%;
  }

  .about-card,
  .service-card,
  .work-card,
  .team-card,
  .testi-card {
    transform: none !important;
  }

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

  .about-card.is-offset,
  .about-card.is-offset:hover {
    transform: none;
  }

  .about-card:hover {
    transform: translateY(-0.25rem);
  }

  .work-card-large .work-visual,
  .work-visual {
    min-height: 16rem;
  }

  .process-wrapper {
    margin-top: 3.5rem;
  }

  .process-steps {
    gap: 2.75rem;
  }

  .form-row,
  .footer-nav {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  #back-to-top {
    display: none;
  }
}

@media (max-width: 520px) {
  #navbar {
    padding: 0.7rem 0;
  }

  #navbar.scrolled {
    padding: 0.6rem 0;
  }

  .nav-inner {
    gap: 0.75rem;
  }

  .brand-logo-img {
    width: 7.7rem;
    max-height: 3.1rem;
  }

  .hamburger {
    width: 2.55rem;
    height: 2.55rem;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    max-width: 100%;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }

  .hero-headline {
    font-size: clamp(2.65rem, 13vw, 3.35rem);
    max-width: 100%;
  }

  .hero-eyebrow {
    align-items: flex-start;
    font-size: 0.68rem;
    line-height: 1.55;
  }

  .hero-sub,
  .body-text {
    max-width: 100%;
    font-size: 0.98rem;
  }

  .hero-cta-row,
  .cta-btns {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-stats {
    width: 100%;
    justify-content: center;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem 1rem;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    min-width: 0;
  }

  .section-headline {
    font-size: clamp(2rem, 9.5vw, 2.45rem);
    max-width: 100%;
  }

  .hero-scroll-hint {
    display: none;
  }

  .hero-glow-left,
  .hero-glow-right,
  .cta-glow-left,
  .cta-glow-right {
    width: 100%;
    max-width: 24rem;
    animation: none;
    transform: none;
  }

  .hero-glow-left,
  .cta-glow-left {
    left: -6rem;
    right: auto;
  }

  .hero-glow-right,
  .cta-glow-right {
    left: auto;
    right: -6rem;
  }

  .about-card {
    flex-direction: column;
    padding: 1.5rem;
    width: 100%;
  }

  .about-card-stack {
    overflow: visible;
  }

  .service-card,
  .team-card,
  .testi-card,
  .work-card {
    padding: 1.5rem;
    width: 100%;
    max-width: 100%;
  }

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

  .team-portrait {
    width: 7.25rem;
    height: 7.25rem;
  }

  .process-steps {
    padding-left: 3.5rem;
  }

  .process-line-track {
    left: 0.9375rem;
  }

  .step-number {
    left: -3.5rem;
  }

  .cta-banner {
    padding: 5.5rem 1.25rem;
  }

  .footer-container {
    padding: 4rem clamp(1rem, 5vw, 1.5rem) 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
@media (max-width: 520px) {
  #about .about-left .btn-primary {
    width: fit-content !important;
    max-width: calc(100% - 2rem) !important;
    display: flex !important;
    margin: 2.5rem auto 0 !important;
    padding: 0.95rem 1.75rem !important;
  }
}

