:root {
  --bg-void: #050308;
  --bg-deep: #080612;
  --bg-mid: #0d0a1a;
  --purple-glow: #7b4fd4;
  --purple-bright: #a67cff;
  --purple-dim: rgba(123, 79, 212, 0.15);
  --white: #ffffff;
  --white-60: rgba(255, 255, 255, 0.6);
  --white-30: rgba(255, 255, 255, 0.3);
  --white-08: rgba(255, 255, 255, 0.08);
  --white-04: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.07);
  --glass-border-hover: rgba(166, 124, 255, 0.45);
  --font-display: "Clash Display", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg-void);
  color: var(--white);
  font-family: var(--font-body);
  cursor: auto;
  overflow-x: clip;
}

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

a,
button,
input {
  font: inherit;
}

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

button {
  border: 0;
  background: none;
  cursor: pointer;
}

input {
  appearance: none;
}

.page-shell {
  position: relative;
  isolation: isolate;
}

.background-canvas {
  position: absolute;
  inset: 0;
  min-height: 100%;
  z-index: 0;
  overflow: clip;
  background:
    radial-gradient(circle 800px at 88% 2%, rgba(30, 14, 74, 0.22), transparent 68%),
    radial-gradient(circle 540px at 51% 45%, rgba(40, 16, 86, 0.12), transparent 72%),
    radial-gradient(circle 620px at 18% 84%, rgba(42, 16, 92, 0.1), transparent 72%),
    linear-gradient(
      180deg,
      #030205 0%,
      #050308 14%,
      #030205 30%,
      #040207 48%,
      #030205 66%,
      #050308 84%,
      #030205 100%
    );
}

.canvas-svg,
.canvas-halo,
.canvas-grid {
  position: absolute;
}

