/* Seqence Studio — Premium static site
   Font: Plus Jakarta Sans. All sizing in px.
------------------------------------------------ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #ffffff;
  --surface: #f5f5f4;
  --surface-2: #eeeeec;
  --border: #e6e6e3;
  --border-strong: #d9d9d4;
  --ink: #0b0b0c;
  --ink-2: #1c1c1e;
  --muted: #6b6b70;
  --muted-2: #8a8a90;
  --accent: #8A7AFF;          /* neon purple */
  --accent-ink: #0b0b0c;
  --lavender: #c9c2ff;         /* soft purple */
  --lavender-2: #ebe8ff;
  --shadow-sm: 0 2px 6px rgba(15, 15, 20, 0.04);
  --shadow-md: 0 12px 40px rgba(15, 15, 20, 0.06);
  --shadow-lg: 0 30px 80px rgba(15, 15, 20, 0.08);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --radius-pill: 999px;
  --container: 1280px;
  --gap: 20px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; font-size: 15px; color: var(--ink); }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 100px 0;
  position: relative;
}
.section-sm { padding: 64px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: #fff;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(138,122,255,0.2);
}

.section-title {
  font-size: 56px;
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--ink);
  max-width: 900px;
}
.section-title .accent { color: var(--muted-2); font-style: normal; font-weight: 500; }
.section-sub {
  margin-top: 20px;
  font-size: 18px;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.55;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  margin-bottom: 56px;
}
.section-head .section-title { margin: 0 auto; }
.section-head .section-sub { margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .3s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 8px 24px rgba(138,122,255,0.35);
}
.btn-primary:hover { background: var(--lavender); color: var(--ink); box-shadow: 0 10px 30px rgba(201,194,255,0.45); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--lavender); color: var(--ink); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-lg { padding: 18px 28px; font-size: 16px; }

.btn .arrow {
  width: 20px; height: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .3s ease;
}
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(255,255,255,0.7);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.nav.scrolled { border-bottom-color: var(--border); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  position: relative;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 20px; letter-spacing: -0.02em;
}
.brand-mark {
  width: 32px; height: 32px; border-radius: 10px;
  background: var(--ink); color: var(--accent);
  display: grid; place-items: center;
  font-size: 16px; font-weight: 800;
}
.nav-links {
  display: flex; gap: 4px; align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 6px;
  /* stay dead-centre regardless of the brand / CTA widths (video button expand) */
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
}
.nav-links a {
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 500;
  color: var(--muted);
  transition: color .2s ease, background .2s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); background: var(--surface); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

.menu-btn {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink); color: #fff;
  align-items: center; justify-content: center;
}
.menu-btn span {
  width: 16px; height: 1.5px; background: currentColor;
  position: relative;
}
.menu-btn span::before, .menu-btn span::after {
  content: ""; position: absolute; left: 0; width: 100%; height: 1.5px; background: currentColor;
}
.menu-btn span::before { top: -5px; }
.menu-btn span::after  { top: 5px; }

.mobile-menu {
  position: fixed; inset: 0;
  background: #fff;
  z-index: 200;
  padding: 90px 28px 40px;
  transform: translateY(-100%);
  transition: transform .35s ease;
  display: flex; flex-direction: column;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  padding: 20px 0;
  font-size: 28px; font-weight: 600;
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.02em;
}
.mobile-menu .close {
  position: absolute; top: 22px; right: 22px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface);
  display: grid; place-items: center;
  font-size: 22px;
}

/* ---------- Hero ---------- */
.hero { padding: 60px 0 40px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--gap);
}
.hero-main {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 56px;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.hero-headline {
  font-size: 96px;
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-weight: 700;
}
.hero-headline em {
  font-style: normal;
  font-weight: 500;
  color: var(--muted-2);
}
.hero-headline .chip {
  display: inline-block;
  vertical-align: middle;
  background: var(--accent);
  color: var(--ink);
  padding: 4px 20px;
  border-radius: 60px;
  font-size: 64px;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  margin: 0 6px;
}
.hero-sub {
  margin-top: 30px;
  color: var(--muted);
  font-size: 17px;
  max-width: 520px;
}
.hero-actions {
  margin-top: 40px;
  display: flex; gap: 12px; flex-wrap: wrap;
}
.hero-meta {
  display: flex; align-items: center; gap: 18px;
  margin-top: 40px;
  color: var(--muted);
  font-size: 13px;
}
.hero-meta .avatars { display: flex; }
.hero-meta .avatars span {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--surface);
  background: linear-gradient(135deg, var(--lavender), var(--accent));
  margin-left: -8px;
}
.hero-meta .avatars span:first-child { margin-left: 0; }

.hero-side { display: grid; grid-template-rows: 1fr 1fr; gap: var(--gap); }
.hero-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
}
.hero-card.dark { background: var(--ink); color: #fff; }
.hero-card.dark h3 { font-size: 24px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; }
.hero-card.dark p { color: rgba(255,255,255,0.6); font-size: 14px; margin-top: 8px; }
.hero-card.dark .badge {
  align-self: flex-start;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 12px; border-radius: 100px;
  font-size: 12px; color: rgba(255,255,255,0.7);
}
.hero-card.accent {
  background: linear-gradient(135deg, var(--lavender) 0%, var(--accent) 100%);
  color: var(--ink);
}
.hero-card.accent h3 { font-size: 24px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; }
.hero-card.accent p { font-size: 14px; margin-top: 8px; opacity: 0.7; }
.hero-card .num {
  font-size: 72px; font-weight: 700; letter-spacing: -0.04em; line-height: 1;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.6;
  pointer-events: none;
}
.orb.a { width: 320px; height: 320px; background: var(--lavender); bottom: -100px; right: -100px; }
.orb.b { width: 220px; height: 220px; background: var(--accent); top: -80px; right: 20%; opacity: .5; }

.floating {
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* ---------- Marquee / logos ---------- */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 26px 0;
  overflow: hidden;
  background: #fff;
}
.marquee-track {
  display: flex; gap: 72px;
  animation: scroll 30s linear infinite;
  width: max-content;
}
.marquee-item {
  font-size: 22px; font-weight: 600; color: var(--muted-2);
  letter-spacing: -0.02em; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 12px;
}
.marquee-item::after {
  content: "✳"; color: var(--accent); font-size: 18px;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- KPI ---------- */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}
.kpi {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background .3s ease;
}
.kpi:hover { background: var(--lavender-2); }
.kpi .n {
  font-size: 72px; font-weight: 700; letter-spacing: -0.04em; line-height: 1;
}
.kpi .n .suf { color: var(--accent); }
.kpi .lbl {
  margin-top: 16px; color: var(--muted); font-size: 15px;
  max-width: 200px;
}

/* ---------- Services bento ---------- */
.services-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--gap);
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  min-height: 300px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s ease, transform .3s ease, background .3s ease;
  display: flex; flex-direction: column; justify-content: space-between;
}
.service-card:hover { transform: translateY(-3px); }
.service-card .num {
  font-size: 13px; color: var(--muted-2); font-weight: 500; letter-spacing: 0.05em;
}
.service-card h3 {
  font-size: 32px; font-weight: 600; letter-spacing: -0.025em; line-height: 1.05;
  margin-top: 20px;
}
.service-card p {
  color: var(--muted); font-size: 15px; margin-top: 12px; max-width: 320px;
}
.service-card .link {
  margin-top: 24px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600;
  color: var(--ink);
}
.service-card .link .arrow { transition: transform .3s ease; }
.service-card:hover .link .arrow { transform: translateX(4px); }
.service-card .icon-wrap {
  position: absolute; top: 32px; right: 32px;
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--surface);
  display: grid; place-items: center;
}
.svc-shape {
  position: absolute;
  top: 30px; right: 30px;
  width: 20px; height: 20px;
  object-fit: contain;
}
.service-card.dark .svc-shape { filter: invert(1); }   /* black shape → white on the dark card */
.service-card.wide { grid-column: span 3; }
.service-card.narrow { grid-column: span 2; }
.service-card.full { grid-column: span 6; min-height: 260px; }
.service-card.dark {
  background: var(--ink); color: #fff; border-color: transparent;
}
.service-card.dark p { color: rgba(255,255,255,0.6); }
.service-card.dark .link { color: var(--accent); }
.service-card.dark .icon-wrap { background: rgba(255,255,255,0.08); }
.service-card.accent {
  background: var(--accent); border-color: transparent;
}
.service-card.accent .icon-wrap { background: rgba(0,0,0,0.08); }

/* ---------- Philosophy split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: stretch;
}
.split-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 56px;
  position: relative;
  overflow: hidden;
}
.split-card.dark { background: var(--ink); color: #fff; }
.split-card h2 {
  font-size: 40px; line-height: 1.05; letter-spacing: -0.03em; font-weight: 700;
}
.split-card p { margin-top: 20px; color: var(--muted); font-size: 16px; }
.split-card.dark p { color: rgba(255,255,255,0.7); }
.principles { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.principle {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  font-size: 15px; font-weight: 500;
}
.principle .n {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent); color: var(--ink);
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700;
}

/* ---------- Process timeline ---------- */
.process {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
}
.process-steps { display: flex; flex-direction: column; gap: 12px; }
.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 24px;
  transition: background .3s ease, border-color .3s ease;
}
.step:hover { background: var(--surface); border-color: var(--border-strong); }
.step .idx {
  font-size: 13px; color: var(--muted-2); font-weight: 500;
}
.step h4 {
  font-size: 22px; font-weight: 600; letter-spacing: -0.02em;
}
.step p {
  grid-column: 2; color: var(--muted); font-size: 14px; margin-top: 4px;
}
.step .plus {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface);
  display: grid; place-items: center;
  font-size: 20px; color: var(--ink);
}

