:root {
  --bg: #080808;
  --panel: #121212;
  --panel-2: #181818;
  --line: rgba(255, 255, 255, 0.13);
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f4f4f4;
  --muted: rgba(244, 244, 244, 0.58);
  --faint: rgba(244, 244, 244, 0.36);
  --purple: #6e35ff;
  --green: #8dffbf;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -8%, rgba(92, 92, 96, 0.36), transparent 32rem),
    radial-gradient(circle at 12% 24rem, rgba(44, 47, 55, 0.34), transparent 30rem),
    radial-gradient(circle at 88% 60rem, rgba(62, 62, 66, 0.28), transparent 34rem),
    linear-gradient(180deg, #111 0%, #080808 34rem, #0b0b0c 72rem, #070707 100%);
  font-family:
    Inter,
    Pretendard,
    "Noto Sans KR",
    "Apple SD Gothic Neo",
    "Malgun Gothic",
    system-ui,
    sans-serif;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body,
.site-header,
.hero-panel,
.visual-backplate,
.mockup-card,
.logo-strip,
.stacked-copy article,
.panel-card,
.territory-board,
.territory-board span,
.territory-note,
.method-visual,
.image-feature,
.service-grid article,
.project-card,
.project-phone,
.compare-card,
.faq-card,
.case-media-main,
.case-panel,
.case-media-card,
.case-detail-grid article,
.site-footer,
.footer-brand-block,
.footer-contact-panel,
.footer-link-row > div,
.theme-toggle,
.theme-toggle-track,
.button.ghost,
.mega-logo,
.mega-logo img {
  transition:
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease,
    opacity 220ms ease,
    filter 220ms ease;
}

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

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

main[id],
section[id] {
  scroll-margin-top: 96px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 18px;
  z-index: 40;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #fff;
  background: rgba(8, 8, 8, 0.94);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.skip-link:focus-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid rgba(141, 255, 191, 0.78);
  outline-offset: 3px;
}

:focus-visible:is(.button, .nav-cta, .theme-toggle, .brand, .faq-card summary, .nav-links a, .footer-mail-button) {
  box-shadow: 0 0 0 4px rgba(141, 255, 191, 0.12);
}

html[data-js="true"] body.motion-safe [data-reveal] {
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, var(--reveal-distance, 22px), 0);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

html[data-js="true"] body.motion-safe [data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 380ms;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

::view-transition-old(root) {
  animation-name: theme-dissolve-out;
}

::view-transition-new(root) {
  animation-name: theme-dissolve-in;
}

@keyframes theme-dissolve-out {
  from {
    opacity: 1;
    filter: blur(0);
  }

  to {
    opacity: 0;
    filter: blur(8px);
  }
}

@keyframes theme-dissolve-in {
  from {
    opacity: 0;
    filter: blur(8px);
  }

  to {
    opacity: 1;
    filter: blur(0);
  }
}

.site-header {
  position: fixed;
  top: 12px;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  width: min(1500px, calc(100% - 64px));
  min-height: 64px;
  margin: 0 auto;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text);
  background: linear-gradient(180deg, rgba(18, 18, 19, 0.72), rgba(7, 7, 8, 0.58));
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 78px;
  filter: brightness(0) invert(1);
}

.brand span {
  color: var(--faint);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 560;
}

.nav-links a,
.nav-cta,
.button {
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

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

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 760;
  line-height: 1;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
}

.theme-toggle-track {
  position: relative;
  width: 32px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.theme-toggle-track i {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
  transition: transform 220ms ease, background 220ms ease;
}

.theme-toggle-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
}

.nav-cta,
.button.primary {
  color: #fff;
  background: linear-gradient(135deg, #5020de, var(--purple));
}

.button.ghost {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.nav-cta::after,
.button::after,
.theme-toggle::after {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(255, 255, 255, 0.18), transparent 38%);
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
  transform: scale(0.94);
  pointer-events: none;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

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

.nav-cta:hover::after,
.button:hover::after,
.theme-toggle:hover::after,
.nav-cta:focus-visible::after,
.button:focus-visible::after,
.theme-toggle:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}

.nav-cta:active,
.button:active,
.theme-toggle:active {
  transform: translateY(0) scale(0.985);
}

.section-shell {
  width: min(1500px, calc(100% - 64px));
  margin: 0 auto;
}

.hero {
  padding-top: 78px;
}

.hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  gap: clamp(34px, 6vw, 96px);
  min-height: 430px;
  padding: clamp(58px, 7vw, 92px) clamp(28px, 5vw, 48px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 0%, rgba(94, 94, 98, 0.22), transparent 25rem),
    radial-gradient(circle at 80% 42%, rgba(58, 60, 66, 0.22), transparent 22rem),
    linear-gradient(90deg, rgba(18, 18, 18, 0.98), rgba(18, 18, 18, 0.78)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

.hero-panel::after {
  position: absolute;
  right: 36%;
  bottom: 34px;
  left: 48px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--line), transparent);
}

.eyebrow {
  margin: 0;
  color: var(--faint);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.2;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  max-width: 820px;
  margin: 24px 0 0;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 520;
  line-height: 1.04;
  letter-spacing: 0;
}

.line {
  display: block;
}

.hero-copy p:not(.eyebrow) {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-visual {
  position: relative;
  min-height: 390px;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.visual-backplate {
  position: absolute;
  inset: 24px 16px 18px 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background:
    radial-gradient(circle at 62% 28%, rgba(125, 126, 134, 0.2), transparent 14rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015)),
    rgba(12, 12, 13, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 28px 100px rgba(0, 0, 0, 0.34);
}

.visual-backplate::before {
  position: absolute;
  inset: -40%;
  content: "";
  background: conic-gradient(from 180deg, transparent, rgba(255, 255, 255, 0.08), transparent 24%);
  animation: slowSweep 12s linear infinite;
}

.visual-backplate::after {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 48%, #000, transparent 78%);
}

.backplate-topline {
  position: absolute;
  top: 18px;
  right: 22px;
  left: 22px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.36);
  font-size: 10px;
  font-weight: 780;
}

.backplate-topline i {
  width: 82px;
  height: 1px;
  background: linear-gradient(90deg, rgba(141, 255, 191, 0.5), transparent);
}

.signal-grid {
  position: absolute;
  right: 30px;
  bottom: 28px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 34px);
  gap: 8px;
  opacity: 0.42;
}

.signal-grid span {
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.04);
}

.signal-grid span:nth-child(3n) {
  background: rgba(141, 255, 191, 0.12);
}

.mockup-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    #0f0f0f;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.42);
  transition:
    transform 320ms ease,
    border-color 320ms ease,
    box-shadow 320ms ease;
  animation: floatCard 7s ease-in-out infinite;
}