.canvas-svg {
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.canvas-trace {
  opacity: 0.86;
  animation: traceBreath 14s ease-in-out infinite alternate;
}

.trace-main {
  animation-duration: 8.5s;
}

.trace-cross {
  animation-duration: 10.5s;
  animation-delay: -2.6s;
}

.trace-bottom {
  animation-duration: 12.5s;
  animation-delay: -5s;
}

.trace-void,
.trace-soft,
.trace-glow,
.trace-core {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trace-void {
  stroke: rgba(0, 0, 0, 0.92);
  stroke-width: 18;
}

.trace-soft {
  stroke: rgba(123, 79, 212, 0.22);
  stroke-width: 7;
}

.trace-glow {
  stroke: rgba(147, 101, 255, 0.48);
  stroke-width: 3.5;
}

.trace-core {
  stroke: url(#canvasCore);
  stroke-width: 1.6;
}

.canvas-halo {
  border-radius: 50%;
  z-index: 0;
  filter: blur(18px);
  pointer-events: none;
  opacity: 0.9;
}

.halo-top {
  top: -3%;
  right: -8%;
  width: min(42vw, 540px);
  height: min(30vw, 420px);
  background: radial-gradient(circle, rgba(94, 56, 186, 0.16), transparent 72%);
}

.halo-main {
  top: 38%;
  left: 47%;
  width: min(32vw, 430px);
  height: min(24vw, 320px);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(164, 102, 255, 0.16), transparent 70%);
}

.halo-bottom {
  bottom: 8%;
  left: 7%;
  width: min(36vw, 500px);
  height: min(28vw, 360px);
  background: radial-gradient(circle, rgba(78, 42, 164, 0.12), transparent 74%);
}

.canvas-grid {
  inset: 0;
  z-index: 1;
  opacity: 0.24;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 36 36'%3E%3Ccircle cx='18' cy='18' r='1.5' fill='rgba(123,79,212,0.06)'/%3E%3C/svg%3E");
  background-size: 42px 42px;
}

.site-header,
.site-main,
.site-footer {
  position: relative;
  z-index: 2;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 2px;
  height: 100vh;
  z-index: 120;
  background: transparent;
  pointer-events: none;
}

.scroll-progress__bar {
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(123, 79, 212, 0.6);
  box-shadow: 0 0 12px rgba(123, 79, 212, 0.35);
  transform-origin: top;
  transform: scaleY(0);
  will-change: transform;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  opacity: 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 64px;
  padding: 0 5vw;
  background: rgba(5, 3, 8, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px) saturate(145%);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 32px;
}

.nav-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav-center a,
.nav-mobile-panel a {
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-center a:hover,
.nav-mobile-panel a:hover {
  color: var(--white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px) saturate(135%);
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.8);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span:first-child {
  transform: translate(-50%, -4px);
}

.nav-toggle span:last-child {
  transform: translate(-50%, 4px);
}

.nav-toggle.is-open span:first-child {
  transform: translate(-50%, 0) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: translate(-50%, 0) rotate(-45deg);
}

.nav-mobile-panel {
  display: none;
  padding: 1rem 5vw 1.3rem;
  background: rgba(5, 3, 8, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px) saturate(140%);
}

.nav-mobile-panel.is-open {
  display: grid;
  gap: 0.9rem;
}

.site-main {
  padding-bottom: 4rem;
}

.site-main > .hero-line-canvas {
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.section {
  position: relative;
  background: transparent;
  z-index: 1;
}

.hero {
  min-height: 100vh;
  padding-top: 64px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__content {
  width: min(1320px, calc(100% - 10vw));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.hero__copy {
  position: relative;
  z-index: 3;
  padding: 2.5rem 0;
}

.hero-particles {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 55%;
  pointer-events: none;
}

.particle,
.spark,
.collision-flash {
  position: absolute;
  opacity: 0;
}

.particle {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--white);
  box-shadow:
    0 0 14px #fff,
    0 0 28px rgba(166, 124, 255, 0.8);
}

.particle-a {
  left: 38%;
  top: 45%;
}

.particle-b {
  left: 44%;
  top: 52%;
}

.collision-flash {
  left: 41%;
  top: 48%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9), transparent 72%);
  transform: translate(-50%, -50%);
}

.spark {
  left: 41%;
  top: 48%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--purple-bright);
  box-shadow: 0 0 14px rgba(166, 124, 255, 0.9);
}

.hero-kicker,
.hero-title,
.hero-subtitle,
.hero-cta {
  opacity: 0;
}

.hero-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  top: var(--hero-kicker-top, -120px);
}

.hero-title {
  margin: clamp(5.25rem, 9vh, 7rem) 0 0 0;
  display: block;
  width: max-content;
  max-width: none;
  line-height: 0.92;
  clip-path: inset(0 0 0 0);
  position: relative;
  z-index: 4;
  transform: translateY(60px);
}

.hero-title__line {
  font-family: var(--font-display);
  display: block;
  text-wrap: balance;
}

.hero-title__line--soft {
  font-weight: 600;
  font-size: clamp(38px, 5.2vw, 78px);
  line-height: 1.06;
  color: #FFFFFF;
  letter-spacing: -0.025em;
  display: block;
  white-space: nowrap;
}

.hero-title__line--strong {
  font-weight: 600;
  font-size: clamp(38px, 5.2vw, 78px);
  line-height: 1.06;
  color: #7b4fd4;
  letter-spacing: -0.035em;
  margin-top: -4px;
  display: block;
  white-space: nowrap;
}

.hero-subtitle {
  margin-top: 7rem;
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.6;
  transition: color 0.2s ease;
}

.hero-cta {
  --hero-cta-angle: 28deg;
  --hero-cta-shift: 10px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  width: fit-content;
  margin-top: 1.6rem;
  padding: 6px 14px 6px 22px;
  min-height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(98, 22, 180, 0.52);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05)),
    linear-gradient(135deg, rgba(123, 79, 212, 0.22), rgba(255, 255, 255, 0.02)),
    rgba(54, 24, 104, 0.24);
  -webkit-backdrop-filter: blur(32px) saturate(220%);
  backdrop-filter: blur(32px) saturate(220%);
  box-shadow:
    0 0 52px rgba(123, 79, 212, 0.42),
    0 20px 48px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -10px 24px rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-size: clamp(18px, 1.4vw, 22px);
  font-weight: 600;
  letter-spacing: -0.02em;
  overflow: hidden;
  isolation: isolate;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.hero-cta::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06) 22%, transparent 54%, rgba(255, 255, 255, 0.1));
  pointer-events: none;
}

.hero-cta:hover {
  border-color: rgba(158, 89, 232, 0.7);
  box-shadow:
    0 0 64px rgba(123, 79, 212, 0.56),
    0 24px 56px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}

.hero-cta__beam {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.hero-cta__beam::before,
.hero-cta__beam::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 220%;
  transform: translate(-50%, -50%) rotate(var(--hero-cta-angle)) translateY(var(--hero-cta-shift));
  transform-origin: center;
}

.hero-cta__beam::before {
  height: 12px;
  background: rgba(123, 79, 212, 0.36);
  filter: blur(7px);
  opacity: 0.86;
}

.hero-cta__beam::after {
  height: 2px;
  background: linear-gradient(90deg, rgba(112, 72, 214, 0.62), rgba(214, 176, 255, 0.98), rgba(112, 72, 214, 0.7));
  box-shadow:
    0 0 16px rgba(123, 79, 212, 0.42),
    0 0 6px rgba(214, 176, 255, 0.36);
}

.hero-cta__label,
.hero-cta__icon {
  position: relative;
  z-index: 2;
}

.hero-cta__label {
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 400;
}

.hero-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  font-size: 24px;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 0 18px rgba(123, 79, 212, 0.16);
}

.hero__visual {
  position: relative;
  z-index: 1;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.device-scene {
  position: relative;
  min-height: 620px;
}

.device-laptop,
.device-phone {
  position: absolute;
  opacity: 0;
  transform-style: preserve-3d;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.device-laptop {
  top: 6%;
  left: 8%;
  width: 440px;
}

.laptop-screen {
  position: relative;
  width: 440px;
  height: 275px;
  padding: 9px;
  background: linear-gradient(180deg, #12111d, #0a0912);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px 12px 0 0;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.72),
    0 10px 24px rgba(255, 255, 255, 0.04) inset;
}

.laptop-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.14), transparent 24%, transparent 72%, rgba(255, 255, 255, 0.05));
  pointer-events: none;
}

