:root {
  --bg: #06070a;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f4f7fb;
  --muted: #b8c0d4;
  --accent: #ee2b78;
  --accent-2: #ff73ab;
  --accent-3: #ffb9d3;
  --accent-deep: #c9155d;
  --shadow: 0 28px 100px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scrollbar-color: rgba(255, 115, 171, 0.72) rgba(255, 255, 255, 0.05);
  scrollbar-width: thin;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0.8rem;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background:
    linear-gradient(180deg, rgba(255, 185, 211, 0.95), rgba(238, 43, 120, 0.88));
  border: 0.16rem solid rgba(7, 8, 12, 0.85);
  border-radius: 999px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 12px rgba(238, 43, 120, 0.12);
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(180deg, rgba(255, 205, 223, 0.98), rgba(255, 115, 171, 0.95));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 0 16px rgba(238, 43, 120, 0.18);
}

html::-webkit-scrollbar-thumb:active,
body::-webkit-scrollbar-thumb:active {
  background:
    linear-gradient(180deg, rgba(255, 219, 232, 1), rgba(201, 21, 93, 0.98));
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 115, 171, 0.14), transparent 32%),
    radial-gradient(circle at 85% 15%, rgba(238, 43, 120, 0.12), transparent 24%),
    radial-gradient(circle at bottom center, rgba(201, 21, 93, 0.12), transparent 28%),
    var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 78px 78px;
  background-position: 0 0;
  mask-image: radial-gradient(circle at center, black 44%, transparent 100%);
  pointer-events: none;
  will-change: opacity;
}

body::after {
  content: none;
}

html.cursor-enabled,
html.cursor-enabled body,
html.cursor-enabled a,
html.cursor-enabled button,
html.cursor-enabled .hero-panel,
html.cursor-enabled .hero-case,
html.cursor-enabled .method-card,
html.cursor-enabled .service-card,
html.cursor-enabled .showcase-card,
html.cursor-enabled .experience-card,
html.cursor-enabled .stack-card,
html.cursor-enabled .contact-card,
html.cursor-enabled .footer-cta a,
html.cursor-enabled .mini-form button {
  cursor: none !important;
}

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

.custom-cursor {
  position: fixed;
  left: 0;
  top: 0;
  width: 1.8rem;
  height: 1.8rem;
  margin-left: -0.9rem;
  margin-top: -0.9rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 185, 211, 0.55);
  background: rgba(238, 43, 120, 0.08);
  backdrop-filter: blur(8px);
  box-shadow:
    0 0 0 0 rgba(238, 43, 120, 0),
    0 0 26px rgba(238, 43, 120, 0.12);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate3d(-100px, -100px, 0) scale(1);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.custom-cursor-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.34rem;
  height: 0.34rem;
  margin-left: -0.17rem;
  margin-top: -0.17rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff, var(--accent-3));
  box-shadow: 0 0 14px rgba(255, 185, 211, 0.45);
}

.custom-cursor.is-hover {
  background: rgba(238, 43, 120, 0.14);
  border-color: rgba(255, 185, 211, 0.82);
  box-shadow:
    0 0 0 0 rgba(238, 43, 120, 0),
    0 0 32px rgba(238, 43, 120, 0.22);
}