.hero-visual:hover .mockup-card {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.55);
}

.hero-visual:hover .dashboard-card {
  transform: translate3d(-8px, -8px, 28px);
}

.hero-visual:hover .phone-card {
  transform: translate3d(8px, -10px, 44px);
}

.hero-visual:hover .image-card {
  transform: translate3d(-4px, 8px, 20px) scale(1.02);
}

.hero-visual:hover .legal-card,
.hero-visual:hover .kpi-card,
.hero-visual:hover .mini-feed {
  transform: translate3d(0, -6px, 30px);
}

.mockup-card span,
.mockup-card em {
  color: var(--faint);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.dashboard-card {
  top: 32px;
  right: 82px;
  width: 284px;
  height: 136px;
  padding: 18px;
  animation-delay: -1.2s;
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 7px;
  height: 46px;
  margin-top: 18px;
}

.chart-bars i {
  display: block;
  width: 17px;
  border-radius: 2px 2px 0 0;
  background: rgba(141, 255, 191, 0.72);
  transform-origin: bottom;
  animation: barPulse 2.8s ease-in-out infinite;
}

.chart-bars i:nth-child(1) {
  height: 38%;
  animation-delay: 0s;
}

.chart-bars i:nth-child(2) {
  height: 62%;
  animation-delay: 0.18s;
}

.chart-bars i:nth-child(3) {
  height: 48%;
  animation-delay: 0.36s;
}

.chart-bars i:nth-child(4) {
  height: 82%;
  animation-delay: 0.54s;
}

.chart-bars i:nth-child(5) {
  height: 58%;
  animation-delay: 0.72s;
}

.chart-bars i:nth-child(6) {
  height: 72%;
  animation-delay: 0.9s;
}

.chart-line {
  height: 1px;
  margin-top: 12px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.58), transparent);
  animation: lineScan 3.6s ease-in-out infinite;
}

.phone-card {
  top: 116px;
  right: 10px;
  display: grid;
  align-content: start;
  width: 138px;
  height: 244px;
  padding: 18px 14px;
  border-radius: 18px;
  background:
    linear-gradient(160deg, #f7f7f7, #dedede),
    #ededed;
  color: #111;
  animation-delay: -2.4s;
}

.phone-card span,
.phone-card em {
  color: rgba(0, 0, 0, 0.5);
}

.phone-card strong {
  margin-top: 42px;
  color: #111;
  font-size: 54px;
  font-weight: 820;
  line-height: 0.9;
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 46px;
  height: 10px;
  border-radius: 999px;
  background: #111;
  transform: translateX(-50%);
}

.image-card {
  right: 178px;
  bottom: 18px;
  width: 312px;
  height: 194px;
  animation-delay: -3.1s;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.84;
}

.legal-card {
  right: 396px;
  top: 132px;
  width: 168px;
  height: 98px;
  padding: 14px;
  animation-delay: -0.5s;
}

.legal-card strong {
  display: block;
  margin-top: 20px;
  font-size: 17px;
}

.kpi-card {
  width: 128px;
  height: 84px;
  padding: 13px;
}

.kpi-card strong {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 22px;
  font-weight: 650;
}

.kpi-one {
  top: 246px;
  right: 438px;
  animation-delay: -4s;
}

.kpi-two {
  right: 202px;
  top: 202px;
  animation-delay: -5s;
}

.mini-feed {
  right: 60px;
  bottom: 26px;
  width: 152px;
  height: 78px;
  padding: 13px;
  animation-delay: -3.8s;
}

.mini-feed div {
  display: grid;
  gap: 7px;
  margin-top: 14px;
}

.mini-feed i {
  display: block;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.35), transparent);
}

.mini-feed i:nth-child(2) {
  width: 68%;
}

.mini-feed i:nth-child(3) {
  width: 82%;
}

@keyframes floatCard {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -8px;
  }
}

@keyframes barPulse {
  0%,
  100% {
    transform: scaleY(0.78);
    opacity: 0.68;
  }

  50% {
    transform: scaleY(1.08);
    opacity: 1;
  }
}

@keyframes lineScan {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleX(0.72);
    transform-origin: left;
  }

  50% {
    opacity: 0.86;
    transform: scaleX(1);
  }
}

@keyframes slowSweep {
  to {
    transform: rotate(360deg);
  }
}

.logo-strip {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 26px 0;
  overflow: hidden;
  border-block: 1px solid var(--line-soft);
  color: rgba(255, 255, 255, 0.68);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent 20%, rgba(255, 255, 255, 0.025)),
    rgba(8, 8, 8, 0.86);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ticker-track {
  display: flex;
  flex: 0 0 auto;
  gap: clamp(42px, 5.6vw, 108px);
  align-items: center;
  min-width: max-content;
  padding-right: clamp(42px, 5.6vw, 108px);
  animation: tickerMove 34s linear infinite;
  will-change: transform;
}

.ticker-track.reverse {
  animation-direction: reverse;
  animation-duration: 38s;
}

.logo-strip span {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.64);
  font-size: clamp(13px, 0.95vw, 16px);
  font-weight: 560;
  line-height: 1;
  opacity: 0.82;
  white-space: nowrap;
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@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;
  }

  .ticker-track {
    animation: none;
  }
}

.split-section,
.method-section,
.proof-section,
.services-section,
.agency-panel,
.project-section,
.compare-section,
.faq-section {
  padding: clamp(96px, 12vw, 170px) 0;
}

.services-section,
.compare-section,
.proof-section,
.faq-section,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 980px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(48px, 8vw, 120px);
}

