:root {
  --primary: #7c3aed;
  --secondary: #a855f7;
  --pink: #ec4899;
  --ink: #1e1e2e;
  --muted: #6b7280;
  --border: #e7e7ec;
  --bg: #f5f5f7;
  --surface: #ffffff;
  --soft-surface: #fbfbfd;
  --card-text: #1e1e2e;
  --caption-bg: rgba(255, 255, 255, 0.92);
  --logo-bg: #ffffff;
  --logo-card: #f9f9fc;
  --contact-bg:
    radial-gradient(circle at 85% 15%, rgba(124, 58, 237, 0.16), transparent 32%),
    radial-gradient(circle at 20% 90%, rgba(236, 72, 153, 0.1), transparent 32%),
    #ffffff;
  --shadow: 0 24px 70px rgba(30, 30, 46, 0.11);
}

body[data-theme="dark"] {
  --ink: #ffffff;
  --muted: #b8bac8;
  --border: rgba(255, 255, 255, 0.12);
  --bg: #0b0b10;
  --surface: #14141c;
  --soft-surface: #101018;
  --card-text: #ffffff;
  --caption-bg: rgba(10, 10, 16, 0.82);
  --logo-bg: #09090d;
  --logo-card: #12121a;
  --contact-bg:
    radial-gradient(circle at 85% 15%, rgba(124, 58, 237, 0.34), transparent 32%),
    radial-gradient(circle at 20% 90%, rgba(236, 72, 153, 0.22), transparent 32%),
    #09090d;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Poppins, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  transition: background 0.25s ease, color 0.25s ease;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 16px auto 0;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(30, 30, 46, 0.08);
  backdrop-filter: blur(18px);
}
.brand img { width: 152px; height: auto; }
.site-nav { justify-self: center; display: flex; align-items: center; gap: 8px; }
.site-nav a, .header-cta, .button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.site-nav a { padding: 0 14px; color: var(--muted); }
.site-nav a:hover { color: var(--primary); background: rgba(124, 58, 237, 0.08); }
.header-cta, .button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 14px 30px rgba(124, 58, 237, 0.24);
}
.header-cta { padding: 0 18px; }
.theme-toggle {
  position: relative;
  width: 72px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 9px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--soft-surface);
  cursor: pointer;
}
.toggle-icon {
  width: 16px;
  height: 16px;
  display: block;
  border-radius: 50%;
  z-index: 2;
}
.toggle-icon.sun {
  background: radial-gradient(circle, #f7c948 0 38%, transparent 40%);
  box-shadow: 0 0 0 2px #f7c948 inset;
}
.toggle-icon.moon {
  background: #7c3aed;
  box-shadow: -5px 0 0 0 var(--soft-surface) inset;
}
.toggle-knob {
  position: absolute;
  left: 4px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 20px rgba(30, 30, 46, 0.16);
  transition: transform 0.25s ease;
}
body[data-theme="dark"] .toggle-knob { transform: translateX(32px); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}
.nav-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--ink); }