.screen-ui {
  height: 100%;
  padding: 12px;
  border-radius: 6px;
  background:
    radial-gradient(circle at 78% 22%, rgba(144, 98, 252, 0.22), transparent 24%),
    linear-gradient(145deg, #08070c, #100b1d 48%, #171127 100%);
  display: grid;
  grid-template-rows: 28px 122px 56px 1fr;
  gap: 10px;
}

.ui-browser {
  display: grid;
  grid-template-columns: 52px 1fr 62px;
  gap: 10px;
  align-items: center;
}

.browser-dots {
  display: flex;
  gap: 5px;
  align-items: center;
}

.browser-dots span,
.browser-tag,
.browser-search {
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.browser-dots span {
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.18);
}

.browser-search {
  height: 18px;
  justify-self: stretch;
  opacity: 0.74;
}

.browser-tag {
  height: 18px;
  width: 100%;
  justify-self: end;
  background: rgba(146, 102, 255, 0.2);
}

.ui-showcase {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 12px;
}

.ui-copy,
.ui-preview,
.ui-stat,
.ui-graph,
.ui-stack span,
.phone-banner,
.phone-stats span,
.phone-list span,
.phone-card-row span,
.phone-menu,
.phone-time,
.phone-signal {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.ui-copy {
  border-radius: 14px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ui-chip,
.phone-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.64);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ui-line,
.phone-line {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.32));
}

.ui-line-xl,
.phone-line-xl {
  width: 92%;
}

.ui-line-lg,
.phone-line-lg {
  width: 74%;
}

.ui-line-sm,
.phone-line-sm {
  width: 56%;
  opacity: 0.72;
}

.ui-copy .ui-line + .ui-line {
  margin-top: 8px;
}

.ui-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.ui-action {
  display: block;
  width: 64px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.ui-action-primary {
  background: linear-gradient(135deg, rgba(154, 112, 255, 0.34), rgba(113, 71, 227, 0.2));
}

.ui-preview {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(17, 15, 32, 0.9), rgba(11, 9, 19, 0.72)),
    rgba(255, 255, 255, 0.02);
}

.preview-shine {
  position: absolute;
  inset: 10px auto auto 50%;
  width: 86px;
  height: 86px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(160, 114, 255, 0.22), transparent 72%);
}

.preview-frame {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 16px;
  bottom: 14px;
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.preview-frame span {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.preview-frame span:first-child {
  left: 16px;
  right: 18px;
  top: 18px;
  height: 10px;
}

.preview-frame span:nth-child(2) {
  left: 16px;
  width: 54%;
  top: 36px;
  height: 6px;
}

.preview-frame span:last-child {
  right: -14px;
  bottom: -26px;
  width: 118px;
  height: 118px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(163, 122, 255, 0.42), rgba(255, 255, 255, 0.06));
  transform: rotate(28deg);
}

.preview-pill {
  position: absolute;
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.preview-pill-a {
  left: 14px;
  bottom: 18px;
  width: 74px;
}

.preview-pill-b {
  left: 94px;
  bottom: 18px;
  width: 44px;
}

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

.ui-stat {
  border-radius: 12px;
  padding: 10px 10px 8px;
}

.ui-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.ui-stat small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

.ui-lower {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 10px;
}

.ui-graph,
.ui-stack {
  border-radius: 14px;
  padding: 12px;
}

.ui-graph {
  display: flex;
  align-items: end;
  gap: 7px;
}

.ui-graph span {
  flex: 1;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, rgba(177, 145, 255, 0.74), rgba(255, 255, 255, 0.08));
}

.ui-graph span:first-child {
  height: 48%;
}

.ui-graph span:nth-child(2) {
  height: 68%;
}

.ui-graph span:nth-child(3) {
  height: 54%;
}

.ui-graph span:nth-child(4) {
  height: 84%;
}

.ui-graph span:last-child {
  height: 62%;
}

.ui-stack {
  display: grid;
  gap: 8px;
}

.ui-stack span {
  display: block;
  border-radius: 10px;
  min-height: 32px;
}

.laptop-base {
  width: 440px;
  height: 28px;
  margin-top: -1px;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 0 8px 8px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.08), transparent 24%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.06) 0,
      rgba(255, 255, 255, 0.06) 8px,
      transparent 8px,
      transparent 14px
    ),
    linear-gradient(180deg, #1a1a2e, #141428);
  background-size:
    100% 100%,
    14px 5px,
    100% 100%;
  background-position:
    center,
    center,
    center;
  background-repeat: no-repeat, repeat, no-repeat;
}

.laptop-stand {
  width: 120px;
  height: 8px;
  margin: 0 auto;
  background: #111;
  border-radius: 0 0 4px 4px;
}