.section-label h2,
.method-copy h2,
.panel-card h2,
.cta-section h2 {
  margin: 18px 0 0;
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 480;
  line-height: 1.12;
  letter-spacing: 0;
  max-width: 760px;
}

.section-label .button {
  margin-top: 34px;
}

.stacked-copy {
  display: grid;
  gap: 16px;
}

.stacked-copy article {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  column-gap: 22px;
  min-height: 158px;
  padding: 26px 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(12, 12, 13, 0.78);
  transition:
    border-color 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

.stacked-copy article::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  content: "";
  background: linear-gradient(180deg, #815dff, rgba(111, 232, 178, 0.7));
  opacity: 0.72;
}

.stacked-copy article::after {
  position: absolute;
  inset: -40% -12% auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(104, 74, 255, 0.16), transparent 66%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.stacked-copy article:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.024)),
    rgba(16, 16, 17, 0.88);
}

.stacked-copy article:hover::after {
  opacity: 1;
}

.stacked-copy article > span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.045);
  font-size: 12px;
  font-weight: 650;
}

.method-copy {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.stacked-copy h3 {
  position: relative;
  z-index: 1;
  margin: 3px 0 12px;
  font-size: 28px;
  font-weight: 540;
  line-height: 1.12;
}

.stacked-copy p,
.panel-card p,
.method-copy p,
.service-grid p,
.project-card span,
.project-phone p,
.case-panel p,
.case-media-card p,
.case-detail-grid p,
.cta-section p,
.site-footer p,
.site-footer a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.72;
}

.stacked-copy p {
  position: relative;
  z-index: 1;
  grid-column: 2;
  max-width: 760px;
}

.panel-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(32px, 7vw, 84px);
  align-items: center;
  padding: clamp(34px, 6vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 16% 12%, rgba(92, 92, 96, 0.18), transparent 20rem),
    linear-gradient(135deg, #171717, #101010);
}

.panel-card h2 {
  max-width: 560px;
}

.panel-card p {
  max-width: 600px;
  margin: 26px 0 0;
}

.panel-points {
  display: grid;
  gap: 16px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.panel-points li {
  display: grid;
  gap: 6px;
}

.panel-points strong {
  color: var(--text);
  font-size: 15px;
  font-weight: 540;
}

.panel-points span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.68;
}

.territory-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  background:
    radial-gradient(circle at 82% 8%, rgba(119, 87, 255, 0.18), transparent 34%),
    rgba(0, 0, 0, 0.22);
}

.territory-board span {
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 4px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(14, 14, 15, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.territory-board strong {
  font-size: 18px;
  font-weight: 640;
  line-height: 1;
}

.territory-board em {
  color: rgba(255, 255, 255, 0.54);
  font-style: normal;
  font-size: 12px;
  font-weight: 360;
  line-height: 1.35;
}

.territory-note {
  margin-top: 14px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
}

.project-card > span,
.territory-note span,
.compare-card > span,
.faq-card > span {
  display: block;
  color: var(--faint);
  font-size: 11px;
  font-weight: 850;
}

.territory-note p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.68;
}

.method-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
  gap: clamp(42px, 8vw, 104px);
  align-items: center;
}

.method-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #141414;
}

.method-visual img {
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
  opacity: 0.9;
}

.method-copy p {
  max-width: 620px;
  margin: 24px 0 0;
}

.method-copy .button {
  margin-top: 28px;
}

.section-title-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 34px;
  align-items: center;
  margin-bottom: 36px;
}

.section-title-row h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 500;
}

.thin-rule {
  height: 1px;
  background: linear-gradient(90deg, var(--line), transparent);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.image-feature-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.875fr 0.875fr;
  gap: 14px;
  margin-bottom: 18px;
}

.image-feature {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 22rem),
    var(--panel);
}

.image-feature.large {
  min-height: 440px;
}

.image-feature img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.82;
  filter: saturate(0.82) contrast(1.04);
  transition:
    opacity 220ms ease,
    transform 420ms ease;
}

.image-feature::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.68)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.38), transparent 54%);
}

.image-feature:hover img {
  opacity: 0.95;
  transform: scale(1.025);
}

.image-feature figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
}

.image-feature figcaption span {
  display: block;
  margin-bottom: 14px;
  color: var(--faint);
  font-size: 11px;
  font-weight: 780;
}

.image-feature figcaption strong {
  display: block;
  max-width: 540px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(20px, 1.5vw, 28px);
  font-weight: 460;
  line-height: 1.28;
}

.service-grid article,
.project-card {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--panel);
}

.service-grid article {
  min-height: 260px;
}

.service-grid span,
.project-card p,
.project-phone span,
.site-footer span {
  display: block;
  color: var(--faint);
  font-size: 11px;
  font-weight: 850;
}

.service-grid h3 {
  margin: 74px 0 14px;
  font-size: 21px;
  font-weight: 520;
  line-height: 1.24;
}

.service-deliverables,
.project-list,
.compare-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-deliverables li,
.project-list li,
.compare-list li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.service-deliverables li::before,
.project-list li::before,
.compare-list li::before {
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: linear-gradient(180deg, var(--purple), var(--green));
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr 1fr 1fr;
  gap: clamp(16px, 2vw, 28px);
  align-items: stretch;
}

.project-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 26px;
}

.project-intro p {
  max-width: 820px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
}

.project-intro-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.project-intro-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--faint);
  font-size: 11px;
  font-weight: 760;
}

.project-card {
  min-height: 260px;
}

.project-card-stage {
  background:
    radial-gradient(circle at 86% 12%, rgba(104, 74, 255, 0.1), transparent 11rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01)),
    var(--panel);
}

.project-icon {
  display: grid;
  place-items: center;
  width: 94px;
  height: 64px;
  margin-bottom: 44px;
  border: 1px solid var(--line);
  color: #fff;
  background: #090909;
  font-size: 34px;
  font-weight: 900;
}

.project-card h3 {
  margin: 18px 0 12px;
  font-size: 22px;
  font-weight: 520;
  line-height: 1.25;
}

