@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --clr-black: #0A0A0A;
  --clr-white: #F8F8F8;
  --clr-pure-white: #FFFFFF;
  --clr-bg: #F2F2F2;
  --clr-accent: #0047FF;
  --clr-accent-pale: #EDF1FF;
  --clr-accent-dark: #0036CC;
  --clr-gray-900: #111111;
  --clr-gray-700: #333333;
  --clr-gray-500: #6B6B6B;
  --clr-gray-200: #E0E0E0;
  --clr-gray-100: #F0F0F0;
  --border: 1px solid #0A0A0A;
  --border-light: 1px solid #E0E0E0;
  --font-head: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  --t: 0.2s ease;
  --t-slow: 0.4s ease;
  --container: 1320px;
  --container-pad: clamp(16px, 4vw, 60px);
  --section-pad: clamp(64px, 8vw, 120px);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

html.menu-open {
  overflow: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--clr-gray-900);
  background-color: var(--clr-white);
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
}

input,
textarea,
select {
  font-family: var(--font-body);
}

section {
  overflow-x: clip;
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section-pad {
  padding: var(--section-pad) 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.022em;
}

.label-mono {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-gray-500);
}

.label-mono.accent {
  color: var(--clr-accent);
}

.label-mono.on-dark {
  color: rgba(255, 255, 255, 0.45);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--t), color var(--t), transform var(--t), box-shadow var(--t), border-color var(--t);
  border: 2px solid transparent;
  line-height: 1;
}

.btn-primary {
  background: var(--clr-black);
  color: var(--clr-white);
  border-color: var(--clr-black);
}

.btn-primary:hover {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: #fff;
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--clr-accent);
  color: #fff;
  border-color: var(--clr-accent);
}

.btn-accent:hover {
  background: var(--clr-black);
  border-color: var(--clr-black);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--clr-black);
  border-color: var(--clr-black);
}

.btn-outline:hover {
  background: var(--clr-black);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--clr-black);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--clr-white);
  border-bottom: var(--border);
  transition: box-shadow var(--t);
}

.site-header.scrolled {
  box-shadow: 0 3px 0 0 var(--clr-black);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-mark {
  width: 32px;
  height: 32px;
  background: var(--clr-black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--clr-white);
  stroke-width: 2;
}

.logo-wordmark {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--clr-black);
  line-height: 1;
}

.logo-wordmark span {
  color: var(--clr-accent);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav a {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-gray-700);
  letter-spacing: 0.01em;
  position: relative;
  padding-bottom: 3px;
  transition: color var(--t);
  text-decoration: none;
}

.header-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--clr-accent);
  transition: width var(--t);
}

.header-nav a:hover {
  color: var(--clr-black);
}

.header-nav a:hover::after {
  width: 100%;
}

.header-nav a.active {
  color: var(--clr-black);
  font-weight: 600;
}

.header-nav a.active::after {
  width: 100%;
}

.header-status {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-gray-500);
  padding: 5px 10px;
  border: var(--border-light);
  white-space: nowrap;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: var(--border);
  flex-shrink: 0;
}

.burger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--clr-black);
  transition: transform var(--t), opacity var(--t);
  transform-origin: center;
}

.burger-btn.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-btn.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger-btn.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--clr-black);
  z-index: 999;
  flex-direction: column;
  padding: 40px var(--container-pad) 40px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity var(--t-slow), transform var(--t-slow);
  overflow-y: auto;
  overflow-x: hidden;
}

.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-links a {
  font-family: var(--font-head);
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 700;
  color: #fff;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color var(--t);
  letter-spacing: -0.01em;
  text-decoration: none;
}

.mobile-nav-links a:hover {
  color: var(--clr-accent);
}

.mobile-nav-links a svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
}

.mobile-nav-footer {
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 32px;
}

.mobile-nav-footer .mnf-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 10px;
}

.mobile-nav-footer .mnf-contact {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.7;
}

.page-main {
  padding-top: 68px;
}

.hero {
  background: var(--clr-white);
  border-bottom: var(--border);
  overflow: hidden;
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 68px);
  max-height: 860px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 0;
  position: relative;
  z-index: 2;
}

