:root {
  --black: #030507;
  --ink: #0b0d12;
  --charcoal: #12151b;
  --muted: #9aa2af;
  --line: rgba(255, 255, 255, 0.12);
  --paper: #f3f1e9;
  --paper-soft: #e5e2d8;
  --blue: #2d7dff;
  --accent: #2d7dff;
  --red: #14b8a6;
  --violet: #2d7dff;
  --radius: 16px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: #fff;
  font-family: "Outfit", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  max-width: 100%;
  text-rendering: geometricPrecision;
  isolation: isolate;
}

/* ensure all text is selectable */
p, h1, h2, h3, h4, li, blockquote, cite, strong, span:not(.hero-video-chip) {
  user-select: text;
  -webkit-user-select: text;
}

main {
  overflow: visible;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

::selection {
  background: var(--violet);
  color: #fff;
}

::-moz-selection {
  background: var(--violet);
  color: #fff;
}

.interactive-gradient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  contain: paint;
  background:
    linear-gradient(118deg, #faf8f3 0 33%, #efe7d9 48%, #aee2ed 61%, #f14bbf 79%, #f8f4ee 100%);
  transform: translateZ(0);
  transition: opacity 0.2s var(--ease);
}

.gradient-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.95); /* increased opacity white overlay to soften the gradient */
  z-index: 1;
  pointer-events: none;
  opacity: 0; /* starts transparent at entry (Hero section) */
  will-change: opacity;
}

.interactive-gradient::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(255,255,255,0.44), transparent 20%),
    radial-gradient(circle at 88% 76%, rgba(255,255,255,0.24), transparent 23%);
  opacity: 0.38;
  mix-blend-mode: soft-light;
}

.gradient-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}


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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 28px;
  padding: 22px clamp(18px, 3vw, 48px);
  color: var(--black);
  transition: color 0.25s ease, transform 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header .site-nav,
.site-header .lang-switcher {
  color: var(--black);
}

.site-header.is-hidden {
  transform: translateY(-110%);
}

.site-header.is-on-dark,
body.menu-open .site-header {
  color: #fff;
}

.site-header.is-on-dark .site-nav,
.site-header.is-on-dark .lang-switcher,
body.menu-open .site-header .site-nav,
body.menu-open .site-header .lang-switcher {
  color: #fff;
}

.site-header.is-on-dark .menu-toggle,
body.menu-open .site-header .menu-toggle {
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  height: 42px; /* Set fixed height matching original logo container */
}

.logo-text {
  font-family: 'Sedgwick Ave Display', cursive, sans-serif;
  font-size: 2.35rem; /* Slightly reduced to fit height perfectly */
  color: #ff3344; /* Redmono Kırmızısı */
  letter-spacing: -0.01em;
  line-height: 1; /* Force line height to 1 to prevent offset */
  text-shadow: 2px 2px 0px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, color 0.3s ease;
}

.logo-mark:hover .logo-text {
  transform: scale(1.06) rotate(-3deg);
  color: #ff1122;
}

.site-header.is-on-dark .logo-text,
body.menu-open .site-header .logo-text {
  color: #ffffff;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-family: 'Sedgwick Ave Display', cursive, sans-serif;
  font-size: 2.85rem;
  color: #ff3344;
  letter-spacing: -0.01em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: color 0.25s ease;
}

.site-nav a,
.footer-links a,
.text-link,
.email-link {
  position: relative;
}

.site-nav a::after,
.footer-links a::after,
.text-link::after,
.email-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.site-nav a:hover::after,
.footer-links a:hover::after,
.text-link:hover::after,
.email-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ── Nav hover ───────────────────────────────────────────── */
.site-nav a {
  transition: color 0.3s ease;
}

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

/* ── Page Transition Fade ────────────────────────────────── */
body {
  opacity: 0;
  transition: opacity 0.3s ease;
}
body.is-loaded {
  opacity: 1;
}
body.is-leaving {
  opacity: 0;
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid rgba(3,5,7,0.92);
  border-radius: var(--radius);
  background: var(--black);
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s ease, color 0.35s ease, background 0.35s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--blue);
  transform: translateY(100%);
  transition: transform 0.38s var(--ease);
}

.button:hover::before {
  transform: translateY(0);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 12px;
}

.site-header .button-small {
  border-color: var(--black);
  background: var(--black);
  color: #fff;
}

.site-header .button-small::before {
  background: var(--blue);
}

.site-header.is-on-dark .button-small,
body.menu-open .site-header .button-small {
  border-color: #fff;
  background: #fff;
  color: var(--black);
}

.site-header.is-on-dark .button-small::before,
body.menu-open .site-header .button-small::before {
  background: #fff;
}

.button-ghost {
  background: rgba(255,255,255,0.04);
  color: #fff;
  border-color: rgba(255,255,255,0.24);
}

.button-ghost::before {
  background: var(--black);
}

.hero .button-ghost {
  color: var(--black);
  border-color: rgba(3,5,7,0.28);
  background: rgba(255,255,255,0.2);
}

.hero .button-ghost:hover {
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(3,5,7,0.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.32);
  color: inherit;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.3s var(--ease);
}

body.menu-open .menu-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

body.menu-open .menu-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 84px 24px 32px;
  background: rgba(3, 5, 7, 0.96);
  color: #fff;
  transform: translateY(-105%);
  transition: transform 0.55s var(--ease);
}

.mobile-panel a:not(.button) {
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 0.95;
}

body.menu-open .mobile-panel {
  transform: translateY(0);
}

.section,
.hero {
  position: relative;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 110px clamp(18px, 5vw, 80px) 56px;
  overflow: hidden;
  color: var(--black);
}

.section-dark {
  background: rgba(3, 5, 7, 0.82);
  color: #fff;
}

/* Services section overrides — sits on light gradient, not dark */
#services,
#services .section-dark {
  background: transparent !important;
  color: var(--black) !important;
}
#services .section-title,
#services .section-kicker,
#services h2,
.services-pin .section-title,
.services-pin h2 {
  color: #030507 !important;
}

.section-light {
  background: rgba(246, 242, 236, 0.72);
  color: var(--black);
}

.hero.section-dark {
  background: transparent;
  color: var(--black);
  backdrop-filter: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 1100px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-title {
  margin: 0;
  max-width: 1100px;
  color: var(--black);
  font-family: "Syne", "Outfit", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(3.5rem, 7vw, 8rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  font-weight: 700;
  text-shadow: 0 18px 70px rgba(255,255,255,0.28);
}

.hero-title > span {
  display: block;
}

.hero-title-line {
  display: flex !important;
  align-items: center;
  gap: 0.28em;
}

.hero-video-chip {
  position: relative;
  flex: 0 0 auto;
  width: 2.1em;
  height: 0.88em;
  border: 1px solid rgba(3,5,7,0.16);
  border-radius: 0.22em;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 38%, rgba(255,255,255,0.86), transparent 18%),
    radial-gradient(circle at 72% 42%, rgba(217, 125, 100, 0.78), transparent 28%),
    linear-gradient(135deg, var(--black), var(--blue) 45%, var(--accent) 78%, var(--red));
  box-shadow: 0 0.18em 0.7em rgba(3,5,7,0.18);
}

.hero-video-chip::before {
  content: none;
}

.hero-video-chip::after {
  content: "";
  position: absolute;
  left: 0.15em;
  bottom: 0.12em;
  width: 32%;
  height: 0.03em;
  min-height: 2px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
}

.hero-copy {
  max-width: 680px;
  margin: 32px 0 0;
  color: rgba(3,5,7,0.72);
  font-size: 1.5rem;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 34px;
}

.trust-line {
  margin: 26px 0 0;
  color: rgba(3,5,7,0.55);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-bottom {
  position: absolute;
  z-index: 5;
  left: clamp(18px, 5vw, 80px);
  right: clamp(18px, 5vw, 80px);
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(3,5,7,0.54);
  font-size: 13px;
}

.scroll-indicator {
  display: grid;
  place-items: start center;
  width: 28px;
  height: 48px;
  border: 1px solid rgba(3,5,7,0.28);
  border-radius: var(--radius);
  padding-top: 8px;
}

.scroll-indicator span {
  width: 4px;
  height: 4px;
  border-radius: 1px;
  background: var(--accent);
  animation-name: scrollDot;
  animation-duration: 1.6s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.section {
  padding: clamp(56px, 7vw, 110px) clamp(18px, 5vw, 80px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 54px);
}

.section-head .section-kicker,
.section-head .section-title {
  grid-column: 1;
}

.section-head .text-link {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  font-size: 15px;
  font-weight: 500;
  opacity: 1;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 3px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.section-head .text-link::after {
  display: none;
}

.section-head .text-link::before {
  content: "→";
  font-size: 15px;
  transition: transform 0.3s var(--ease);
}

.section-head .text-link:hover::before {
  transform: translateX(4px);
}

.section-head.compact {
  display: block;
  max-width: 840px;
}

.section-title {
  max-width: 1120px;
  margin: 0;
  font-size: 4.15rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
}

.intro .section-title {
  max-width: 860px;
  font-size: 2.85rem;
  line-height: 1.02;
}

.section-copy,
.about-copy {
  color: rgba(3,5,7,0.67);
  font-size: 1.25rem;
  line-height: 1.48;
}

.intro {
  background: transparent !important;
  border-bottom: none !important;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: end;
}

.services-grid {
  position: relative;
  flex: 1;
  min-height: 0;
  height: clamp(360px, 44vh, 520px);
  overflow: visible;
}

/* ── Horizontal Services Slide ───────────────────────────── */
@media (min-width: 861px) {
  #services {
    position: relative;
    overflow-x: clip;
    padding: 0 !important;
    background: transparent !important;
  }

  .services-pin {
    position: sticky;
    top: 0;
    height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    padding: clamp(64px, 7vh, 78px) 0 clamp(18px, 3vh, 32px) !important;
    background: transparent;
    box-sizing: border-box;
  }

  .services-pin .section-head {
    padding: 0 clamp(18px, 5vw, 80px); /* Align section head text with body layout margins */
    margin-bottom: clamp(46px, 7vh, 78px);
  }

  .services-grid {
    width: 100%;
    overflow: hidden;
    height: clamp(360px, 42vh, 430px);
    flex: none;
  }

  .services-track {
    display: flex;
    gap: clamp(24px, 3vw, 42px);
    width: max-content;
    height: 100%;
    padding-left: clamp(18px, 5vw, 80px);
    padding-right: clamp(80px, 16vw, 240px);
    will-change: transform;
  }

  .service-card {
    position: relative !important;
    inset: auto !important;
    flex: 0 0 auto;
    width: min(86vw, 1120px) !important;
    min-height: 100% !important;
    height: 100%;
    opacity: 1 !important;
    pointer-events: auto !important;
    will-change: transform;
    transition:
      box-shadow 0.55s ease,
      border-color 0.35s ease;
  }

  .service-controls {
    display: flex;
  }

  .service-card {
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr) !important;
    gap: clamp(24px, 3vw, 44px) !important;
    align-items: stretch !important;
    padding: clamp(18px, 2vw, 26px) !important;
  }

  .service-card h3 {
    font-size: clamp(2rem, 2.85vw, 3rem) !important;
  }

  .service-card ul {
    gap: 8px !important;
    margin-top: clamp(14px, 1.6vw, 20px) !important;
  }

  .service-card li {
    padding: 8px 11px !important;
    font-size: 13px !important;
  }

  .service-card p {
    margin-top: clamp(14px, 1.8vw, 22px) !important;
    font-size: clamp(0.95rem, 1.1vw, 1.08rem) !important;
    line-height: 1.46 !important;
  }

  .service-link {
    min-height: 46px !important;
    margin-top: clamp(12px, 1.8vw, 22px) !important;
    padding: 0 20px !important;
  }

  .service-visual {
    align-self: stretch !important;
    height: 100% !important;
    min-height: 0 !important;
  }

  .service-copy {
    align-self: center;
  }
}

#services {
  padding: 0;
  background: transparent !important;
}

@media (max-width: 860px) {
  .services-pin {
    position: relative;
    min-height: auto;
    overflow: visible;
    padding: clamp(64px, 9vw, 100px) clamp(16px, 4vw, 40px);
  }

  .services-pin .section-head {
    margin-bottom: clamp(18px, 3vw, 28px);
  }

  #services {
    padding: 0;
  }
}