.device-phone {
  position: absolute;
  right: 4%;
  bottom: 11%;
  width: 175px;
  height: 340px;
  padding: 10px;
  background: linear-gradient(180deg, #151320, #09070d);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.65),
    0 8px 22px rgba(255, 255, 255, 0.04) inset;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  width: 60px;
  height: 18px;
  transform: translateX(-50%);
  background: var(--bg-void);
  border-radius: 0 0 12px 12px;
}

.phone-screen {
  position: relative;
  height: 100%;
  border-radius: 20px;
  background:
    radial-gradient(circle at 70% 18%, rgba(140, 96, 248, 0.22), transparent 24%),
    linear-gradient(160deg, #0f0b17, #1a0f2b 58%, #100b1c);
  overflow: hidden;
}

.phone-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(128deg, rgba(255, 255, 255, 0.12), transparent 22%, transparent 68%, rgba(255, 255, 255, 0.04));
  pointer-events: none;
}

.phone-ui {
  display: grid;
  grid-template-rows: 12px 18px 110px 36px 1fr 56px;
  gap: 10px;
  height: 100%;
  padding: 16px 12px 12px;
}

.phone-status,
.phone-header,
.phone-stats,
.phone-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-time {
  width: 34px;
  height: 8px;
  border-radius: 999px;
}

.phone-signal {
  width: 22px;
  height: 8px;
  border-radius: 999px;
}

.phone-brand {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.74);
}

.phone-menu {
  width: 36px;
  height: 16px;
  border-radius: 999px;
}

.phone-banner {
  border-radius: 18px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 78% 18%, rgba(153, 109, 255, 0.22), transparent 20%),
    rgba(255, 255, 255, 0.04);
}

.phone-banner .phone-line + .phone-line {
  margin-top: 8px;
}

.phone-stats span,
.phone-list span,
.phone-card-row span {
  display: block;
  border-radius: 12px;
}

.phone-stats {
  gap: 8px;
}

.phone-stats span {
  flex: 1;
  height: 100%;
}

.phone-list {
  display: grid;
  gap: 8px;
}

.phone-list span {
  min-height: 32px;
}

.phone-card-row {
  gap: 8px;
}

.phone-card-row span {
  flex: 1;
  height: 100%;
}

.section-heading,
.contact-card,
.work-intro {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  margin: 0 0 0.9rem;
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading h2,
.work-intro h2,
.contact-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 600;
  color: var(--white);
}

.services {
  min-height: 110vh;
  padding: 120px 10% 80px;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.service-card,
.contact-card,
.social-card,
.nav-toggle,
.nav-mobile-panel,
.field-input,
.work-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.service-card {
  min-height: 0;
  height: 100%;
  padding: 32px 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.service-card:hover,
.social-card:hover {
  border-color: rgba(166, 124, 255, 0.4);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(123, 79, 212, 0.15);
  transform: translateY(-3px);
}

.service-preview {
  position: relative;
  width: 100%;
  height: 120px;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 78% 24%, rgba(123, 79, 212, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 14px 32px rgba(0, 0, 0, 0.18);
}

.service-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 28%),
    linear-gradient(135deg, rgba(123, 79, 212, 0.08), transparent 58%);
  pointer-events: none;
}

.service-preview::after {
  content: "";
  position: absolute;
  inset: auto 10px 10px auto;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(166, 124, 255, 0.12), transparent 68%);
  filter: blur(12px);
  pointer-events: none;
}

.preview-glow {
  position: absolute;
  inset: auto auto -24px -18px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 79, 212, 0.2), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

.service-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--purple-bright);
  font-size: 24px;
}

.service-icon--svg {
  color: #a855f7;
}

.service-icon--svg svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  line-height: 1.6;
}

.service-preview--chat,
.service-preview--payments {
  padding: 12px;
}

.chat-window,
.checkout-panel {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(13, 10, 26, 0.82), rgba(8, 6, 18, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.chat-topbar {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 20px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.74);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chat-message {
  position: absolute;
  display: grid;
  gap: 7px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 22px rgba(0, 0, 0, 0.18);
}

.chat-message span {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.chat-message span:first-child {
  width: 70px;
}

.chat-message span:last-child {
  width: 46px;
}

.chat-message--user {
  top: 30px;
  left: 10px;
  width: 54%;
  background: rgba(255, 255, 255, 0.055);
}

.chat-message--user span {
  background: rgba(255, 255, 255, 0.16);
}

.chat-message--bot {
  top: 66px;
  right: 10px;
  width: 48%;
  background: rgba(124, 58, 237, 0.4);
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0 20px rgba(124, 58, 237, 0.18);
}

.chat-message--bot span {
  background: rgba(255, 255, 255, 0.32);
}

.chat-typing {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.04);
}

.chat-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(166, 124, 255, 0.9);
  box-shadow: 0 0 10px rgba(123, 79, 212, 0.22);
}

.checkout-panel {
  padding: 12px;
}

.checkout-pill,
.checkout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.checkout-pill {
  min-width: 108px;
  height: 24px;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  letter-spacing: 0.05em;
  border: 1px solid rgba(166, 124, 255, 0.22);
  background: rgba(123, 79, 212, 0.16);
}

.checkout-field {
  display: block;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 24%, transparent 24% 100%),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.checkout-field--card {
  margin-top: 14px;
}

.checkout-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.checkout-field--half {
  height: 30px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 34%, transparent 34% 100%),
    rgba(255, 255, 255, 0.04);
}