.hero-label {
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(38px, 4.8vw, 68px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.032em;
  color: var(--clr-black);
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: normal;
  color: var(--clr-accent);
}

.hero-text {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--clr-gray-500);
  max-width: 440px;
  line-height: 1.72;
  margin-bottom: 40px;
}

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

.hero-proof {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 56px;
  padding-top: 0;
  border-top: var(--border-light);
  flex-wrap: nowrap;
}

.hero-proof-item {
  padding: 24px 32px 0 0;
  border-right: var(--border-light);
  margin-right: 32px;
  flex-shrink: 0;
}

.hero-proof-item:last-child {
  border-right: none;
  margin-right: 0;
}

.hero-proof-item .proof-num {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--clr-black);
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero-proof-item .proof-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-gray-500);
  margin-top: 6px;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  background: var(--clr-black);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  mix-blend-mode: luminosity;
  transition: transform 0.7s ease;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 71, 255, 0.25) 0%, transparent 55%);
  pointer-events: none;
}

.hero-visual-badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  z-index: 10;
  background: var(--clr-accent);
  color: #fff;
  padding: 14px 20px;
}

.hero-visual-badge .badge-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 4px;
}

.hero-visual-badge .badge-value {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}

.decision-strip {
  background: var(--clr-black);
  border-bottom: var(--border);
  overflow-x: clip;
}

.decision-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.decision-item {
  padding: 44px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--t);
}

.decision-item:last-child {
  border-right: none;
}

.decision-item:hover {
  background: rgba(0, 71, 255, 0.12);
}

.decision-item .di-num {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 18px;
}

.decision-item .di-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.decision-item .di-title span {
  color: var(--clr-accent);
}

.decision-item .di-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.65;
}

.core-offer {
  background: var(--clr-white);
  border-bottom: var(--border);
  overflow-x: clip;
}

.core-offer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.core-offer-content {
  padding: var(--section-pad) 64px var(--section-pad) 0;
  border-right: var(--border);
}

.core-offer-label {
  margin-bottom: 24px;
}

.core-offer-title {
  font-size: clamp(28px, 3.2vw, 48px);
  margin-bottom: 20px;
  color: var(--clr-black);
}

.core-offer-text {
  font-size: 15px;
  color: var(--clr-gray-500);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 460px;
}

.core-offer-principles {
  display: flex;
  flex-direction: column;
}

.cop-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-top: var(--border-light);
}

.cop-item:last-child {
  border-bottom: var(--border-light);
}

.cop-num {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--clr-accent);
  margin-top: 2px;
  flex-shrink: 0;
  width: 26px;
}

.cop-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-gray-700);
  line-height: 1.55;
}

.core-offer-visual {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.core-offer-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.core-offer-visual-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--clr-black);
  padding: 24px 28px;
}

.covo-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 6px;
}

.covo-text {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.work-tiles {
  background: var(--clr-bg);
  border-bottom: var(--border);
  overflow-x: clip;
}

.work-tiles-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
  flex-wrap: wrap;
}

.work-tiles-title {
  font-size: clamp(26px, 2.8vw, 42px);
  color: var(--clr-black);
}

.work-tiles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: var(--border);
}

.work-tile {
  position: relative;
  overflow: hidden;
  background: var(--clr-black);
  border: var(--border);
  cursor: pointer;
}

.work-tile:first-child {
  grid-column: 1 / -1;
  min-height: 420px;
}

.work-tile:not(:first-child) {
  min-height: 300px;
}

.work-tile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.55s ease, filter 0.55s ease;
  filter: grayscale(55%);
}

.work-tile:hover .work-tile-img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.work-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.15) 55%, transparent 100%);
}

.work-tile-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 2;
}

.work-tile-cat {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.work-tile-cat::before {
  content: '';
  width: 14px;
  height: 2px;
  background: var(--clr-accent);
  flex-shrink: 0;
}

.work-tile-title {
  font-family: var(--font-head);
  font-size: clamp(17px, 1.8vw, 24px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 10px;
}

.work-tile-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.work-tile-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 38px;
  height: 38px;
  background: var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(60px);
  transition: transform var(--t);
  z-index: 3;
}

.work-tile:hover .work-tile-arrow {
  transform: translateX(0);
}

.work-tile-arrow svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  fill: none;
}

.pov-panel {
  background: var(--clr-accent);
  border-bottom: var(--border);
  overflow-x: clip;
}