.custom-cursor.is-click {
  background: rgba(255, 185, 211, 0.16);
  border-color: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 0 0 0.55rem rgba(238, 43, 120, 0.08),
    0 0 42px rgba(238, 43, 120, 0.28);
}

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(50px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.ambient-one {
  top: 8%;
  left: -8%;
  width: 18rem;
  height: 18rem;
  background: rgba(255, 115, 171, 0.16);
}

.ambient-two {
  top: 24%;
  right: -6%;
  width: 20rem;
  height: 20rem;
  background: rgba(238, 43, 120, 0.18);
}

.ambient-three {
  bottom: 6%;
  left: 22%;
  width: 18rem;
  height: 18rem;
  background: rgba(201, 21, 93, 0.15);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding-bottom: 5rem;
}

.site-header {
  --header-top-gap: 1rem;
  --header-bg-scale: 1;
  --header-bg-radius: 999px;
  --header-bg-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  padding-top: var(--header-top-gap);
  will-change: transform;
}

.site-header-bg {
  position: absolute;
  top: var(--header-top-gap);
  left: 50%;
  width: min(100%, 1120px);
  height: calc(100% - var(--header-top-gap));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--header-bg-radius);
  background: linear-gradient(180deg, rgba(10, 12, 18, 0.84), rgba(10, 12, 18, 0.58));
  box-shadow: var(--header-bg-shadow);
  backdrop-filter: blur(22px);
  transform: translateX(-50%) scaleX(var(--header-bg-scale));
  transform-origin: center top;
  pointer-events: none;
  will-change: transform, border-radius, box-shadow;
}

.site-header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 0.95rem 1.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: "Manrope", sans-serif;
  overflow: visible;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.95rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: white;
  font-family: "Syne", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 0 34px rgba(238, 43, 120, 0.35);
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  overflow: visible;
}

.brand-name {
  font-family: "Syne", sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: lowercase;
  line-height: 1.08;
  padding-top: 0.08rem;
}

.brand-tagline {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(244, 247, 251, 0.72);
  line-height: 1.15;
}

.site-nav {
  display: flex;
  gap: 1.3rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--text);
}

.hero {
  position: relative;
  min-height: calc(100vh - 88px);
  padding: 2.5rem 0 3.5rem;
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.animate-headline,
.animate-copy,
.animate-card {
  will-change: transform, opacity, filter;
}

.hero h1,
.section-heading h2,
.manifesto h2,
.sticky-copy h2,
.closing-panel h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Syne", sans-serif;
  line-height: 0.92;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(2.3rem, 4.4vw, 4.3rem);
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(120deg, var(--accent-2), var(--accent-3));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-text,
.manifesto-text p,
.service-card p,
.sticky-copy p,
.showcase-card p,
.method-step p,
.stack-card p,
.closing-panel p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.02rem;
}

.hero-text {
  max-width: 58ch;
  margin: 1.45rem 0 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0 1.35rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
  color: white;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
}