.checkout-button {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  height: 30px;
  border: 1px solid rgba(166, 124, 255, 0.28);
  background: linear-gradient(135deg, rgba(123, 79, 212, 0.28), rgba(166, 124, 255, 0.18));
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  letter-spacing: 0.04em;
  box-shadow: 0 0 18px rgba(123, 79, 212, 0.18);
}

.landing-nav,
.landing-heading,
.landing-copy,
.landing-button,
.landing-badge,
.commerce-image,
.commerce-title,
.commerce-price,
.commerce-button,
.perf-bar,
.perf-arrow {
  position: absolute;
}

.landing-nav {
  left: 12px;
  top: 12px;
  width: calc(100% - 24px);
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.landing-heading {
  left: 12px;
  top: 34px;
  width: 54%;
  height: 30px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(123, 79, 212, 0.18));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.landing-copy {
  left: 12px;
  top: 72px;
  width: 38%;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.landing-button {
  left: 12px;
  bottom: 12px;
  width: 86px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(166, 124, 255, 0.28);
  background: rgba(123, 79, 212, 0.2);
  box-shadow: 0 0 18px rgba(123, 79, 212, 0.18);
}

.landing-badge {
  top: 16px;
  right: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(123, 79, 212, 0.18);
  border: 1px solid rgba(166, 124, 255, 0.26);
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  letter-spacing: 0.04em;
  box-shadow: 0 0 20px rgba(123, 79, 212, 0.22);
}

.app-metrics {
  position: absolute;
  top: 14px;
  left: 12px;
  right: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.app-metrics span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.app-chart {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  height: 48px;
  display: flex;
  align-items: end;
  gap: 8px;
}

.app-chart span {
  flex: 1;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, rgba(166, 124, 255, 0.82), rgba(123, 79, 212, 0.18));
  box-shadow: 0 0 18px rgba(123, 79, 212, 0.16);
}

.app-chart span:first-child {
  height: 38%;
}

.app-chart span:nth-child(2) {
  height: 58%;
}

.app-chart span:nth-child(3) {
  height: 82%;
}

.app-chart span:last-child {
  height: 68%;
}

.commerce-image {
  left: 12px;
  top: 12px;
  width: 78px;
  height: 96px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 62% 24%, rgba(166, 124, 255, 0.34), transparent 30%),
    linear-gradient(145deg, rgba(123, 79, 212, 0.26), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.commerce-title {
  right: 12px;
  top: 26px;
  width: calc(100% - 114px);
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.commerce-price {
  right: 12px;
  top: 50px;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
}

.commerce-button {
  right: 12px;
  bottom: 16px;
  min-width: 108px;
  height: 26px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(166, 124, 255, 0.26);
  background: rgba(123, 79, 212, 0.2);
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  letter-spacing: 0.03em;
}

.design-compare,
.brand-compare {
  position: absolute;
  inset: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.design-state,
.brand-state {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.03);
}

.design-label,
.brand-caption {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.design-button {
  width: 88px;
  height: 28px;
  border-radius: 999px;
}

.design-button--flat {
  background: rgba(255, 255, 255, 0.12);
}

.design-button--glass {
  border: 1px solid rgba(166, 124, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 22px rgba(123, 79, 212, 0.22);
}

.service-preview--performance {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 14px;
}

.perf-row {
  display: grid;
  gap: 8px;
}

.perf-label {
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.perf-bar {
  position: static;
  display: block;
  height: 12px;
  border-radius: 999px;
}

.perf-bar--before {
  width: 42%;
  background: linear-gradient(90deg, rgba(190, 116, 138, 0.82), rgba(120, 66, 80, 0.45));
  box-shadow: 0 0 14px rgba(190, 116, 138, 0.14);
}

.perf-bar--after {
  width: 88%;
  background: linear-gradient(90deg, rgba(166, 124, 255, 0.92), rgba(123, 79, 212, 0.34));
  box-shadow: 0 0 18px rgba(123, 79, 212, 0.2);
}

.perf-arrow {
  position: static;
  display: block;
  align-self: center;
  margin: 8px 0;
  color: rgba(166, 124, 255, 0.76);
  font-size: 16px;
  line-height: 1;
}

.brand-logo {
  position: relative;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.06em;
}

.brand-logo--generic {
  color: rgba(255, 255, 255, 0.28);
}

.brand-logo--premium {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 0 18px rgba(123, 79, 212, 0.26);
}

.brand-logo--premium::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(166, 124, 255, 0.96), transparent 84%);
}

.card-accent {
  width: 36px;
  height: 2px;
  margin-top: 16px;
  background: linear-gradient(90deg, var(--purple-glow), transparent);
}

.work {
  height: 100vh;
  overflow: hidden;
  padding: 0 0 0 10%;
}

.work-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 28vw) 1fr;
  align-items: start;
  min-height: 100%;
  column-gap: clamp(2rem, 4vw, 4.5rem);
  padding-top: clamp(4.5rem, 9vh, 6.5rem);
}

.work-intro {
  grid-column: 1;
  grid-row: 1;
  position: sticky;
  top: 8%;
  margin: 0;
  z-index: 2;
  max-width: 420px;
}

.work-intro h2 {
  max-width: 420px;
  line-height: 0.94;
}

.scroll-hint {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  position: sticky;
  top: calc(8% + clamp(11rem, 14vw, 13rem));
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 0;
  pointer-events: none;
}

.work-track {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  position: relative;
  z-index: 1;
  gap: 28px;
  padding: 0 40vw 0 clamp(3rem, 5vw, 5rem);
  margin-top: clamp(10rem, 19vh, 13rem);
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
}

.work-card {
  position: relative;
  width: 360px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  background: none;
  border: 0;
  border-radius: 22px;
  overflow: visible;
  isolation: isolate;
  translate: var(--card-x, 0px) var(--card-y, 0px);
  rotate: var(--card-rotate, 0deg);
  transition:
    translate 0.25s ease,
    rotate 0.25s ease;
}

.work-card__frame {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  overflow: visible;
  background:
    linear-gradient(180deg, rgba(102, 66, 176, 0.18) 0%, rgba(41, 21, 75, 0.22) 100%),
    rgba(20, 12, 37, 0.28);
  border: 1px solid rgba(168, 125, 255, 0.2);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.work-card__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0, rgba(255, 255, 255, 0.02) 22%, rgba(255, 255, 255, 0) 55%),
    radial-gradient(circle at 18% 12%, rgba(191, 164, 255, 0.16), transparent 28%);
}

.work-card__frame::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
  opacity: 0.9;
  z-index: 1;
}

.work-card:hover .work-card__frame {
  transform: translateY(-4px);
  border-color: rgba(182, 145, 255, 0.34);
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.work-card__media {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

.work-card__image {
  width: var(--media-width, 122%);
  max-width: none;
  height: auto;
  display: block;
  opacity: 1;
  translate: var(--media-x, 0px) var(--media-y, 0px);
  rotate: var(--media-rotate, 0deg);
  scale: var(--media-scale, 1);
  transform-origin: center bottom;
  transition:
    translate 0.25s ease,
    rotate 0.25s ease,
    scale 0.25s ease;
}

.work-card:hover .work-card__image {
  translate: var(--media-x, 0px) calc(var(--media-y, 0px) - 6px);
}

.work-card__label {
  position: absolute;
  left: 22px;
  bottom: 18px;
  z-index: 3;
  margin: 0;
  color: rgb(255, 255, 255);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 350;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  pointer-events: none;
  line-height: 1.6;
}

.process {
  position: relative;
  padding: clamp(5.5rem, 9vh, 7rem) 0;
  background: transparent;
  overflow: visible;
}

.process::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(3, 2, 5, 0.16) 0%,
      rgba(3, 2, 5, 0.04) 18%,
      rgba(3, 2, 5, 0.04) 82%,
      rgba(3, 2, 5, 0.14) 100%
    );
}

.process__inner {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
  perspective: 1200px;
}

.process-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 420px;
  margin: 0 0 72px;
  
}