.service-card {
  position: absolute;
  inset: 0 auto auto 50%;
  width: min(76vw, 800px);
  min-height: clamp(340px, 38vh, 480px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.9fr);
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  padding: clamp(24px, 3.5vw, 44px);
  border: 1px solid rgba(3,5,7,0.07);
  border-radius: calc(var(--radius) * 2);
  background: #ffffff;
  color: var(--black);
  overflow: hidden;
  box-shadow: none;
  
  /* Fallback transform (overridden dynamically in JS on desktop) */
  transform: translateX(-50%);
  transform-origin: center center;
  
  opacity: var(--card-opacity, 1);
  pointer-events: var(--card-events, auto);
  will-change: transform, opacity;
  transition:
    opacity 0.65s var(--ease),
    box-shadow 0.55s ease,
    border-color 0.35s ease;
}

.service-card:nth-child(1) { z-index: 4; }
.service-card:nth-child(2) { z-index: 3; }
.service-card:nth-child(3) { z-index: 2; }
.service-card:nth-child(4) { z-index: 1; }

.service-card::after {
  display: none;
}

.service-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: rgba(3,5,7,0.12);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto 6% -18% 44%;
  height: 42%;
  background:
    radial-gradient(circle, rgba(45,125,255,0.16), transparent 70%),
    radial-gradient(circle at 78% 42%, rgba(45,125,255,0.12), transparent 70%);
  opacity: 0.78;
  pointer-events: none;
  animation: serviceGlow 8s ease-in-out infinite alternate;
}

.service-card-accent {
  background:
    radial-gradient(circle at 78% 20%, rgba(45,125,255,0.22), transparent 32%),
    rgb(246, 242, 236);
}

.service-copy,
.service-visual {
  position: relative;
  z-index: 1;
}

.service-index {
  color: var(--accent);
  display: inline-flex;
  margin-bottom: clamp(22px, 3vw, 42px);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
}

.service-card h3 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
  font-weight: 400;
  line-height: 0.95;
  color: #030507;
}

.service-card p {
  max-width: 660px;
  margin: clamp(16px, 2.5vw, 28px) 0 0;
  color: rgba(3,5,7,0.84);
  font-size: clamp(0.9rem, 1.2vw, 1.15rem);
  line-height: 1.5;
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: clamp(22px, 3vw, 32px) 0 0;
  list-style: none;
}

.service-card li {
  padding: 9px 12px;
  border: 1px solid rgba(3,5,7,0.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.6);
  color: rgba(3,5,7,0.84);
  font-size: 13px;
  font-weight: 500;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  min-height: 52px;
  margin-top: clamp(24px, 4vw, 42px);
  padding: 0 22px;
  border: 2px solid rgba(3,5,7,0.82);
  border-radius: calc(var(--radius) * 1.5);
  color: var(--black);
  font-size: 1rem;
  transition: transform 0.35s var(--ease), background 0.35s ease, color 0.35s ease;
}

.service-link:hover {
  transform: translateX(8px);
  background: var(--black);
  color: #fff;
}

.service-link span {
  font-size: 1.65rem;
  line-height: 0;
}

.service-visual {
  min-height: clamp(240px, 26vw, 380px);
  border-radius: calc(var(--radius) * 1.5);
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 18%, rgba(255,255,255,0.8), transparent 20%),
    linear-gradient(135deg, #d9edff, #a7f3d0 48%, #78d6df);
  transform: rotate(1deg);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.34);
}

.service-visual > span {
  position: absolute;
  display: block;
  border-radius: var(--radius);
  background: #071425;
  box-shadow: 0 24px 70px rgba(3,5,7,0.24);
  animation: serviceFloat 7s ease-in-out infinite;
}

.service-visual > span:nth-child(1) {
  width: 38%;
  height: 64%;
  left: 12%;
  top: 10%;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.8)),
    #fff;
}

.service-visual > span:nth-child(2) {
  width: 33%;
  height: 70%;
  right: 13%;
  top: 18%;
  background:
    linear-gradient(180deg, #071425, #14233a);
  animation-delay: -1.6s;
}

.service-visual > span:nth-child(3) {
  width: 42%;
  height: 18%;
  left: 34%;
  bottom: 11%;
  background:
    linear-gradient(90deg, var(--accent), var(--blue));
  animation-delay: -3s;
}

.service-visual > span:nth-child(4) {
  width: 18%;
  aspect-ratio: 1;
  right: 8%;
  top: 9%;
  border-radius: 50%;
  background: var(--red);
  animation-delay: -4.4s;
}

.service-visual-commerce {
  background: linear-gradient(135deg, #faf7f2, #e5ded5 46%, var(--violet));
}

.service-visual-automation {
  background: linear-gradient(135deg, #f2ebe0, #e8dfd3 44%, var(--accent));
}

.service-visual-marketing {
  background: linear-gradient(135deg, #fdf8f4, var(--accent) 52%, var(--blue));
}

.motion-browser,
.commerce-phone,
.automation-map,
.campaign-card,
.campaign-orbit,
.cart-pulse {
  position: absolute;
  z-index: 1;
}

.motion-scan {
  display: none;
}

.motion-browser {
  left: 11%;
  top: 13%;
  width: 66%;
  height: 68%;
  border: 1px solid rgba(255,255,255,0.58);
  border-radius: calc(var(--radius) * 1.2);
  background: rgba(255,255,255,0.72);
  box-shadow: 0 28px 80px rgba(3,5,7,0.22);
  animation: interfaceFloat 7s ease-in-out infinite;
}

.motion-top {
  display: flex;
  gap: 6px;
  height: 30px;
  padding: 11px 13px;
  border-bottom: 1px solid rgba(3,5,7,0.08);
}

.motion-top i,
.motion-grid i,
.buy-flow i,
.campaign-orbit i {
  display: block;
  border-radius: 999px;
}

.motion-top i {
  width: 7px;
  height: 7px;
  background: rgba(3,5,7,0.28);
}

.motion-layout {
  position: relative;
  height: calc(100% - 30px);
  padding: 16px;
}

.motion-hero-block {
  width: 54%;
  height: 42%;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--black), var(--blue));
  animation: blockPulse 3.8s ease-in-out infinite;
}

.motion-line {
  width: 44%;
  height: 8px;
  margin-top: 12px;
  border-radius: 999px;
  background: rgba(3,5,7,0.16);
}

.motion-line-long {
  width: 72%;
}

.motion-grid {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  width: 46%;
}

.motion-grid i {
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: rgba(45,125,255,0.74);
  animation: tileRise 3.2s ease-in-out infinite;
}

.motion-grid i:nth-child(2) { animation-delay: 0.18s; }
.motion-grid i:nth-child(3) { animation-delay: 0.36s; }

.motion-cursor {
  position: absolute;
  right: 18%;
  top: 36%;
  width: 18px;
  height: 18px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(45,125,255,0.12);
  animation: cursorDrift 4.4s ease-in-out infinite;
}

.commerce-phone {
  left: 16%;
  top: 10%;
  width: 38%;
  height: 76%;
  padding: 14px;
  border: 1px solid rgba(3,5,7,0.12);
  border-radius: 24px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 28px 80px rgba(3,5,7,0.18);
  animation: interfaceFloat 7.4s ease-in-out infinite;
}

.product-photo {
  height: 48%;
  border-radius: calc(var(--radius) * 1.2);
  background:
    radial-gradient(circle at 62% 38%, rgba(255,255,255,0.9), transparent 18%),
    linear-gradient(135deg, var(--accent), var(--red));
  animation: productGlow 4.8s ease-in-out infinite;
}

.product-copy {
  width: 82%;
  height: 8px;
  margin-top: 14px;
  border-radius: 999px;
  background: rgba(3,5,7,0.2);
}

.product-copy.short {
  width: 54%;
}

.buy-flow {
  display: flex;
  gap: 7px;
  margin-top: 18px;
}

.buy-flow i {
  width: 30%;
  height: 10px;
  background: var(--black);
  animation: checkoutStep 2.8s ease-in-out infinite;
}

.buy-flow i:nth-child(2) { animation-delay: 0.28s; }
.buy-flow i:nth-child(3) { animation-delay: 0.56s; }

.cart-pulse {
  right: 13%;
  top: 20%;
  display: grid;
  place-items: center;
  width: 32%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-weight: 700;
  box-shadow: 0 28px 80px rgba(3,5,7,0.24);
  animation: metricPop 3.6s ease-in-out infinite;
}

.automation-map {
  inset: 12%;
}

.auto-node {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 76px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,0.38);
  border-radius: var(--radius);
  background: rgba(3,5,7,0.68);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 20px 60px rgba(3,5,7,0.24);
  animation: nodePulse 4s ease-in-out infinite;
}

.auto-node-a { left: 4%; top: 12%; }
.auto-node-b { right: 8%; top: 18%; animation-delay: 0.24s; }
.auto-node-c { left: 18%; bottom: 17%; animation-delay: 0.48s; }
.auto-node-d { right: 2%; bottom: 12%; animation-delay: 0.72s; }

.auto-path {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.85), transparent);
  transform-origin: left center;
  animation: pathFlow 2.8s linear infinite;
}

