:root {
  --bg: #f3f8ff;
  --bg-soft: #ffffff;
  --text: #0a1e46;
  --muted: #556b97;
  --line: rgba(17, 101, 255, 0.16);
  --blue: #1668ff;
  --blue-strong: #0d4ff0;
  --blue-soft: #53c2ff;
  --blue-pale: #dfeeff;
  --pink: #ff3e93;
  --pink-soft: #ffd5e7;
  --purple-soft: #9f8cff;
  --teal-soft: #74ead9;
  --shadow: 0 30px 82px rgba(28, 92, 228, 0.18);
  --shadow-soft: 0 20px 46px rgba(28, 92, 228, 0.12);
  --radius-xl: 40px;
  --radius-lg: 28px;
  --max-width: 1360px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 8%, rgba(22, 104, 255, 0.34), transparent 21%),
    radial-gradient(circle at 92% 10%, rgba(255, 62, 147, 0.16), transparent 19%),
    radial-gradient(circle at 84% 48%, rgba(159, 140, 255, 0.18), transparent 21%),
    linear-gradient(180deg, #fbfdff 0%, #ecf4ff 50%, #f7fbff 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(13, 79, 240, 0.07), transparent 40%),
    linear-gradient(300deg, rgba(255, 62, 147, 0.06), transparent 35%);
  pointer-events: none;
  z-index: -2;
}

::selection {
  background: rgba(42, 116, 255, 0.16);
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

p,
h1,
h2,
h3 {
  overflow-wrap: anywhere;
}

section[id] {
  scroll-margin-top: 120px;
}

.site-chrome {
  position: relative;
}

.topbar,
.hero-shell,
.spectrum-block,
.motion-showcase,
.compare-section,
.gallery-section,
.experience-grid,
.workflow-rail,
.contact-stage,
.footer,
.ribbon-band {
  width: min(calc(100% - 32px), var(--max-width));
  margin-inline: auto;
}

.hero-intro,
.hero-canvas,
.showcase-copy,
.showcase-stack,
.experience-copy,
.experience-card,
.workflow-step,
.contact-copy,
.contact-matrix,
.spectrum-card {
  min-width: 0;
}

.topbar {
  position: sticky;
  top: 18px;
  z-index: 40;
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 24px;
  border-radius: 999px;
  border: 1px solid rgba(17, 101, 255, 0.16);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: var(--shadow-soft);
  transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  transform: translateZ(0);
  will-change: background, border-color, box-shadow;
}

.topbar.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(17, 101, 255, 0.24);
  box-shadow: 0 20px 48px rgba(25, 91, 228, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.25s ease;
}

.brand-mark {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  padding: 7px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(83, 194, 255, 0.26), transparent 48%),
    linear-gradient(135deg, rgba(22, 104, 255, 0.16), rgba(255, 62, 147, 0.12));
  border: 1px solid rgba(17, 101, 255, 0.12);
  box-shadow: 0 16px 34px rgba(17, 101, 255, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(17, 101, 255, 0.12));
}

.brand-copy {
  display: flex;
  align-items: center;
}