.signal-card,
.mini-panel,
.service-card,
.showcase-card,
.method-step,
.stack-card,
.contact-card,
.mini-form,
.closing-panel {
  background: linear-gradient(180deg, var(--surface-strong), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.signal-label,
.service-index,
.showcase-tag,
.method-step span,
.contact-card span,
.mini-panel span {
  display: inline-block;
  color: var(--accent-2);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-card strong,
.mini-panel strong {
  display: block;
  margin-top: 0.9rem;
  font-size: 1.08rem;
  line-height: 1.35;
}

.marquee {
  overflow: hidden;
  margin: 0.75rem 0 0;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-word {
  position: absolute;
  top: 3.4rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Syne", sans-serif;
  font-size: clamp(5.2rem, 21vw, 15rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.84;
  color: rgba(238, 43, 120, 0.11);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

.hero-gallery {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 0;
  padding-top: 5.4rem;
  margin-bottom: 4.5rem;
  transform-origin: center top;
}

.hero-panel {
  position: relative;
  cursor: pointer;
  transform-origin: center center;
  transition: z-index 0s linear 0.2s;
}

.hero-panel-left {
  width: min(28vw, 22rem);
  transform: translate(2.8rem, 3.2rem) rotate(-4deg);
  z-index: 1;
}

.hero-panel-center {
  width: min(31vw, 27rem);
  z-index: 3;
}

.hero-panel-right {
  width: min(28vw, 22rem);
  transform: translate(-2.8rem, 3.2rem) rotate(4deg);
  z-index: 2;
}

.hero-panel.is-active {
  z-index: 12 !important;
  transition-delay: 0s;
}

.hero-panel-inner {
  position: relative;
  min-height: 34rem;
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  will-change: transform;
}

.hero-panel-creative {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 20% 18%, rgba(238, 43, 120, 0.24), transparent 28%),
    radial-gradient(circle at 78% 78%, rgba(255, 115, 171, 0.15), transparent 30%),
    #17131a;
}

.hero-panel-main {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.26), transparent 24%),
    radial-gradient(circle at 52% 92%, rgba(255, 115, 171, 0.18), transparent 24%),
    #f1edf3;
}

.hero-panel-tech {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    linear-gradient(90deg, rgba(238, 43, 120, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    #0a1018;
  background-size: auto, 36px 36px, 36px 36px, auto;
}

.hero-badge {
  position: absolute;
  top: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-panel-caption {
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 1.35rem;
  padding: 1rem 1.05rem;
  border-radius: 1.3rem;
  background: rgba(7, 10, 16, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  will-change: transform, opacity;
}

.hero-panel-caption span,
.hero-case-copy span {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.hero-panel-caption strong,
.hero-case-copy strong {
  display: block;
  margin-top: 0.7rem;
  font-family: "Syne", sans-serif;
  font-size: 1.35rem;
  line-height: 1.05;
}

.hero-panel-caption-main {
  background: rgba(18, 22, 31, 0.55);
}

.hero-floating-note {
  position: absolute;
  left: 50%;
  bottom: 10.6rem;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  padding: 0.95rem 1.35rem;
  border-radius: 1.4rem;
  background: rgba(255, 236, 243, 0.94);
  color: var(--accent-deep);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transform: translateX(-50%);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
  will-change: transform, opacity;
}

.hero-floating-note-right {
  background: rgba(255, 223, 235, 0.94);
  color: var(--accent);
}

.hero-floating-note span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-bottom {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.72fr);
  gap: 1.4rem;
  align-items: end;
  margin-top: 0;
  perspective: 1400px;
}

.hero-copy {
  max-width: 48rem;
  padding-right: 1rem;
}

.hero-case {
  --case-glow-x: 50%;
  --case-glow-y: 50%;
  position: relative;
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.3rem;
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(238, 43, 120, 0.96), rgba(201, 21, 93, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  overflow: visible;
  isolation: isolate;
  z-index: 1;
  transform-style: preserve-3d;
  transform-origin: center center;
  will-change: transform, box-shadow;
}

.hero-case::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--case-glow-x) var(--case-glow-y), rgba(255, 255, 255, 0.24), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  opacity: 0.68;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}

.hero-case::after {
  content: "";
  position: absolute;
  inset: -0.7rem;
  border-radius: 2.35rem;
  background: radial-gradient(circle at center, rgba(238, 43, 120, 0.16), transparent 68%);
  filter: blur(16px);
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
}

.hero-case-media {
  position: relative;
  z-index: 2;
  min-height: 13rem;
  border-radius: 1.4rem;
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 255, 255, 0.18), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    linear-gradient(160deg, #ff8cbb, #d91d68);
  transform: translateZ(36px);
  will-change: transform;
}

.hero-case-copy p {
  margin: 0.8rem 0 0;
  color: rgba(244, 247, 251, 0.84);
  line-height: 1.6;
}

.hero-case-copy {
  position: relative;
  z-index: 2;
  transform: translateZ(48px);
  will-change: transform;
}

.hero-case-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  margin-top: 1rem;
  padding: 0 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: white;
  font-weight: 800;
  transform: translateZ(62px);
}

.hero-case-orbit {
  position: absolute;
  inset: -1.25rem;
  pointer-events: none;
  z-index: 3;
  transform: translateZ(82px);
}

.hero-case.is-tilting::after {
  opacity: 0.42;
}

@keyframes heroCaseFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(0.972) rotateZ(-0.8deg);
  }
  50% {
    transform: translate3d(0, -10px, 0) scale(0.982) rotateZ(0.8deg);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(0.972) rotateZ(-0.8deg);
  }
}

@media (hover: hover) and (pointer: fine) {
  .hero-case {
    animation: heroCaseFloat 4.8s ease-in-out infinite;
  }
}

.orbit-ring,
.orbit-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 108%;
  height: 126%;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-11deg);
}

.orbit-ring {
  display: none !important;
}

.orbit-spinner {
  overflow: visible;
  animation: orbitRotate 10s linear infinite;
}

.orbit-dot {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0.92rem;
  height: 0.92rem;
  margin: -0.46rem 0 0 -0.46rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff, var(--accent-3) 45%, var(--accent) 100%);
  box-shadow:
    0 0 0 0.28rem rgba(255, 185, 211, 0.14),
    0 0 20px rgba(238, 43, 120, 0.42);
}