.pov-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.pov-label {
  margin-bottom: 24px;
}

.pov-thesis {
  font-family: var(--font-head);
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 40px;
}

.pov-arguments {
  display: flex;
  flex-direction: column;
}

.pov-arg {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.pov-arg:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.pov-arg-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}

.pov-arg-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.pov-quote {
  background: rgba(0, 0, 0, 0.18);
  padding: 32px;
  border-left: 3px solid rgba(255, 255, 255, 0.35);
  margin-bottom: 24px;
}

.pov-quote-text {
  font-family: var(--font-head);
  font-size: clamp(16px, 1.8vw, 21px);
  font-weight: 600;
  color: #fff;
  line-height: 1.42;
  letter-spacing: -0.01em;
}

.pov-callout {
  background: rgba(0, 0, 0, 0.15);
  padding: 24px 28px;
}

.pov-callout-num {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
}

.pov-callout-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 8px;
}

.capability-board {
  background: var(--clr-white);
  border-bottom: var(--border);
  overflow-x: clip;
}

.capability-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
  flex-wrap: wrap;
}

.capability-title {
  font-size: clamp(26px, 2.8vw, 42px);
  color: var(--clr-black);
  max-width: 480px;
}

.capability-tabs {
  display: flex;
  gap: 0;
  border: var(--border);
  margin-bottom: 0;
  overflow-x: auto;
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
}

.cap-tab {
  padding: 12px 22px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-gray-500);
  cursor: pointer;
  border-right: var(--border);
  border-bottom: none;
  border-top: none;
  border-left: none;
  white-space: nowrap;
  transition: background var(--t), color var(--t);
  background: transparent;
}

.cap-tab:last-child {
  border-right: none;
}

.cap-tab.is-active {
  background: var(--clr-black);
  color: #fff;
}

.cap-tab:not(.is-active):hover {
  background: var(--clr-bg);
  color: var(--clr-black);
}

.capability-panels {
  border: var(--border);
  border-top: none;
}

.cap-panel {
  display: none;
}

.cap-panel.is-active {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.cap-panel-info {
  padding: 48px;
  border-right: var(--border);
}

.cap-panel-label {
  margin-bottom: 18px;
}

.cap-panel-title {
  font-size: clamp(20px, 2.2vw, 30px);
  color: var(--clr-black);
  margin-bottom: 14px;
}

.cap-panel-desc {
  font-size: 14px;
  color: var(--clr-gray-500);
  line-height: 1.72;
  margin-bottom: 28px;
}

.cap-panel-deliverables {
  margin-bottom: 28px;
}

.cap-panel-deliverables h4 {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-gray-500);
  margin-bottom: 12px;
}

.cap-panel-deliverables ul li {
  font-size: 13px;
  color: var(--clr-gray-700);
  padding: 8px 0;
  border-bottom: var(--border-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cap-panel-deliverables ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--clr-accent);
  flex-shrink: 0;
}

.cap-panel-outcome {
  background: var(--clr-black);
  padding: 18px 20px;
}

.cap-panel-outcome .label-mono {
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 6px;
  display: block;
}

.cap-panel-outcome p {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

.cap-panel-problem {
  padding: 48px;
  background: var(--clr-bg);
}

.cap-problem-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-gray-500);
  margin-bottom: 24px;
}

.cap-problem-item {
  padding: 18px 0;
  border-bottom: var(--border-light);
}

.cap-problem-item:first-child {
  border-top: var(--border-light);
}

.cap-problem-q {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-black);
  margin-bottom: 5px;
}

.cap-problem-a {
  font-size: 13px;
  color: var(--clr-gray-500);
  line-height: 1.6;
}

.process-section {
  background: var(--clr-black);
  border-bottom: var(--border);
  overflow-x: clip;
}

.process-header {
  margin-bottom: 56px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.process-block {
  padding: 36px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: background var(--t);
}

.process-block:last-child {
  border-right: none;
}

.process-block:hover {
  background: rgba(0, 71, 255, 0.14);
}

.pb-step {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 16px;
}

.pb-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.pb-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
}

.proof-board {
  background: var(--clr-white);
  border-bottom: var(--border);
  overflow-x: clip;
}

.proof-header {
  text-align: center;
  margin-bottom: 56px;
}

.proof-header .label-mono {
  margin-bottom: 16px;
  display: block;
}