.hero {
  width: min(1220px, calc(100% - 32px));
  margin: 36px auto 0;
  min-height: calc(100vh - 124px);
}
.hero-centered {
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}
.hero-copy { position: relative; z-index: 2; max-width: 980px; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}
.section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 24px;
  margin-right: 10px;
  padding: 0 8px;
  border: 1px solid color-mix(in srgb, var(--primary) 32%, transparent);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--pink));
  font-size: 11px;
  line-height: 1;
}
.section-title-block {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  isolation: isolate;
}
.section-title-block::before {
  content: attr(data-section);
  position: absolute;
  left: -8px;
  top: 50%;
  z-index: -1;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--ink) 8%, transparent);
  font-size: clamp(120px, 16vw, 230px);
  font-weight: 900;
  line-height: 0.8;
}
.section-title-block .eyebrow {
  margin-bottom: 16px;
}
.section-title-block h2 {
  max-width: 720px;
  text-transform: uppercase;
}
.section-title-block h2 span {
  display: block;
}
.section-title-block > p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 22px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.section-note {
  max-width: 540px;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 72%, transparent);
  box-shadow: 0 18px 50px rgba(30, 30, 46, 0.06);
}
.section-note p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.mini-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mini-metrics span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid color-mix(in srgb, var(--primary) 28%, transparent);
  border-radius: 8px;
  color: var(--primary);
  background: color-mix(in srgb, var(--primary) 9%, transparent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 24px;
  font-size: clamp(50px, 7.35vw, 102px);
  line-height: 1.02;
  letter-spacing: 0;
}
.headline span {
  display: block;
  padding-bottom: 0.03em;
}
.headline .headline-line-wide {
  font-size: 0.72em;
  white-space: nowrap;
}
.gradient-text {
  color: transparent;
  background: linear-gradient(135deg, var(--primary), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 34px; }
.button { min-width: 142px; padding: 0 22px; border: 0; cursor: pointer; }
.button.secondary { color: var(--primary); background: var(--surface); border: 1px solid rgba(124, 58, 237, 0.26); }

.hero-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.9;
}
.orbit-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.ring-1 { width: min(900px, 82vw); aspect-ratio: 1; animation: spin 22s linear infinite; }
.ring-2 { width: min(610px, 64vw); aspect-ratio: 1; animation: spin 16s linear infinite reverse; }
.orbit-item {
  position: absolute;
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-radius: 8px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 18px 50px rgba(124, 58, 237, 0.14);
  font-size: 13px;
  font-weight: 900;
  animation: float 5s ease-in-out infinite;
}
.item-1 { left: 8%; top: 28%; }
.item-2 { right: 8%; top: 27%; animation-delay: 0.7s; }
.item-3 { left: 13%; bottom: 24%; animation-delay: 1.2s; }
.item-4 { right: 13%; bottom: 22%; animation-delay: 1.8s; }
.reveal { opacity: 0; transform: translateY(24px); animation: revealUp 0.85s ease forwards; }
.delay-1 { animation-delay: 0.22s; }
.delay-2 { animation-delay: 0.38s; }

.impact-strip {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 88px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--border);
  box-shadow: 0 18px 50px rgba(30, 30, 46, 0.07);
}
.impact-strip div { min-height: 124px; padding: 26px; background: var(--surface); }
.impact-strip strong { display: block; margin-bottom: 8px; color: var(--primary); font-size: 38px; line-height: 1; }
.impact-strip span { color: var(--muted); font-weight: 700; }

.section { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 86px 0; }
.section, .contact-section, .work-hero, .project-hero { scroll-margin-top: 120px; }
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 54px; align-items: start; }
h2 {
  margin-bottom: 0;
  font-size: clamp(52px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}
.section-head { max-width: 1040px; margin-bottom: 38px; }
.section-head.section-title-block {
  min-height: 250px;
  margin-bottom: 46px;
}
.section-head p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.section-head.compact { max-width: 980px; }

.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.service-grid article, .case-card, .project-card, .lead-form {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 42px rgba(30, 30, 46, 0.06);
}
.service-grid article { min-height: 226px; padding: 28px; }
.service-grid span, .case-card span, .project-card span { display: inline-flex; margin-bottom: 14px; color: var(--primary); font-size: 12px; font-weight: 900; text-transform: uppercase; }
h3 { margin-bottom: 12px; font-size: 23px; line-height: 1.15; }
.service-grid p, .case-card p { color: var(--muted); line-height: 1.7; }

.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 26px; }
.filter-bar button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--ink);
  background: var(--surface);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}
.filter-bar button.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--primary), var(--pink));
}
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.project-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  color: var(--card-text);
  background: var(--surface);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.project-card:hover { transform: translateY(-4px); box-shadow: 0 26px 70px rgba(30, 30, 46, 0.2); }
.project-card img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; transition: transform 0.35s ease; }
.project-card:hover img { transform: scale(1.04); }
.project-card span, .project-card h3 { position: absolute; z-index: 2; left: 18px; right: 18px; }
.project-card span {
  bottom: 62px;
  width: max-content;
  max-width: calc(100% - 36px);
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--primary);
  background: var(--caption-bg);
}
.project-card h3 {
  bottom: 18px;
  margin: 0;
  width: max-content;
  max-width: calc(100% - 36px);
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--card-text);
  background: var(--caption-bg);
}
.center-action { display: flex; justify-content: center; margin-top: 28px; }