.process-label {
  margin: 0 0 0.9rem;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.35);
  text-align: left;
  opacity: 0;
  transform: translateY(6px);
  text-transform: uppercase;
}

.process-title {
  margin: 0;
  max-width: 420px;
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 600;
  line-height: 0.94;
  color: var(--white);
  text-align: left;
  opacity: 0;
  transform: translateY(6px);
}

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

.process-step {
  --float-duration: 3s;
  --ring-duration: 2.5s;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: default;
}

.process-step:nth-child(2) {
  --float-duration: 3.4s;
  --ring-duration: 2.8s;
}

.process-step:nth-child(3) {
  --float-duration: 3.8s;
  --ring-duration: 3.1s;
}

.process-step:nth-child(4) {
  --float-duration: 4.2s;
  --ring-duration: 3.4s;
}

.process-step__card-wrap {
  order: 3;
  width: 100%;
  opacity: 0;
  transform: rotateY(-90deg) scale(0.7);
  transform-style: preserve-3d;
}

.process-card {
  position: relative;
  min-height: 160px;
  padding: 28px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    transform 0.4s ease;
}

.process-card::before,
.process-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.process-card::before {
  top: 0;
  left: 0;
  right: 0;
  height: 45%;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
}

.process-card::after {
  top: 10%;
  left: 0;
  width: 3px;
  height: 40%;
  border-radius: 0 2px 2px 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), transparent);
}

.process-card__index {
  margin-bottom: 12px;
  color: rgba(180, 120, 255, 0.9);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
}

.process-card__title {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.process-card__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 12px;
  line-height: 1.65;
}