.project-stage-copy {
  min-height: 72px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}

.project-list {
  margin-top: 18px;
}

.project-phone {
  min-height: 360px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent),
    #101010;
}

.project-phone strong {
  display: block;
  margin-top: 80px;
  font-size: 42px;
  font-weight: 520;
  line-height: 1.14;
}

.project-highlight {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(111, 79, 255, 0.2), transparent 13rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    #101010;
}

.project-highlight::after {
  position: absolute;
  inset: auto -8% -28% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(137, 209, 170, 0.16), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
}

.project-highlight-rule {
  width: 100%;
  height: 1px;
  margin: 22px 0 18px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
}

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

.project-highlight-metrics div {
  padding: 14px 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.project-highlight-metrics em {
  display: block;
  color: var(--faint);
  font-size: 10px;
  font-style: normal;
  font-weight: 780;
  text-transform: uppercase;
}

.project-highlight-metrics b {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-size: 24px;
  font-weight: 520;
}

.project-phone.light {
  color: #111;
  background: #f3f3f3;
}

.project-phone.light span,
.project-phone.light p {
  color: rgba(0, 0, 0, 0.55);
}

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

.project-flow-card {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012)),
    rgba(10, 10, 11, 0.72);
}

.project-flow-card span {
  display: block;
  color: var(--faint);
  font-size: 11px;
  font-weight: 780;
}

.project-flow-card strong {
  display: block;
  margin-top: 16px;
  color: var(--text);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.35;
}

.project-flow-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.68;
}

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

.compare-card,
.faq-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    rgba(13, 13, 14, 0.86);
}

.compare-card {
  padding: clamp(24px, 3vw, 34px);
}

.compare-card.emphasis {
  background:
    radial-gradient(circle at 84% 18%, rgba(104, 74, 255, 0.16), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(13, 13, 14, 0.9);
}

.compare-card h3,
.faq-card h3 {
  margin: 18px 0 0;
  color: var(--text);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.18;
}

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

.faq-card {
  min-height: auto;
  padding: 0;
  overflow: hidden;
}

@media (hover: hover) and (pointer: fine) {
  :is(
      .stacked-copy article,
      .territory-board span,
      .service-grid article,
      .project-card,
      .project-phone,
      .project-flow-card,
      .compare-card,
      .faq-card,
      .case-panel,
      .case-detail-grid article,
      .case-media-card,
      .image-feature,
      .footer-brand-block,
      .footer-contact-panel,
      .footer-link-row > div
    ) {
    transform: translateY(0);
    transition:
      transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
      border-color 260ms ease,
      box-shadow 260ms ease,
      background 260ms ease;
  }

  :is(
      .stacked-copy article,
      .territory-board span,
      .service-grid article,
      .project-card,
      .project-phone,
      .project-flow-card,
      .compare-card,
      .faq-card,
      .case-panel,
      .case-detail-grid article,
      .case-media-card,
      .image-feature,
      .footer-brand-block,
      .footer-contact-panel,
      .footer-link-row > div
    ):hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  }
}

.faq-card summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 20px;
  align-items: start;
  padding: 24px;
  cursor: pointer;
  list-style: none;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::marker {
  display: none;
  content: "";
}

.faq-summary-copy span {
  display: block;
  color: var(--faint);
  font-size: 11px;
  font-weight: 850;
}

.faq-summary-copy h3 {
  margin: 18px 0 0;
}

.faq-toggle {
  position: relative;
  width: 28px;
  height: 28px;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.faq-toggle::before,
.faq-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  border-radius: 999px;
  content: "";
  background: var(--text);
  transform: translate(-50%, -50%);
  transition: transform 220ms ease, opacity 220ms ease;
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-card[open] .faq-toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-card[open] .faq-answer {
  grid-template-rows: 1fr;
}

.faq-card p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.72;
}

.faq-card[open] {
  border-color: rgba(255, 255, 255, 0.16);
}

.case-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 16px;
  align-items: stretch;
}

.case-media-main,
.case-panel,
.case-media-card,
.case-detail-grid article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    rgba(13, 13, 14, 0.86);
}

.case-media-main {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.case-media-main img,
.case-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-media-main.magazine-main img {
  object-position: 50% 68%;
}

.case-media-main::before,
.case-media-card::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 42%;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(8, 8, 10, 0.18) 38%, rgba(8, 8, 10, 0.42) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
}

.case-media-main::after,
.case-media-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 44%, rgba(0, 0, 0, 0.86));
  pointer-events: none;
}

.case-media-caption {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
}

.case-media-caption span,
.case-media-card span,
.case-detail-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 760;
}

.case-media-caption strong {
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(24px, 2.45vw, 38px);
  font-weight: 520;
  line-height: 1;
  text-align: right;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.case-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(26px, 3.4vw, 48px);
  min-height: 360px;
}

.case-panel h3 {
  margin: 16px 0 18px;
  max-width: 620px;
  font-size: clamp(30px, 3.25vw, 48px);
  font-weight: 500;
  line-height: 1.1;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 32px 0 24px;
}

.case-metrics span {
  min-height: 86px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
  font-weight: 620;
}

.case-metrics strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 32px;
  font-weight: 520;
  line-height: 1;
}

.case-media-grid {
  display: grid;
  grid-template-columns: 0.88fr 0.88fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.case-media-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  padding: 24px;
}

.case-media-card img {
  position: absolute;
  inset: 0;
}

.case-media-card span,
.case-media-card h3,
.case-media-card strong,
.case-media-card p {
  position: relative;
  z-index: 1;
}

.case-media-card h3 {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.22;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.case-media-card.text-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at 78% 20%, rgba(112, 77, 255, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015)),
    #101011;
}

.case-media-card.text-card::after {
  display: none;
}

.case-media-card.text-card strong {
  display: block;
  margin: 66px 0 18px;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0;
}

.case-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.case-detail-grid article {
  min-height: 230px;
  padding: 22px;
}

.case-detail-grid h3 {
  margin: 60px 0 12px;
  font-size: 21px;
  font-weight: 520;
  line-height: 1.24;
}