.proof-title {
  font-size: clamp(26px, 2.8vw, 42px);
  color: var(--clr-black);
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: var(--border);
  margin-bottom: 0;
}

.proof-metric {
  padding: 40px 28px;
  border-right: var(--border);
  text-align: center;
  transition: background var(--t);
}

.proof-metric:last-child {
  border-right: none;
}

.proof-metric:hover {
  background: var(--clr-accent-pale);
}

.pm-num {
  font-family: var(--font-head);
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 700;
  color: var(--clr-black);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.pm-accent {
  color: var(--clr-accent);
}

.pm-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-gray-500);
}

.proof-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: var(--border);
  border-top: none;
}

.proof-panel {
  padding: 40px;
  border-right: var(--border);
}

.proof-panel:last-child {
  border-right: none;
}

.proof-panel-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--clr-black);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.proof-panel-title::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--clr-accent);
  flex-shrink: 0;
}

.proof-panel-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.proof-panel-list li {
  font-size: 14px;
  color: var(--clr-gray-500);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.proof-panel-list li::before {
  content: '—';
  color: var(--clr-gray-200);
  flex-shrink: 0;
  margin-top: 1px;
}

.marquee-section {
  background: var(--clr-black);
  border-bottom: var(--border);
  overflow: hidden;
  max-width: 100vw;
  padding: 0;
}

.marquee-row {
  overflow: hidden;
  max-width: 100vw;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.marquee-row:last-child {
  border-bottom: none;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-left 28s linear infinite;
}

.marquee-track.reverse {
  animation: marquee-right 28s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 0;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.marquee-item span {
  padding: 0 28px;
}

.marquee-item::after {
  content: '·';
  color: var(--clr-accent);
  font-size: 20px;
  line-height: 0;
  flex-shrink: 0;
}

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

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

.action-panel {
  background: var(--clr-black);
  border-bottom: var(--border);
  overflow-x: clip;
}

.action-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.action-label {
  margin-bottom: 24px;
}

.action-title {
  font-size: clamp(30px, 3.8vw, 56px);
  color: #fff;
  letter-spacing: -0.032em;
  margin-bottom: 20px;
  line-height: 1.04;
}

.action-title em {
  font-style: normal;
  color: var(--clr-accent);
}

.action-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.72;
  margin-bottom: 36px;
}

.action-assurance {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.action-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: grayscale(70%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-block {
  background: var(--clr-bg);
  border-bottom: var(--border);
  overflow-x: clip;
}

.contact-block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info-label {
  margin-bottom: 20px;
}

.contact-info-title {
  font-size: clamp(22px, 2.4vw, 36px);
  color: var(--clr-black);
  margin-bottom: 24px;
}

.contact-details {
  display: flex;
  flex-direction: column;
}

.contact-detail {
  padding: 15px 0;
  border-bottom: var(--border-light);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail:first-child {
  border-top: var(--border-light);
}

.cd-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-gray-500);
  width: 72px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cd-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-gray-900);
  line-height: 1.5;
}

.contact-map {
  border: var(--border);
  overflow: hidden;
  height: 240px;
  margin-top: 20px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.contact-form-preview {
  background: var(--clr-pure-white);
  border: var(--border);
  padding: 40px;
}

.cfp-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--clr-black);
  margin-bottom: 6px;
}

.cfp-text {
  font-size: 14px;
  color: var(--clr-gray-500);
  margin-bottom: 28px;
  line-height: 1.6;
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-gray-500);
  margin-bottom: 7px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--clr-gray-900);
  background: var(--clr-bg);
  border: var(--border);
  outline: none;
  transition: border-color var(--t), background var(--t);
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--clr-accent);
  background: var(--clr-pure-white);
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field input.error,
.form-field textarea.error {
  border-color: #E02020;
}

.form-error-msg {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: #E02020;
  margin-top: 5px;
  display: block;
}

.site-footer {
  background: var(--clr-black);
  overflow-x: clip;
}

.footer-statement {
  padding: 48px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.footer-statement-line {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 68px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.05);
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}

.footer-top {
  padding: 72px 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  text-decoration: none;
}

.footer-logo .logo-mark {
  background: var(--clr-accent);
}

.footer-logo .logo-wordmark {
  color: #fff;
}