.auto-path-one {
  left: 25%;
  top: 31%;
  width: 48%;
  transform: rotate(6deg);
}

.auto-path-two {
  left: 34%;
  bottom: 32%;
  width: 42%;
  transform: rotate(-9deg);
  animation-delay: 0.42s;
}

.campaign-card {
  left: 12%;
  top: 13%;
  width: 48%;
  height: 70%;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: calc(var(--radius) * 1.2);
  background: rgba(255,255,255,0.76);
  box-shadow: 0 28px 80px rgba(3,5,7,0.2);
  animation: interfaceFloat 7.2s ease-in-out infinite;
}

.ad-preview {
  height: 48%;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 72% 30%, rgba(255,255,255,0.9), transparent 18%),
    linear-gradient(135deg, var(--black), var(--blue) 55%, var(--accent));
  animation: blockPulse 4s ease-in-out infinite;
}

.metric-row {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
}

.metric-row i,
.metric-row b {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: rgba(3,5,7,0.2);
}

.metric-row b {
  background: var(--black);
  transform-origin: left center;
  animation: barGrow 3s ease-in-out infinite;
}

.metric-row:nth-child(3) b { animation-delay: 0.25s; }
.metric-row:nth-child(4) b { animation-delay: 0.5s; }

.campaign-orbit {
  right: 13%;
  top: 21%;
  width: 30%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 50%;
  animation: orbitSpin 9s linear infinite;
}

.campaign-orbit i {
  position: absolute;
  width: 18px;
  height: 18px;
  background: #fff;
  box-shadow: 0 0 0 9px rgba(255,255,255,0.14);
}

.campaign-orbit i:nth-child(1) { left: 50%; top: -9px; }
.campaign-orbit i:nth-child(2) { right: -9px; bottom: 18%; }
.campaign-orbit i:nth-child(3) { left: 8%; bottom: 2%; }

.service-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: clamp(22px, 4vw, 44px);
}

.service-control {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1.45rem;
  cursor: pointer;
  transition: transform 0.32s var(--ease), background 0.32s ease, color 0.32s ease;
}

.service-control:hover {
  transform: translateY(-3px);
  background: #fff;
  color: var(--black);
}

.service-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-dots span {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: rgba(255,255,255,0.28);
  transition: width 0.32s var(--ease), background 0.32s ease;
}

.service-dots span.is-active {
  width: 28px;
  background: var(--accent);
}

.philosophy,
#work {
  background: transparent !important;
  color: var(--black) !important;
}

.principles {
  display: grid;
  border-top: 1px solid rgba(3,5,7,0.16);
}

.principle {
  display: grid;
  grid-template-columns: 120px 1fr minmax(260px, 0.65fr);
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 46px) 0;
  border-bottom: 1px solid rgba(3,5,7,0.16);
  transition: padding-left 0.35s var(--ease), background 0.35s ease;
}

.principle:hover {
  padding-left: 18px;
  background: rgba(255,255,255,0.22);
}

.principle span {
  color: var(--accent);
  font-weight: 500;
}

.principle h3 {
  margin: 0;
  font-size: 3rem;
  font-weight: 400;
  line-height: 0.95;
}

.principle p {
  margin: 0;
  color: rgba(3,5,7,0.64);
  font-size: 18px;
  line-height: 1.45;
}

.reel-cursor {
  --reel-index: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 156px;
  aspect-ratio: 9 / 14;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50vw, -50vh, 0) translate(-50%, -52%) scale(0.86) rotate(-2deg);
  transition: opacity 0.22s ease, filter 0.22s ease;
  filter: saturate(1.05);
  transform-origin: 50% 20%;
  will-change: transform;
}

.reel-cursor.is-visible {
  opacity: 1;
}

.reel-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform-origin: 50% 20%;
  border: 1px solid rgba(255,255,255,0.38);
  border-radius: calc(var(--radius) * 1.45);
  background: var(--black);
  box-shadow: 0 28px 80px rgba(3,5,7,0.34);
  will-change: transform;
}

.reel-stack {
  height: 100%;
  transform: translateY(calc(var(--reel-index) * -100%));
  transition: transform 0.58s var(--ease);
}

.reel-slide {
  position: relative;
  height: 100%;
  padding: 14px;
  color: #fff;
  overflow: hidden;
}

.reel-slide::before,
.reel-slide::after {
  content: none;
}

.reel-slide-purpose {
  background: linear-gradient(135deg, #eef3ff, rgba(45,125,255,0.38));
}

.reel-slide-speed {
  background: linear-gradient(135deg, #fbf3ed, rgba(45,125,255,0.4));
}

.reel-slide-automation {
  background: linear-gradient(135deg, #030507, #0d1f45 62%, rgba(45,125,255,0.82));
}

.reel-slide-convert {
  background: linear-gradient(135deg, #fff, rgba(196,24,107,0.42));
}

.reel-browser,
.reel-launch,
.reel-flow,
.reel-campaign,
.reel-orbit {
  position: absolute;
  z-index: 1;
}

.reel-browser {
  left: 14px;
  right: 14px;
  top: 26px;
  height: 54%;
  padding: 12px;
  border: 1px solid rgba(3,5,7,0.1);
  border-radius: 16px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 20px 54px rgba(3,5,7,0.16);
  animation: interfaceFloat 6.8s ease-in-out infinite;
}

.reel-dots {
  display: flex;
  gap: 5px;
  margin-bottom: 12px;
}

.reel-dots i {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(3,5,7,0.24);
}

.reel-hero-block {
  width: 66%;
  height: 34px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--black), var(--blue) 60%, var(--accent));
  animation: blockPulse 3.5s ease-in-out infinite;
}

.reel-line {
  width: 54%;
  height: 7px;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(3,5,7,0.16);
  transform-origin: left center;
  animation: barGrow 3s ease-in-out infinite;
}

.reel-line-long {
  width: 82%;
}

.reel-cursor-dot {
  position: absolute;
  right: 18%;
  top: 43%;
  width: 15px;
  height: 15px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  animation: cursorDrift 4s ease-in-out infinite;
}

.reel-launch {
  left: 17px;
  right: 17px;
  top: 30px;
  padding: 16px;
  border-radius: 17px;
  background: rgba(3,5,7,0.84);
  box-shadow: 0 22px 60px rgba(3,5,7,0.2);
  animation: interfaceFloat 6.5s ease-in-out infinite;
}

.reel-launch strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 1.15rem;
  line-height: 1;
}

.reel-bars {
  margin-top: 16px;
}

.reel-bars i {
  display: block;
  height: 7px;
  margin-top: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  transform-origin: left center;
  animation: barGrow 2.4s ease-in-out infinite;
}

.reel-bars i:nth-child(2) { width: 72%; animation-delay: 0.18s; }
.reel-bars i:nth-child(3) { width: 46%; animation-delay: 0.36s; }

.reel-steps {
  display: flex;
  gap: 7px;
  margin-top: 17px;
}

.reel-steps span {
  flex: 1;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  animation: checkoutStep 2.6s ease-in-out infinite;
}

.reel-steps span:nth-child(2) { animation-delay: 0.2s; }
.reel-steps span:nth-child(3) { animation-delay: 0.4s; }

.reel-flow {
  inset: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.reel-flow span {
  display: grid;
  place-items: center;
  min-width: 88px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  animation: nodePulse 3.5s ease-in-out infinite;
}

.reel-flow span:nth-of-type(2) { animation-delay: 0.22s; }
.reel-flow span:nth-of-type(3) { animation-delay: 0.44s; }

.reel-flow i {
  width: 2px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.58);
  animation: checkoutStep 2.2s ease-in-out infinite;
}

.reel-campaign {
  left: 14px;
  top: 24px;
  width: 64%;
  height: 58%;
  padding: 12px;
  border: 1px solid rgba(3,5,7,0.1);
  border-radius: 16px;
  background: rgba(255,255,255,0.74);
  box-shadow: 0 20px 54px rgba(3,5,7,0.13);
  animation: interfaceFloat 7s ease-in-out infinite;
}

.reel-ad {
  height: 40%;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--black), var(--blue) 55%, var(--accent));
  animation: blockPulse 3.8s ease-in-out infinite;
}

.reel-metric {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 7px;
  margin-top: 10px;
}

.reel-metric i,
.reel-metric b {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: rgba(3,5,7,0.18);
}

.reel-metric b {
  background: var(--black);
  transform-origin: left center;
  animation: barGrow 2.8s ease-in-out infinite;
}

.reel-metric:nth-child(3) b {
  animation-delay: 0.24s;
}

.reel-orbit {
  right: 14px;
  top: 48px;
  width: 54px;
  aspect-ratio: 1;
  border: 1px solid rgba(3,5,7,0.28);
  border-radius: 50%;
  animation: orbitSpin 8s linear infinite;
}

.reel-orbit i {
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--black);
}

.reel-orbit i:nth-child(1) { left: 50%; top: -5px; }
.reel-orbit i:nth-child(2) { right: -5px; bottom: 18%; }
.reel-orbit i:nth-child(3) { left: 10%; bottom: 2%; }

@media (pointer: fine) {
  .principle {
    cursor: none;
  }
}

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