.feature-work-rail {
  display: flex;
  gap: 10px;
  height: 430px;
  overflow: hidden;
  border-radius: 8px;
}
.feature-card {
  position: relative;
  flex: 0.5 1 74px;
  min-width: 72px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(8, 8, 13, 0.12), rgba(8, 8, 13, 0.82)),
    var(--cover) center / cover;
  box-shadow: 0 22px 58px rgba(30, 30, 46, 0.12);
  transition: flex 0.45s cubic-bezier(.2,.8,.2,1), transform 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}
.feature-card.active {
  flex: 4.2 1 520px;
  border-color: color-mix(in srgb, var(--primary) 44%, var(--border));
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 100%, rgba(124, 58, 237, 0.32), transparent 44%),
    linear-gradient(90deg, rgba(8, 8, 13, 0.72), rgba(8, 8, 13, 0.12));
  opacity: 0;
  transition: opacity 0.35s ease;
}
.feature-card.active::before {
  opacity: 1;
}
.feature-card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.feature-card-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  max-width: 430px;
  color: #fff;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.feature-card.active .feature-card-content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.12s;
}
.feature-card-content span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.feature-card-content h3 {
  margin-bottom: 12px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.95;
}
.feature-card-content p {
  max-width: 420px;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
}
.feature-action {
  position: relative;
  z-index: 4;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  padding: 0 14px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--pink));
  font-size: 13px;
  font-weight: 900;
  pointer-events: auto;
}
.feature-card-label {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.88);
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.18s ease;
}
.feature-card.active .feature-card-label {
  opacity: 0;
}
.feature-card-label span {
  display: inline-block;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  max-height: 330px;
  overflow: hidden;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.case-card { min-height: 260px; padding: 16px; display: grid; grid-template-columns: 164px 1fr; gap: 22px; align-items: center; }
.case-card img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 8px; background: #f8f8fb; }

.logo-marquee {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--logo-bg);
  box-shadow: var(--shadow);
}
.logo-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 18px;
  animation: marquee 78s linear infinite;
}
.logo-track.reverse { animation-direction: reverse; padding-top: 0; }
.logo-pill {
  width: 310px;
  height: 140px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--logo-card);
}
.logo-pill img { max-width: 250px; max-height: 96px; object-fit: contain; filter: none; opacity: 1; }
body[data-theme="dark"] .logo-pill img {
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.contact-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 90px;
  border-radius: 8px;
}
.contact-panel-section {
  padding: 54px;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(430px, 1fr);
  gap: 64px;
  align-items: center;
  color: var(--ink);
  background: var(--contact-bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact-copy h2 {
  max-width: 520px;
  color: var(--ink);
  font-size: clamp(42px, 5.5vw, 70px);
  line-height: 0.96;
  text-transform: uppercase;
  overflow-wrap: break-word;
}
.contact-copy p:not(.eyebrow) { max-width: 500px; color: var(--muted); line-height: 1.7; }
.icon-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.icon-links a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(30, 30, 46, 0.08);
}
.icon-links svg { width: 20px; height: 20px; fill: none; stroke: var(--primary); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
body[data-theme="dark"] .icon-links svg {
  stroke: #ffffff;
}
body[data-theme="dark"] .icon-links a {
  background: rgba(255,255,255,0.06);
}
.lead-form {
  padding: 26px;
  display: grid;
  gap: 14px;
  color: var(--ink);
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  border-color: var(--border);
  box-shadow: 0 18px 50px rgba(30, 30, 46, 0.08);
}
.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--ink);
  background: var(--surface);
  font: inherit;
}
.lead-form textarea { padding-top: 16px; resize: vertical; }
.lead-form select option { color: var(--ink); }
.form-submit { width: 100%; min-height: 62px; margin-top: 2px; text-transform: uppercase; letter-spacing: 0; }

.site-footer { padding: 32px 16px 42px; display: flex; flex-direction: column; align-items: center; gap: 14px; color: var(--ink); background: var(--surface); border-top: 1px solid var(--border); }
.site-footer img { width: 150px; }
.site-footer span { color: var(--muted); font-size: 14px; }