.footer-logo .logo-wordmark span {
  color: rgba(255, 255, 255, 0.5);
}

.footer-brand-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.65;
  max-width: 240px;
  margin-bottom: 20px;
}

.footer-brand-contact p {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.9;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 20px;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-links a {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--t);
  text-decoration: none;
}

.footer-col-links a:hover {
  color: #fff;
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.25);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.25);
  transition: color var(--t);
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.page-hero {
  background: var(--clr-black);
  padding: 80px 0;
  border-bottom: var(--border);
  overflow-x: clip;
}

.page-hero-label {
  margin-bottom: 20px;
}

.page-hero-title {
  font-size: clamp(34px, 4.8vw, 68px);
  color: #fff;
  letter-spacing: -0.032em;
  max-width: 680px;
  margin-bottom: 20px;
}

.page-hero-text {
  font-size: clamp(15px, 1.4vw, 17px);
  color: rgba(255, 255, 255, 0.52);
  max-width: 520px;
  line-height: 1.72;
}

.about-story {
  background: var(--clr-white);
  border-bottom: var(--border);
  overflow-x: clip;
}

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-story-content {
  padding: var(--section-pad) 64px var(--section-pad) 0;
  border-right: var(--border);
}

.about-story-content p {
  font-size: 15px;
  color: var(--clr-gray-500);
  line-height: 1.78;
  margin-bottom: 20px;
}

.about-story-content p:last-child {
  margin-bottom: 0;
}

.about-story-visual {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

.about-story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-principles {
  background: var(--clr-bg);
  border-bottom: var(--border);
  overflow-x: clip;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: var(--border);
  margin-top: 48px;
}

.principle-card {
  padding: 44px 36px;
  border-right: var(--border);
  border-bottom: var(--border);
  transition: background var(--t);
}

.principle-card:nth-child(3n) {
  border-right: none;
}

.principle-card:nth-last-child(-n+3):nth-child(3n+1),
.principle-card:nth-last-child(-n+3):nth-child(3n+2),
.principle-card:nth-last-child(-n+3):nth-child(3n) {
  border-bottom: none;
}

.principle-card:hover {
  background: var(--clr-pure-white);
}

.pc-num {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 18px;
}

.pc-title {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  color: var(--clr-black);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.pc-text {
  font-size: 13px;
  color: var(--clr-gray-500);
  line-height: 1.65;
}

.about-differentiators {
  background: var(--clr-black);
  border-bottom: var(--border);
  overflow-x: clip;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 48px;
}

.diff-card {
  padding: 44px 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background var(--t);
}

.diff-card:nth-child(2n) {
  border-right: none;
}

.diff-card:nth-last-child(-n+2) {
  border-bottom: none;
}

.diff-card:hover {
  background: rgba(0, 71, 255, 0.1);
}

.diff-card .dc-icon {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--clr-accent);
  margin-bottom: 16px;
  line-height: 1;
}

.diff-card .dc-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.diff-card .dc-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

.services-overview {
  background: var(--clr-white);
  border-bottom: var(--border);
  overflow-x: clip;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: var(--border);
  margin-top: 48px;
}

.service-card {
  padding: 36px 28px;
  border-right: var(--border);
  border-bottom: var(--border);
  transition: background var(--t);
}

.service-card:nth-child(3n) {
  border-right: none;
}

.service-card:hover {
  background: var(--clr-bg);
}

.sc-icon {
  width: 44px;
  height: 44px;
  border: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background var(--t), border-color var(--t);
}

.sc-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--clr-black);
  fill: none;
  transition: stroke var(--t);
}

.service-card:hover .sc-icon {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
}

.service-card:hover .sc-icon svg {
  stroke: #fff;
}

.sc-num {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 10px;
}

.sc-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--clr-black);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.sc-text {
  font-size: 13px;
  color: var(--clr-gray-500);
  line-height: 1.65;
}

.service-detail-section {
  border-bottom: var(--border);
  overflow-x: clip;
}

.service-detail-section:nth-child(odd) {
  background: var(--clr-bg);
}

.service-detail-section:nth-child(even) {
  background: var(--clr-white);
}

.sds-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sds-num {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 14px;
}

.sds-title {
  font-size: clamp(22px, 2.4vw, 34px);
  color: var(--clr-black);
  margin-bottom: 14px;
}