.cta-section {
  max-width: 720px;
  padding: clamp(110px, 13vw, 190px) 0;
  text-align: center;
}

.cta-section h2 {
  margin-inline: auto;
}

.cta-section p {
  margin: 26px auto 0;
  max-width: 560px;
}

.cta-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: 24px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
  font-weight: 620;
}

.cta-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.cta-points span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  font-size: 12px;
  font-weight: 520;
}

.cta-section .button {
  margin-top: 32px;
}

.logo-strip.bottom {
  margin-top: 0;
}

.site-footer {
  position: relative;
  padding: clamp(64px, 8vw, 108px) 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(80, 80, 84, 0.18), transparent 32rem),
    #080808;
}

.site-footer::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: clamp(150px, 18vw, 280px);
  content: "";
  background:
    linear-gradient(180deg, transparent 0%, rgba(8, 8, 8, 0.18) 28%, rgba(8, 8, 8, 0.72) 72%, #080808 100%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.08), transparent 58%);
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 2;
  width: min(1500px, calc(100% - 64px));
  margin: 0 auto;
}

.footer-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.64fr);
  gap: clamp(28px, 5vw, 84px);
  align-items: stretch;
}

.footer-brand-block {
  min-height: 330px;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.08), transparent 22rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.014)),
    rgba(13, 13, 14, 0.74);
}

.footer-brand-block img {
  width: clamp(110px, 10vw, 170px);
  margin-bottom: clamp(26px, 5vw, 72px);
  filter: brightness(0) invert(1);
}

.footer-brand-block p {
  max-width: 420px;
}

.footer-brand-block strong {
  display: block;
  margin-top: 18px;
  max-width: 620px;
  color: var(--text);
  font-size: clamp(28px, 3.6vw, 58px);
  font-weight: 500;
  line-height: 1.08;
}

.footer-contact-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 330px;
  padding: clamp(28px, 3.4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 14%, rgba(108, 77, 255, 0.2), transparent 18rem),
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(12, 12, 13, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.footer-contact-content {
  width: min(100%, 480px);
  margin-left: 0;
}

.footer-contact-content > a:not(.footer-mail-button) {
  margin: 28px 0 24px;
  color: var(--text);
  font-size: clamp(24px, 2.1vw, 34px);
  font-weight: 520;
  line-height: 1.15;
}

.footer-contact-content p {
  margin: 0;
}

.footer-mail-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  margin-top: 28px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  text-align: center;
  line-height: 1;
  font-weight: 520;
}

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

.footer-link-row > div {
  min-height: 180px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.site-footer span {
  margin-bottom: 20px;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin-top: 12px;
}

.site-footer a:not(.footer-mail-button) {
  color: var(--muted);
}

.footer-link-row p {
  margin: 12px 0 0;
}

.footer-rule {
  width: min(1500px, calc(100% - 64px));
  height: 1px;
  margin: 56px auto 34px;
  background: linear-gradient(90deg, var(--line), rgba(255, 255, 255, 0.03), var(--line));
}

.mega-logo {
  position: relative;
  z-index: 0;
  display: block;
  width: min(1880px, calc(100% + 420px));
  height: clamp(132px, 15vw, 240px);
  margin: 0 -18vw -2.2vw auto;
  overflow: hidden;
  opacity: 0.42;
  pointer-events: none;
}

.mega-logo::after {
  position: absolute;
  inset: auto 14% -18% 28%;
  height: 34%;
  content: "";
  background: rgba(255, 255, 255, 0.22);
  filter: blur(24px);
  opacity: 0.08;
  transform: scaleY(0.5);
  pointer-events: none;
}

.mega-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
  filter:
    brightness(0) invert(1)
    drop-shadow(0 -18px 46px rgba(255, 255, 255, 0.055))
    drop-shadow(0 36px 96px rgba(115, 83, 255, 0.12));
  transform: scale(1.32) translate(10%, 11%);
  transform-origin: right bottom;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.62) 50%, rgba(0, 0, 0, 0.28) 78%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.62) 50%, rgba(0, 0, 0, 0.28) 78%, transparent 100%);
}

body[data-theme="light"] {
  color-scheme: light;
  --bg: #f4f6f8;
  --panel: #ffffff;
  --panel-2: #eef2f5;
  --line: rgba(17, 24, 39, 0.11);
  --line-soft: rgba(17, 24, 39, 0.07);
  --text: #111418;
  --muted: rgba(17, 20, 24, 0.62);
  --faint: rgba(17, 20, 24, 0.42);
  --purple: #5970f3;
  --green: #55b68d;
  background:
    radial-gradient(circle at 50% -8%, rgba(210, 220, 232, 0.72), transparent 28rem),
    radial-gradient(circle at 8% 22rem, rgba(230, 236, 244, 0.9), transparent 26rem),
    radial-gradient(circle at 92% 56rem, rgba(218, 226, 236, 0.82), transparent 30rem),
    linear-gradient(180deg, #fbfcfd 0%, #f3f6f9 34rem, #edf1f5 72rem, #f8fafb 100%);
}

body[data-theme="light"] .site-header {
  border-color: rgba(17, 24, 39, 0.09);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(244, 247, 250, 0.78));
  box-shadow: 0 18px 54px rgba(97, 112, 132, 0.12);
}

body[data-theme="light"] .brand img,
body[data-theme="light"] .footer-brand-block img,
body[data-theme="light"] .mega-logo img {
  filter: none;
}

body[data-theme="light"] .nav-links,
body[data-theme="light"] .logo-strip span {
  color: rgba(17, 20, 24, 0.56);
}

body[data-theme="light"] .skip-link {
  border-color: rgba(17, 20, 24, 0.1);
  color: #111418;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(97, 112, 132, 0.14);
}

body[data-theme="light"] .theme-toggle {
  background: rgba(17, 20, 24, 0.035);
}

body[data-theme="light"] .theme-toggle-track {
  background: rgba(17, 20, 24, 0.12);
}

body[data-theme="light"] .theme-toggle-track i {
  background: #111418;
  transform: translateX(14px);
  box-shadow: 0 4px 10px rgba(74, 88, 107, 0.18);
}