/* ---------- Work grid ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--gap);
}
.work-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .35s ease;
  position: relative;
}
.work-card:hover { transform: translateY(-4px); }
.work-thumb {
  aspect-ratio: 16 / 11;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--lavender-2), var(--surface));
}
.work-thumb.a { background: linear-gradient(135deg, #d9f5ff, var(--lavender)); }
.work-thumb.b { background: linear-gradient(135deg, #ffe4d6, #ffd0f1); }
.work-thumb.c { background: linear-gradient(135deg, var(--ink) 0%, #333 100%); }
.work-thumb.d { background: linear-gradient(135deg, var(--lavender), #f3ecff); }
.work-thumb.e { background: linear-gradient(135deg, var(--lavender), #b6ffea); }
.work-thumb.f { background: linear-gradient(135deg, #f7f7f2, #d9d9d4); }
.work-thumb .badge {
  position: absolute; top: 20px; left: 20px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 600;
}
.work-thumb .shapes {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 96px; font-weight: 800; letter-spacing: -0.06em;
  color: rgba(255,255,255,0.5);
  text-shadow: 0 4px 30px rgba(0,0,0,0.1);
}
.work-thumb.c .shapes { color: rgba(255,255,255,0.15); }
.work-body { padding: 28px 32px 32px; }
.work-body .row {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em;
  font-weight: 500;
}
.work-body h3 {
  margin-top: 12px;
  font-size: 28px; font-weight: 600; letter-spacing: -0.025em; line-height: 1.15;
}
.work-body p {
  margin-top: 12px; color: var(--muted); font-size: 15px;
}
.work-body .cta {
  margin-top: 20px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600;
}
.work-card.wide { grid-column: span 4; }
.work-card.reg  { grid-column: span 2; }
.work-card.half { grid-column: span 3; }

/* ---------- Why Us bento ---------- */
.why-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: var(--gap);
}
.why-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  background: #fff;
  border: 1px solid var(--border);
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
  transition: transform .3s ease;
}
.why-card:hover { transform: translateY(-3px); }
.why-card .k { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600;}
.why-card h3 { font-size: 26px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; margin-top: 12px; }
.why-card p  { color: var(--muted); font-size: 15px; margin-top: 12px; }
.why-card.big { grid-column: span 2; grid-row: span 2; background: var(--ink); color: #fff; }
.why-card.big .k { color: var(--accent); }
.why-card.big h2 { font-size: 48px; line-height: 1.05; letter-spacing: -0.03em; font-weight: 700; margin-top: 20px; }
.why-card.big p { color: rgba(255,255,255,0.7); font-size: 16px; max-width: 460px; }
.why-card.accent { background: var(--accent); border-color: transparent; }
.why-card.lavender { background: var(--lavender-2); border-color: transparent; }

/* ---------- Engagement steps ---------- */
.engagement {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap);
}
.eng-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  min-height: 220px;
}
.eng-card .n { font-size: 13px; color: var(--muted); font-weight: 600; }
.eng-card h4 { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; margin-top: 40px; }
.eng-card p { color: var(--muted); font-size: 14px; margin-top: 10px; }

/* ---------- FAQ ---------- */
.faq {
  max-width: 900px; margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  cursor: pointer;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 20px; font-weight: 600; letter-spacing: -0.015em;
  gap: 20px;
}
.faq-q .toggle {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface);
  display: grid; place-items: center;
  transition: background .3s ease, transform .3s ease;
  flex-shrink: 0;
}
.faq-item.open .toggle { background: var(--accent); transform: rotate(45deg); }
.faq-a {
  color: var(--muted); font-size: 15px;
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, margin-top .35s ease;
}
.faq-item.open .faq-a { max-height: 400px; margin-top: 16px; }

/* ---------- CTA ---------- */
.cta-block {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 90px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block h2 {
  font-size: 80px; line-height: 0.98; letter-spacing: -0.04em; font-weight: 700;
  max-width: 900px; margin: 0 auto;
}
.cta-block h2 em { font-style: normal; font-weight: 500; color: var(--muted-2); }
.cta-block h2 .chip {
  display: inline-block;
  background: var(--accent); color: var(--ink);
  padding: 4px 24px; border-radius: 60px;
  font-style: normal; font-weight: 700;
  line-height: 1;
}
.cta-block p { color: rgba(255,255,255,0.6); font-size: 18px; margin-top: 24px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-block .actions { margin-top: 40px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-block .orb.a { opacity: 0.3; }
.cta-block .orb.b { opacity: 0.25; }

/* ---------- Footer ---------- */
.footer {
  background: #fff;
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.footer h5 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 600; margin-bottom: 20px; }
.footer ul { display: flex; flex-direction: column; gap: 12px; }
.footer a { color: var(--ink); font-size: 15px; transition: color .2s ease; }
.footer a:hover { color: var(--muted); }
.footer .lead { max-width: 380px; color: var(--muted); font-size: 15px; margin-top: 16px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 30px; color: var(--muted); font-size: 13px;
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface);
  display: grid; place-items: center;
  transition: background .2s ease, color .2s ease;
}
.socials a:hover { background: var(--accent); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 80px 0 60px;
}
.page-hero h1 {
  font-size: 96px; line-height: 0.95; letter-spacing: -0.045em; font-weight: 700;
  max-width: 1000px;
}
.page-hero h1 em { font-style: normal; font-weight: 500; color: var(--muted-2); }
.page-hero p { margin-top: 30px; color: var(--muted); font-size: 20px; max-width: 640px; }
.crumb { color: var(--muted); font-size: 13px; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.1em; }

/* ---------- Services page detailed ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.service-detail .lead-num {
  font-size: 14px; color: var(--muted); font-weight: 600; letter-spacing: 0.1em;
}
.service-detail h2 {
  font-size: 48px; line-height: 1.05; letter-spacing: -0.03em; font-weight: 700;
  margin-top: 12px;
}
.service-detail .overview { color: var(--muted); font-size: 17px; margin-top: 20px; }
.service-blocks { display: grid; gap: 20px; }
.service-block {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
}
.service-block h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 600; }
.service-block ul { margin-top: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.service-block li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px;
}
.service-block li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  flex-shrink: 0;
}

/* ---------- About page ---------- */
.about-story {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: center;
}
.about-story .visual {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--lavender), var(--accent));
  position: relative; overflow: hidden;
}
.about-story .visual::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.5), transparent 60%);
}

.timeline { display: grid; gap: 16px; }
.tl-item {
  display: grid; grid-template-columns: 120px 1fr; gap: 30px;
  padding: 24px 0; border-top: 1px solid var(--border);
}
.tl-item .year { font-size: 32px; font-weight: 700; letter-spacing: -0.02em; }
.tl-item h4 { font-size: 20px; font-weight: 600; letter-spacing: -0.015em; }
.tl-item p { color: var(--muted); font-size: 15px; margin-top: 6px; }

.values {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap);
}
.value {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
}
.value .ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent);
  display: grid; place-items: center;
  font-weight: 700;
}
.value h4 { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; margin-top: 20px; }
.value p { color: var(--muted); font-size: 15px; margin-top: 8px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: var(--gap);
}
.contact-info {
  background: var(--ink); color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 640px;
  position: relative; overflow: hidden;
}
.contact-info h2 {
  font-size: 40px; line-height: 1.05; letter-spacing: -0.03em; font-weight: 700;
}
.contact-info h2 em { font-style: normal; color: var(--muted-2); font-weight: 500; }
.contact-info p { color: rgba(255,255,255,0.6); margin-top: 20px; font-size: 15px; }
.contact-info .info-list { margin-top: 40px; display: grid; gap: 20px; }
.info-item { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; }
.info-item .ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,0.08); display: grid; place-items: center;
}
.info-item .k { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; }
.info-item .v { font-size: 16px; margin-top: 4px; }

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: span 2; }
.form-field label {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 600;
}
.form-field input, .form-field select, .form-field textarea {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  transition: border-color .2s ease;
  outline: none;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--ink);
}

.chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-input { display: none; }
.chip-input + label {
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  transition: all .2s ease;
}
.chip-input:checked + label {
  background: var(--ink); color: #fff; border-color: var(--ink);
}