.sds-text {
  font-size: 14px;
  color: var(--clr-gray-500);
  line-height: 1.75;
  margin-bottom: 24px;
}

.sds-features {
  display: flex;
  flex-direction: column;
}

.sds-feature {
  padding: 11px 0;
  border-bottom: var(--border-light);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--clr-gray-700);
  line-height: 1.5;
}

.sds-feature:first-child {
  border-top: var(--border-light);
}

.sds-feature::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--clr-accent);
  margin-top: 5px;
  flex-shrink: 0;
}

.sds-visual img {
  width: 100%;
  border: var(--border);
  display: block;
}

.faq-section {
  background: var(--clr-white);
  border-bottom: var(--border);
  overflow-x: clip;
}

.faq-header {
  margin-bottom: 40px;
}

.faq-list {
  border: var(--border);
}

.faq-item {
  border-bottom: var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-black);
  transition: background var(--t), color var(--t);
}

.faq-question:hover {
  background: var(--clr-bg);
}

.faq-question.is-open {
  background: var(--clr-black);
  color: #fff;
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  fill: none;
  transition: transform var(--t);
}

.faq-question.is-open .faq-icon svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}

.faq-answer-inner {
  padding: 22px 28px;
  font-size: 14px;
  color: var(--clr-gray-500);
  line-height: 1.72;
  border-top: var(--border-light);
}

.portfolio-section {
  background: var(--clr-white);
  border-bottom: var(--border);
  overflow-x: clip;
}

.portfolio-cases {
  display: flex;
  flex-direction: column;
  border: var(--border);
  margin-top: 48px;
}

.portfolio-case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: var(--border);
  overflow: hidden;
}

.portfolio-case:last-child {
  border-bottom: none;
}

.portfolio-case:nth-child(even) .pc-img-wrap {
  order: 2;
}

.portfolio-case:nth-child(even) .pc-body {
  order: 1;
  border-right: var(--border);
  border-left: none;
}

.pc-img-wrap {
  overflow: hidden;
  min-height: 380px;
  position: relative;
}

.pc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%);
  transition: filter 0.55s ease, transform 0.55s ease;
  position: absolute;
  inset: 0;
}

.portfolio-case:hover .pc-img-wrap img {
  filter: grayscale(0%);
  transform: scale(1.04);
}

.pc-body {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: var(--border);
}

.pc-cat {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pc-cat::before {
  content: '';
  width: 12px;
  height: 2px;
  background: var(--clr-accent);
  flex-shrink: 0;
}

.pc-title {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 700;
  color: var(--clr-black);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.pc-sections {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.pc-section {
  padding: 12px 0;
  border-bottom: var(--border-light);
}

.pc-section:first-child {
  border-top: var(--border-light);
}

.pc-section-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-gray-500);
  margin-bottom: 3px;
}

.pc-section-text {
  font-size: 13px;
  color: var(--clr-gray-700);
  line-height: 1.55;
}

.pc-outcome {
  background: var(--clr-accent-pale);
  border: 1px solid var(--clr-accent);
  padding: 14px 18px;
}

.pc-outcome-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 4px;
}

.pc-outcome-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-black);
}

.contact-main {
  background: var(--clr-white);
  border-bottom: var(--border);
  overflow-x: clip;
}

.contact-main-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-form-full {
  background: var(--clr-bg);
  border: var(--border);
  padding: 48px;
}

.cff-title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--clr-black);
  margin-bottom: 6px;
}

.cff-text {
  font-size: 13px;
  color: var(--clr-gray-500);
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-sidebar-title {
  font-size: clamp(20px, 2.2vw, 30px);
  color: var(--clr-black);
  margin-bottom: 28px;
}

.cs-details {
  display: flex;
  flex-direction: column;
  border: var(--border);
  margin-bottom: 24px;
}

.cs-detail {
  padding: 18px 22px;
  border-bottom: var(--border);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cs-detail:last-child {
  border-bottom: none;
}

.csd-icon {
  width: 34px;
  height: 34px;
  background: var(--clr-accent-pale);
  border: 1px solid var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.csd-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--clr-accent);
  fill: none;
}

.csd-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-gray-500);
  margin-bottom: 3px;
}

.csd-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-gray-900);
  line-height: 1.45;
}

.contact-map-full {
  border: var(--border);
  overflow: hidden;
  height: 320px;
}