body[data-theme="light"] .button.ghost {
  background: rgba(17, 20, 24, 0.03);
}

body[data-theme="light"] .nav-cta::after,
body[data-theme="light"] .button::after,
body[data-theme="light"] .theme-toggle::after {
  background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(17, 20, 24, 0.08), transparent 38%);
}

body[data-theme="light"] .hero-panel {
  background:
    radial-gradient(circle at 18% 0%, rgba(214, 223, 235, 0.72), transparent 24rem),
    radial-gradient(circle at 80% 42%, rgba(210, 219, 231, 0.56), transparent 22rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 251, 0.84)),
    linear-gradient(135deg, rgba(17, 20, 24, 0.03), rgba(17, 20, 24, 0));
}

body[data-theme="light"] .hero-panel::after,
body[data-theme="light"] .thin-rule {
  background: linear-gradient(90deg, rgba(17, 20, 24, 0.12), transparent);
}

body[data-theme="light"] .visual-backplate,
body[data-theme="light"] .mockup-card,
body[data-theme="light"] .stacked-copy article,
body[data-theme="light"] .panel-card,
body[data-theme="light"] .territory-board,
body[data-theme="light"] .territory-board span,
body[data-theme="light"] .territory-note,
body[data-theme="light"] .service-grid article,
body[data-theme="light"] .project-card,
body[data-theme="light"] .compare-card,
body[data-theme="light"] .faq-card,
body[data-theme="light"] .case-media-main,
body[data-theme="light"] .case-panel,
body[data-theme="light"] .case-media-card,
body[data-theme="light"] .case-detail-grid article,
body[data-theme="light"] .footer-brand-block,
body[data-theme="light"] .footer-contact-panel,
body[data-theme="light"] .footer-link-row > div {
  border-color: rgba(17, 20, 24, 0.1);
  box-shadow: 0 18px 48px rgba(102, 118, 141, 0.1);
}

body[data-theme="light"] .visual-backplate {
  background:
    radial-gradient(circle at 62% 28%, rgba(162, 176, 201, 0.18), transparent 14rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(241, 245, 249, 0.84)),
    rgba(248, 250, 252, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 16px 42px rgba(107, 123, 146, 0.08);
}

body[data-theme="light"] .visual-backplate::before {
  background: conic-gradient(from 180deg, transparent, rgba(17, 20, 24, 0.05), transparent 24%);
}

body[data-theme="light"] .visual-backplate::after {
  background-image:
    linear-gradient(rgba(17, 20, 24, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 20, 24, 0.04) 1px, transparent 1px);
}

body[data-theme="light"] .backplate-topline,
body[data-theme="light"] .mockup-card span,
body[data-theme="light"] .mockup-card em,
body[data-theme="light"] .phone-card span,
body[data-theme="light"] .phone-card em,
body[data-theme="light"] .service-grid span,
body[data-theme="light"] .project-card p,
body[data-theme="light"] .project-phone span,
body[data-theme="light"] .project-card > span,
body[data-theme="light"] .territory-note span,
body[data-theme="light"] .site-footer span,
body[data-theme="light"] .compare-card > span,
body[data-theme="light"] .case-media-caption span,
body[data-theme="light"] .case-media-card span,
body[data-theme="light"] .case-detail-grid span,
body[data-theme="light"] .faq-card > span,
body[data-theme="light"] .project-intro-points span,
body[data-theme="light"] .project-flow-card span,
body[data-theme="light"] .project-highlight-metrics em,
body[data-theme="light"] .eyebrow {
  color: rgba(17, 20, 24, 0.44);
}

body[data-theme="light"] .faq-summary-copy span {
  color: rgba(17, 20, 24, 0.44);
}

body[data-theme="light"] .backplate-topline i,
body[data-theme="light"] .chart-line,
body[data-theme="light"] .mini-feed i {
  background: linear-gradient(90deg, rgba(17, 20, 24, 0.28), transparent);
}

body[data-theme="light"] .signal-grid span {
  border-color: rgba(17, 20, 24, 0.1);
  background: rgba(17, 20, 24, 0.03);
}

body[data-theme="light"] .signal-grid span:nth-child(3n),
body[data-theme="light"] .chart-bars i {
  background: rgba(89, 185, 135, 0.72);
}

body[data-theme="light"] .mockup-card,
body[data-theme="light"] .project-phone,
body[data-theme="light"] .territory-board span,
body[data-theme="light"] .case-media-card.text-card,
body[data-theme="light"] .project-flow-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(239, 243, 247, 0.9)),
    #edf2f6;
}

body[data-theme="light"] .mockup-card {
  box-shadow: 0 12px 28px rgba(107, 123, 146, 0.12);
}

body[data-theme="light"] .hero-visual:hover .mockup-card {
  box-shadow: 0 18px 42px rgba(107, 123, 146, 0.16);
}

body[data-theme="light"] .mockup-card,
body[data-theme="light"] .project-phone,
body[data-theme="light"] .territory-board span,
body[data-theme="light"] .case-media-card.text-card,
body[data-theme="light"] .project-icon,
body[data-theme="light"] .phone-card strong,
body[data-theme="light"] .project-phone.light,
body[data-theme="light"] .project-phone.light span,
body[data-theme="light"] .project-phone.light p,
body[data-theme="light"] .project-flow-card strong,
body[data-theme="light"] .project-highlight-metrics b {
  color: #111418;
}

body[data-theme="light"] .project-card-stage {
  background:
    radial-gradient(circle at 86% 12%, rgba(120, 139, 167, 0.12), transparent 11rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 247, 251, 0.82)),
    rgba(255, 255, 255, 0.92);
}

body[data-theme="light"] .project-intro-points span {
  background: rgba(17, 20, 24, 0.03);
}

body[data-theme="light"] .project-highlight {
  background:
    radial-gradient(circle at 78% 18%, rgba(119, 135, 255, 0.18), transparent 13rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 243, 249, 0.92)),
    #edf2f6;
}

body[data-theme="light"] .project-highlight::after {
  background: radial-gradient(circle, rgba(123, 196, 158, 0.16), transparent 68%);
}