.brand-wordmark {
  display: block;
  width: clamp(132px, 11vw, 176px);
  height: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.nav a,
.hero-text,
.section-text,
.signal-grid span,
.frame-caption span,
.mini-label,
.workflow-step p,
.experience-card p,
.contact-matrix p,
.footer p,
.spectrum-card p,
.panel-copy span {
  color: var(--muted);
}

.brand:hover {
  transform: translateY(-1px);
}

.brand:hover .brand-mark,
.brand:focus-visible .brand-mark {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 20px 40px rgba(17, 101, 255, 0.22);
}

.brand:hover .brand-wordmark,
.brand:focus-visible .brand-wordmark {
  transform: translateX(2px);
  filter: drop-shadow(0 6px 10px rgba(17, 101, 255, 0.1));
}

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

.nav a {
  font-size: 0.95rem;
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.social-button {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid rgba(17, 101, 255, 0.14);
  background: rgba(255, 255, 255, 0.86);
  color: var(--blue-strong);
  box-shadow: 0 12px 28px rgba(17, 101, 255, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.social-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-button:hover,
.social-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(17, 101, 255, 0.14);
  border-color: rgba(17, 101, 255, 0.2);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button {
  color: white;
  background: #1e56d8;
  box-shadow: 0 14px 28px rgba(17, 101, 255, 0.16);
}

.button-ghost,
.button-secondary {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(17, 101, 255, 0.18);
  box-shadow: 0 10px 24px rgba(17, 101, 255, 0.06);
}

.button-ghost:hover,
.button-secondary:hover {
  background: rgba(255, 255, 255, 0.96);
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 18px 34px rgba(17, 101, 255, 0.2);
}

.eyebrow {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--blue);
}

.hero-shell {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 40px;
  align-items: center;
  padding: 72px 0 44px;
  min-height: calc(100vh - 110px);
}

.hero-intro {
  position: relative;
  z-index: 2;
}

.hero-title,
.section-title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.94;
  text-wrap: balance;
}

.hero-title {
  font-size: clamp(3.7rem, 8vw, 7.3rem);
  max-width: 9ch;
}

.hero-text,
.section-text {
  max-width: 56ch;
  line-height: 1.8;
  font-size: 1.04rem;
}

.hero-text {
  margin: 24px 0 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.signal-grid article {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(42, 116, 255, 0.1);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.signal-grid strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.hero-canvas {
  position: relative;
  min-height: clamp(620px, 62vw, 780px);
}

.depth-layer,
.hero-frame,
.hero-glass {
  position: absolute;
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(42, 116, 255, 0.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  will-change: transform;
}

.depth-layer {
  --tx: 0px;
  --ty: 0px;
  --rz: 0deg;
  transform: translate3d(var(--tx), var(--ty), 0) rotate(var(--rz));
  transition: transform 0.35s ease;
}

.hero-frame img {
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}

.hero-frame-main {
  --rz: 0deg;
  inset: 40px 60px 80px 40px;
}

.hero-frame-side {
  --rz: 6deg;
  width: 34%;
  height: 260px;
  right: 0;
  top: 0;
}

.frame-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(16, 45, 102, 0.82));
  color: white;
}

.frame-caption span {
  color: rgba(255, 255, 255, 0.78);
}

.frame-caption strong,
.panel-copy strong {
  display: block;
  margin-top: 6px;
  font-size: 1.05rem;
  line-height: 1.4;
}

.hero-glass {
  padding: 24px;
}

.hero-glass-top {
  --rz: -3deg;
  right: 26px;
  top: 240px;
  width: min(280px, 42%);
}

.hero-glass-bottom {
  --rz: 2deg;
  left: 0;
  bottom: 24px;
  width: min(250px, 38%);
  display: grid;
  gap: 18px;
}

.hero-glass h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.75rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.mini-label {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
}

.hero-glass p {
  margin: 0;
  font-weight: 700;
}

.ribbon-band {
  overflow: hidden;
  border-top: 1px solid rgba(42, 116, 255, 0.1);
  border-bottom: 1px solid rgba(42, 116, 255, 0.1);
  padding: 18px 0;
}

.ribbon-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: glide 28s linear infinite;
  will-change: transform;
  transform: translateZ(0);
}

.ribbon-track span {
  font-family: "Sora", sans-serif;
  color: var(--text);
  font-size: 1.15rem;
}

.ribbon-track span::after {
  content: "\2022";
  margin-left: 18px;
  color: var(--pink);
}

.spectrum-block {
  padding: 110px 0 84px;
}

.section-intro {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-title {
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.spectrum-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.spectrum-card {
  --card-rotate-x: 0deg;
  --card-rotate-y: 0deg;
  --card-lift: 0px;
  position: relative;
  display: grid;
  gap: 18px;
  padding: 22px;
  height: 100%;
  border-radius: 32px;
  border: 1px solid rgba(42, 116, 255, 0.12);
  box-shadow: var(--shadow);
  transform: translate3d(0, var(--card-lift), 0) rotateX(var(--card-rotate-x)) rotateY(var(--card-rotate-y));
  transform-style: preserve-3d;
  transition: transform 0.24s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
  isolation: isolate;
  will-change: transform;
  backface-visibility: hidden;
}

.spectrum-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 95, 162, 0.06));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.spectrum-card:hover {
  box-shadow: 0 28px 64px rgba(56, 114, 224, 0.18);
  border-color: rgba(42, 116, 255, 0.18);
}

.spectrum-card:hover::before {
  opacity: 1;
}

.spectrum-card img {
  height: 280px;
  object-fit: cover;
  border-radius: 22px;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, filter 0.35s ease;
}

.spectrum-card[data-accent="blue"] {
  background:
    radial-gradient(circle at top right, rgba(22, 104, 255, 0.24), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(230, 242, 255, 0.92));
}

.spectrum-card[data-accent="sky"] {
  background:
    radial-gradient(circle at top right, rgba(83, 194, 255, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(233, 246, 255, 0.92));
}

.spectrum-card[data-accent="violet"] {
  background:
    radial-gradient(circle at top right, rgba(159, 140, 255, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 239, 255, 0.92));
}

.spectrum-card[data-accent="teal"] {
  background:
    radial-gradient(circle at top right, rgba(255, 62, 147, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 238, 246, 0.92));
}

.spectrum-index {
  font-family: "Sora", sans-serif;
  color: var(--blue);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
}

.spectrum-card h3,
.workflow-step h3,
.experience-card h3 {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.3;
}

.motion-showcase {
  padding: 30px 0 90px;
}

.compare-section,
.gallery-section {
  padding: 20px 0 90px;
}

.sticky-stage {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 28px;
  align-items: start;
}

.showcase-copy {
  max-width: 520px;
  padding-top: 18px;
}

.showcase-stack {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(6, minmax(72px, auto));
  gap: 18px;
  min-height: 720px;
}

.showcase-panel {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(42, 116, 255, 0.12);
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  will-change: transform;
  backface-visibility: hidden;
  touch-action: manipulation;
}

.showcase-panel:hover {
  box-shadow: 0 34px 74px rgba(56, 114, 224, 0.18);
  border-color: rgba(42, 116, 255, 0.18);
}

.showcase-panel img {
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
  transition: filter 0.35s ease;
}

.showcase-panel:is(:hover, .is-pressed) img {
  filter: saturate(1.05) brightness(1.03);
}

.panel-a {
  grid-column: 1 / 8;
  grid-row: 1 / 5;
  min-height: 520px;
  z-index: 1;
}

.panel-b {
  grid-column: 7 / 13;
  grid-row: 2 / 6;
  min-height: 420px;
  z-index: 2;
}

.panel-c {
  grid-column: 2 / 9;
  grid-row: 4 / 7;
  min-height: 320px;
  z-index: 3;
}

.panel-copy {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.panel-copy span {
  color: rgba(15, 33, 71, 0.72);
}

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

.compare-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(42, 116, 255, 0.12);
  box-shadow: var(--shadow);
}

.compare-stage {
  position: relative;
  --position: 50%;
  --base-filter: saturate(0.76) brightness(0.86) contrast(0.88);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(234, 243, 255, 0.7);
  transition: box-shadow 0.32s ease, transform 0.32s ease;
  touch-action: manipulation;
}

.compare-base,
.compare-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
}

.compare-base {
  filter: var(--base-filter);
}

.compare-overlay {
  position: absolute;
  inset: 0;
  width: var(--position);
  overflow: hidden;
  z-index: 1;
}

.compare-status {
  position: absolute;
  inset: 16px 16px auto;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  z-index: 2;
  pointer-events: none;
}

.compare-status span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(42, 116, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 22px rgba(57, 110, 215, 0.12);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(15, 33, 71, 0.78);
}

.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 2px;
  background: rgba(255, 255, 255, 0.92);
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(42, 116, 255, 0.16);
  z-index: 3;
}

.compare-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--blue) 0%, var(--pink) 100%);
  box-shadow: 0 18px 34px rgba(42, 116, 255, 0.22);
}