.contact-map-full iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.contact-hours {
  background: var(--clr-black);
  border: var(--border);
  padding: 22px 24px;
  margin-top: 16px;
}

.contact-hours .ch-title {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 10px;
}

.contact-hours p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

.thanks-section {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  background: var(--clr-white);
  overflow-x: clip;
}

.thanks-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 80px var(--container-pad);
}

.thanks-icon {
  width: 68px;
  height: 68px;
  background: var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.thanks-icon svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
}

.thanks-label {
  margin-bottom: 20px;
}

.thanks-title {
  font-size: clamp(30px, 4vw, 50px);
  color: var(--clr-black);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.thanks-text {
  font-size: 15px;
  color: var(--clr-gray-500);
  line-height: 1.72;
  margin-bottom: 36px;
}

.thanks-steps {
  text-align: left;
  background: var(--clr-bg);
  border: var(--border);
  padding: 28px 32px;
  margin-bottom: 36px;
}

.thanks-steps h3 {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-gray-500);
  margin-bottom: 16px;
}

.thanks-steps ol {
  list-style: none;
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.thanks-steps ol li {
  counter-increment: steps;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--clr-gray-700);
  line-height: 1.55;
}

.thanks-steps ol li::before {
  content: counter(steps, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--clr-accent);
  flex-shrink: 0;
  width: 22px;
  margin-top: 2px;
}

.legal-section {
  background: var(--clr-white);
  overflow-x: clip;
}

.legal-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 72px;
  align-items: start;
  padding: 72px 0;
}

.legal-nav {
  position: sticky;
  top: 88px;
}

.legal-nav-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-gray-500);
  margin-bottom: 14px;
}

.legal-nav-links {
  display: flex;
  flex-direction: column;
  border: var(--border);
}

.legal-nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--clr-gray-700);
  padding: 10px 14px;
  border-bottom: var(--border-light);
  transition: background var(--t), color var(--t);
  text-decoration: none;
}

.legal-nav-links a:last-child {
  border-bottom: none;
}

.legal-nav-links a:hover {
  background: var(--clr-bg);
  color: var(--clr-black);
}

.legal-content h1 {
  font-size: clamp(26px, 3vw, 40px);
  color: var(--clr-black);
  margin-bottom: 8px;
}

.legal-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--clr-gray-500);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: var(--border-light);
}

.legal-content h2 {
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 700;
  color: var(--clr-black);
  margin-top: 48px;
  margin-bottom: 14px;
}

.legal-content h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-black);
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-content p {
  font-size: 14px;
  color: var(--clr-gray-500);
  line-height: 1.78;
  margin-bottom: 14px;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 14px;
  padding-left: 0;
}

.legal-content ul li,
.legal-content ol li {
  font-size: 14px;
  color: var(--clr-gray-500);
  line-height: 1.7;
  padding: 5px 0 5px 20px;
  position: relative;
}

.legal-content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--clr-gray-200);
}

.legal-content ol {
  counter-reset: legal-ol;
}

.legal-content ol li {
  counter-increment: legal-ol;
}

.legal-content ol li::before {
  content: counter(legal-ol) ".";
  position: absolute;
  left: 0;
  color: var(--clr-accent);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

.stagger-parent .stagger-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-parent.is-visible .stagger-item:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.04s; }
.stagger-parent.is-visible .stagger-item:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.11s; }
.stagger-parent.is-visible .stagger-item:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.18s; }
.stagger-parent.is-visible .stagger-item:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.stagger-parent.is-visible .stagger-item:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.32s; }
.stagger-parent.is-visible .stagger-item:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.39s; }

.section-title-block {
  margin-bottom: 0;
}

.section-title-block .label-mono {
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-size: clamp(26px, 2.8vw, 42px);
  color: var(--clr-black);
}

.section-title.on-dark {
  color: #fff;
}

.section-subtitle {
  font-size: 15px;
  color: var(--clr-gray-500);
  line-height: 1.7;
  max-width: 480px;
  margin-top: 14px;
}

.section-subtitle.on-dark {
  color: rgba(255, 255, 255, 0.5);
}

.inline-link {
  color: var(--clr-accent);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  transition: color var(--t);
}

.inline-link:hover {
  color: var(--clr-accent-dark);
}