.work {
  padding-top: clamp(72px, 8vw, 124px);
  padding-bottom: clamp(76px, 8vw, 132px);
}

.work .section-head {
  align-items: end;
  margin-bottom: clamp(34px, 4.5vw, 56px);
}

.work .section-head .button {
  align-self: end;
  white-space: nowrap;
}

.work-all-mobile {
  display: none;
}

.work .section-title {
  max-width: 980px;
  font-size: clamp(3rem, 4.7vw, 4.75rem);
}

.case-card {
  display: block;
  position: relative;
  min-height: clamp(320px, 34vw, 430px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: calc(var(--radius) * 1.15);
  background:
    linear-gradient(145deg, rgba(18,20,26,0.98), rgba(3,5,7,0.98));
  box-shadow: none;
  color: #fff;
  text-decoration: none;
  transition: transform 0.38s var(--ease), border-color 0.38s ease, background 0.38s ease;
}

.case-card::before {
  content: "";
  position: absolute;
  inset: 22px 22px auto auto;
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
}

.case-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.18);
  background:
    linear-gradient(145deg, rgba(20,22,28,1), rgba(3,5,7,1));
}

.case-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}

.case-media {
  display: none;
}

.case-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.02);
}

.case-media::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3,5,7,0.04), rgba(3,5,7,0.88)),
    var(--case-gradient);
}

.case-media::after {
  content: none;
}

.case-video-ui,
.case-photo-stack {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 3vw, 36px);
  top: clamp(18px, 3vw, 36px);
}

.case-video-ui {
  display: flex;
  align-items: end;
  gap: 8px;
  width: 132px;
  height: 72px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: 18px;
  background: rgba(3,5,7,0.46);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.case-video-ui span {
  flex: 1;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  animation: audioBars 1.4s ease-in-out infinite;
}

.case-video-ui span:nth-child(1) { height: 28%; }
.case-video-ui span:nth-child(2) { height: 76%; animation-delay: 0.18s; }
.case-video-ui span:nth-child(3) { height: 48%; animation-delay: 0.36s; }

.case-photo-stack {
  width: 150px;
  height: 110px;
}

.case-photo-stack span {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 18px;
  background:
    radial-gradient(circle at 72% 24%, rgba(255,255,255,0.86), transparent 18%),
    linear-gradient(135deg, rgba(255,255,255,0.64), rgba(45,125,255,0.58));
  box-shadow: 0 20px 60px rgba(3,5,7,0.2);
  animation: photoStack 5.8s ease-in-out infinite;
}

.case-photo-stack span:nth-child(1) {
  inset: 0 24px 24px 0;
}

.case-photo-stack span:nth-child(2) {
  inset: 18px 8px 10px 26px;
  animation-delay: 0.28s;
}

.case-photo-stack span:nth-child(3) {
  inset: 38px 0 0 56px;
  animation-delay: 0.56s;
}

.case-motion {
  position: absolute;
  z-index: 3;
  inset: 0;
  overflow: hidden;
}

.case-motion .motion-browser {
  left: 9%;
  top: 11%;
  width: 58%;
  height: 56%;
}

.case-motion .motion-hero-block {
  width: 62%;
  background: linear-gradient(135deg, #030507, var(--blue) 56%, var(--accent));
}

.booking-panel,
.catalog-panel,
.seo-orbit {
  position: absolute;
  z-index: 4;
}

.booking-panel {
  right: 9%;
  top: 17%;
  width: clamp(132px, 17vw, 196px);
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: calc(var(--radius) * 1.15);
  background: rgba(3,5,7,0.62);
  color: #fff;
  box-shadow: 0 26px 80px rgba(3,5,7,0.34);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: metricPop 3.8s ease-in-out infinite;
}

.booking-panel span {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.62);
}

.booking-panel strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.92;
}

.booking-panel i {
  display: block;
  height: 8px;
  margin-top: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.28);
  transform-origin: left center;
  animation: barGrow 3.1s ease-in-out infinite;
}

.booking-panel i:last-child {
  width: 68%;
  animation-delay: 0.24s;
}

.catalog-panel {
  left: 10%;
  top: 12%;
  width: 56%;
  height: 58%;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.36);
  border-radius: calc(var(--radius) * 1.2);
  background: rgba(255,255,255,0.72);
  box-shadow: 0 28px 80px rgba(3,5,7,0.22);
  animation: interfaceFloat 7.2s ease-in-out infinite;
}

.catalog-top {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.catalog-top i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(3,5,7,0.24);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.catalog-grid span {
  display: block;
  aspect-ratio: 1.15;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 72% 26%, rgba(255,255,255,0.78), transparent 19%),
    linear-gradient(135deg, rgba(45,125,255,0.72), rgba(45,125,255,0.68));
  animation: tileRise 3.4s ease-in-out infinite;
}

.catalog-grid span:nth-child(2) { animation-delay: 0.16s; }
.catalog-grid span:nth-child(3) { animation-delay: 0.32s; }
.catalog-grid span:nth-child(4) { animation-delay: 0.48s; }

.catalog-lines {
  margin-top: 13px;
}

.catalog-lines i {
  display: block;
  height: 7px;
  margin-top: 8px;
  border-radius: 999px;
  background: rgba(3,5,7,0.18);
  transform-origin: left center;
  animation: barGrow 3.2s ease-in-out infinite;
}

.catalog-lines i:nth-child(2) {
  width: 74%;
  animation-delay: 0.2s;
}

.catalog-lines i:nth-child(3) {
  width: 52%;
  animation-delay: 0.4s;
}

.seo-orbit {
  right: 10%;
  top: 19%;
  display: grid;
  place-items: center;
  width: clamp(108px, 15vw, 160px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,0.38);
  border-radius: 50%;
  background: rgba(3,5,7,0.34);
  color: #fff;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  box-shadow: 0 28px 80px rgba(3,5,7,0.3);
  animation: orbitSpin 10s linear infinite;
}

.seo-orbit span {
  display: grid;
  place-items: center;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(3,5,7,0.74);
  animation: orbitCounter 10s linear infinite;
}

.seo-orbit i {
  position: absolute;
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 8px rgba(255,255,255,0.14);
}

.seo-orbit i:nth-child(2) { top: -7px; left: 50%; }
.seo-orbit i:nth-child(3) { right: 4%; bottom: 17%; }
.seo-orbit i:nth-child(4) { left: 8%; bottom: 6%; }

.case-blue { --case-gradient: linear-gradient(135deg, rgba(45,125,255,0.58), transparent 58%); }
.case-green { --case-gradient: linear-gradient(135deg, rgba(45,125,255,0.44), transparent 58%); }
.case-red { --case-gradient: linear-gradient(135deg, rgba(20,184,166,0.46), transparent 58%); }
.case-violet { --case-gradient: linear-gradient(135deg, rgba(45,125,255,0.5), transparent 58%); }

.case-card:hover .case-media {
  transform: none;
}

.case-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: inherit;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 3.3vw, 42px);
  transform: translateY(0);
  transition: transform 0.5s var(--ease);
}

.case-card:hover .case-content {
  transform: translateY(-8px);
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: auto;
  padding-bottom: clamp(54px, 7vw, 84px);
  color: rgba(255,255,255,0.56);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.case-card h3 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 0.95;
}

.case-card p {
  max-width: 540px;
  margin: 18px 0 22px;
  color: rgba(255,255,255,0.66);
  font-size: 17px;
  line-height: 1.48;
}

.case-card strong {
  display: inline-flex;
  width: fit-content;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255,255,255,0.86);
  font-size: 13px;
  line-height: 1.35;
}

.case-open {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: rgba(255,255,255,0.76);
  font-size: 13px;
  font-weight: 600;
}

.case-open::after {
  content: "->";
  transition: transform 0.28s ease;
}

.case-card:hover .case-open::after {
  transform: translateX(4px);
}

body.project-page {
  background: var(--black);
  color: var(--black);
}

body.project-page .interactive-gradient {
  display: block;
}

body.project-page .project-hero {
  background: transparent;
}

body.project-page .project-detail,
body.project-page .project-scope,
body.project-page .project-result,
body.project-page .project-next,
body.project-page .site-footer {
  background: #fff;
  position: relative;
  z-index: 10;
}

.project-hero {
  padding: clamp(130px, 15vw, 190px) clamp(18px, 5vw, 80px) clamp(56px, 8vw, 96px);
  background: transparent;
}

.project-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.62fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: end;
}

.project-kicker {
  display: inline-flex;
  margin-bottom: 22px;
  color: rgba(3,5,7,0.48);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.project-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--black);
  font-family: "Syne", sans-serif;
  font-size: clamp(3.6rem, 9vw, 9rem);
  font-weight: 700;
  line-height: 0.94;
}