body[data-theme="light"] .project-highlight-rule {
  background: linear-gradient(90deg, rgba(17, 20, 24, 0.16), rgba(17, 20, 24, 0.05));
}

body[data-theme="light"] .project-highlight-metrics div {
  border-color: rgba(17, 20, 24, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

body[data-theme="light"] .phone-card {
  background:
    linear-gradient(160deg, #fff, #eff3f7),
    #f5f8fa;
}

body[data-theme="light"] .phone-notch {
  background: #111418;
}

body[data-theme="light"] .logo-strip {
  color: rgba(17, 20, 24, 0.54);
  background:
    linear-gradient(90deg, rgba(17, 20, 24, 0.03), transparent 20%, rgba(17, 20, 24, 0.03)),
    rgba(249, 251, 253, 0.8);
}

body[data-theme="light"] .stacked-copy article::before {
  background: linear-gradient(180deg, #6451de, rgba(89, 185, 135, 0.8));
}

body[data-theme="light"] .stacked-copy article::after {
  background: radial-gradient(circle, rgba(100, 81, 222, 0.09), transparent 66%);
}

body[data-theme="light"] .stacked-copy article > span {
  border-color: rgba(17, 20, 24, 0.12);
  color: rgba(17, 20, 24, 0.78);
  background: rgba(17, 20, 24, 0.03);
}

body[data-theme="light"] .stacked-copy article {
  background:
    radial-gradient(circle at 14% 18%, rgba(213, 222, 235, 0.42), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(240, 244, 248, 0.9));
}

body[data-theme="light"] .stacked-copy article:hover {
  background:
    radial-gradient(circle at 14% 18%, rgba(208, 218, 232, 0.5), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(244, 247, 250, 0.94));
  border-color: rgba(17, 20, 24, 0.14);
}

body[data-theme="light"] .panel-card,
body[data-theme="light"] .method-visual,
body[data-theme="light"] .project-phone,
body[data-theme="light"] .territory-note,
body[data-theme="light"] .compare-card,
body[data-theme="light"] .faq-card,
body[data-theme="light"] .case-media-main,
body[data-theme="light"] .case-panel,
body[data-theme="light"] .case-media-card,
body[data-theme="light"] .case-detail-grid article,
body[data-theme="light"] .service-grid article,
body[data-theme="light"] .project-card,
body[data-theme="light"] .image-feature {
  background:
    radial-gradient(circle at 16% 12%, rgba(213, 222, 235, 0.4), transparent 20rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(240, 244, 248, 0.9));
}

body[data-theme="light"] .footer-brand-block,
body[data-theme="light"] .footer-contact-panel,
body[data-theme="light"] .footer-link-row > div {
  background:
    radial-gradient(circle at 12% 18%, rgba(214, 223, 236, 0.38), transparent 20rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 245, 249, 0.9));
}

body[data-theme="light"] .territory-board {
  background:
    radial-gradient(circle at 82% 8%, rgba(100, 81, 222, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.62);
}

body[data-theme="light"] .territory-board em {
  color: rgba(17, 20, 24, 0.5);
}

body[data-theme="light"] .image-feature::after,
body[data-theme="light"] .case-media-main::after,
body[data-theme="light"] .case-media-card::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(8, 10, 14, 0.78)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 54%);
}

body[data-theme="light"] .case-media-main::before,
body[data-theme="light"] .case-media-card::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(10, 12, 16, 0.12) 34%, rgba(10, 12, 16, 0.34) 100%);
}

body[data-theme="light"] .case-media-caption span,
body[data-theme="light"] .case-media-card span,
body[data-theme="light"] .case-media-caption strong,
body[data-theme="light"] .case-media-card h3,
body[data-theme="light"] .case-media-card p {
  color: rgba(255, 255, 255, 0.94);
}

body[data-theme="light"] .image-feature figcaption strong {
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

body[data-theme="light"] .image-feature figcaption span {
  color: rgba(255, 255, 255, 0.62);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.16);
}

body[data-theme="light"] .project-icon {
  border-color: rgba(17, 20, 24, 0.1);
  background: rgba(17, 20, 24, 0.05);
}

body[data-theme="light"] .faq-toggle {
  border-color: rgba(17, 20, 24, 0.1);
  background: rgba(17, 20, 24, 0.03);
}

body[data-theme="light"] .faq-toggle::before,
body[data-theme="light"] .faq-toggle::after {
  background: var(--text);
}

body[data-theme="light"] .section-title-row h2,
body[data-theme="light"] .stacked-copy h3,
body[data-theme="light"] .service-grid h3,
body[data-theme="light"] .project-card h3,
body[data-theme="light"] .compare-card h3,
body[data-theme="light"] .case-panel h3,
body[data-theme="light"] .case-detail-grid h3,
body[data-theme="light"] .faq-card h3,
body[data-theme="light"] .footer-brand-block strong,
body[data-theme="light"] .footer-contact-content > a:not(.footer-mail-button) {
  color: var(--text);
}

body[data-theme="light"] .footer-contact-content p,
body[data-theme="light"] .footer-link-row p,
body[data-theme="light"] .site-footer a:not(.footer-mail-button),
body[data-theme="light"] .site-footer p,
body[data-theme="light"] .territory-note p,
body[data-theme="light"] .faq-card p,
body[data-theme="light"] .panel-points span {
  color: var(--muted);
}

body[data-theme="light"] .faq-card[open] {
  border-color: rgba(17, 20, 24, 0.14);
}

body[data-theme="light"] .mockup-card strong,
body[data-theme="light"] .legal-card strong,
body[data-theme="light"] .kpi-card strong,
body[data-theme="light"] .case-metrics strong {
  color: var(--text);
}

body[data-theme="light"] .site-footer {
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 220, 232, 0.42), transparent 30rem),
    linear-gradient(180deg, #eef3f7 0%, #e9eef3 100%);
}