.process-step__beam {
  order: 2;
  width: 1px;
  height: 28px;
  flex-shrink: 0;
  background: linear-gradient(to bottom, rgba(160, 90, 255, 0.7), rgba(160, 90, 255, 0.05));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.process-podium {
  order: 1;
  width: 100%;
  position: relative;
  transform-origin: bottom center;
  transform: scaleY(0);
  opacity: 0;
}

.process-podium__ring {
  position: absolute;
  top: -10px;
  left: 50%;
  width: 70%;
  height: 16px;
  background: radial-gradient(ellipse, rgba(140, 60, 255, 0.28), transparent 72%);
  transform: translateX(-50%);
  filter: blur(10px);
  opacity: 0;
}

.process-podium__main {
  position: relative;
  overflow: hidden;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.process-podium__main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.08), transparent);
  pointer-events: none;
}

.process-podium__num {
  position: relative;
  color: rgba(255, 255, 255, 0.12);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.process-podium__step {
  margin: 0 auto;
  border-top: none;
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.process-podium__step--mid {
  width: 88%;
  height: 9px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0 0 10px 10px;
}

.process-podium__step--base {
  width: 70%;
  height: 5px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 0 0 7px 7px;
}

.process-podium__floor {
  width: 60%;
  height: 8px;
  margin: 4px auto 0;
  background: radial-gradient(ellipse, rgba(120, 50, 240, 0.18), transparent 72%);
  filter: blur(4px);
  opacity: 0.32;
  transition: opacity 0.4s ease;
}

.process-step:hover .process-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(180, 120, 255, 0.55);
  box-shadow:
    0 0 0 1px rgba(180, 120, 255, 0.18),
    0 0 24px rgba(120, 50, 240, 0.18),
    0 16px 40px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transform: translateY(-12px) rotateY(6deg);
}

.process-step:hover .process-podium__main {
  background: rgba(100, 35, 220, 0.28);
  border-color: rgba(160, 90, 255, 0.45);
  box-shadow:
    0 0 30px rgba(100, 35, 220, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.process-step:hover .process-podium__step--mid {
  background: rgba(100, 35, 220, 0.2);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 20px rgba(100, 35, 220, 0.25);
}

.process-step:hover .process-podium__floor {
  opacity: 0.72;
}

.process.is-visible .process-label {
  animation: labelSlide 0.5s ease 0.08s both;
}

.process.is-visible .process-title {
  animation: labelSlide 0.6s ease 0.16s both;
}

.process.is-visible .process-step__card-wrap {
  animation:
    spinIn 0.9s cubic-bezier(0.34, 1.4, 0.64, 1) var(--step-delay) both,
    floatCard var(--float-duration) ease-in-out calc(var(--step-delay) + 0.9s) infinite;
}

.process.is-visible .process-card__index {
  animation: labelSlide 0.5s ease calc(var(--step-delay) + 0.6s) both;
}

.process.is-visible .process-step__beam {
  opacity: 1;
  transition-delay: calc(var(--step-delay) + 0.5s);
}

.process.is-visible .process-podium {
  animation: podiumRise 0.6s ease calc(var(--step-delay) + 0.3s) both;
}

.process.is-visible .process-podium__ring {
  animation: ringPulse var(--ring-duration) ease-in-out calc(var(--step-delay) + 0.3s) infinite;
}

@keyframes spinIn {
  from {
    transform: rotateY(-90deg) scale(0.7);
    opacity: 0;
  }

  to {
    transform: rotateY(0deg) scale(1);
    opacity: 1;
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes podiumRise {
  from {
    transform: scaleY(0);
    opacity: 0;
  }

  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes ringPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: translateX(-50%) scale(1);
  }

  50% {
    opacity: 0.8;
    transform: translateX(-50%) scale(1.08);
  }
}

@keyframes labelSlide {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10vh 5vw;
}

.contact-card {
  width: min(580px, 90vw);
  padding: 56px 48px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px) saturate(145%);
  box-shadow:
    0 0 48px rgba(80, 30, 160, 0.12),
    0 24px 60px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-copy {
  margin: 0.8rem 0 36px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 15px;
}

.contact-fields {
  display: grid;
  gap: 0;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: inline-block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-input {
  position: relative;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field-input:focus-within {
  border-color: rgba(166, 124, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(123, 79, 212, 0.15);
}

.field-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--purple-bright);
  font-size: 16px;
}

.field-input input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  background: transparent;
  border: 0;
  color: var(--white);
  outline: none;
  font-size: 15px;
}

.field-input input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.submit-button {
  width: 100%;
  height: 52px;
  margin-top: 8px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(123, 79, 212, 0.8), rgba(100, 60, 200, 0.9));
  border: 1px solid rgba(166, 124, 255, 0.3);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 0 30px rgba(123, 79, 212, 0.3);
  transition:
    filter 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.submit-button:hover {
  filter: brightness(1.15);
  box-shadow: 0 0 50px rgba(123, 79, 212, 0.5);
  transform: scale(1.01);
}

.site-footer {
  padding: 48px 10%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.social-card {
  width: 160px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.social-card__icon {
  color: var(--purple-bright);
  font-size: 20px;
}

.social-card__label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.footer-copy {
  margin: 32px 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.2);
  font-size: 12px;
}

.reveal-card,
.section-heading,
.work-intro,
.contact-card,
.site-footer {
  will-change: transform, opacity;
  backface-visibility: hidden;
}

@keyframes traceBreath {
  from {
    opacity: 0.68;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding-top: 3rem;
  }

  .hero__copy {
    max-width: 720px;
  }

  .hero__visual {
    width: min(100%, 720px);
    margin: 0 auto;
  }

  .device-scene {
    min-height: 560px;
  }

  .device-laptop {
    left: 2%;
    transform-origin: center;
  }

  .device-phone {
    right: 2%;
  }

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

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

}

@media (max-width: 767px) {
  body {
    cursor: auto;
  }

  .navbar {
    padding: 0 1rem;
    gap: 1rem;
  }

  .nav-center {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero {
    padding-top: 88px;
  }

  .hero__content {
    width: min(100%, calc(100% - 2rem));
    gap: 3rem;
  }

  .hero-particles {
    height: 180px;
  }

  .hero-title {
    width: min(100%, 100%);
    max-width: 100%;
  }

  .hero-subtitle {
    max-width: 100%;
    margin-top: 2rem;
  }

  .hero-cta {
    margin-top: 1rem;
    padding: 11px 12px 11px 24px;
    min-height: 68px;
  }

  .hero-cta__icon {
    width: 42px;
    height: 42px;
    font-size: 22px;
  }

  .device-scene {
    min-height: 420px;
  }

  .device-laptop {
    position: relative;
    width: 100%;
    max-width: 340px;
    top: auto;
    left: auto;
  }

  .laptop-screen,
  .laptop-base {
    width: 100%;
  }

  .laptop-screen {
    height: 215px;
  }

  .screen-ui {
    grid-template-rows: 24px 96px 48px 1fr;
    gap: 8px;
    padding: 10px;
  }

  .ui-showcase,
  .ui-lower {
    gap: 8px;
  }

  .ui-copy,
  .ui-graph,
  .ui-stack {
    padding: 9px;
  }

  .ui-stat {
    padding: 8px 8px 6px;
  }

  .ui-stat strong {
    font-size: 13px;
  }

  .ui-stat small {
    font-size: 9px;
  }

  .ui-action {
    width: 50px;
    height: 18px;
  }

  .preview-frame span:first-child {
    top: 14px;
  }

  .device-phone {
    width: 145px;
    height: 280px;
    right: 0;
    bottom: 0;
  }

  .phone-ui {
    grid-template-rows: 10px 16px 88px 28px 1fr 44px;
    gap: 8px;
    padding: 14px 10px 10px;
  }

  .phone-brand {
    font-size: 11px;
  }

  .phone-menu {
    width: 30px;
    height: 14px;
  }

  .phone-banner {
    padding: 10px;
  }

  .phone-stats,
  .phone-card-row,
  .phone-list {
    gap: 6px;
  }

  .phone-list span {
    min-height: 26px;
  }

  .services {
    padding: 96px 1rem 64px;
  }

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

  .work {
    height: auto;
    overflow: visible;
    padding: 96px 1rem 32px;
  }

  .work-shell {
    display: block;
    padding-top: 0;
  }

  .work-intro {
    position: static;
    margin-bottom: 0;
  }

  .work-track {
    display: grid;
    width: 100%;
    padding: 0;
    gap: 18px;
    margin-top: 0;
  }

  .scroll-hint {
    position: static;
    margin: 1rem 0 2rem;
  }

  .work-card {
    width: 100%;
    aspect-ratio: 1 / 1;
  }

  .process {
    padding: 96px 0;
  }

  .process__inner {
    width: min(100%, calc(100% - 2rem));
  }

  .process-header {
    margin-bottom: 42px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact {
    padding: 96px 1rem;
  }

  .contact-card {
    width: 100%;
    padding: 38px 22px;
  }

  .site-footer {
    padding: 40px 1rem;
  }

  .social-card {
    width: min(100%, 260px);
  }
}

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

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

  body {
    cursor: auto;
  }

  .site-header,
  .hero-kicker,
  .hero-title,
  .hero-subtitle,
  .hero-cta,
  .device-laptop,
  .device-phone,
  .section-heading,
  .reveal-card,
  .work-intro,
  .contact-card,
  .process-step__card-wrap,
  .process-step__beam,
  .process-podium,
  .process-label,
  .process-title,
  .process-card__index {
    opacity: 1 !important;
    transform: none !important;
  }

  .process-step__card-wrap,
  .process-podium,
  .process-podium__ring {
    animation: none !important;
  }

  .hero-title {
    clip-path: inset(0 0 0 0) !important;
    text-shadow: none !important;
  }

  .particle,
  .spark,
  .collision-flash {
    display: none !important;
  }
}