.project-intro {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(3,5,7,0.66);
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  line-height: 1.48;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.project-tags span {
  display: inline-flex;
  padding: 9px 13px;
  border: 1px solid rgba(3,5,7,0.14);
  border-radius: 999px;
  color: rgba(3,5,7,0.64);
  font-size: 13px;
}

.project-summary {
  border: 1px solid rgba(3,5,7,0.1);
  border-radius: calc(var(--radius) * 1.2);
  background: #fff;
  overflow: hidden;
}

.project-summary-item {
  padding: 22px;
  border-bottom: 1px solid rgba(3,5,7,0.08);
}

.project-summary-item:last-child {
  border-bottom: 0;
}

.project-summary-item span {
  display: block;
  margin-bottom: 8px;
  color: rgba(3,5,7,0.44);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.project-summary-item strong {
  display: block;
  color: var(--black);
  font-family: "Syne", sans-serif;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  line-height: 1.1;
}

.project-detail {
  display: grid;
  grid-template-columns: minmax(240px, 0.52fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 88px);
  padding: clamp(52px, 8vw, 110px) clamp(18px, 5vw, 80px);
  border-top: 1px solid rgba(3,5,7,0.08);
}

.project-detail h2,
.project-next h2 {
  margin: 0;
  color: var(--black);
  font-family: "Syne", sans-serif;
  font-size: clamp(2.2rem, 4vw, 4.7rem);
  line-height: 1;
}

.project-detail-lead {
  margin: 18px 0 0;
  color: rgba(3,5,7,0.58);
  font-size: 1.08rem;
  line-height: 1.55;
}

.project-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(3,5,7,0.1);
  color: rgba(3,5,7,0.72);
  font-size: 1.08rem;
  line-height: 1.5;
}

.project-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.project-scope {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(18px, 5vw, 80px) clamp(52px, 8vw, 110px);
}

.project-scope-item {
  min-height: 180px;
  padding: 24px;
  border: 1px solid rgba(3,5,7,0.08);
  background: #fff;
}

.project-scope-item span {
  color: rgba(3,5,7,0.4);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.project-scope-item strong {
  display: block;
  margin-top: 44px;
  color: var(--black);
  font-family: "Syne", sans-serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.08;
}

.project-result {
  margin: 0 clamp(18px, 5vw, 80px) clamp(52px, 8vw, 110px);
  padding: clamp(32px, 5vw, 58px);
  border-radius: calc(var(--radius) * 1.2);
  border: 1px solid rgba(3,5,7,0.1);
  background: #fff;
  color: var(--black);
}

.project-result span {
  display: block;
  margin-bottom: 20px;
  color: rgba(3,5,7,0.48);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.project-result p {
  max-width: 900px;
  margin: 0;
  color: var(--black);
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4.6vw, 5rem);
  line-height: 1.02;
}

.project-next {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(48px, 7vw, 86px) clamp(18px, 5vw, 80px);
  border-top: 1px solid rgba(3,5,7,0.08);
}

.project-next-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Dark project detail pages */
body.project-page {
  background: var(--black);
  color: #fff;
}

body.project-page .interactive-gradient {
  display: none;
}

body.project-page .site-header,
body.project-page .site-header .site-nav,
body.project-page .site-header .lang-switcher {
  color: #fff;
}

body.project-page .site-header .logo-mark img {
  filter: invert(1);
}

body.project-page .site-header .button-small {
  border-color: #fff;
  background: #fff;
  color: var(--black);
}

body.project-page .project-hero,
body.project-page .project-detail,
body.project-page .project-scope,
body.project-page .project-result,
body.project-page .project-next,
body.project-page .site-footer {
  background: var(--black);
  color: #fff;
}

body.project-page .project-hero {
  background:
    radial-gradient(circle at 78% 14%, rgba(45,125,255,0.24), transparent 34%),
    radial-gradient(circle at 20% 82%, rgba(45,125,255,0.16), transparent 30%),
    linear-gradient(180deg, #030507 0%, #070a11 100%);
}

body.project-page .project-kicker,
body.project-page .project-summary-item span,
body.project-page .project-result span,
body.project-page .project-scope-item span {
  color: rgba(255,255,255,0.5);
}

body.project-page .project-hero h1,
body.project-page .project-detail h2,
body.project-page .project-next h2,
body.project-page .project-summary-item strong,
body.project-page .project-scope-item strong,
body.project-page .project-result p {
  color: #fff;
}

body.project-page .project-intro,
body.project-page .project-detail-lead,
body.project-page .project-list li {
  color: rgba(255,255,255,0.68);
}

body.project-page .project-tags span,
body.project-page .project-summary,
body.project-page .project-scope-item,
body.project-page .project-result {
  border-color: rgba(255,255,255,0.12);
}

body.project-page .project-tags span {
  background: rgba(255,255,255,0.045);
  color: rgba(255,255,255,0.78);
}

body.project-page .project-summary,
body.project-page .project-scope-item {
  background: rgba(255,255,255,0.045);
}

body.project-page .project-summary-item,
body.project-page .project-list li,
body.project-page .project-detail,
body.project-page .project-next {
  border-color: rgba(255,255,255,0.1);
}

body.project-page .project-result {
  background:
    radial-gradient(circle at 86% 12%, rgba(45,125,255,0.16), transparent 34%),
    rgba(255,255,255,0.045);
}



.process {
  position: relative;
  overflow: visible;
  background:
    radial-gradient(circle at 78% 10%, rgba(45,125,255,0.2), transparent 34%),
    radial-gradient(circle at 14% 82%, rgba(45,125,255,0.14), transparent 30%),
    linear-gradient(135deg, rgba(248,246,241,0.96), rgba(241,235,246,0.86));
  color: var(--black);
}

.process::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 76% 28%, rgba(45,125,255,0.14), transparent 34%),
    radial-gradient(circle at 26% 70%, rgba(45,125,255,0.1), transparent 30%),
    linear-gradient(0deg, rgba(255,255,255,0.62), transparent 38%, rgba(45,125,255,0.06));
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
  opacity: 0.6;
}

.process .section-head,
.process-track {
  position: relative;
  z-index: 1;
}

.process .section-kicker {
  color: var(--accent);
}

.process-track {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: start;
  max-width: 100%;
  overflow: visible;
}

.process-visual {
  position: sticky;
  top: clamp(86px, 12vh, 126px);
  align-self: start;
  min-height: clamp(420px, 46vw, 620px);
  display: grid;
  align-content: center;
  gap: 24px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(3,5,7,0.13);
  border-radius: calc(var(--radius) * 2);
  background: rgba(255,255,255,0.5);
  box-shadow: 0 30px 100px rgba(3,5,7,0.1);
  overflow: hidden;
}

.process-visual::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    conic-gradient(from 140deg, transparent, rgba(45,125,255,0.22), transparent, rgba(45,125,255,0.2), transparent),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.8), transparent 46%);
  animation: processSweep 10s linear infinite;
  opacity: 0.7;
}

.process-orbit,
.process-line,
.process-visual p {
  position: relative;
  z-index: 1;
}

.process-orbit {
  width: min(360px, 100%);
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.86) 0 32%, transparent 33%),
    conic-gradient(from -70deg, rgba(45,125,255,0.88), rgba(45,125,255,0.72), rgba(20,184,166,0.68), rgba(45,125,255,0.88));
  box-shadow: inset 0 0 0 1px rgba(3,5,7,0.1), 0 24px 80px rgba(45,125,255,0.13);
}

.process-orbit::before,
.process-orbit::after {
  content: "";
  position: absolute;
  inset: 17%;
  border: 1px solid rgba(3,5,7,0.12);
  border-radius: 50%;
}

.process-orbit::after {
  inset: 34%;
  border-color: rgba(3,5,7,0.08);
  background: rgba(255,255,255,0.68);
}

.process-orbit span {
  position: absolute;
  left: calc(50% - 7px);
  top: calc(50% - 7px);
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--black);
  box-shadow: 0 0 0 9px rgba(255,255,255,0.58);
  transform:
    rotate(calc(var(--node-angle) * 1deg))
    translateY(calc(min(160px, 42vw) * -1))
    rotate(calc(var(--node-angle) * -1deg));
  transition: transform 0.45s var(--ease), background 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.process-orbit span:nth-child(1) { --node-angle: 0; }
.process-orbit span:nth-child(2) { --node-angle: 72; }
.process-orbit span:nth-child(3) { --node-angle: 144; }
.process-orbit span:nth-child(4) { --node-angle: 216; }
.process-orbit span:nth-child(5) { --node-angle: 288; }

.process-orbit span.is-active {
  background: var(--accent);
  box-shadow: 0 0 0 12px rgba(45,125,255,0.17), 0 0 34px rgba(45,125,255,0.46);
  transform:
    rotate(calc(var(--node-angle) * 1deg))
    translateY(calc(min(160px, 42vw) * -1))
    rotate(calc(var(--node-angle) * -1deg))
    scale(1.8);
}

.process-orbit strong {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  font-size: clamp(4.1rem, 9vw, 7rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.process-line {
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(3,5,7,0.12);
  background: rgba(3,5,7,0.08);
  overflow: hidden;
}

.process-line span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--blue), var(--red));
  transition: width 0.45s var(--ease);
}

.process-visual p {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.65rem);
  font-weight: 400;
  line-height: 0.98;
}

.process-steps {
  display: grid;
  gap: clamp(24px, 5vw, 54px);
  padding-bottom: clamp(40px, 8vw, 96px);
}

.process-card {
  min-height: clamp(260px, 38vh, 420px);
  display: grid;
  align-content: center;
  gap: 20px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(3,5,7,0.13);
  border-radius: calc(var(--radius) * 1.5);
  background: rgba(255,255,255,0.46);
  color: var(--black);
  box-shadow: 0 24px 70px rgba(3,5,7,0.08);
  opacity: 0.45;
  transform: translateX(28px) scale(0.97);
  filter: blur(0.35px);
  transition:
    opacity 0.45s var(--ease),
    transform 0.45s var(--ease),
    filter 0.45s var(--ease),
    background 0.45s var(--ease),
    border-color 0.45s var(--ease);
}

.process-card.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: none;
  background: rgba(255,255,255,0.84);
  border-color: rgba(45,125,255,0.34);
}

.process-card span {
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(45,125,255,0.28);
  border-radius: var(--radius);
  color: var(--accent);
  background: rgba(45,125,255,0.08);
  font-size: 12px;
}

.process-card h3 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.55rem, 5.3vw, 5.2rem);
  font-weight: 400;
  line-height: 0.9;
}

.process-card p {
  max-width: 620px;
  margin: 0;
  color: rgba(3,5,7,0.64);
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  line-height: 1.45;
}

.about {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: flex-start;
}

.about-copy {
  max-width: 800px;
  color: rgba(255,255,255,0.68);
}

.team-stack {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  height: auto;
}

.team-card {
  position: relative;
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  aspect-ratio: 0.76;
  display: flex;
  align-items: flex-end;
  padding: 24px 20px;
  border-radius: calc(var(--radius) * 1.5);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), opacity 0.4s var(--ease);
}