.orbit-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  width: 3.8rem;
  height: 0.28rem;
  transform: translateY(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 185, 211, 0.7), rgba(255, 255, 255, 0.95));
  filter: blur(2px);
  opacity: 0.9;
}

@keyframes orbitRotate {
  from {
    transform: translate(-50%, -50%) rotate(-11deg) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(-11deg) rotate(360deg);
  }
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 2rem;
  padding: 1rem 0;
  color: rgba(244, 247, 251, 0.8);
  font-family: "Syne", sans-serif;
  font-size: 0.98rem;
  text-transform: uppercase;
  animation: marquee 24s linear infinite;
}

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

.section {
  padding: 5.5rem 0 0;
}

.method.section {
  padding: 0;
}

.manifesto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.manifesto h2,
.section-heading h2,
.sticky-copy h2,
.closing-panel h2,
.contact-copy h2 {
  font-size: clamp(2.3rem, 5vw, 4.7rem);
}

.manifesto-text {
  padding-top: 0.35rem;
}

.section-heading {
  max-width: 780px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: 2rem;
}

.visual-story {
  padding-top: 4.5rem;
}

.visual-stack {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-auto-rows: minmax(16rem, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.visual-card {
  display: block;
  position: relative;
  overflow: hidden;
  min-height: 22rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.visual-large {
  min-height: 34rem;
  grid-row: span 2;
  animation: imageIntro 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.visual-small {
  animation: imageIntro 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.visual-stack .visual-card:nth-child(2) {
  animation-delay: 0.16s;
}

.visual-stack .visual-card:nth-child(3) {
  animation-delay: 0.28s;
}

.visual-media {
  position: absolute;
  inset: 0;
  padding: 1.3rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at 20% 20%, rgba(255, 115, 171, 0.24), transparent 34%),
    radial-gradient(circle at 80% 80%, rgba(238, 43, 120, 0.22), transparent 30%),
    #0b0f16;
}

.visual-media-alt {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at 70% 25%, rgba(255, 185, 211, 0.22), transparent 24%),
    radial-gradient(circle at 12% 75%, rgba(238, 43, 120, 0.18), transparent 28%),
    #0b0d12;
}

.visual-media-tech {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    linear-gradient(90deg, rgba(238, 43, 120, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    #090b11;
  background-size: auto, 46px 46px, 46px 46px, auto;
}

.visual-media::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.scanline-canvas {
  position: absolute;
  left: 2rem;
  top: 1.85rem;
  z-index: 0;
  pointer-events: none;
  opacity: 0.94;
  transform-origin: center center;
  filter:
    drop-shadow(0 0 18px color-mix(in srgb, var(--scan-color, rgba(255, 185, 211, 0.8)) 18%, transparent))
    drop-shadow(0 0 44px color-mix(in srgb, var(--scan-color, rgba(255, 185, 211, 0.8)) 10%, transparent));
  will-change: transform, opacity, filter;
}

.scanline-stage {
  display: block;
  width: var(--scan-size, 13.5rem);
  height: auto;
  aspect-ratio: var(--scan-ratio, 1 / 1);
}

.scanline-canvas-creative {
  --scan-color: rgba(255, 176, 222, 0.94);
  --scan-size: 23.5rem;
  --scan-ratio: 1 / 1;
  left: 0.9rem;
  top: 0.55rem;
}

.scanline-canvas-product {
  --scan-color: rgba(255, 234, 244, 0.95);
  --scan-size: 18.25rem;
  --scan-ratio: 4 / 3;
  left: 0.65rem;
  top: 0.55rem;
}

.scanline-canvas-tech {
  --scan-color: rgba(255, 151, 210, 0.88);
  --scan-size: 18.5rem;
  --scan-ratio: 4 / 3;
  left: 0.35rem;
  top: 0.4rem;
}

@keyframes imageIntro {
  from {
    opacity: 0;
    transform: translateY(48px) scale(0.96);
    clip-path: inset(0 0 100% 0 round 30px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    clip-path: inset(0 0 0 0 round 30px);
  }
}

.visual-orb {
  position: absolute;
  top: 14%;
  right: 10%;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 158, 214, 0.55), transparent 68%);
  filter: blur(10px);
}

.visual-screen {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  z-index: 2;
  padding: 1.2rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 10, 16, 0.62);
  backdrop-filter: blur(14px);
}

.visual-screen span {
  display: inline-block;
  color: var(--accent-2);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visual-screen strong {
  display: block;
  margin-top: 0.9rem;
  max-width: 14ch;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.02;
}

.service-card,
.showcase-card,
.method-step,
.stack-card {
  padding: 1.45rem;
}

.service-card h3,
.showcase-card h3,
.method-step h3,
.stack-card h3 {
  margin: 0.9rem 0 0.55rem;
  font-size: 1.38rem;
}

.split-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 1.5rem;
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 5.8rem;
}

.showcase-list {
  display: grid;
  gap: 1rem;
}

.showcase-card {
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.08)),
    radial-gradient(circle at top right, rgba(255, 115, 171, 0.16), transparent 30%),
    radial-gradient(circle at bottom left, rgba(238, 43, 120, 0.14), transparent 28%);
}

.method {
  min-height: 220vh;
  display: block;
  position: relative;
}

.method-pin {
  position: relative;
  width: 100%;
  min-height: 220vh;
}

.method-stage {
  position: sticky;
  top: 0;
  min-height: 100vh;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  z-index: 3;
}

.method-intro {
  position: relative;
  z-index: 1;
  max-width: 54rem;
  text-align: center;
  margin: 0 auto;
  transform: none;
  will-change: transform, opacity, filter;
}

.method-intro h2 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(2.8rem, 6.8vw, 5.2rem);
  line-height: 0.98;
}