.compare-stage:is(:hover, .is-pressed) {
  box-shadow: 0 24px 50px rgba(42, 116, 255, 0.18);
}

.compare-stage:is(:hover, .is-pressed) .compare-base,
.compare-stage:is(:hover, .is-pressed) .compare-overlay img {
  transform: scale(1.05);
}

.compare-divider span::before,
.compare-divider span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid white;
  border-right: 2px solid white;
}

.compare-divider span::before {
  left: 14px;
  transform: translateY(-50%) rotate(-135deg);
}

.compare-divider span::after {
  right: 14px;
  transform: translateY(-50%) rotate(45deg);
}

.compare-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
}

.compare-copy {
  display: grid;
  gap: 10px;
}

.compare-tag {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(42, 116, 255, 0.08);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.compare-copy p {
  margin: 0;
  line-height: 1.75;
  color: var(--muted);
}

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

.gallery-item {
  position: relative;
  grid-column: span 4;
  min-height: 280px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(42, 116, 255, 0.12);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  will-change: transform;
  backface-visibility: hidden;
  touch-action: manipulation;
}

.gallery-item.tall {
  grid-column: span 5;
  grid-row: span 2;
  min-height: 520px;
}

.gallery-item.wide {
  grid-column: span 7;
  min-height: 320px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}

.gallery-item:is(:hover, .is-pressed) {
  transform: translateY(-6px);
  box-shadow: 0 32px 76px rgba(56, 114, 224, 0.18);
  border-color: rgba(42, 116, 255, 0.18);
}

.gallery-item:is(:hover, .is-pressed) img {
  transform: scale(1.06);
}

.hero-frame:is(:hover, .is-pressed) img,
.spectrum-card:is(:hover, .is-pressed) img {
  transform: scale(1.05);
}

.gallery-meta {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.gallery-meta span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

.gallery-meta strong {
  line-height: 1.35;
}

.process-section {
  width: min(calc(100% - 32px), var(--max-width));
  margin-inline: auto;
  padding: 96px 0 110px;
}

.process-intro {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.process-stage {
  position: relative;
  padding: 48px 28px 42px;
  min-height: 640px;
  border-radius: 44px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(22, 104, 255, 0.28), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(255, 62, 147, 0.18), transparent 24%),
    radial-gradient(circle at bottom center, rgba(83, 194, 255, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(231, 243, 255, 0.94));
  border: 1px solid rgba(17, 101, 255, 0.14);
  box-shadow: var(--shadow);
}

.process-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(16px);
  pointer-events: none;
}

.process-glow-a {
  width: 240px;
  height: 240px;
  top: -36px;
  left: -20px;
  background: radial-gradient(circle, rgba(115, 181, 255, 0.28), transparent 70%);
}

.process-glow-b {
  width: 260px;
  height: 260px;
  right: -34px;
  bottom: -48px;
  background: radial-gradient(circle, rgba(255, 95, 162, 0.18), transparent 72%);
}

.process-track {
  position: absolute;
  left: 74px;
  right: 74px;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
}

.process-track-base,
.process-track-progress {
  position: absolute;
  inset: 0;
  border-radius: 999px;
}

.process-track-base {
  background: linear-gradient(90deg, rgba(42, 116, 255, 0.08), rgba(255, 95, 162, 0.16), rgba(42, 116, 255, 0.08));
}

.process-track-progress {
  background: linear-gradient(90deg, var(--blue) 0%, var(--pink) 46%, var(--blue-soft) 100%);
  box-shadow: 0 0 22px rgba(42, 116, 255, 0.16);
  transform-origin: left center;
}

.process-pulse {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--blue) 0%, var(--pink) 100%);
  box-shadow: 0 0 0 10px rgba(42, 116, 255, 0.08);
  animation: processPulse 2.8s ease-in-out infinite;
}