.team-card-one {
  background: linear-gradient(160deg, #1a4fd6 0%, #0d2a8a 60%, #05122e 100%);
  transform: none;
  z-index: 1;
}

.team-card-two {
  background: linear-gradient(160deg, #0f766e 0%, #115e59 55%, #061716 100%);
  transform: translateY(-8px);
  z-index: 2;
}

.team-card-three {
  background: linear-gradient(160deg, #5c2db8 0%, #3a1780 55%, #12062a 100%);
  transform: none;
  z-index: 1;
}

.team-stack:hover .team-card {
  opacity: 0.65;
}

.team-stack .team-card:hover {
  opacity: 1;
  transform: translateY(-16px) scale(1.03) !important;
  box-shadow: 0 28px 64px rgba(0,0,0,0.36);
  z-index: 5 !important;
}

.team-card span {
  position: relative;
  z-index: 1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 11px;
  color: rgba(255,255,255,0.92);
}

.team-card-one {
  background: linear-gradient(160deg, #1a4fd6 0%, #0d2a8a 60%, #05122e 100%);
}

.team-card-two {
  background: linear-gradient(160deg, #0f766e 0%, #115e59 55%, #061716 100%);
}

.team-card-three {
  background: linear-gradient(160deg, #5c2db8 0%, #3a1780 55%, #12062a 100%);
}

/* Card Mockups inside Team Stack */
.card-mockup {
  position: absolute;
  inset: 16px 16px 54px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);
}

.card-mockup .motion-scan {
  opacity: 0.22;
  mix-blend-mode: screen;
}

/* 1. Creative Mockup Styles */
.mockup-creative {
  background: linear-gradient(135deg, rgba(26, 79, 214, 0.1), rgba(45,125,255, 0.15));
}
.mockup-creative .window-header {
  padding: 8px 12px;
  display: flex;
  gap: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mockup-creative .window-header .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}
.mockup-creative .window-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
.mockup-creative .glass-widget {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--radius) * 0.8);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.24);
}
.mockup-creative .widget-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--violet));
  margin-bottom: 10px;
  animation: designPulse 3.4s ease-in-out infinite;
}
.mockup-creative .widget-line {
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 6px;
  transform-origin: left center;
  animation: lineBuild 3.2s ease-in-out infinite;
}
.mockup-creative .widget-line.short { width: 40%; }
.mockup-creative .widget-line.long { width: 75%; margin-bottom: 0; animation-delay: 0.22s; }

/* 2. Growth Mockup Styles */
.mockup-growth {
  background: linear-gradient(135deg, rgba(196, 24, 107, 0.1), rgba(255, 70, 53, 0.15));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
}
.mockup-growth .growth-stat {
  font-family: "Syne", sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 0 10px rgba(255, 70, 53, 0.3);
}
.mockup-growth .chart-container {
  height: 60px;
}
.mockup-growth .growth-chart {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.mockup-growth .growth-chart path {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: chartDraw 3.8s ease-in-out infinite;
}
.mockup-growth .pulsing-dot {
  animation: chartPulse 2s infinite;
  transform-origin: 85px 5px;
}

.mockup-growth .metric-row {
  grid-template-columns: 18px 1fr;
  margin-top: 10px;
}

.mockup-growth .metric-row i,
.mockup-growth .metric-row b {
  height: 7px;
}
@keyframes chartPulse {
  0% { r: 3px; opacity: 1; }
  50% { r: 7px; opacity: 0.4; }
  100% { r: 3px; opacity: 1; }
}

@keyframes chartDraw {
  0% { stroke-dashoffset: 120; opacity: 0.48; }
  55%, 100% { stroke-dashoffset: 0; opacity: 1; }
}

@keyframes designPulse {
  0%, 100% { transform: scale(1); filter: saturate(1); }
  50% { transform: scale(1.14); filter: saturate(1.45); }
}

@keyframes lineBuild {
  0%, 100% { transform: scaleX(0.52); opacity: 0.5; }
  50% { transform: scaleX(1); opacity: 1; }
}

/* 3. Automation Mockup Styles */
.mockup-automation {
  background: linear-gradient(135deg, rgba(92, 45, 184, 0.1), rgba(45, 125, 255, 0.15));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 16px;
}
.mockup-automation .flow-node {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
  animation: nodePulse 3.2s ease-in-out infinite;
}
.mockup-automation .node-trigger {
  border-color: rgba(45, 125, 255, 0.3);
}
.mockup-automation .node-action {
  border-color: rgba(45, 125, 255, 0.3);
  animation-delay: 0.32s;
}

.mockup-automation .node-report {
  border-color: rgba(255,255,255,0.24);
  animation-delay: 0.64s;
}

.mockup-automation .flow-line {
  width: 1.5px;
  height: 24px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.mockup-automation .flow-line-short {
  height: 18px;
}
.mockup-automation .line-glow {
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  animation: flowGlow 2.5s infinite linear;
}
@keyframes flowGlow {
  0% { top: -10px; }
  100% { top: 24px; }
}

.industries {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 24%, rgba(45,125,255,0.42), transparent 32%),
    radial-gradient(circle at 82% 16%, rgba(45,125,255,0.38), transparent 34%),
    linear-gradient(to bottom, #090a10 0%, #22102c 48%, var(--black) 100%);
  color: #fff;
}

.industries .section-kicker {
  color: var(--accent);
}

.industries .section-title {
  max-width: 920px;
  color: #fff;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 42px;
}

.industry-tags span {
  padding: clamp(14px, 2vw, 22px) clamp(16px, 3vw, 34px);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 2.25rem;
  font-weight: 400;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

.testimonials .section-kicker,
.faq .section-kicker,
.process .section-kicker,
.intro .section-kicker {
  color: var(--blue);
}

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

.testimonial {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(3,5,7,0.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.38);
}

.testimonial p {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.5;
  font-weight: 400;
}

.testimonial cite {
  display: block;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(3,5,7,0.1);
  color: rgba(3,5,7,0.52);
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 1060px;
  margin-left: auto;
}

.faq-item {
  border: 1px solid rgba(3,5,7,0.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.38);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  cursor: pointer;
  font-weight: 400;
  font-size: 1.5rem;
}

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

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 28px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: rgba(3,5,7,0.65);
  font-size: 17px;
  line-height: 1.55;
}

.faq-item[open] {
  animation: faqOpen 0.35s var(--ease);
}

@keyframes faqOpen {
  from {
    opacity: 0.6;
    transform: translateY(-6px);
  }
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 12vw, 180px) clamp(18px, 5vw, 80px);
  background:
    radial-gradient(circle at 78% 70%, rgba(45, 125, 255, 0.28), transparent 35%),
    var(--black);
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, #000, transparent 74%);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 1060px;
}

.final-cta h2 {
  margin: 0;
  font-family: "Syne", "Outfit", ui-sans-serif, system-ui, sans-serif;
  font-size: 4.55rem;
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: 0;
}

.final-cta p:not(.section-kicker) {
  max-width: 640px;
  color: rgba(255,255,255,0.72);
  font-size: 1.5rem;
  line-height: 1.45;
}

.email-link {
  display: inline-flex;
  margin-top: 32px;
  color: var(--accent);
  font-weight: 500;
}

.results {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: #ffffff;
  color: var(--black);
  border-block: 1px solid rgba(3,5,7,0.08);
}

.metric {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 3vw, 38px);
  border-right: 1px solid rgba(3,5,7,0.08);
}

.metric strong {
  font-size: 3.4rem;
  line-height: 0.85;
  font-weight: 500;
  color: var(--black);
}

.metric p {
  max-width: 180px;
  margin: 0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0;
  color: rgba(3, 5, 7, 0.6);
}
.brand-wall {
  background: transparent !important;
  border-top: none !important;
  border-bottom: none !important;
}

.brand-wall .section-kicker {
  margin-bottom: 36px;
}

.brand-wall-content {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.32fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
}

.brand-wall-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 32px 28px;
  border: 1px solid rgba(3,5,7,0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 12px 40px rgba(3,5,7,0.04);
}

.brand-wall-cta h3 {
  font-family: "Syne", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 12px;
  color: var(--black);
}

.brand-wall-cta p {
  font-size: 0.95rem;
  color: rgba(3,5,7,0.6);
  margin: 0 0 24px;
  line-height: 1.45;
}

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

.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  align-items: center;
}

/* SVG logo — img tag */
.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.logo-item img {
  display: block;
  height: 70px;
  width: 100%;
  max-width: 100%;
  object-fit: contain;
  mix-blend-mode: plus-lighter; /* Removes dark backgrounds on dark theme, or multiply on light theme */
  filter: grayscale(1) contrast(1.2) brightness(1.2) opacity(0.85);
  transition: filter 0.35s ease, transform 0.35s ease;
}

.logo-item img:hover {
  filter: grayscale(0) contrast(1) brightness(1) opacity(1);
  transform: scale(1.04);
}

/* Placeholder — Beyaz kare üzerine Redmono kırmızısı */
.logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 4px;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.logo-placeholder::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: #ff3344; /* Redmono Kırmızısı */
  border-radius: 2px;
}

@media (max-width: 860px) {
  .brand-wall-content {
    grid-template-columns: 1fr;
  }
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .logo-item img {
    height: 52px;
  }
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto auto;
  gap: 40px;
  padding: 52px clamp(18px, 5vw, 80px);
  background: var(--black);
  color: #fff;
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 380px;
  font-family: "Syne", "Outfit", ui-sans-serif, system-ui, sans-serif;
  font-size: 2.25rem;
  font-weight: 400;
  color: rgba(255,255,255,0.58);
  line-height: 1;
}

.footer-links {
  display: grid;
  gap: 12px;
  align-content: start;
  color: rgba(255,255,255,0.72);
}

.site-footer .copyright {
  grid-column: 1 / -1;
  margin: 18px 0 0;
  max-width: none;
  font-family: "Outfit", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: rgba(255,255,255,0.42);
  line-height: 1.3;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(32px) rotate(1.2deg);
  transform-origin: left bottom;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}

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

/* Hero line stagger — each line clips up from below */
.js .hero-title-row {
  display: block;
  overflow: hidden;
}

.js .hero-title-row .hero-row-inner {
  display: block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 1s var(--ease), opacity 0.7s var(--ease);
  transition-delay: var(--delay, 0ms);
}

.js .hero-title-row.is-visible .hero-row-inner {
  transform: translateY(0);
  opacity: 1;
}

/* hero-title-line is flex — override overflow clip for it */
.js .hero-title-line.hero-title-row {
  display: flex !important;
  overflow: visible;
}

.js .service-card.reveal,
.js .service-card.reveal.is-visible {
  transform:
    translateX(-50%)
    translateX(var(--card-x, 0px))
    scale(var(--card-scale, 1));
}