.method-cards {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  transform: none;
}

.method-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(31rem, 62vw);
  min-height: 24rem;
  padding: 1.7rem;
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top right, rgba(238, 43, 120, 0.14), transparent 28%),
    rgba(15, 16, 22, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translate(-50%, -50%) translateY(0) rotate(-3deg) scale(0.96);
  will-change: transform, opacity;
}

.method-card:nth-child(2) {
  transform: translate(-50%, -50%) translateY(0) rotate(3deg) scale(0.95);
}

.method-card:nth-child(3) {
  transform: translate(-50%, -50%) translateY(0) rotate(-2deg) scale(0.94);
}

.method-card:nth-child(4) {
  transform: translate(-50%, -50%) translateY(0) rotate(2deg) scale(0.93);
}

.method-card.is-visible {
  opacity: 1;
}

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

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

.experience-card {
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at top right, rgba(238, 43, 120, 0.12), transparent 26%);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.experience-card h3 {
  margin: 0.9rem 0 0.6rem;
  font-size: 1.4rem;
}

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

.method-step span {
  color: var(--accent);
}

.closing-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(1.8rem, 5vw, 3rem);
}

.closing-panel::after {
  content: "";
  position: absolute;
  inset: auto -12% -26% auto;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238, 43, 120, 0.22), transparent 70%);
}