.process-pulse-one { left: 0%; }
.process-pulse-two { left: 25%; }
.process-pulse-three { left: 50%; }
.process-pulse-four { left: 75%; }
.process-pulse-five { left: 100%; }

.process-pulse-two { animation-delay: 0.24s; }
.process-pulse-three { animation-delay: 0.48s; }
.process-pulse-four { animation-delay: 0.72s; }
.process-pulse-five { animation-delay: 0.96s; }

.process-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.process-card {
  position: relative;
  min-height: 280px;
  padding: 24px 22px 20px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(42, 116, 255, 0.12);
  box-shadow: 0 22px 52px rgba(56, 114, 224, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 62px rgba(56, 114, 224, 0.16);
  border-color: rgba(42, 116, 255, 0.18);
}

.process-card:nth-child(odd) {
  margin-bottom: 184px;
}

.process-card:nth-child(even) {
  margin-top: 184px;
}

.process-card::before {
  content: "";
  position: absolute;
  left: 40px;
  width: 2px;
  height: 92px;
  background: linear-gradient(180deg, rgba(42, 116, 255, 0.24), rgba(255, 95, 162, 0.1));
}

.process-card:nth-child(odd)::before {
  top: 100%;
}

.process-card:nth-child(even)::before {
  bottom: 100%;
}

.process-card::after {
  content: "";
  position: absolute;
  left: 33px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--pink) 100%);
  box-shadow: 0 0 0 8px rgba(42, 116, 255, 0.08);
}

.process-card:nth-child(odd)::after {
  top: calc(100% + 84px);
  transform: translateY(-50%);
}

.process-card:nth-child(even)::after {
  bottom: calc(100% + 84px);
  transform: translateY(50%);
}