@media (min-width: 861px) {
  .js .service-card.reveal,
  .js .service-card.reveal.is-visible {
    transform: none;
  }
}

/* ─ scroll progress bar ─ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  z-index: 200;
  pointer-events: none;
  transition: width 0.1s linear;
  transform-origin: left;
}

.js .process-card.reveal.is-visible {
  opacity: 0.45;
  transform: translateX(28px) scale(0.97);
}

.js .process-card.reveal.is-visible.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.js .process-visual.reveal,
.js .process-visual.reveal.is-visible {
  transform: none;
}


@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 0.2; }
  50% { transform: translateY(16px); opacity: 1; }
  100% { transform: translateY(28px); opacity: 0; }
}

@keyframes videoSweep {
  from { transform: translateX(-38%) rotate(9deg); }
  to { transform: translateX(38%) rotate(9deg); }
}

@keyframes serviceFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-7deg); }
  50% { transform: translate3d(10px, -18px, 0) rotate(-4deg); }
}

@keyframes serviceGlow {
  from { transform: translate3d(-8%, 0, 0) scale(0.94); opacity: 0.52; }
  to { transform: translate3d(8%, -4%, 0) scale(1.08); opacity: 0.86; }
}

@keyframes motionScan {
  from { transform: translateX(-42%) rotate(8deg); }
  to { transform: translateX(42%) rotate(8deg); }
}

@keyframes audioBars {
  0%, 100% { transform: scaleY(0.46); opacity: 0.58; }
  50% { transform: scaleY(1); opacity: 1; }
}

@keyframes photoStack {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-2deg); }
  50% { transform: translate3d(-8px, -10px, 0) rotate(2deg); }
}

@keyframes interfaceFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-1.5deg); }
  50% { transform: translate3d(10px, -16px, 0) rotate(1deg); }
}

@keyframes blockPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.035); opacity: 0.9; }
}

@keyframes tileRise {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.72; }
  50% { transform: translate3d(0, -9px, 0); opacity: 1; }
}

@keyframes cursorDrift {
  0%, 100% { transform: translate3d(-20px, 16px, 0) scale(0.9); }
  50% { transform: translate3d(24px, -20px, 0) scale(1.08); }
}

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

@keyframes checkoutStep {
  0%, 100% { opacity: 0.26; transform: scaleX(0.64); }
  50% { opacity: 1; transform: scaleX(1); }
}

@keyframes metricPop {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-10px, 10px, 0) scale(1.08); }
}

@keyframes nodePulse {
  0%, 100% { transform: translate3d(0, 0, 0); border-color: rgba(255,255,255,0.28); }
  50% { transform: translate3d(0, -8px, 0); border-color: rgba(255,255,255,0.76); }
}

@keyframes pathFlow {
  from { background-position: -120px 0; opacity: 0.42; }
  to { background-position: 120px 0; opacity: 1; }
}

@keyframes barGrow {
  0%, 100% { transform: scaleX(0.48); opacity: 0.48; }
  50% { transform: scaleX(1); opacity: 1; }
}

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

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

@keyframes processSweep {
  from { transform: rotate(0deg) scale(1.02); }
  to { transform: rotate(360deg) scale(1.02); }
}

@keyframes reelMotion {
  from { transform: translate3d(-4%, -2%, 0) scale(1.05) rotate(-2deg); }
  to { transform: translate3d(4%, 3%, 0) scale(1.13) rotate(2deg); }
}

@keyframes reelProgress {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

@media (min-width: 1500px) {
  .hero-title {
    font-size: clamp(7rem, 7vw, 9.5rem);
  }

  .section-title {
    font-size: 4.45rem;
  }

  .final-cta h2 {
    font-size: 4.8rem;
  }
}

@media (max-height: 760px) and (min-width: 861px) {
  .hero {
    padding-top: 110px;
  }

  .hero-title {
    font-size: 4.55rem;
    line-height: 0.92;
  }

  .hero-copy {
    margin-top: 22px;
    font-size: 1.15rem;
    max-width: 620px;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .trust-line {
    margin-top: 18px;
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto auto auto;
  }

  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

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

  .about,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 5rem;
    line-height: 1.18;
  }

  .section-title {
    font-size: 3.55rem;
  }

  .intro .section-title {
    font-size: 2.6rem;
  }

  .case-card h3 {
    font-size: 2.9rem;
  }

  .final-cta h2 {
    font-size: 4rem;
  }

  .metric strong {
    font-size: 3.2rem;
  }
}

@media (max-width: 860px) {
  .site-header > .button {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding-top: 100px;
  }

  .hero-title {
    font-size: 3.4rem;
  }

  .hero-copy,
  .section-copy,
  .about-copy,
  .final-cta p:not(.section-kicker) {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2.6rem;
  }

  .intro .section-title {
    font-size: 2.1rem;
  }

  .hero-bottom p {
    display: none;
  }

  .mobile-panel a:not(.button) {
    font-size: 3rem;
    line-height: 1.1;
  }

  .section-head {
    display: block;
  }

  .section-head .text-link {
    display: inline-flex;
    margin-top: 22px;
  }

  .case-grid,
  .testimonial-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  /* override base + .js high-specificity rules for mobile */
  .service-card,
  .js .service-card.reveal,
  .js .service-card.reveal.is-visible {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    opacity: 1 !important;
    filter: none !important;
    pointer-events: auto !important;
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    transform: none !important;
    border-radius: calc(var(--radius) * 1.5) !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18) !important;
  }

  .service-card + .service-card {
    margin-top: 20px;
  }

  .services-grid {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: auto;
    flex: none;
    overflow: visible;
    gap: 0;
    padding-bottom: 0;
  }

  .service-controls {
    display: none;
  }

  .service-visual {
    min-height: 180px;
    order: -1;
  }

  .service-card h3 {
    font-size: 2rem;
  }

  .service-card p {
    font-size: 0.95rem;
  }

  .service-card li {
    font-size: 12px;
    padding: 7px 10px;
  }

  .principle {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .principle h3 {
    font-size: 2.35rem;
  }

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

  .process-visual {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .process-orbit {
    width: min(260px, 100%);
  }

  .process-orbit span {
    transform:
      rotate(calc(var(--node-angle) * 1deg))
      translateY(-108px)
      rotate(calc(var(--node-angle) * -1deg));
  }

  .process-orbit span.is-active {
    transform:
      rotate(calc(var(--node-angle) * 1deg))
      translateY(-108px)
      rotate(calc(var(--node-angle) * -1deg))
      scale(1.65);
  }

  .process-card,
  .process-card.is-active,
  .js .process-card.reveal.is-visible,
  .js .process-card.reveal.is-visible.is-active {
    min-height: auto;
    opacity: 1;
    filter: none;
    transform: none;
  }

  .case-card h3,
  .final-cta h2 {
    font-size: 2.8rem;
  }

  .industry-tags span {
    font-size: 1.5rem;
  }

  .testimonial p {
    font-size: 1.05rem;
  }

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

  .metric {
    min-height: 160px;
    border-right: 0;
    border-bottom: 1px solid rgba(3,5,7,0.18);
  }

  .team-stack {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    height: auto;
    margin-top: 24px;
  }

  .team-card {
    position: relative;
    width: 100%;
    max-width: 260px;
    aspect-ratio: 0.78;
    padding: 18px 16px;
  }

  .team-card-one,
  .team-card-two,
  .team-card-three {
    transform: none;
  }
}

@media (max-width: 560px) {
  .logo-mark {
    width: 32px;
    height: 32px;
  }

  .hero {
    padding-top: 84px;
    padding-bottom: 36px;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 12px;
    font-size: 11px;
  }

  .hero-title {
    font-size: 2.4rem;
    line-height: 0.95;
  }

  .hero-copy {
    font-size: 16px;
    margin-top: 18px;
  }

  .hero-actions {
    margin-top: 20px;
    gap: 10px;
  }

  .trust-line {
    font-size: 10px;
    line-height: 1.7;
  }

  .button {
    width: 100%;
    min-height: 46px;
    font-size: 13px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .section {
    padding: clamp(56px, 9vw, 100px) clamp(16px, 4vw, 40px);
  }

  .section-title,
  .case-card h3,
  .final-cta h2 {
    font-size: 1.9rem;
  }

  .intro .section-title {
    font-size: 1.65rem;
  }

  .service-card h3 {
    font-size: 1.8rem;
  }

  .service-card {
    padding: 20px;
    border-radius: var(--radius);
  }

  .service-card p {
    font-size: 0.9rem;
  }

  .service-visual {
    min-height: 200px;
  }

  .services-pin {
    padding: 56px 16px 36px;
  }

  .principle h3 {
    font-size: 1.7rem;
  }

  .principle p {
    font-size: 15px;
  }

  .metric {
    min-height: 120px;
    padding: 18px;
  }

  .metric strong {
    font-size: 2.4rem;
  }

  .metric p {
    font-size: 12px;
  }

  .testimonial {
    min-height: auto;
    padding: 20px;
  }

  .testimonial p {
    font-size: 1rem;
  }

  .case-card {
    min-height: 400px;
  }

  .case-card h3 {
    font-size: 1.8rem;
  }

  .case-card p {
    font-size: 14px;
  }

  .case-content {
    transform: translateY(0);
    padding: 18px;
  }

  .industry-tags span {
    font-size: 1rem;
    padding: 10px 16px;
  }

  .faq-item summary {
    font-size: 1.15rem;
    padding: 16px 18px;
  }

  .faq-item p {
    font-size: 15px;
    padding: 0 18px 18px;
  }

  .final-cta {
    padding: clamp(60px, 10vw, 120px) clamp(16px, 4vw, 40px);
  }

  .final-cta h2 {
    font-size: 2rem;
  }

  .final-cta p:not(.section-kicker) {
    font-size: 1rem;
  }

  .email-link {
    font-size: 14px;
  }

  .site-footer {
    gap: 20px;
    padding: 36px 16px;
  }

  .site-footer p {
    font-size: 1.6rem;
  }

  .footer-logo {
    font-size: 1.3rem;
  }

  .mobile-panel a:not(.button) {
    font-size: 2.4rem;
    line-height: 1.15;
  }

  .about-copy {
    font-size: 1rem;
  }

  .team-stack {
    height: auto;
    gap: 16px;
  }

  .team-card {
    max-width: 240px;
    padding: 16px 14px;
  }

  .team-card span {
    font-size: 10px;
  }

  .process-card h3 {
    font-size: 2rem;
  }

  .process-card p {
    font-size: 0.95rem;
  }

  .process-orbit strong {
    font-size: 3.5rem;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-copy {
    font-size: 14px;
    line-height: 1.42;
  }

  .trust-line {
    display: none;
  }

  .section-title,
  .case-card h3,
  .final-cta h2 {
    font-size: 1.6rem;
  }

  .mobile-panel a:not(.button) {
    font-size: 2rem;
  }

  .service-card h3 {
    font-size: 1.5rem;
  }

  .principle h3 {
    font-size: 1.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

/* ─── Lang Switcher ─────────────────────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.lang-btn {
  padding: 5px 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  font-size: 12px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  opacity: 0.52;
  transition: opacity 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  letter-spacing: 0.04em;
}

.lang-btn[aria-pressed="true"] {
  opacity: 1;
  border-color: rgba(3,5,7,0.22);
  background: rgba(255,255,255,0.28);
}

.site-header.is-on-dark .lang-btn[aria-pressed="true"],
body.menu-open .site-header .lang-btn[aria-pressed="true"] {
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.1);
}

.lang-btn:hover {
  opacity: 1;
}

.lang-divider {
  opacity: 0.28;
  font-size: 11px;
}

/* ─── FAQ Collapse ─────────────────────────────────────────── */
.faq-extra {
  display: grid;
  gap: 10px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.52s cubic-bezier(0.22,1,0.36,1), opacity 0.38s ease;
}

.faq-extra.is-open {
  max-height: 1200px;
  opacity: 1;
  pointer-events: auto;
}

.faq-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 6px;
  padding: 16px 24px;
  border: 1px dashed rgba(3,5,7,0.22);
  border-radius: var(--radius);
  background: transparent;
  color: rgba(3,5,7,0.64);
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.faq-toggle-btn:hover {
  border-color: var(--accent);
  background: rgba(45,125,255,0.04);
  color: var(--accent);
}

.faq-toggle-icon {
  display: inline-block;
  font-size: 16px;
  transition: transform 0.38s cubic-bezier(0.22,1,0.36,1);
}

.faq-toggle-btn[aria-expanded="true"] .faq-toggle-icon {
  transform: rotate(180deg);
}

/* ── Bottom Half Solid Black Theme ──────────────────────── */
.process,
.about,
.testimonials,
.faq {
  background: #030507 !important;
  color: #ffffff !important;
}

.process::before {
  display: none !important;
}

/* Override Process Orbit & Nodes inside dark section */
.process-orbit strong {
  color: var(--black) !important;
}

.process-visual {
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3) !important;
}

.process-visual::before {
  background:
    conic-gradient(from 140deg, transparent, rgba(45, 125, 255, 0.22), transparent, rgba(45, 125, 255, 0.2), transparent),
    radial-gradient(circle at 50% 50%, var(--black), transparent 60%) !important;
}

.process-line {
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

.process-visual p {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Override Process Cards inside dark section */
.process-card {
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  color: #ffffff !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3) !important;
}

.process-card.is-active {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(45, 125, 255, 0.5) !important;
}

.process-card p {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Override Testimonials inside dark section */
.testimonial {
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  color: #ffffff !important;
}

.testimonial p {
  color: #ffffff !important;
}

.testimonial cite {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.6) !important;
}

/* Override FAQ inside dark section */
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  color: #ffffff !important;
}

.faq-item summary {
  color: #ffffff !important;
}

.faq-item p {
  color: rgba(255, 255, 255, 0.7) !important;
}

.faq-toggle-btn {
  border: 1px dashed rgba(255, 255, 255, 0.22) !important;
  color: rgba(255, 255, 255, 0.64) !important;
}

.faq-toggle-btn:hover {
  background: rgba(45, 125, 255, 0.08) !important;
}

/* Force case card text inside transparent #work to remain white/light for legibility on dark cards */
.case-card h3,
.case-card .case-meta,
.case-card .case-meta span {
  color: #ffffff !important;
}

.case-card p {
  color: rgba(255, 255, 255, 0.7) !important;
}

@media (max-width: 980px) {
  .project-hero-grid,
  .project-detail {
    grid-template-columns: 1fr;
  }

  .project-summary {
    max-width: 620px;
  }

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

  .project-next {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .project-hero {
    padding-top: 118px;
  }

  .project-tags span,
  .project-summary-item,
  .project-list li {
    font-size: 0.98rem;
  }

  .project-scope {
    grid-template-columns: 1fr;
  }

  .project-scope-item {
    min-height: 140px;
  }

  .project-scope-item strong {
    margin-top: 28px;
  }
}

/* Mobile usability and accessibility pass */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

@media (max-width: 860px) {
  html {
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    -webkit-text-size-adjust: 100%;
  }

  .site-header {
    grid-template-columns: auto 1fr auto auto;
    gap: 10px;
    padding: 14px 16px;
  }

  .logo-mark {
    width: 40px;
    height: 40px;
  }

  .lang-switcher {
    justify-self: end;
    gap: 2px;
  }

  .lang-btn {
    min-width: 40px;
    min-height: 40px;
    padding: 0 10px;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .mobile-panel {
    min-height: 100svh;
    padding: 92px 18px 28px;
    align-items: stretch;
    gap: 10px;
  }

  .mobile-panel a:not(.button) {
    display: flex;
    align-items: center;
    min-height: 48px;
    font-size: clamp(1.65rem, 9vw, 2.55rem);
    line-height: 1.08;
    word-break: normal;
  }

  .mobile-panel .button {
    margin-top: 10px;
  }

  .hero,
  .page-hero,
  .project-hero,
  .contact-left,
  .contact-right {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(2.35rem, 14vw, 3.55rem);
    line-height: 0.98;
  }

  .hero-video-chip {
    width: 1.78em;
    height: 0.58em;
  }

  .hero-copy,
  .page-hero p,
  .project-intro,
  .contact-left p,
  .section-copy,
  .about-copy,
  .project-detail-lead {
    font-size: 1rem !important;
    line-height: 1.58 !important;
  }

  .page-hero {
    min-height: auto !important;
    padding-top: 118px !important;
    padding-bottom: 44px !important;
  }

  .page-hero h1,
  .project-hero h1 {
    font-size: clamp(2.15rem, 10.5vw, 3.2rem) !important;
    line-height: 1.06 !important;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .project-next-actions {
    width: 100%;
    align-items: stretch;
  }

  .button,
  .service-cta,
  .text-link,
  .email-link,
  .contact-detail a {
    min-height: 44px;
  }

  .button {
    width: 100%;
  }

  .section,
  .about-story,
  .stats-row,
  .project-detail,
  .project-scope,
  .project-next,
  .final-cta,
  .site-footer,
  .work-full,
  .brand-filter-container {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .category-tabs {
    display: flex !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    overflow-x: auto;
    padding: 6px !important;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .category-tab {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 0 16px !important;
    font-size: 13px !important;
    scroll-snap-align: start;
  }

  .work-full {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding-top: 28px !important;
  }

  .work .section-head {
    margin-bottom: 24px;
  }

  .work .section-head .work-all-desktop {
    display: none !important;
  }

  .work-all-mobile {
    display: inline-flex;
    width: 100%;
    margin-top: 24px;
    justify-content: center;
  }

  .work-card {
    border-radius: 18px !important;
  }

  .work-media {
    height: clamp(180px, 52vw, 240px) !important;
  }

  .work-info {
    padding: 20px !important;
  }

  .work-info-body {
    flex-direction: column;
    gap: 16px !important;
  }

  .work-info-left {
    max-width: none !important;
  }

  .work-brand-logo {
    max-width: 132px;
    height: auto;
    max-height: 48px;
  }

  .work-meta {
    gap: 8px;
    align-items: flex-start;
    flex-direction: column;
  }

  .services-full,
  .values,
  .stats-row,
  .project-scope {
    grid-template-columns: 1fr !important;
  }

  .service-block,
  .value-block,
  .project-summary-item,
  .project-scope-item {
    padding: 22px !important;
  }

  .service-block ul,
  .services-check {
    gap: 10px !important;
  }

  .service-block li,
  .services-check label,
  .project-tags span {
    min-height: 38px;
    align-items: center;
  }

  .contact-layout {
    grid-template-columns: 1fr !important;
  }

  .contact-left {
    min-height: auto;
    padding-top: 116px !important;
    padding-bottom: 42px !important;
  }

  .contact-left h1 {
    font-size: clamp(2.35rem, 12vw, 3.4rem) !important;
  }

  .contact-right {
    padding-top: 42px !important;
    padding-bottom: 52px !important;
  }

  .contact-form {
    max-width: none !important;
  }

  .form-row {
    grid-template-columns: 1fr !important;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    min-height: 48px;
    font-size: 16px !important;
  }

  .form-group textarea {
    min-height: 132px;
  }

  .project-hero {
    padding-top: 112px !important;
    padding-bottom: 48px !important;
  }

  .project-hero-grid,
  .project-detail {
    gap: 28px !important;
  }

  .project-tags {
    gap: 8px;
  }

  .project-summary {
    max-width: none !important;
  }

  .project-result {
    margin-left: 18px !important;
    margin-right: 18px !important;
    padding: 24px !important;
  }

  .project-result p {
    font-size: clamp(1.75rem, 10vw, 2.8rem) !important;
  }

  .results {
    grid-template-columns: 1fr !important;
  }

  .metric {
    min-height: 132px;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-inline: 12px;
  }

  .lang-btn {
    min-width: 44px;
    min-height: 44px;
    font-size: 11px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero,
  .page-hero,
  .project-hero,
  .contact-left,
  .contact-right,
  .section,
  .about-story,
  .stats-row,
  .project-detail,
  .project-scope,
  .project-next,
  .final-cta,
  .site-footer,
  .work-full,
  .brand-filter-container {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .hero-title {
    font-size: clamp(2.05rem, 13.5vw, 2.8rem);
  }

  .mobile-panel {
    padding-left: 14px;
    padding-right: 14px;
  }
}