.contact {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.25rem;
  align-items: center;
  padding-bottom: 2rem;
}

.contact-stack {
  display: grid;
  gap: 1rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  min-height: 14rem;
  padding: 1.5rem;
}

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

.site-footer {
  margin-top: 5rem;
  padding: 2rem 0 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: end;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: white;
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  box-shadow: 0 0 34px rgba(238, 43, 120, 0.28);
}

.footer-brand strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.footer-brand p,
.footer-cta p,
.footer-grid p,
.footer-bottom {
  color: var(--muted);
}

.footer-brand p {
  margin: 0.35rem 0 0;
}

.footer-cta {
  justify-self: end;
  max-width: 34rem;
}

.footer-cta p {
  margin: 0 0 0.8rem;
  line-height: 1.7;
}

.footer-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

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

.footer-grid > div {
  padding: 1.25rem;
  border-radius: 1.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-label {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--accent-2);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid p {
  margin: 0;
  line-height: 1.75;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.92rem;
}

.mini-form {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
}

.mini-form label {
  display: grid;
  gap: 0.45rem;
}

.mini-form span {
  color: var(--muted);
  font-size: 0.88rem;
}

.mini-form input {
  width: 100%;
  min-height: 3.2rem;
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
}

.mini-form input::placeholder {
  color: rgba(184, 192, 212, 0.58);
}

.mini-form button {
  width: 100%;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 720ms ease, transform 720ms ease;
}

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

.visual-screen {
  animation: screenIntro 0.8s ease both;
  animation-delay: 0.35s;
}

.visual-stack .visual-card:nth-child(2) .visual-screen {
  animation-delay: 0.5s;
}

.visual-stack .visual-card:nth-child(3) .visual-screen {
  animation-delay: 0.62s;
}

@keyframes screenIntro {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .hero,
  .manifesto,
  .split-showcase,
  .contact,
  .service-grid,
  .visual-stack,
  .experience-grid,
  .stack-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 2.7rem;
  }

  .hero-word {
    top: 3rem;
    font-size: min(20vw, 9rem);
  }

  .hero-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: 4rem;
  }

  .hero-panel-left,
  .hero-panel-center,
  .hero-panel-right {
    width: 100%;
    transform: none;
  }

  .hero-panel-inner {
    min-height: 24rem;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .scanline-canvas {
    left: 1.45rem;
    top: 1.55rem;
  }

  .scanline-stage {
    width: 11.1rem;
  }

  .method,
  .method-pin {
    min-height: auto;
    height: auto;
  }

  .method-stage {
    position: static;
    min-height: auto;
    height: auto;
    display: block;
    width: auto;
  }

  .method-cards {
    position: relative;
    inset: auto;
    display: grid;
    gap: 1rem;
    min-height: auto;
    margin-top: 1.5rem;
    pointer-events: auto;
    transform: none;
  }

  .method-card {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    min-height: auto;
    opacity: 1;
    transform: none !important;
  }

  .sticky-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 1.2rem, 100%);
  }

  .site-header {
    --header-top-gap: 0;
  }

  .site-header-bg {
    top: 0;
    height: 100%;
    border-radius: 28px;
    transform: translateX(-50%) scaleX(1);
  }

  .site-header-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .hero-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: 3.1rem;
  }

  .hero-case {
    grid-template-columns: 1fr;
  }

  .hero-case-media {
    min-height: 10rem;
  }

  .footer-top,
  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-top {
    display: grid;
  }

  .footer-cta {
    justify-self: start;
  }

  .footer-bottom {
    display: grid;
  }

  .section {
    padding-top: 4.2rem;
  }
}