body[data-theme="light"] .site-footer::after {
  background:
    linear-gradient(180deg, transparent 0%, rgba(238, 243, 247, 0.34) 28%, rgba(233, 238, 243, 0.82) 72%, #e9eef3 100%),
    radial-gradient(ellipse at 50% 100%, rgba(17, 20, 24, 0.05), transparent 58%);
}

body[data-theme="light"] .footer-mail-button {
  color: #111418;
  background: rgba(17, 20, 24, 0.045);
  border-color: rgba(17, 20, 24, 0.1);
}

@media (hover: hover) and (pointer: fine) {
  body[data-theme="light"]
    :is(
      .stacked-copy article,
      .territory-board span,
      .service-grid article,
      .project-card,
      .project-phone,
      .project-flow-card,
      .compare-card,
      .faq-card,
      .case-panel,
      .case-detail-grid article,
      .case-media-card,
      .image-feature,
      .footer-brand-block,
      .footer-contact-panel,
      .footer-link-row > div
    ):hover {
    border-color: rgba(17, 20, 24, 0.12);
    box-shadow: 0 24px 46px rgba(107, 123, 146, 0.14);
  }
}

body[data-theme="light"] .footer-rule {
  background: linear-gradient(90deg, rgba(17, 20, 24, 0.12), rgba(17, 20, 24, 0.04), rgba(17, 20, 24, 0.12));
}

body[data-theme="light"] .mega-logo {
  opacity: 0.11;
}

body[data-theme="light"] .mega-logo::after {
  background: rgba(17, 20, 24, 0.14);
  opacity: 0.04;
}

body[data-theme="light"] .mega-logo img {
  filter:
    saturate(0)
    brightness(0.16)
    drop-shadow(0 -18px 46px rgba(17, 20, 24, 0.04))
    drop-shadow(0 36px 96px rgba(100, 81, 222, 0.06));
}

@media (max-width: 1080px) {
  .hero-panel,
  .split-section,
  .panel-card,
  .method-section,
  .case-showcase {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 360px;
  }

  .dashboard-card {
    right: 44px;
    width: 250px;
  }

  .image-card {
    right: 156px;
    width: 260px;
  }

  .legal-card {
    right: 322px;
  }

  .kpi-one {
    right: 350px;
  }

  .kpi-two,
  .mini-feed {
    display: none;
  }

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

  .project-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .project-intro-points {
    justify-content: flex-start;
  }

  .project-grid,
  .compare-grid,
  .case-media-grid,
  .case-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .footer-link-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    top: 10px;
    width: min(100% - 32px, 1180px);
    min-height: 58px;
    padding: 0 12px;
  }

  .brand span,
  .nav-links {
    display: none;
  }

  .section-shell {
    width: min(100% - 32px, 1180px);
  }

  .footer-inner {
    width: min(100% - 32px, 1180px);
  }

  .hero {
    padding-top: 72px;
  }

  .hero-panel {
    min-height: auto;
    padding: 42px 22px 26px;
  }

  .hero-panel::after {
    display: none;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-visual {
    min-height: 330px;
  }

  .dashboard-card {
    right: 18px;
    top: 16px;
    width: 202px;
    height: 116px;
  }

  .phone-card {
    right: 0;
    top: 108px;
    width: 106px;
    height: 194px;
  }

  .image-card {
    right: auto;
    left: 0;
    bottom: 6px;
    width: 228px;
    height: 142px;
  }

  .legal-card {
    top: 130px;
    right: 112px;
    width: 142px;
  }

  .kpi-card,
  .mini-feed {
    display: none;
  }

  .visual-backplate {
    inset: 4px 0 0;
  }

  .split-section,
  .method-section,
  .proof-section,
  .services-section,
  .agency-panel,
  .project-section,
  .compare-section,
  .faq-section {
    padding: 84px 0;
  }

  .section-label h2,
  .method-copy h2,
  .panel-card h2,
  .cta-section h2 {
    font-size: 36px;
  }

  .territory-board,
  .image-feature-grid,
  .service-grid,
  .project-grid,
  .compare-grid,
  .case-media-grid,
  .case-detail-grid,
  .footer-link-row,
  .faq-grid,
  .project-flow {
    grid-template-columns: 1fr;
  }

  .footer-brand-block,
  .footer-contact-panel {
    min-height: auto;
    padding: 24px;
  }

  .footer-brand-block img {
    margin-bottom: 42px;
  }

  .footer-contact-content {
    width: 100%;
    margin-left: 0;
  }

  .footer-contact-content > a:not(.footer-mail-button) {
    font-size: 24px;
  }

  .image-feature,
  .image-feature.large {
    min-height: 320px;
  }

  .project-phone {
    min-height: 280px;
  }

  .project-phone strong {
    margin-top: 70px;
  }

  .project-stage-copy {
    min-height: auto;
  }

  .case-media-main,
  .case-panel {
    min-height: 360px;
  }

  .case-media-caption {
    display: block;
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .case-media-caption strong {
    display: block;
    margin-top: 10px;
    text-align: left;
  }

  .case-panel,
  .case-media-card,
  .case-detail-grid article {
    padding: 20px;
  }

  .case-panel h3 {
    font-size: 34px;
  }

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

  .case-media-card {
    min-height: 300px;
  }

  .case-media-card h3 {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .stacked-copy article {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 22px;
  }

  .project-card,
  .compare-card,
  .faq-card {
    min-height: auto;
  }

  .faq-card summary,
  .faq-card p {
    padding-left: 20px;
    padding-right: 20px;
  }

  .faq-card summary {
    gap: 14px;
  }

  .project-icon {
    margin-bottom: 30px;
  }

  .service-deliverables,
  .project-list,
  .compare-list {
    gap: 8px;
  }

  .cta-points {
    gap: 8px;
  }

  .stacked-copy article > span {
    margin-bottom: 18px;
  }

  .stacked-copy p {
    grid-column: 1;
  }

  .territory-board span {
    min-height: 92px;
  }

  .logo-strip {
    padding-inline: 16px;
  }

  .ticker-track {
    gap: 34px;
    padding-right: 34px;
    animation-duration: 26s;
  }

  .mega-logo {
    width: calc(100% + 52px);
    height: clamp(88px, 22vw, 126px);
    margin: 0 -26px -10px auto;
  }

  .mega-logo img {
    object-position: right top;
    transform: scale(1.18) translate(6%, 7%);
  }
}