.process-card[data-tone="blue"] {
  background:
    radial-gradient(circle at top right, rgba(115, 181, 255, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.9);
}

.process-card[data-tone="sky"] {
  background:
    radial-gradient(circle at top right, rgba(143, 230, 220, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.9);
}

.process-card[data-tone="violet"] {
  background:
    radial-gradient(circle at top right, rgba(180, 162, 255, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.9);
}

.process-card[data-tone="pink"] {
  background:
    radial-gradient(circle at top right, rgba(255, 95, 162, 0.14), transparent 34%),
    rgba(255, 255, 255, 0.9);
}

.process-card[data-tone="teal"] {
  background:
    radial-gradient(circle at top right, rgba(115, 181, 255, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.9);
}

.process-step-index {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(42, 116, 255, 0.08);
  color: var(--blue);
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.process-icon {
  position: relative;
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(234, 243, 255, 0.84));
  border: 1px solid rgba(42, 116, 255, 0.12);
  box-shadow: 0 16px 28px rgba(42, 116, 255, 0.08);
  color: var(--blue);
  animation: processFloat 4.6s ease-in-out infinite;
}

.process-card:nth-child(even) .process-icon {
  animation-duration: 5.2s;
}

.process-icon::before,
.process-icon::after {
  content: "";
  position: absolute;
}

.glyph-receive::before,
.glyph-receive::after {
  width: 22px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 6px;
  background: rgba(95, 166, 255, 0.06);
}

.glyph-receive::before {
  top: 24px;
  left: 18px;
}

.glyph-receive::after {
  top: 18px;
  left: 24px;
  background: rgba(255, 255, 255, 0.92);
}

.glyph-analysis::before {
  top: 16px;
  left: 16px;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.glyph-analysis::after {
  right: 16px;
  bottom: 16px;
  width: 16px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transform: rotate(45deg);
}

.glyph-edit::before {
  top: 18px;
  left: 17px;
  width: 30px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  box-shadow: 0 10px 0 currentColor, 0 20px 0 currentColor;
}

.glyph-edit::after {
  top: 13px;
  left: 21px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 14px 10px 0 currentColor, 4px 20px 0 currentColor;
}

.glyph-check::before {
  left: 19px;
  top: 24px;
  width: 20px;
  height: 10px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg);
}

.glyph-check::after {
  inset: 14px;
  border-radius: 16px;
  border: 2px solid rgba(42, 116, 255, 0.18);
}

.glyph-delivery::before {
  top: 26px;
  left: 18px;
  width: 24px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.glyph-delivery::after {
  top: 16px;
  right: 15px;
  width: 14px;
  height: 14px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.process-card h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.36;
}

.process-card p {
  margin: 14px 0 0;
  line-height: 1.72;
  color: var(--muted);
}

.process-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.process-tags span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(42, 116, 255, 0.06);
  color: rgba(15, 33, 71, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-stage {
  padding: 30px 0 100px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  padding: 38px;
  border-radius: 40px;
  background:
    radial-gradient(circle at top right, rgba(22, 104, 255, 0.3), transparent 26%),
    radial-gradient(circle at bottom left, rgba(255, 62, 147, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(232, 244, 255, 0.92));
  border: 1px solid rgba(17, 101, 255, 0.14);
  box-shadow: var(--shadow);
}

.contact-matrix {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(42, 116, 255, 0.12);
}

.contact-matrix a:not(.button) {
  font-size: 1.14rem;
  font-weight: 700;
}

.contact-details {
  display: grid;
  gap: 14px;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 6px;
}

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

.contact-field span,
.contact-status {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(42, 116, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font: inherit;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.contact-field textarea {
  min-height: 136px;
  resize: vertical;
}

.contact-field input:focus-visible,
.contact-field textarea:focus-visible {
  outline: none;
  border-color: rgba(22, 104, 255, 0.34);
  box-shadow: 0 0 0 4px rgba(22, 104, 255, 0.08);
  background: #ffffff;
}

.contact-field input[aria-invalid="true"],
.contact-field textarea[aria-invalid="true"] {
  border-color: rgba(223, 54, 113, 0.42);
  box-shadow: 0 0 0 4px rgba(223, 54, 113, 0.08);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.contact-status {
  margin: 0;
  min-height: 1.4em;
}

.contact-status.is-success {
  color: #16744c;
}

.contact-status.is-error {
  color: #bf285d;
}

.contact-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 36px;
}

@keyframes glide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes processFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes processPulse {
  0%, 100% {
    box-shadow: 0 0 0 8px rgba(42, 116, 255, 0.08);
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(255, 95, 162, 0.06);
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@media (max-width: 1100px) {
  .hero-shell,
  .sticky-stage,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

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

  .experience-copy,
  .experience-card.large {
    grid-column: 1 / -1;
  }

  .hero-title {
    max-width: 10ch;
  }

  .showcase-stack {
    min-height: 620px;
  }

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

  .workflow-steps::before {
    display: none;
  }

  .panel-a {
    grid-column: 1 / 9;
  }

  .panel-b {
    grid-column: 6 / 13;
  }

  .panel-c {
    grid-column: 2 / 10;
  }

  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: span 6;
    min-height: 320px;
  }
}

@media (max-width: 760px) {
  .topbar,
  .hero-shell,
  .spectrum-block,
  .motion-showcase,
  .compare-section,
  .gallery-section,
  .experience-grid,
  .workflow-rail,
  .contact-stage,
  .footer,
  .ribbon-band {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .topbar {
    top: 10px;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 28px;
    gap: 12px;
    padding: 14px 16px;
  }

  .nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav a {
    font-size: 0.88rem;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .brand-mark {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .brand-wordmark {
    width: clamp(118px, 34vw, 156px);
  }

  .topbar .nav-actions {
    width: 100%;
    justify-content: center;
  }

  .topbar .button-ghost {
    width: 100%;
  }

  .hero-shell {
    padding-top: 44px;
    min-height: auto;
    gap: 24px;
  }

  .hero-title {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
    max-width: 10ch;
  }

  .hero-text,
  .section-text {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .signal-grid,
  .compare-grid,
  .experience-grid,
  .workflow-steps {
    grid-template-columns: 1fr;
  }

  .hero-canvas {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
  }

  .depth-layer,
  .hero-frame,
  .hero-glass {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    transform: none;
  }

  .hero-frame-main {
    min-height: 360px;
  }

  .hero-frame-side {
    min-height: 180px;
  }

  .hero-glass-top,
  .hero-glass-bottom {
    width: auto;
    min-height: 0;
  }

  .spectrum-track {
    grid-template-columns: 1fr;
  }

  .gallery-masonry {
    grid-template-columns: 1fr;
  }

  .showcase-stack {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .showcase-panel {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }

  .panel-a {
    min-height: 360px;
  }

  .panel-b {
    min-height: 300px;
  }

  .panel-c {
    min-height: 260px;
  }

  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    min-height: 280px;
  }

  .workflow-steps::before {
    display: none;
  }

  .orbit-ui {
    width: min(100%, 300px);
  }

  .orbit-one {
    left: 30%;
  }

  .orbit-three {
    left: 32%;
  }

  .contact-panel {
    padding: 24px;
  }

  .contact-matrix {
    padding: 18px;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 1100px) {
  .process-intro {
    grid-template-columns: 1fr;
  }

  .process-stage {
    min-height: auto;
    padding: 32px 20px 28px;
  }

  .process-track {
    left: 28px;
    right: auto;
    top: 34px;
    bottom: 34px;
    width: 2px;
    height: auto;
    transform: none;
  }

  .process-track-progress {
    transform-origin: top center;
  }

  .process-pulse {
    left: 50%;
  }

  .process-pulse-one { top: 0%; }
  .process-pulse-two { top: 25%; }
  .process-pulse-three { top: 50%; }
  .process-pulse-four { top: 75%; }
  .process-pulse-five { top: 100%; }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-left: 42px;
  }

  .process-card:nth-child(odd),
  .process-card:nth-child(even) {
    margin: 0;
  }

  .process-card::before {
    top: 40px;
    bottom: auto;
    left: -42px;
    width: 42px;
    height: 2px;
    background: linear-gradient(90deg, rgba(42, 116, 255, 0.24), rgba(255, 95, 162, 0.12));
  }

  .process-card::after,
  .process-card:nth-child(odd)::after,
  .process-card:nth-child(even)::after {
    top: 33px;
    bottom: auto;
    left: -50px;
    transform: none;
  }
}

@media (max-width: 760px) {
  .process-section {
    width: min(calc(100% - 20px), var(--max-width));
    padding: 78px 0 90px;
  }

  .process-stage {
    padding: 26px 16px 20px;
    border-radius: 34px;
  }

  .process-track {
    left: 22px;
    top: 28px;
    bottom: 24px;
  }

  .process-steps {
    padding-left: 34px;
  }

  .process-card {
    min-height: auto;
    padding: 22px 18px 18px;
  }

  .process-card::before {
    left: -34px;
    width: 34px;
  }

  .process-card::after,
  .process-card:nth-child(odd)::after,
  .process-card:nth-child(even)::after {
    left: -42px;
  }
}