@media (min-width: 1025px) and (hover: hover) {
  .parallax-el {
    will-change: transform;
    transition: transform 0.1s linear;
  }
}

@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
  .footer-grid > :last-child {
    grid-column: 2 / 3;
  }
}

@media (max-width: 1024px) {
  .header-status { display: none; }
  .header-nav { gap: 18px; }
  .hero-inner { grid-template-columns: 1fr; min-height: auto; max-height: none; }
  .hero-content { padding: 60px 0; }
  .hero-visual { min-height: 340px; }
  .decision-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .decision-item:nth-child(2) { border-right: none; }
  .decision-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.08); }
  .decision-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.08); border-right: none; }
  .core-offer-inner { grid-template-columns: 1fr; }
  .core-offer-content { padding: var(--section-pad) 0; border-right: none; border-bottom: var(--border); }
  .core-offer-visual { min-height: 340px; }
  .work-tiles-grid { grid-template-columns: 1fr; }
  .work-tile:first-child { grid-column: 1; }
  .pov-inner { grid-template-columns: 1fr; gap: 40px; }
  .cap-panel.is-active { grid-template-columns: 1fr; }
  .cap-panel-info { border-right: none; border-bottom: var(--border); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-block { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .process-block:nth-child(3) { border-right: none; }
  .process-block:nth-child(4) { border-left: none; }
  .proof-metrics { grid-template-columns: repeat(2, 1fr); }
  .proof-metric:nth-child(2) { border-right: none; }
  .proof-metric:nth-child(3) { border-top: var(--border); }
  .proof-panels { grid-template-columns: 1fr; }
  .proof-panel { border-right: none; border-bottom: var(--border); }
  .proof-panel:last-child { border-bottom: none; }
  .action-inner { grid-template-columns: 1fr; gap: 40px; }
  .action-visual { display: none; }
  .contact-block-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .about-story-inner { grid-template-columns: 1fr; }
  .about-story-content { padding: var(--section-pad) 0; border-right: none; border-bottom: var(--border); }
  .about-story-visual { min-height: 340px; }
  .principles-grid { grid-template-columns: repeat(2, 1fr); }
  .principle-card:nth-child(3n) { border-right: var(--border); }
  .principle-card:nth-child(2n) { border-right: none; }
  .diff-grid { grid-template-columns: 1fr; }
  .diff-card { border-right: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(2n) { border-right: none; }
  .service-card:nth-child(3n) { border-right: var(--border); }
  .service-card:nth-child(3n):nth-child(2n) { border-right: none; }
  .sds-inner { grid-template-columns: 1fr; gap: 32px; }
  .portfolio-case { grid-template-columns: 1fr; }
  .portfolio-case:nth-child(even) .pc-img-wrap { order: 0; }
  .portfolio-case:nth-child(even) .pc-body { order: 0; border-right: none; border-left: none; border-top: var(--border); }
  .pc-img-wrap { min-height: 260px; }
  .pc-body { border-left: none; border-top: var(--border); }
  .contact-main-inner { grid-template-columns: 1fr; gap: 48px; }
  .legal-inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
  .legal-nav { position: static; margin-bottom: 32px; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-cta .btn { display: none; }
  .burger-btn { display: flex; }
  .mobile-nav { display: flex; }
  .decision-strip-inner { grid-template-columns: 1fr; }
  .decision-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .decision-item:last-child { border-bottom: none; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-block:nth-child(2) { border-right: none; }
  .process-block:nth-child(3) { border-right: var(--border); }
  .proof-metrics { grid-template-columns: repeat(2, 1fr); }
  .principles-grid { grid-template-columns: 1fr; }
  .principle-card { border-right: none; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; }
  .contact-form-full { padding: 28px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-proof { gap: 0; flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-block { border-right: none; }
  .proof-metrics { grid-template-columns: 1fr; }
  .proof-metric { border-right: none; border-bottom: var(--border); }
  .proof-metric:last-child { border-bottom: none; }
  .cap-panel-info { padding: 28px 24px; }
  .cap-panel-problem { padding: 28px 24px; }
  .work-tile:not(:first-child) { min-height: 240px; }
  .work-tile:first-child { min-height: 300px; }
  .pc-body { padding: 32px 24px; }
  .footer-statement-line { font-size: clamp(22px, 8vw, 48px); }
}