/* ---------- 404 ---------- */
.err-hero {
  min-height: calc(100vh - 84px);   /* full viewport minus the floating nav */
  display: grid; place-items: center; text-align: center;
  padding: 40px 0;
}
.err-hero .num {
  font-size: 260px; font-weight: 800; letter-spacing: -0.06em; line-height: 1;
  background: linear-gradient(180deg, var(--ink) 0%, var(--muted-2) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.err-hero h2 { font-size: 40px; font-weight: 700; letter-spacing: -0.03em; margin-top: 20px; }
.err-hero p { color: var(--muted); font-size: 17px; margin-top: 14px; max-width: 480px; margin-left: auto; margin-right: auto; }
.err-hero .actions { margin-top: 30px; display: flex; gap: 12px; justify-content: center; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero-headline { font-size: 72px; }
  .hero-main { padding: 44px; min-height: 460px; }
  .hero-headline .chip { font-size: 48px; }
  .section-title { font-size: 44px; }
  .page-hero h1 { font-size: 72px; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .services-bento { grid-template-columns: repeat(4, 1fr); }
  .service-card.wide { grid-column: span 2; }
  .service-card.narrow { grid-column: span 2; }
  .service-card.full { grid-column: span 4; }
  .work-grid { grid-template-columns: repeat(4, 1fr); }
  .work-card.wide { grid-column: span 4; }
  .work-card.reg { grid-column: span 2; }
  .work-card.half { grid-column: span 2; }
  .why-bento { grid-template-columns: repeat(2, 1fr); }
  .why-card.big { grid-column: span 2; grid-row: auto; }
  .engagement { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(2, 1fr); }
  .cta-block h2 { font-size: 56px; }
  .cta-block { padding: 70px 40px; }
}

@media (max-width: 820px) {
  .section { padding: 70px 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-side { grid-template-rows: auto auto; }
  .split { grid-template-columns: 1fr; }
  .split-card { padding: 40px; }
  .process { grid-template-columns: 1fr; gap: 30px; }
  .section-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
  .about-story { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-cta .btn, .nav-cta .nav-video { display: none; }
  .menu-btn { display: inline-flex; }
  .hero-headline { font-size: 56px; }
  .hero-headline .chip { font-size: 40px; }
  .hero-main { padding: 32px; min-height: 420px; }
  .section-title, .cta-block h2 { font-size: 40px; }
  .page-hero h1 { font-size: 52px; }
  .container { padding: 0 20px; }
  .service-detail { grid-template-columns: 1fr; gap: 30px; padding: 60px 0; }
  .service-block ul { grid-template-columns: 1fr; }
  .contact-form, .contact-info { padding: 32px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; }
  .err-hero .num { font-size: 160px; }
  .step { grid-template-columns: 48px 1fr auto; gap: 16px; padding: 20px; }
  .step h4 { font-size: 18px; }
  .step p { grid-column: 1 / -1; }
  .cta-block { padding: 50px 24px; }
  .tl-item { grid-template-columns: 80px 1fr; gap: 20px; }
  .tl-item .year { font-size: 24px; }
}

@media (max-width: 560px) {
  .kpi-grid { grid-template-columns: 1fr; }
  .services-bento { grid-template-columns: 1fr; }
  .service-card.wide, .service-card.narrow, .service-card.full { grid-column: span 1; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card.wide, .work-card.reg, .work-card.half { grid-column: span 1; }
  .why-bento { grid-template-columns: 1fr; }
  .why-card.big { grid-column: span 1; }
  .engagement, .values { grid-template-columns: 1fr; }
  .hero-headline { font-size: 44px; }
  .hero-headline .chip { font-size: 32px; padding: 2px 14px; }
  .section-title, .cta-block h2 { font-size: 32px; }
  .page-hero h1 { font-size: 40px; }
  .work-body h3 { font-size: 22px; }
}

/* ---------- Projects Stack (home) ---------- */
.stack-section {
  padding: 30px 0 0;
  background: var(--bg);
}
.stack-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  margin-bottom: 40px;
}

.stack-wrap {
  position: relative;
  min-height: 100vh;
  /* trailing hold so the last card + "Projects Shipped" stay pinned/fully placed
     before the Clarity fold begins */
  padding-bottom: 55vh;
}

/* Big bold sticky background title */
.stack-bg-title {
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  text-align: center;
  font-size: clamp(80px, 16vw, 240px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: var(--ink);
  opacity: 0.06;
  margin: 0;
  pointer-events: none;
  text-transform: uppercase;
  width: 100%;
  height: 0;
  overflow: visible;
}

.stack-item {
  position: sticky;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 4px;
  z-index: 1;
}
.stack-item:nth-child(2) { top: 0; }
.stack-item:nth-child(3) { top: 20px; }
.stack-item:nth-child(4) { top: 40px; }
.stack-item + .stack-item { margin-top: -20vh; }

.stack-card {
  position: relative;
  width: 100%;
  max-width: 1120px;
  min-height: 460px;
  max-height: 560px;
  background: #0b0b0c;
  color: #fff;
  border-radius: 32px;
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: stretch;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.45);
  will-change: transform;
}
.stack-card.accent { background: var(--accent); color: var(--ink); }
.stack-card.lavender { background: var(--lavender); color: var(--ink); }

.stack-card .body {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
}
.stack-card .idx {
  font-size: 72px;
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(255,255,255,0.18);
  display: block;
}
.stack-card.accent .idx,
.stack-card.lavender .idx { color: rgba(11,11,12,0.22); }

.stack-card h3 {
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 32px;
  max-width: 440px;
}
.stack-card p {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  max-width: 440px;
}
.stack-card.accent p,
.stack-card.lavender p { color: rgba(11,11,12,0.72); }

.stack-card .foot {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.stack-card .cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 6px 6px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  font-weight: 500;
  font-size: 15px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.stack-card .cta .arrow-btn {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: #fff;
  color: #0b0b0c;
  display: grid; place-items: center;
  font-size: 16px;
  transition: transform 0.25s;
}
.stack-card .cta:hover { border-color: rgba(255,255,255,0.4); }
.stack-card .cta:hover .arrow-btn { transform: translateX(3px); }
.stack-card.accent .cta,
.stack-card.lavender .cta { border-color: rgba(11,11,12,0.2); }
.stack-card.accent .cta .arrow-btn,
.stack-card.lavender .cta .arrow-btn { background: #0b0b0c; color: #fff; }

.stack-card .mark {
  font-size: 22px;
  opacity: 0.5;
  letter-spacing: 0.1em;
}

.stack-card .visual {
  position: relative;
  border-radius: 22px;
  background: linear-gradient(140deg, #f5f5f4 0%, #ebe8ff 100%);
  overflow: hidden;
  height: 100%;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stack-card .visual::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 30% 30%, rgba(138,122,255,0.35), transparent 55%),
              radial-gradient(circle at 75% 70%, rgba(201,194,255,0.55), transparent 60%);
  filter: blur(30px);
}
.stack-card .mock {
  position: relative;
  width: 82%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.25);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.stack-card .mock .bar {
  height: 26px;
  background: #f2f2ef;
  border-bottom: 1px solid #e6e6e3;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
}
.stack-card .mock .bar i {
  width: 8px; height: 8px; border-radius: 50%;
  background: #d9d9d4;
}
.stack-card .mock .body-m {
  flex: 1;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.stack-card .mock .body-m span {
  border-radius: 10px;
  background: linear-gradient(135deg, #f5f5f4, #ebe8ff);
}
.stack-card .mock .body-m span:nth-child(1) { grid-row: span 2; background: linear-gradient(160deg, #0b0b0c, #3a3a40); }
.stack-card .mock .body-m span:nth-child(2) { background: var(--accent); }
.stack-card .mock .body-m span:nth-child(3) { background: var(--lavender); }

.stack-outro {
  height: 0;
}

@media (max-width: 900px) {
  .stack-wrap { padding-bottom: 0; }
  .stack-bg-title { font-size: 64px; opacity: 0.08; }
  .stack-card {
    grid-template-columns: 1fr;
    padding: 28px 24px;
    min-height: 0;
    max-height: none;
    border-radius: 24px;
    gap: 24px;
  }
  .stack-card h3 { font-size: 26px; margin-top: 20px; }
  .stack-card .idx { font-size: 52px; }
  .stack-card .visual { min-height: 220px; order: 2; }
  .stack-item { height: auto; position: relative; padding: 12px 0; }
  .stack-item:nth-child(n) { top: 0; }
  .stack-item + .stack-item { margin-top: 20px; }
  .stack-outro { display: none; }
}


/* ---------- Why Us bento (reference-inspired) ---------- */
.whyus-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}
.whyus-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600;
  color: var(--ink);
}
.whyus-eyebrow .sq {
  width: 10px; height: 10px; background: #2b6cff; display: inline-block;
}
.whyus-title {
  font-size: 32px; line-height: 1.2; letter-spacing: -0.01em;
  font-weight: 800; text-transform: uppercase; color: var(--ink);
  max-width: 1000px;
}
.whyus-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 20px;
}
.wu {
  position: relative;
  border-radius: 28px;
  background: #fff;
  overflow: hidden;
  padding: 28px;
  display: flex; flex-direction: column;
}
.wu-mark {
  position: absolute; width: 8px; height: 8px; background: #0b0b0c;
}
.wu-mark.light { background: #fff; opacity: 0.9; }
.wu-mark.tl { top: 14px; left: 14px; }
.wu-mark.tr { top: 14px; right: 14px; }
.wu-mark.bl { bottom: 14px; left: 14px; }
.wu-mark.br { bottom: 14px; right: 14px; }

/* Left tall hero card */
.wu-hero {
  grid-row: span 2;
  padding: 0;
  background:
    radial-gradient(60% 45% at 40% 55%, rgba(0,0,0,0.55) 0%, transparent 70%),
    linear-gradient(160deg, #a8c9ff 0%, #2b6cff 45%, #1235a3 100%);
  min-height: 460px;
}
.wu-corner {
  position: absolute; color: rgba(255,255,255,0.85); font-weight: 300; font-size: 20px;
}
.wu-corner.tl { top: 18px; left: 18px; }
.wu-corner.tr { top: 18px; right: 18px; }
.wu-corner.bl { bottom: 18px; left: 18px; }
.wu-corner.br { bottom: 18px; right: 18px; }
.wu-hero-body {
  position: absolute; inset: 0;
  padding: 40px;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; gap: 26px;
}
.wu-hero-body h3 {
  color: #fff; font-size: 20px; font-weight: 700; letter-spacing: 0.02em;
  text-transform: uppercase; max-width: 320px; line-height: 1.35;
}
.wu-glass-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 34px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff; font-size: 14px; font-weight: 500;
  transition: background .2s ease;
}
.wu-glass-btn:hover { background: rgba(255,255,255,0.3); }

/* Stat card */
.wu-stat { justify-content: center; }
.wu-stat-inner { display: flex; align-items: center; gap: 22px; justify-content: center; }
.wu-stat-num { font-size: 76px; font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.wu-stat-lbl { font-size: 14px; color: var(--muted); line-height: 1.4; }

/* Creative excellence */
.wu-creative { grid-row: span 2; padding: 26px; justify-content: space-between; }
.wu-top { display: flex; justify-content: space-between; align-items: center; }
.wu-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); }
.wu-stars { font-size: 14px; letter-spacing: 2px; color: var(--ink); }
.wu-stars .dim { color: var(--border-strong); }
.wu-mid { display: flex; gap: 18px; align-items: center; }
.wu-mid p { font-size: 14px; color: var(--ink); line-height: 1.45; flex: 1; }
.wu-play {
  width: 74px; height: 74px; border-radius: 18px;
  background: linear-gradient(160deg, #6b7d90, #0b0b0c);
  display: grid; place-items: center; color: #fff; flex-shrink: 0;
}
.wu-play span { font-size: 22px; }
.wu-bottom { display: flex; align-items: center; gap: 14px; }
.wu-avatars { display: flex; }
.wu-avatars span {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--lavender), var(--accent));
  border: 2px solid #fff; margin-left: -10px;
}
.wu-avatars span:first-child { margin-left: 0; }
.wu-caption { font-size: 14px; color: var(--ink); font-weight: 500; }

/* Strategy card */
.wu-strategy { padding: 26px; justify-content: space-between; }
.wu-strategy-top { display: grid; grid-template-columns: 1fr 1.4fr; gap: 20px; align-items: start; }
.wu-strategy-top p { font-size: 14px; color: var(--ink); line-height: 1.5; }
.wu-logos { display: flex; justify-content: space-between; align-items: center; gap: 20px; opacity: 0.6; }
.wu-logo { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }

/* Monitor dark card */
.wu-monitor {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.7)),
    linear-gradient(135deg, #2b6cff, #0b0b0c);
  padding: 30px;
  justify-content: flex-end;
}
.wu-monitor p {
  font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  text-align: center; line-height: 1.5;
}

/* ---------- Horizontal scroll — Engagement ---------- */
.hscroll-section {
  height: 380vh;               /* scroll length driving translate */
  position: relative;
  background: #fff;
}
.hscroll-sticky {
  position: sticky; top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.hscroll-head {
  padding: 60px 40px 20px;
  display: flex; align-items: baseline; justify-content: center; gap: 12px;
  position: relative;
}
.hscroll-index {
  position: absolute; top: 60px; right: 60px;
  font-size: 14px; color: var(--muted);
}
.hscroll-title {
  font-size: 72px; line-height: 1; letter-spacing: -0.035em; font-weight: 700;
  text-align: center; margin: 0 auto;
}
.hscroll-title em { font-style: normal; font-weight: inherit; color: inherit; }
.hscroll-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
  display: flex; align-items: center;
}
.hscroll-track {
  display: flex; align-items: center;
  gap: 32px;
  padding: 0 60px;
  will-change: transform;
  transform: translate3d(0,0,0);
}
.hcard {
  flex: 0 0 380px;
  height: 460px;
  border-radius: 24px;
  padding: 40px 34px;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}
.hcard-title {
  font-size: 46px; line-height: 1.02; letter-spacing: -0.025em; font-weight: 700;
}
.hcard-desc {
  font-size: 14px; line-height: 1.55; max-width: 300px;
}
.hcard.c-purple  { background: #6d4bff; color: #fff; transform: rotate(-3deg); }
.hcard.c-neon    { background: var(--accent); color: #0b0b0c; transform: rotate(2deg); }
.hcard.c-lavender{ background: #eccfff; color: #0b0b0c; transform: rotate(-2deg); }
.hcard.c-black   { background: #0b0b0c; color: #fff; transform: rotate(3deg); }
.hcard.c-purple .hcard-desc,
.hcard.c-black  .hcard-desc { color: rgba(255,255,255,0.75); }

@media (max-width: 1080px) {
  .whyus-head { grid-template-columns: 1fr; }
  .whyus-title { font-size: 24px; }
  .whyus-bento { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .wu-hero { grid-row: span 1; grid-column: span 2; min-height: 380px; }
  .wu-creative { grid-row: span 1; grid-column: span 2; }
  .hscroll-title { font-size: 44px; }
  .hcard { flex: 0 0 300px; height: 400px; }
  .hcard-title { font-size: 34px; }
}
@media (max-width: 640px) {
  .whyus-bento { grid-template-columns: 1fr; }
  .wu-hero, .wu-creative { grid-column: span 1; }
  /* keep the pinned, scroll-driven horizontal motion on phones too */
  .hscroll-section { height: 300vh; }
  .hcard { flex: 0 0 240px; height: 340px; }
  .hscroll-track { padding: 0 20px; }
  .hscroll-index { top: 22px; right: 20px; }
}

/* ---------- Footer (full black) ---------- */
.footer-black {
  background: #000;
  color: #fff;
  padding: 90px 0 0;
  border-top: none;
  position: relative;
  overflow: hidden;
}
.footer-black .footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-black h5 {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5); font-weight: 600; margin-bottom: 18px;
}
.footer-black ul { display: flex; flex-direction: column; gap: 12px; }
.footer-black ul li { font-size: 15px; color: rgba(255,255,255,0.75); }   /* location matches email size */
.footer-black a { color: #fff; font-size: 15px; }
.footer-black a:hover { color: var(--accent); }
.footer-black .lead {
  max-width: 380px; color: rgba(255,255,255,0.55);
  font-size: 15px; margin-top: 16px;
}
.brand-inv .brand-mark { background: var(--accent); color: #0b0b0c; }
.brand-inv { color: #fff; }
.footer-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 0 40px;
  color: rgba(255,255,255,0.5); font-size: 13px;
}
.socials-inv a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: #fff;
  display: grid; place-items: center;
  transition: background .2s ease, color .2s ease;
}
.socials-inv a:hover { background: var(--accent); color: #0b0b0c; }
.footer-word {
  overflow: hidden;
  width: 100%;
  padding: 24px 0 40px;
  user-select: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}
@media (max-width: 820px) {
  .footer-black .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-meta { flex-direction: column; gap: 12px; text-align: center; }
}

/* =====================================================
   HOME v3 — Fearless hero, Glimpse, Built Around You,
   Brutalist CTA, refined hscroll
   ===================================================== */

/* --- Compact dark nav on home --- */
.home-black-hero { background: #000; }
.nav-compact { padding: 10px 0; }
.nav-dark {
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-dark.scrolled { background: rgba(10,10,10,0.85); border-bottom-color: rgba(255,255,255,0.08); }
.nav-links-dark { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.08); }
.nav-links-dark a { color: rgba(255,255,255,0.7); }
.nav-links-dark a:hover { color: #fff; }
.nav-links-dark a.active { background: rgba(255,255,255,0.1); color: #fff; }
.btn-accent-sharp {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 22px;
  background: var(--accent); color: #0b0b0c;
  font-weight: 600; font-size: 14px;
  border-radius: var(--radius-pill);
  transition: background .2s ease, transform .2s ease;
}
.btn-accent-sharp:hover { background: #fff; transform: translateY(-1px); }

/* Nav video button — icon by default, expands into "Schedule a Call" on hover */
.nav-video {
  display: inline-flex;
  align-items: center;
  height: 42px;
  border-radius: 999px;
  background: var(--accent);
  color: #0b0b0c;
  overflow: hidden;
  transition: background .2s ease, transform .2s ease;
}
.nav-video:hover { transform: translateY(-1px); }
.nav-video-icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.nav-video-icon svg { width: 19px; height: 19px; }
.nav-video-label {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-weight: 600;
  font-size: 14px;
  padding-left: 0;
  transition: max-width .4s cubic-bezier(.4, 0, .2, 1), padding-left .4s ease;
}
.nav-video:hover .nav-video-label,
.nav-video:focus-visible .nav-video-label {
  max-width: 280px;
  padding-left: 20px;
}

/* --- HERO: fearless studio (sticky under next section) --- */
.hero-fearless {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 640px;
  background: #050505;
  color: #fff;
  overflow: hidden;
  z-index: 0;
}
.hf-grid-lines {
  position: absolute; inset: 0;
  pointer-events: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.hf-grid-lines span {
  border-right: 1px solid rgba(255,255,255,0.045);
  height: 100%;
}
.hf-grid-lines span:last-child { border-right: none; }
.hero-fearless::before {
  content: "";
  position: absolute;
  inset: 0;
  /* subtle square grid — canvas feel, blends into the dark */
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
}
.hf-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 40px 180px;      /* bottom-heavy so the centred block sits higher */
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(22px, 3.2vh, 40px);
}
.hf-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.hf-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  background: #0b0b0c;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
}
.hf-chip .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}
.hf-mini {
  max-width: 300px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  text-align: right;
}
.hf-headline {
  font-size: clamp(60px, 10vw, 140px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 500;
  color: #fff;
  margin: 0;
}
.hf-neon { color: var(--accent); }
.hf-cursor {
  display: inline-block;
  color: var(--accent);
  animation: hfBlink 1.05s steps(1) infinite;
  margin-left: 2px;
  font-weight: 300;
}
@keyframes hfBlink { 50% { opacity: 0; } }
.hf-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}
.hf-lead {
  max-width: 480px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.62);
}
.hf-cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 18px 40px;
  background: var(--accent); color: #0b0b0c;
  font-weight: 600; font-size: 15px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: background .2s ease, transform .2s ease;
}
.hf-cta:hover { background: #fff; transform: translateY(-1px); }

/* --- GLIMPSE section: diagonal reveal + scattered images converge --- */
.glimpse {
  position: relative;
  z-index: 2;
  height: 190vh;
  background: transparent;
  margin-top: 0;
}
.glimpse-sticky {
  --reveal: 0;
  --cut: 180px;
  position: sticky;
  top: 0;
  height: 100vh;
  background: #ffffff;
  overflow: hidden;
  clip-path: polygon(0 calc(var(--cut) * (1 - var(--reveal))), 100% 0, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(0 calc(var(--cut) * (1 - var(--reveal))), 100% 0, 100% 100%, 0 100%);
  display: grid; place-items: center;
}
.glimpse-title {
  position: relative;
  z-index: 1;
  font-size: clamp(30px, 8vw, 112px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: #0b0b0c;
  text-align: center;
  margin: 0;
  white-space: nowrap;
  padding: 0 16px;
}
.glimpse-dot { color: var(--accent); }
.glimpse-sub {
  position: absolute;
  bottom: 60px; left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 15px;
  z-index: 1;
  text-align: center;
}
.glimpse-stage {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.g-img {
  position: absolute;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  will-change: transform;
  background-size: cover;
  background-position: center;
  transition: transform 0.18s ease-out;
}
.g-img.g1 { top:  8%; left:  6%; width: 220px; height: 160px; background: linear-gradient(135deg,#c9c2ff,#ebe8ff); --tx: 40vw; --ty: 40vh; --rot: 8deg; }
.g-img.g2 { top: 14%; right:  8%; width: 260px; height: 190px; background: linear-gradient(140deg,#0b0b0c,#333); --tx: -42vw; --ty: 34vh; --rot: -10deg; }
.g-img.g3 { top: 48%; left:  4%; width: 200px; height: 260px; background: linear-gradient(150deg,var(--lavender),var(--accent)); --tx: 44vw; --ty: -8vh; --rot: -6deg; }
.g-img.g4 { bottom: 8%; left: 22%; width: 240px; height: 170px; background: linear-gradient(160deg,#ffe4d6,#ffd0f1); --tx: 22vw; --ty: -30vh; --rot: 5deg; }
.g-img.g5 { bottom: 12%; right: 6%; width: 230px; height: 180px; background: linear-gradient(150deg,#d9f5ff,#a8c9ff); --tx: -32vw; --ty: -34vh; --rot: 9deg; }
.g-img.g6 { top: 44%; right: 4%; width: 200px; height: 240px; background: linear-gradient(140deg,#f5f5f4,#d9d9d4); --tx: -44vw; --ty: -6vh; --rot: -8deg; }
.g-img.g7 { top: 60%; left: 42%; width: 180px; height: 130px; background: linear-gradient(150deg,#c9c2ff,var(--accent)); --tx: 4vw; --ty: -18vh; --rot: 4deg; }
.glimpse-sticky .g-img {
  /* p = 0 → stacked together in the centre; scrolling (p → 1) spreads them out */
  transform:
    translate(calc(var(--tx) * (1 - var(--p, 0))), calc(var(--ty) * (1 - var(--p, 0))))
    rotate(calc(var(--rot) * var(--p, 0)))
    scale(calc(0.9 + (1 - var(--p, 0)) * 0.15));
}

@media (max-width: 820px) {
  .hero-fearless { min-height: 620px; }
  .hf-inner { padding: 90px 20px 40px; gap: 24px; }
  .hf-top { flex-direction: column; }
  .hf-mini { text-align: left; }
  .hf-bottom { grid-template-columns: 1fr; }
  .hf-cta { width: 100%; padding: 20px; }
  .glimpse { height: 160vh; }
  .glimpse-sticky { --cut: 80px; }
  .g-img.g1 { width: 130px; height: 100px; }
  .g-img.g2 { width: 150px; height: 110px; }
  .g-img.g3 { width: 120px; height: 150px; }
  .g-img.g4 { width: 140px; height: 100px; }
  .g-img.g5 { width: 140px; height: 110px; }
  .g-img.g6 { width: 120px; height: 140px; }
  .g-img.g7 { width: 110px; height: 80px; }
}

/* Phones: the scattered frames cover the word — keep just two, parked top & bottom,
   static (no converge/spread), so "Fresh Off the Grid" stays readable in the middle. */
@media (max-width: 640px) {
  .glimpse-stage .g-img { display: none; }
  .glimpse-stage .g1,
  .glimpse-stage .g5 { display: block; }
  .glimpse-sticky .g-img { transform: none !important; }
  .g-img.g1 {
    top: 6%; left: 50%; right: auto; bottom: auto;
    width: 150px; height: 108px;
    margin-left: -75px;
  }
  .g-img.g5 {
    top: auto; bottom: 6%; left: 50%; right: auto;
    width: 160px; height: 116px;
    margin-left: -80px;
  }
}

/* =====================================================
   OUR PROCESS — scroll-driven timeline + changing browser
   ===================================================== */
.process-tl {
  position: relative;
  height: 360vh;                 /* scroll length driving the 4 steps */
  background: var(--bg);
}
.ptl-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ptl-inner {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: clamp(28px, 4.5vh, 54px);
  height: 100%;
  padding-top: clamp(72px, 10vh, 120px);
  padding-bottom: clamp(40px, 6vh, 72px);
  align-content: center;
}
.ptl-head { max-width: 680px; }
.ptl-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 999px;
  background: #fff; border: 1px solid var(--border);
  font-size: 13px; font-weight: 600; color: var(--ink);
}
.ptl-chip .star { color: #7c5cff; font-style: normal; }
.ptl-title {
  margin-top: 0;
  font-size: clamp(28px, 4.2vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.ptl-sub {
  margin-top: 16px;
  font-size: 16px; line-height: 1.6;
  color: var(--muted);
  max-width: 560px;
}
.ptl-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  min-height: 0;
}

/* LEFT timeline */
.ptl-steps { position: relative; list-style: none; display: flex; flex-direction: column; gap: clamp(14px, 2.2vh, 28px); }
.ptl-line {
  position: absolute; left: 27px; top: 28px; bottom: 28px; width: 2px;
  background: var(--border-strong);
}
.ptl-line-fill {
  position: absolute; top: 0; left: 0; width: 100%; height: 0;
  background: linear-gradient(180deg, var(--accent), rgba(138,122,255,0.5));
  box-shadow: 0 0 16px rgba(138,122,255,0.5);
  transition: height .2s linear;
}
.ptl-step {
  position: relative;
  display: grid; grid-template-columns: 56px 1fr; gap: 22px;
  align-items: start;
  opacity: 0.4;
  transition: opacity .4s ease;
}
.ptl-step.done { opacity: 0.75; }
.ptl-step.active { opacity: 1; }
.ptl-num {
  position: relative; z-index: 1;
  width: 56px; height: 56px; border-radius: 50%;
  border: 2px solid var(--border-strong);
  background: #fff; color: var(--muted);
  display: grid; place-items: center;
  font-size: 17px; font-weight: 700;
  transition: all .35s ease;
}
.ptl-step.done .ptl-num { border-color: var(--accent); color: var(--ink); }
.ptl-step.active .ptl-num {
  border-color: var(--accent); background: var(--accent); color: #0b0b0c;
  box-shadow: 0 0 0 6px rgba(138,122,255,0.16);
}
.ptl-step-body h4 { font-size: clamp(19px, 1.9vw, 23px); font-weight: 700; letter-spacing: -0.01em; padding-top: 12px; }
.ptl-step-body p { margin-top: 8px; font-size: 15px; line-height: 1.6; color: var(--muted); max-width: 430px; }
.ptl-preview { display: none; }          /* mobile only */

/* RIGHT floating browser */
.ptl-visual { display: flex; justify-content: center; }
.ptl-browser {
  width: 100%;
  border-radius: 20px; background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.ptl-browser-lg { max-width: 540px; animation: ptlFloat 7s ease-in-out infinite; }
@keyframes ptlFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.ptl-browser-bar {
  height: 46px; display: flex; align-items: center; gap: 8px;
  padding: 0 18px; border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.ptl-browser-bar i { width: 11px; height: 11px; border-radius: 50%; background: var(--border-strong); }
.ptl-url {
  margin-left: 12px; font-size: 12px; color: var(--muted);
  background: #fff; border: 1px solid var(--border); border-radius: 999px;
  padding: 5px 16px;
}
.ptl-browser-lg .ptl-browser-body { position: relative; height: 340px; }
.ptl-screen {
  position: absolute; inset: 0;
  opacity: 0; transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease;
  pointer-events: none;
}
.ptl-screen.active { opacity: 1; transform: translateY(0); }
/* image placeholder — drop an <img> inside to replace the numbered case */
.ptl-imgcase {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--surface) 0%, var(--lavender-2) 100%);
}
.ptl-imgcase span {
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(11, 11, 12, 0.16);
}
.ptl-imgcase img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ptl-preview .ptl-browser-body { height: 190px; position: relative; }

/* MOBILE: no side browser — a preview sits under each step */
@media (max-width: 900px) {
  .process-tl { height: auto; }
  .ptl-sticky { position: static; height: auto; display: block; }
  .ptl-inner { display: block; height: auto; padding: 70px 0 20px; }
  .ptl-head { max-width: none; }
  .ptl-body { display: block; margin-top: 44px; }
  .ptl-visual { display: none; }
  .ptl-line { display: none; }
  .ptl-steps { gap: 46px; }
  .ptl-step { opacity: 1; grid-template-columns: 48px 1fr; gap: 16px; }
  .ptl-num { width: 48px; height: 48px; font-size: 15px; }
  .ptl-preview { display: block; margin-top: 20px; }
  .ptl-preview .ptl-browser { max-width: 100%; box-shadow: var(--shadow-md); }
}

/* --- Why us 4-card layout --- */
.whyus-bento-4 {
  grid-template-columns: 1.4fr 1fr 1.2fr;
  grid-template-rows: 220px 220px;
}
.whyus-bento-4 .wu-hero { grid-row: span 2; }
.whyus-bento-4 .wu-creative { grid-row: span 2; }
.whyus-bento-4 .wu-strategy { grid-column: 2 / 3; grid-row: 2 / 3; }
.whyus-bento-4 .wu-strategy .wu-strategy-top { grid-template-columns: 1fr; gap: 12px; }
.whyus-bento-4 .wu-strategy .wu-logos { gap: 10px; font-size: 0; }
.whyus-bento-4 .wu-strategy .wu-logo { font-size: 13px; }
@media (max-width: 1080px) {
  .whyus-bento-4 { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .whyus-bento-4 .wu-hero { grid-column: span 2; grid-row: span 1; }
  .whyus-bento-4 .wu-creative { grid-column: span 2; grid-row: span 1; }
  .whyus-bento-4 .wu-strategy { grid-column: span 2; }
}

/* --- HSCROLL fixes --- */
.hscroll-sticky { height: 100vh; padding-top: 0; }
.hscroll-head {
  padding: clamp(56px, 11vh, 150px) 40px 20px;   /* nudge the title down toward the cards */
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  flex-shrink: 0;
}
.hscroll-head-inner {
  display: flex; flex-direction: column; gap: 10px; align-items: center;
  max-width: 780px;
}
.hscroll-title {
  font-size: clamp(20px, 4.4vw, 48px) !important;
  line-height: 1.12 !important;
  white-space: nowrap;   /* keep each line intact so the title stays exactly two lines */
}
.hscroll-sub {
  font-size: 15px; color: var(--muted);
  max-width: 560px; line-height: 1.55;
}
.hscroll-index {
  top: 30px; right: 40px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
}
.hscroll-track {
  padding: 0 60px 0 45vw;
}
@media (max-width: 820px) {
  .hscroll-head { padding: 24px 20px 12px; }
}

/* --- BRUTALIST CTA --- */
.cta-brutal {
  background: #000;
  color: #fff;
  padding: 120px 0 60px;
  position: relative;
  border-radius: 40px 40px 0 0;        /* card edge */
  box-shadow: 0 -30px 80px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
/* home only: slides up over the pinned section above */
.cta-brutal.cta-slide {
  z-index: 2;
  margin-top: -100vh;
}
.cta-brutal-inner {
  position: relative;
  z-index: 1;
}
.cta-brutal-tag {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55);
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 40px;
}
.cta-brutal-title {
  font-size: clamp(56px, 10vw, 156px);
  line-height: 0.92;
  letter-spacing: -0.05em;
  font-weight: 800;
  text-transform: uppercase;
  display: flex; flex-direction: column;
  gap: 6px;
}
.cta-brutal-title .line { display: block; }
.cta-brutal-title .line-accent {
  color: #050505;
  background: var(--accent);
  padding: 0 24px;
  align-self: flex-start;
  box-shadow: 8px 8px 0 rgba(138,122,255,0.25);
}
.cta-brutal-title .line-outline {
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  align-self: flex-end;
  position: relative;
}
.cta-slash {
  color: var(--accent);
  -webkit-text-stroke: 0;
  margin-left: 20px;
}
.cta-brutal-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.cta-brutal-copy p {
  max-width: 480px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
}
.cta-brutal-actions {
  display: flex; flex-direction: column; gap: 12px;
  align-items: flex-start;
}
.btn-brutal {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 44px;
  border-radius: var(--radius-pill);
  font-weight: 600; font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-brutal span { font-size: 20px; }
/* neon pill, same shape/feel as the hero "Book a Discovery Call" */
.btn-brutal-primary {
  background: var(--accent); color: #050505;
  box-shadow: 0 10px 30px rgba(138,122,255,0.35);
}
.btn-brutal-primary:hover { transform: translateY(-2px); background: #a698ff; box-shadow: 0 14px 36px rgba(138,122,255,0.45); }
.btn-brutal-ghost {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-brutal-ghost:hover { background: #fff; color: #050505; }
.cta-brutal-meta {
  margin-top: 40px;
  display: flex; gap: 40px; flex-wrap: wrap;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.footer-merged { padding-top: 40px; border-top: none; }
.footer-merged .footer-top { padding-bottom: 40px; }

@media (max-width: 820px) {
  .cta-brutal { padding: 90px 0 30px; }
  .cta-brutal.cta-slide { margin-top: 0; }   /* no scroll-overlap on phones */
  .cta-brutal-grid { grid-template-columns: 1fr; gap: 30px; }
  .cta-brutal-actions { min-width: 0; }
  .cta-brutal-meta { gap: 20px; font-size: 11px; }
}

/* =====================================================
   Wordmark — lowercase "seqence" with accent i-dot
   ===================================================== */
.brand-word {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.05em;
  text-transform: lowercase;
  line-height: 1;
}
.brand-word .brand-i {
  position: relative;
  display: inline-block;
}
.brand-word .brand-i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0.05em;
  width: 0.16em;
  height: 0.16em;
  border-radius: 50%;
  background: var(--accent);
  transform: translateX(-50%);
  box-shadow: 0 0 8px rgba(138, 122, 255, 0.75);
}

/* =====================================================
   Floating capsule nav + hide-on-scroll-down
   ===================================================== */
.nav {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: none !important;
  padding: 14px 0;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}
.nav .nav-inner {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 13px 8px 13px 22px;
  box-shadow: 0 8px 30px rgba(15, 15, 20, 0.06);
  transition: padding .35s ease, box-shadow .3s ease, background .3s ease;
}
.nav-dark .nav-inner {
  background: rgba(18, 18, 20, 0.6);
  border-color: transparent;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}
.nav-dark.scrolled .nav-inner {
  border-color: rgba(255, 255, 255, 0.1);
}
/* squeeze once the page has scrolled a little */
.nav.scrolled .nav-inner {
  padding-top: 10px;
  padding-bottom: 10px;
}
/* hidden while scrolling down */
.nav.nav-hidden {
  transform: translateY(-160%);
}

/* =====================================================
   Logo (SVG wordmark) in nav + footer
   ===================================================== */
.brand-logo { display: inline-flex; align-items: center; }
.brand-logo img { height: 26px; width: auto; display: block; }
@media (max-width: 560px) {
  .brand-logo img { height: 22px; }
}
/* Big footer wordmark → self-scrolling logo ticker (left → right) */
.footer-word-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: footerLogoLoop 42s linear infinite;
  will-change: transform;
}
.footer-word:hover .footer-word-track { animation-play-state: paused; }
.footer-word-track img {
  flex: none;
  display: block;
  height: clamp(56px, 11vw, 160px);
  width: auto;
  margin-right: clamp(28px, 5vw, 84px);
}
/* two identical halves → translating by exactly 50% loops seamlessly */
@keyframes footerLogoLoop {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .footer-word-track { animation: none; }
}

/* =====================================================
   Hero — subtle on-load reveal (blur + rise), staggered
   ===================================================== */
.hf-inner { z-index: 2; }
.hf-anim {
  opacity: 0;
  animation: heroIn 0.95s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.hf-chip.hf-anim { animation-delay: 0.05s; }
.hf-headline.hf-anim { animation-delay: 0.16s; }
.hf-lead.hf-anim { animation-delay: 0.28s; }
.hf-cta.hf-anim { animation-delay: 0.38s; }
@keyframes heroIn {
  0% { opacity: 0; filter: blur(14px); transform: translateY(16px); }
  100% { opacity: 1; filter: blur(0); transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hf-anim { animation: none; opacity: 1; }
}

/* =====================================================
   CLARITY — "Why Seqence": a diagonal fold from the LEFT
   rises over the locked projects section
   ===================================================== */
.reveal-stack { position: relative; }

.clarity {
  position: relative;
  z-index: 3;
  height: 200vh;
  margin-top: -22vh;        /* starts the fold only after "Projects Shipped" is fully placed & held */
  color: #fff;
}
.clarity-sticky {
  --reveal: 0;
  --cut: 220px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #000;
  /* fold opens from the LEFT: top-left stays covered, top-right rises into place */
  clip-path: polygon(0 0, 100% calc(var(--cut) * (1 - var(--reveal))), 100% 100%, 0 100%);
  -webkit-clip-path: polygon(0 0, 100% calc(var(--cut) * (1 - var(--reveal))), 100% 100%, 0 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.clarity-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
}
.clarity-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: #0c0c0e;                       /* solid so the grid doesn't show through the chip */
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}
.clarity-chip .star { color: var(--accent); font-size: 13px; font-style: normal; }
.clarity-heading {
  font-size: clamp(20px, 4.4vw, 48px);   /* matches "More than deliverables" */
  line-height: 1.14;
  letter-spacing: -0.035em;
  font-weight: 700;
  max-width: 900px;
  margin: 26px auto 0;
}
.clarity-heading .clarity-dim { display: block; color: var(--muted-2); }
.clarity-sub {
  max-width: 620px;
  margin: 22px auto 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}
.clarity-stats {
  margin-top: clamp(44px, 6vh, 80px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: left;
}
.clarity-stat .lbl {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.clarity-stat .num {
  margin-top: 22px;
  font-size: clamp(52px, 7.5vw, 120px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: #f4f4f5;
}
/* scoped blur-in reveal for the text as the fold opens */
.clarity .reveal {
  transition: opacity .8s ease, transform .8s ease, filter .8s ease;
  filter: blur(8px);
}
.clarity .reveal.in { filter: blur(0); }

/* ≤900px (where the projects stack is static too): drop the scroll-locked fold,
   render as a normal black section */
@media (max-width: 900px) {
  .clarity { height: auto; margin-top: 0; }
  .clarity-sticky {
    position: static;
    height: auto;
    clip-path: none;
    -webkit-clip-path: none;
    padding: 84px 0;
    display: block;
  }
}
@media (max-width: 640px) {
  .clarity-stats { grid-template-columns: 1fr; gap: 30px; }
  .clarity-stat .num { font-size: clamp(72px, 20vw, 118px); }
}

/* =====================================================
   Dark-mode Why-Us bento — merges with the black Clarity card above
   ===================================================== */
.darkbento {
  background: #000;
  padding: 0 0 72px;   /* merge tight with the black Clarity card above; cards move up */
}
/* recolour the white cards (leave the blue hero card as-is) */
.darkbento .wu:not(.wu-hero) {
  background: #111114;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}
.darkbento .wu-mark { background: rgba(255, 255, 255, 0.85); }
.darkbento .wu-stat-num { color: #fff; }
.darkbento .wu-stat-lbl { color: rgba(255, 255, 255, 0.5); }
.darkbento .wu-label { color: #fff; }
.darkbento .wu-stars { color: #fff; }
.darkbento .wu-stars .dim { color: rgba(255, 255, 255, 0.25); }
.darkbento .wu-mid p { color: rgba(255, 255, 255, 0.72); }
.darkbento .wu-caption { color: #fff; }
.darkbento .wu-strategy-top p { color: rgba(255, 255, 255, 0.72); }
.darkbento .wu-logo { color: #fff; }
.darkbento .wu-logos { opacity: 0.8; }
.darkbento .wu-avatars span { border-color: #111114; }

/* =====================================================
   Why-Seqence difference — 5-card grid (primary = neon)
   ===================================================== */
.whygrid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-auto-rows: minmax(210px, 1fr);
  gap: 20px;
}
.whyc {
  position: relative;
  background: #111114;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  color: #fff;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
}
.whyc:hover { transform: translateY(-3px); border-color: rgba(255, 255, 255, 0.18); }
.whyc h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.25;
}
.whyc p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}
/* primary neon card, spans both rows on the left */
.whyc-primary {
  grid-row: span 2;
  background: var(--accent);
  border-color: transparent;
  color: #0b0b0c;
  justify-content: space-between;
}
.whyc-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(11, 11, 12, 0.55);
}
.whyc-primary h3 { font-size: clamp(26px, 2.6vw, 34px); letter-spacing: -0.01em; text-transform: none; }
.whyc-primary p { color: rgba(11, 11, 12, 0.72); font-size: 15px; max-width: 380px; }
.whyc-cta {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: #0b0b0c;
}
.whyc-cta span { transition: transform .25s ease; }
.whyc-primary:hover .whyc-cta span { transform: translateX(4px); }

@media (max-width: 900px) {
  .whygrid { grid-template-columns: 1fr 1fr; }
  .whyc-primary { grid-column: span 2; grid-row: auto; }
}
@media (max-width: 560px) {
  .whygrid { grid-template-columns: 1fr; }
  .whyc-primary { grid-column: span 1; }
}

/* =====================================================
   Legal pages (Privacy / Terms / Cookies)
   ===================================================== */
.legal { max-width: 820px; margin: 0; }   /* left-aligned with the page title */
.legal .legal-meta { color: var(--muted-2); font-size: 14px; letter-spacing: 0.02em; }
.legal h2 {
  font-size: clamp(22px, 2.4vw, 26px);
  font-weight: 700; letter-spacing: -0.02em;
  margin-top: 48px;
}
.legal h2:first-of-type { margin-top: 8px; }
.legal h3 { font-size: 17px; font-weight: 600; margin-top: 24px; }
.legal p { color: var(--muted); font-size: 16px; line-height: 1.75; margin-top: 14px; }
.legal ul { list-style: disc; padding-left: 22px; margin-top: 14px; }
.legal ul li { color: var(--muted); font-size: 16px; line-height: 1.7; margin-top: 8px; }
.legal a { color: var(--ink); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* =====================================================
   404 — off grid
   ===================================================== */
.err-hero { position: relative; overflow: hidden; }
.err-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(to right, rgba(11,11,12,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11,11,12,0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(120% 85% at 50% 42%, #000 45%, transparent 100%);
  mask-image: radial-gradient(120% 85% at 50% 42%, #000 45%, transparent 100%);
}
.err-hero > div { position: relative; z-index: 1; }
.err-tag {
  display: inline-block;
  font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  padding: 8px 16px; border: 1px solid var(--border); border-radius: 999px; background: #fff;
}
.err-title {
  margin-top: 30px;
  font-size: clamp(48px, 8.5vw, 112px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.0;
  color: var(--ink);
}
.err-title .off { color: var(--muted-2); }
.err-sub { margin: 34px auto 0; max-width: 520px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.err-hero .actions { margin-top: 40px; justify-content: center; }

/* footer legal links */
.footer-legal a { color: inherit; }
.footer-legal a:hover { color: var(--accent); }

/* =====================================================
   SERVICES — premium service-detail template
   ===================================================== */
.svc-block { padding-top: clamp(64px, 9vh, 120px); }
.svc-intro { max-width: 760px; }
.svc-intro-icon {
  width: 60px; height: 60px; border-radius: 18px;
  background: var(--surface); border: 1px solid var(--border);
  display: grid; place-items: center; color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.svc-intro-icon svg { width: 28px; height: 28px; }
.svc-title { font-size: clamp(38px, 5.5vw, 68px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.02; margin-top: 26px; }
.svc-desc { font-size: clamp(17px, 1.7vw, 20px); color: var(--muted); line-height: 1.6; margin-top: 20px; max-width: 640px; }
.svc-cta { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }

/* three overview cards */
.svc-cards { margin-top: 52px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card {
  background: #fff; border: 1px solid var(--border); border-radius: 24px;
  padding: 32px; box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.svc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.svc-card-icon { width: 46px; height: 46px; border-radius: 13px; background: var(--surface); display: grid; place-items: center; color: var(--ink); }
.svc-card-icon svg { width: 22px; height: 22px; }
.svc-card h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; margin-top: 20px; }
.svc-card ul { margin-top: 16px; display: flex; flex-direction: column; gap: 11px; }
.svc-card li { display: flex; align-items: center; gap: 11px; font-size: 15px; color: var(--muted); line-height: 1.4; }
.svc-card li::before {
  content: ""; width: 7px; height: 7px; border-radius: 2px; flex-shrink: 0;
  background: var(--accent); box-shadow: 0 0 0 3px rgba(138,122,255,0.16);
}

/* full-width showcase */
.svc-showcase {
  margin-top: clamp(56px, 7vh, 90px);
  padding: clamp(48px, 6vw, 88px) 0;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.svc-showcase-inner { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.svc-stage { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 3vw, 40px); flex-wrap: wrap; }
.svc-tags { margin-top: 36px; display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.svc-tag { font-size: 13px; font-weight: 500; padding: 8px 16px; border-radius: 999px; background: #fff; border: 1px solid var(--border); color: var(--muted); }

/* generic mockups */
.mk { background: #fff; border: 1px solid var(--border); border-radius: 18px; box-shadow: var(--shadow-lg); overflow: hidden; }
.mk-bar { height: 42px; display: flex; align-items: center; gap: 7px; padding: 0 16px; border-bottom: 1px solid var(--border); background: var(--surface); }
.mk-bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--border-strong); }
.mk-url { margin-left: 12px; font-size: 12px; color: var(--muted); background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 4px 14px; }
.mk-body { padding: 24px; }
.mk-lg { width: min(680px, 100%); }
.mk-phone { width: 190px; flex-shrink: 0; border-radius: 30px; border: 9px solid #0b0b0c; background: #fff; overflow: hidden; box-shadow: var(--shadow-lg); }
.mk-phone .mk-body { padding: 16px; height: 340px; }

/* content bits */
.blk { border-radius: 10px; background: var(--surface); display: block; }
.stickies { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.stickies span { width: 84px; height: 84px; border-radius: 10px; background: var(--c, var(--surface)); transform: rotate(var(--r, 0)); box-shadow: var(--shadow-sm); }
.journey { display: flex; align-items: center; gap: 0; margin-top: 30px; }
.journey .jn { width: 26px; height: 26px; border-radius: 50%; background: #fff; border: 2px solid var(--ink); flex-shrink: 0; }
.journey .jn.on { background: var(--accent); border-color: var(--accent); }
.journey .jl { flex: 1; height: 2px; background: var(--border-strong); }

.ui-layout { display: grid; grid-template-columns: 120px 1fr; gap: 16px; }
.ui-rail { display: flex; flex-direction: column; gap: 10px; }
.ui-rail span { height: 12px; border-radius: 6px; background: var(--surface); }
.ui-rail span:first-child { background: var(--ink); }
.ui-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ui-grid .blk { height: 74px; }
.ui-grid .blk:nth-child(1) { background: linear-gradient(135deg, var(--lavender-2), var(--lavender)); }
.ui-grid .blk:nth-child(4) { background: linear-gradient(135deg, var(--lavender), var(--accent)); }

.hero-mock { display: flex; flex-direction: column; gap: 12px; }
.hero-mock .h1 { height: 30px; width: 70%; border-radius: 8px; background: var(--ink); }
.hero-mock .h2 { height: 12px; width: 90%; border-radius: 6px; background: var(--surface-2); }
.hero-mock .h3 { height: 12px; width: 60%; border-radius: 6px; background: var(--surface-2); }
.hero-mock .cta { height: 34px; width: 130px; border-radius: 999px; background: var(--accent); margin-top: 6px; }

.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.stat { background: var(--surface); border-radius: 12px; padding: 14px; }
.stat b { display: block; height: 22px; width: 60%; border-radius: 6px; background: var(--ink); }
.stat span { display: block; height: 9px; width: 90%; border-radius: 5px; background: var(--surface-2); margin-top: 10px; }
.bar-chart { display: flex; align-items: flex-end; gap: 12px; height: 120px; margin-top: 16px; }
.bar-chart span { flex: 1; border-radius: 8px 8px 0 0; background: linear-gradient(180deg, var(--lavender), var(--accent)); }
.table-mock { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.table-mock span { height: 12px; border-radius: 6px; background: var(--surface); }
.table-mock span:first-child { background: var(--surface-2); }

.swatches { display: flex; gap: 12px; }
.swatches span { flex: 1; height: 90px; border-radius: 14px; box-shadow: var(--shadow-sm); }
.brand-row { display: flex; align-items: center; gap: 22px; margin-top: 22px; flex-wrap: wrap; }
.brand-mark { width: 96px; height: 96px; border-radius: 22px; background: var(--ink); color: var(--accent); display: grid; place-items: center; font-size: 44px; font-weight: 800; }
.brand-type { font-size: 68px; font-weight: 800; letter-spacing: -0.03em; color: var(--ink); line-height: 1; }
.brand-type small { display: block; font-size: 13px; font-weight: 500; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 6px; }

/* final dark CTA */
.svc-final {
  margin-top: clamp(70px, 9vh, 120px);
  background: #050505; color: #fff;
  padding: clamp(90px, 13vh, 150px) 0;
  position: relative; overflow: hidden; text-align: center;
}
.svc-final::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 45%, #000 55%, transparent 100%);
  mask-image: radial-gradient(120% 90% at 50% 45%, #000 55%, transparent 100%);
}
.svc-final-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; padding: 0 28px; }
.svc-final .tag { display:inline-flex; align-items:center; gap:8px; font-size:13px; font-weight:600; color:rgba(255,255,255,0.85); padding:8px 16px; border-radius:999px; background:#0c0c0e; border:1px solid rgba(255,255,255,0.14); }
.svc-final .tag .star { color: var(--accent); }
.svc-final h2 { margin-top: 22px; font-size: clamp(36px, 6vw, 64px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; }
.svc-final p { margin: 20px auto 0; max-width: 540px; color: rgba(255,255,255,0.6); font-size: 18px; line-height: 1.6; }
.svc-final .actions { margin-top: 36px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-inv-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.btn-inv-ghost:hover { background: #fff; color: #050505; border-color: #fff; }

@media (max-width: 900px) {
  .svc-cards { grid-template-columns: 1fr; }
  .mk-lg { width: 100%; }
}

/* =====================================================
   SERVICES v2 — editorial magazine redesign
   ===================================================== */
.sv-hero-cta { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }

/* sticky sub-nav */
.sv-subnav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border);
}
.sv-subnav-inner { display: flex; gap: 6px; overflow-x: auto; padding: 12px 28px; scrollbar-width: none; }
.sv-subnav-inner::-webkit-scrollbar { display: none; }
.sv-subnav-link { padding: 9px 16px; border-radius: 999px; font-size: 14px; font-weight: 500; color: var(--muted); white-space: nowrap; transition: color .2s ease, background .2s ease; }
.sv-subnav-link:hover { color: var(--ink); }
.sv-subnav-link.active { color: var(--ink); background: var(--surface); }

/* service section */
.sv-section { min-height: 86vh; display: flex; align-items: center; padding: clamp(60px, 9vh, 120px) 0; scroll-margin-top: 74px; }
.sv-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(40px, 6vw, 96px); align-items: center; width: 100%; }
.sv-section.alt .sv-text { order: 2; }
.sv-num { font-size: 13px; font-weight: 700; letter-spacing: 0.16em; color: var(--muted-2); }
.sv-title { font-size: clamp(44px, 6.5vw, 92px); font-weight: 700; letter-spacing: -0.035em; line-height: 0.98; margin-top: 12px; }
.sv-statement { font-size: clamp(21px, 2.5vw, 30px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.22; margin-top: 26px; max-width: 520px; }
.sv-copy { font-size: 17px; line-height: 1.65; color: var(--muted); margin-top: 16px; max-width: 480px; }
.sv-card { margin-top: 32px; background: #fff; border: 1px solid var(--border); border-radius: 22px; padding: 26px 28px; box-shadow: var(--shadow-md); max-width: 400px; }
.sv-card-label { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.sv-card ul { margin-top: 14px; display: flex; flex-direction: column; gap: 11px; }
.sv-card li { display: flex; align-items: center; gap: 11px; font-size: 15px; font-weight: 500; color: var(--ink); }
.sv-card li::before { content: ""; width: 6px; height: 6px; border-radius: 2px; background: var(--accent); box-shadow: 0 0 0 3px rgba(138, 122, 255, 0.16); flex-shrink: 0; }

/* abstract visual placeholder */
.sv-visual { position: relative; border-radius: 28px; min-height: 440px; overflow: hidden; background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-md); display: grid; place-items: center; padding: 44px; }
.sv-visual::after { content: attr(data-label); position: absolute; bottom: 18px; right: 22px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); }

.sv-viz-strategy {
  background:
    linear-gradient(to right, rgba(11,11,12,0.05) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(to bottom, rgba(11,11,12,0.05) 1px, transparent 1px) 0 0 / 44px 44px,
    var(--surface);
}
.sv-notes { position: relative; width: 100%; height: 300px; max-width: 380px; }
.sv-notes span { position: absolute; width: 88px; height: 88px; border-radius: 12px; background: var(--c); transform: rotate(var(--r)); box-shadow: var(--shadow-md); }

.sv-blocks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; width: 100%; max-width: 360px; }
.sv-blocks span { height: 74px; border-radius: 12px; background: #fff; border: 1px solid var(--border); }
.sv-blocks .aa { display: grid; place-items: center; font-size: 32px; font-weight: 800; color: var(--ink); background: var(--surface-2); border: none; }
.sv-blocks .accent { background: var(--accent); border: none; }
.sv-blocks .lav { background: var(--lavender-2); border: none; }

.sv-frames { position: relative; width: 100%; max-width: 400px; height: 300px; }
.sv-frame { position: absolute; border-radius: 16px; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
.sv-frame .fbar { height: 28px; border-bottom: 1px solid var(--border); border-radius: 16px 16px 0 0; background: var(--surface); }
.sv-frame.big { inset: 0 70px 44px 0; }
.sv-frame.small { width: 128px; bottom: 0; right: 0; top: 96px; }

.sv-cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; width: 100%; max-width: 380px; }
.sv-cards-grid span { height: 96px; border-radius: 14px; background: #fff; border: 1px solid var(--border); }
.sv-cards-grid span:first-child { grid-column: span 2; height: 68px; background: var(--surface-2); }

.sv-brand { display: flex; flex-direction: column; gap: 22px; width: 100%; max-width: 360px; }
.sv-brand-swatches { display: flex; gap: 10px; }
.sv-brand-swatches span { flex: 1; height: 56px; border-radius: 12px; box-shadow: var(--shadow-sm); }
.sv-brand-row { display: flex; align-items: center; gap: 22px; }
.sv-brand-mark { width: 84px; height: 84px; border-radius: 20px; background: var(--ink); color: var(--accent); display: grid; place-items: center; font-size: 40px; font-weight: 800; }
.sv-brand-aa { font-size: 72px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; color: var(--ink); }

/* editorial dividers */
.sv-divider { padding: clamp(76px, 13vh, 170px) 0; text-align: center; }
.sv-divider span { font-size: clamp(38px, 8vw, 116px); font-weight: 800; letter-spacing: -0.04em; line-height: 1.0; color: var(--ink); }
.sv-divider .dim { color: var(--muted-2); }

.svc-final-email { display: inline-block; margin-top: 28px; color: rgba(255, 255, 255, 0.7); font-size: 15px; font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.svc-final-email:hover { color: var(--accent); }

@media (max-width: 900px) {
  .sv-grid { grid-template-columns: 1fr; gap: 34px; }
  .sv-section.alt .sv-text { order: 0; }
  .sv-section { min-height: 0; }
  .sv-visual { min-height: 300px; padding: 32px; }
}

/* =====================================================
   STUDIO page
   ===================================================== */
.st-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 6vw, 84px); align-items: center; margin-top: clamp(20px, 4vh, 44px); }
.st-hero-visual { position: relative; border-radius: 28px; min-height: 440px; overflow: hidden; background:
    linear-gradient(to right, rgba(11,11,12,0.045) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(to bottom, rgba(11,11,12,0.045) 1px, transparent 1px) 0 0 / 44px 44px,
    var(--surface);
  border: 1px solid var(--border); box-shadow: var(--shadow-md); }
.st-shape { position: absolute; box-shadow: var(--shadow-md); }
.st-notebook { top: 12%; left: 8%; width: 46%; height: 58%; border-radius: 16px; background: #fff; border: 1px solid var(--border); }
.st-notebook::before { content: ""; position: absolute; left: 22px; right: 22px; top: 26px; height: 8px; border-radius: 4px; background: var(--surface-2);
  box-shadow: 0 22px 0 var(--surface-2), 0 44px 0 var(--surface-2), 0 66px 0 var(--surface-2); }
.st-sticky { width: 84px; height: 84px; border-radius: 10px; }
.st-sticky.a { top: 16%; right: 12%; background: #ffe08a; transform: rotate(5deg); }
.st-sticky.b { bottom: 16%; right: 22%; background: #c9c2ff; transform: rotate(-4deg); }
.st-coffee { width: 70px; height: 70px; border-radius: 50%; bottom: 12%; left: 16%; background: var(--ink); }
.st-accent { width: 120px; height: 120px; border-radius: 20px; bottom: 20%; right: 8%; background: var(--accent); }

/* section 2 — why */
.st-why-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.st-why-cards { display: flex; flex-direction: column; gap: 16px; }
.st-mini { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 26px; box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease; }
.st-mini:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.st-mini-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--surface); display: grid; place-items: center; color: var(--ink); }
.st-mini-icon svg { width: 22px; height: 22px; }
.st-mini h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; margin-top: 18px; }
.st-mini p { font-size: 15px; line-height: 1.6; color: var(--muted); margin-top: 8px; }

/* section 3 — process timeline */
.st-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; margin-top: 48px; }
.st-process::before { content: ""; position: absolute; left: 40px; right: 40px; top: 28px; height: 2px; background: var(--border-strong); }
.st-step { position: relative; }
.st-step-dot { width: 56px; height: 56px; border-radius: 50%; background: #fff; border: 2px solid var(--border-strong); display: grid; place-items: center; color: var(--ink); position: relative; z-index: 1; }
.st-step-dot svg { width: 24px; height: 24px; }
.st-step h4 { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; margin-top: 22px; }
.st-step p { font-size: 15px; line-height: 1.6; color: var(--muted); margin-top: 8px; max-width: 220px; }

/* section 4 — principles bento */
.st-principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.st-principle { background: #fff; border: 1px solid var(--border); border-radius: 22px; padding: 30px; box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.st-principle:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.st-principle:nth-child(1) { background: var(--ink); color: #fff; border-color: transparent; }
.st-principle:nth-child(1) p { color: rgba(255,255,255,0.6); }
.st-principle:nth-child(1) .st-p-icon { background: rgba(255,255,255,0.08); color: var(--accent); }
.st-p-icon { width: 46px; height: 46px; border-radius: 13px; background: var(--surface); display: grid; place-items: center; color: var(--ink); }
.st-p-icon svg { width: 22px; height: 22px; }
.st-principle h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; margin-top: 20px; }
.st-principle p { font-size: 15px; line-height: 1.6; color: var(--muted); margin-top: 8px; max-width: 340px; }

/* section 5 — remote */
.st-remote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.st-map { position: relative; border-radius: 28px; min-height: 340px; background:
    radial-gradient(circle, rgba(11,11,12,0.16) 1.4px, transparent 1.6px) 0 0 / 20px 20px, var(--surface);
  border: 1px solid var(--border); box-shadow: var(--shadow-md); overflow: hidden;
  -webkit-mask-image: radial-gradient(120% 100% at 50% 50%, #000 60%, transparent 100%);
  mask-image: radial-gradient(120% 100% at 50% 50%, #000 60%, transparent 100%); }
.st-marker { position: absolute; display: flex; align-items: center; gap: 8px; }
.st-marker .dot { width: 14px; height: 14px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px rgba(138,122,255,0.25); }
.st-marker span { font-size: 13px; font-weight: 600; background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 4px 12px; box-shadow: var(--shadow-sm); }
.st-cities { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.st-city { font-size: 15px; font-weight: 600; padding: 10px 18px; border-radius: 999px; background: var(--surface); border: 1px solid var(--border); }

@media (max-width: 900px) {
  .st-hero-grid, .st-why-grid, .st-remote-grid { grid-template-columns: 1fr; }
  .st-process { grid-template-columns: 1fr 1fr; }
  .st-process::before { display: none; }
  .st-principles { grid-template-columns: 1fr; }
  .st-principle:nth-child(1) { grid-column: span 1; }
}