.work-hero, .project-hero {
  width: min(1180px, calc(100% - 32px));
  margin: 82px auto 0;
  padding: 70px 0 36px;
}
.work-hero h1, .project-hero h1 {
  max-width: 850px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(54px, 8.5vw, 116px);
  line-height: 0.88;
  text-transform: uppercase;
}
.work-hero p:not(.eyebrow), .project-hero p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.7;
}
.work-catalog { padding-top: 34px; }
.catalog-grid { grid-template-columns: repeat(2, 1fr); }
.back-link { display: inline-flex; margin-bottom: 24px; color: var(--muted); font-weight: 800; }
.project-gallery {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  columns: 3 280px;
  column-gap: 16px;
}
.project-gallery figure {
  break-inside: avoid;
  margin: 0 0 16px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.project-gallery img,
.project-gallery video { width: 100%; height: auto; }
.related-section .section-head h2 { color: var(--ink); }

.cursor-dot,
.cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 0.2s ease, width 0.2s ease, height 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.cursor-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 24px rgba(124, 58, 237, 0.72);
}
.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1px solid color-mix(in srgb, var(--primary) 64%, transparent);
  border-radius: 50%;
}
body.cursor-ready .cursor-dot,
body.cursor-ready .cursor-ring {
  opacity: 1;
}
body.cursor-active .cursor-ring {
  width: 58px;
  height: 58px;
  border-color: color-mix(in srgb, var(--pink) 78%, transparent);
}
body.cursor-active .cursor-dot {
  background: var(--pink);
}

@keyframes revealUp { to { opacity: 1; transform: translateY(0); } }
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes float { 50% { transform: translateY(-12px); } }
@keyframes marquee { to { transform: translateX(-50%); } }

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

@media (max-width: 980px) {
  .site-header { grid-template-columns: auto auto auto; }
  .nav-toggle { display: block; justify-self: end; }
  .site-nav, .header-cta { display: none; }
  .site-header.nav-open .site-nav { grid-column: 1 / -1; width: 100%; display: grid; grid-template-columns: 1fr; justify-items: stretch; }
  .site-header.nav-open .site-nav a { justify-content: flex-start; }
  .split, .contact-panel-section { grid-template-columns: 1fr; }
  .impact-strip, .service-grid, .case-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-grid { grid-template-columns: 1fr; }
  .feature-work-rail {
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
  }
  .feature-card,
  .feature-card.active {
    min-height: 340px;
    flex: none;
  }
  .feature-card-label {
    display: none;
  }
  .feature-card-content {
    opacity: 1;
    transform: none;
  }
  .logo-pill {
    width: 250px;
    height: 118px;
  }
  .logo-pill img {
    max-width: 205px;
    max-height: 82px;
  }
  .item-1, .item-3 { left: 3%; }
  .item-2, .item-4 { right: 3%; }
}

@media (max-width: 640px) {
  .site-header { top: 8px; width: calc(100% - 20px); margin-top: 8px; }
  .brand img { width: 128px; }
  .hero, .section, .impact-strip, .contact-section, .work-hero, .project-hero, .project-gallery { width: calc(100% - 20px); }
  .hero { min-height: calc(100vh - 98px); }
  h1 { font-size: 44px; line-height: 1.02; }
  h2 { font-size: 42px; line-height: 1.02; }
  .hero-copy > p:not(.eyebrow) { font-size: 16px; }
  .orbit-item { display: none; }
  .impact-strip, .service-grid, .work-grid, .case-grid { grid-template-columns: 1fr; }
  .impact-strip div { min-height: 104px; }
  .section { padding: 60px 0; }
  .case-card { grid-template-columns: 96px 1fr; gap: 14px; min-height: 0; }
  .case-card p { font-size: 14px; }
  .contact-panel-section { padding: 30px 18px; margin-bottom: 50px; }
  .contact-copy h2 { font-size: 42px; }
  .work-hero h1, .project-hero h1 { font-size: 50px; }
  .project-card, .project-card img { min-height: 320px; }
  .cursor-dot,
  .cursor-ring { display: none; }
}
