@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400;1,500&display=swap');

:root {
  --tracing-paper: #F5F0E5;
  --cream-paper: #FAF5E8;
  --parchment-warm: #F0E8D2;
  --limestone-soft: #D5D0C0;
  --concrete-warm: #C8C2B0;
  --mist-grey: #E8E4D8;
  --asphalt-graphite: #2A2A2A;
  --graphite-cocoa: #4A4540;
  --concrete-cream: #6A655A;
  --signal-orange: #FF6B1A;
  --safety-yellow: #FFD60A;
  --steel-blue: #1E40AF;
  --clay-sand: #C2956A;
  --hairline: rgba(42, 42, 42, 0.7);
  --hairline-soft: rgba(42, 42, 42, 0.18);
  --hairline-grid: rgba(42, 42, 42, 0.06);
  --shadow-tracing: 0 8px 24px rgba(42, 42, 42, 0.08);
  --shadow-deep: 0 20px 48px rgba(42, 42, 42, 0.14);
  --shadow-card: 0 12px 32px rgba(42, 42, 42, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--asphalt-graphite);
  background: linear-gradient(135deg, #F5F0E5 0%, #EDE5D2 50%, #DCD2BC 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

strong, p, span, h1, h2, h3, h4, h5, h6 {
  color: inherit;
}

a {
  color: var(--asphalt-graphite);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

.wireframe-grid-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(42, 42, 42, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 42, 42, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  z-index: 1;
}

.fluid-canvas-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.fluid-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  mix-blend-mode: multiply;
}

.fluid-blob-1 {
  width: 560px;
  height: 560px;
  background: rgba(255, 107, 26, 0.10);
  top: -120px;
  left: -100px;
  animation: drift1 42s ease-in-out infinite;
}

.fluid-blob-2 {
  width: 480px;
  height: 480px;
  background: rgba(255, 214, 10, 0.08);
  bottom: -100px;
  right: -80px;
  animation: drift2 38s ease-in-out infinite;
  animation-delay: -10s;
}

.fluid-blob-3 {
  width: 520px;
  height: 520px;
  background: rgba(30, 64, 175, 0.07);
  top: 30%;
  left: 40%;
  animation: drift3 46s ease-in-out infinite;
  animation-delay: -16s;
}

.fluid-blob-4 {
  width: 440px;
  height: 440px;
  background: rgba(194, 149, 106, 0.09);
  top: 10%;
  right: 20%;
  animation: drift4 40s ease-in-out infinite;
  animation-delay: -8s;
}

@keyframes drift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, 40px) scale(1.08); }
  66% { transform: translate(-40px, 60px) scale(0.92); }
}

@keyframes drift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, -60px) scale(1.1); }
}

@keyframes drift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(80px, -40px) scale(1.05); }
  75% { transform: translate(-60px, 80px) scale(0.95); }
}

@keyframes drift4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 80px) scale(0.93); }
}

.coordinate-stamp {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--asphalt-graphite);
  opacity: 0.4;
}

.floating-pill-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1200px;
  height: 72px;
  background: rgba(250, 245, 232, 0.88);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  border: 1.5px solid var(--hairline-soft);
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(42, 42, 42, 0.10);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  gap: 18px;
}

.floating-pill-header.scrolled {
  background: rgba(250, 245, 232, 0.95);
  backdrop-filter: blur(28px) saturate(180%);
}

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

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 4px;
  border: 1.5px solid var(--asphalt-graphite);
  background: linear-gradient(135deg, #FF6B1A 0%, #FFD60A 100%);
  box-shadow: 4px 4px 0px var(--asphalt-graphite);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: pulse-mark 6s ease-in-out infinite;
}

.brand-mark::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid var(--asphalt-graphite);
  border-radius: 2px;
}

.brand-mark::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--asphalt-graphite);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow:
    -8px 0 0 var(--asphalt-graphite),
    8px 0 0 var(--asphalt-graphite),
    0 -8px 0 var(--asphalt-graphite),
    0 8px 0 var(--asphalt-graphite);
  animation: pulse-dots 2.2s ease-in-out infinite;
}

@keyframes pulse-mark {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

@keyframes pulse-dots {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.9; }
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-domain {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--asphalt-graphite);
}

.brand-title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--asphalt-graphite);
}

.pill-nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pill-nav-link {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--asphalt-graphite);
  padding: 8px 14px;
  border-radius: 100px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
}

.pill-nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal-orange);
  transition: transform 0.3s ease;
}

.pill-nav-link:hover {
  background: rgba(255, 107, 26, 0.10);
  transform: translateY(-1px);
}

.pill-nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.pill-nav-link.is-current {
  border-bottom: 1.5px solid var(--signal-orange);
  border-radius: 0;
  padding-bottom: 6px;
}

.pill-cta-button {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: linear-gradient(135deg, #FF6B1A, #FFD60A);
  padding: 12px 22px;
  border-radius: 100px;
  border: 1.5px solid var(--asphalt-graphite);
  box-shadow: 3px 3px 0px var(--asphalt-graphite);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  flex-shrink: 0;
}

.pill-cta-button:hover {
  box-shadow: 5px 5px 0px var(--asphalt-graphite);
  transform: translate(-1px, -1px);
  color: #FFFFFF;
}

.mobile-burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  border: 1.5px solid var(--asphalt-graphite);
  background: var(--cream-paper);
  box-shadow: 3px 3px 0px var(--signal-orange);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.mobile-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--asphalt-graphite);
  transition: all 0.3s ease;
}

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

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

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

.mobile-menu-panel {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--cream-paper);
  border-top: 1px solid var(--asphalt-graphite);
  border-bottom: 1px solid var(--asphalt-graphite);
  background-image:
    linear-gradient(rgba(42, 42, 42, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 42, 42, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  z-index: 99;
  padding: 32px 24px 48px;
  transform: translateY(-120%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

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

.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
}

.mobile-menu-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(42, 42, 42, 0.2);
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--asphalt-graphite);
}

.mobile-menu-item .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--signal-orange);
  letter-spacing: 0.15em;
  flex-shrink: 0;
  width: 36px;
}

.mobile-menu-cta {
  margin-top: 24px;
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #FF6B1A, #FFD60A);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 16px;
  padding: 18px 24px;
  border-radius: 100px;
  border: 1.5px solid var(--asphalt-graphite);
  box-shadow: 4px 4px 0px var(--asphalt-graphite);
}

.scroll-progress-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, #FF6B1A, #FFD60A);
  width: 0%;
  border-radius: 0 2px 2px 0;
  opacity: 0.65;
  transition: width 0.1s ease;
}

.hero-canvas {
  position: relative;
  min-height: 100vh;
  padding: 140px 80px 80px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  z-index: 2;
  max-width: 1500px;
  margin: 0 auto;
}

.hero-canvas.compact {
  min-height: auto;
  padding: 140px 32px 60px;
}

.hero-card {
  position: relative;
  background: rgba(250, 245, 232, 0.94);
  border: 1.5px solid var(--asphalt-graphite);
  box-shadow: 0 16px 40px rgba(42, 42, 42, 0.08);
  border-radius: 4px;
  padding: 56px 48px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-card.card-1 {
  transform: rotate(-0.6deg);
  z-index: 3;
}

.hero-card.card-2 {
  transform: rotate(0.8deg);
  background: linear-gradient(135deg, #2A2A2A 0%, #4A4540 100%);
  color: #FFFFFF;
  box-shadow: 0 20px 48px rgba(42, 42, 42, 0.18), 6px 6px 0px var(--signal-orange);
  z-index: 2;
  margin-left: -32px;
}

.hero-stamp-pill {
  display: inline-block;
  background: var(--asphalt-graphite);
  color: #FFFFFF;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  padding: 8px 14px;
  border-radius: 100px;
  transform: rotate(4deg);
  box-shadow: 3px 3px 0px var(--signal-orange);
  text-transform: uppercase;
}

.hero-headline {
  font-family: 'Inter', sans-serif;
  font-size: 88px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.98;
  color: var(--asphalt-graphite);
  margin: 24px 0 18px;
  text-transform: uppercase;
}

.hero-headline .accent {
  color: var(--signal-orange);
}

.hero-divider {
  width: 200px;
  height: 3px;
  background: var(--signal-orange);
  margin: 18px 0 24px;
  position: relative;
}

.hero-divider::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal-orange);
}

.hero-editorial-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 500;
  color: var(--signal-orange);
  margin-bottom: 18px;
}

.hero-tech-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--steel-blue);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-body {
  font-size: 15px;
  line-height: 1.75;
  color: var(--graphite-cocoa);
  margin-bottom: 32px;
}

.hero-card.card-2 .hero-body {
  color: rgba(255, 255, 255, 0.85);
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FF6B1A, #FFD60A);
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px 32px;
  border-radius: 100px;
  border: 1.5px solid var(--asphalt-graphite);
  box-shadow: 5px 5px 0px var(--asphalt-graphite);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary:hover {
  box-shadow: 7px 7px 0px var(--asphalt-graphite);
  transform: translate(-2px, -2px);
  color: #FFFFFF;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-paper);
  color: var(--asphalt-graphite);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 100px;
  border: 1.5px solid var(--asphalt-graphite);
  box-shadow: 4px 4px 0px var(--steel-blue);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  cursor: pointer;
}

.btn-secondary:hover {
  box-shadow: 6px 6px 0px var(--steel-blue);
  transform: translate(-1px, -1px);
  background: var(--cream-paper);
  color: var(--asphalt-graphite);
}

.hero-card.card-2 .btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.7);
}

.hero-card.card-2 .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.hero-card .corner-marker {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1.5px solid var(--asphalt-graphite);
}

.hero-card .corner-marker.tl { top: 14px; left: 14px; border-right: none; border-bottom: none; }
.hero-card .corner-marker.tr { top: 14px; right: 14px; border-left: none; border-bottom: none; }
.hero-card .corner-marker.bl { bottom: 14px; left: 14px; border-right: none; border-top: none; }
.hero-card .corner-marker.br { bottom: 14px; right: 14px; border-left: none; border-top: none; }

.hero-card.card-2 .corner-marker {
  border-color: var(--safety-yellow);
}

.hero-card .corner-stamp {
  position: absolute;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.5;
  color: var(--asphalt-graphite);
}

.hero-card.card-1 .corner-stamp.tl { top: 8px; left: 8px; }
.hero-card.card-1 .corner-stamp.br { bottom: 8px; right: 8px; }

.hero-card.card-2 .corner-stamp {
  color: var(--safety-yellow);
}

.hero-card.card-2 .corner-stamp.tl { top: 8px; left: 8px; }
.hero-card.card-2 .corner-stamp.br { bottom: 8px; right: 8px; }

.hero-3d-canvas {
  width: 100%;
  height: 360px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px dashed rgba(255, 214, 10, 0.4);
  border-radius: 4px;
  position: relative;
  margin: 18px 0;
}

.hero-3d-canvas img {
  width: 100%;
  height: 100%;
}

.hero-yellow-divider {
  height: 2px;
  background: var(--safety-yellow);
  opacity: 0.7;
  margin: 18px 0;
}

.hero-3d-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--safety-yellow);
  text-transform: uppercase;
}

.hero-stamp-square {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 96px;
  height: 96px;
  background: var(--signal-orange);
  color: #FFFFFF;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 14px;
  border: 1.5px solid var(--cream-paper);
  box-shadow: 4px 4px 0px var(--safety-yellow);
  transform: rotate(-6deg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  line-height: 1.4;
  text-transform: uppercase;
}

.floating-stamp {
  position: absolute;
  background: rgba(250, 245, 232, 0.95);
  border: 1.5px solid var(--asphalt-graphite);
  border-radius: 4px;
  padding: 12px 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--asphalt-graphite);
  box-shadow: 3px 3px 0px var(--asphalt-graphite);
  z-index: 5;
}

.floating-stamp.iso-stamp {
  top: 130px;
  left: 32px;
  width: 140px;
  transform: rotate(-4deg);
}

.floating-stamp.tel-stamp {
  bottom: 110px;
  right: 32px;
  width: 130px;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  line-height: 1.4;
}

.floating-stamp.tel-stamp .marker {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--steel-blue);
  margin: 0 auto 4px;
}

.floating-stamp.stats-stamp {
  bottom: 32px;
  left: 45%;
  transform: translateX(-50%) rotate(4deg);
  background: var(--asphalt-graphite);
  color: #FFFFFF;
  width: 220px;
  text-align: center;
  box-shadow: 4px 4px 0px var(--signal-orange);
  font-size: 12px;
}

.section {
  position: relative;
  padding: 120px 80px;
  z-index: 2;
}

.section-alt {
  background: rgba(216, 210, 188, 0.4);
}

.section-dark {
  background: linear-gradient(135deg, #2A2A2A 0%, #4A4540 100%);
  color: #FFFFFF;
}

.section-dark .section-eyebrow {
  color: var(--safety-yellow);
}

.section-dark .section-title {
  color: #FFFFFF;
}

.section-dark .section-lead {
  color: rgba(255, 255, 255, 0.85);
}

.section-divider {
  height: 1px;
  background: var(--asphalt-graphite);
  position: relative;
  margin: 0;
  opacity: 0.6;
}

.section-divider::before,
.section-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal-orange);
}

.section-divider::before { left: 24px; }
.section-divider::after { right: 24px; }

.section-inner {
  max-width: 1340px;
  margin: 0 auto;
}

.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--signal-orange);
  margin-bottom: 16px;
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--signal-orange);
  border-radius: 100px;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--asphalt-graphite);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-title.editorial {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 48px;
  text-transform: none;
  letter-spacing: -0.01em;
}

.section-lead {
  font-size: 16px;
  line-height: 1.75;
  color: var(--graphite-cocoa);
  max-width: 720px;
  margin-bottom: 56px;
}

.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.section-head-row .section-lead {
  margin-bottom: 0;
  flex: 1;
  min-width: 280px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  position: relative;
}

.bento-cell {
  position: relative;
  background: var(--cream-paper);
  border: 1.5px solid var(--asphalt-graphite);
  border-radius: 4px;
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  min-height: 280px;
}

.bento-cell:hover {
  z-index: 30;
  transform: scale(1.04);
  box-shadow: var(--shadow-deep);
  outline: 1.5px dashed var(--signal-orange);
  outline-offset: 5px;
}

.bento-cell .corner-marker {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1.5px solid var(--asphalt-graphite);
}

.bento-cell .corner-marker.tl { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.bento-cell .corner-marker.tr { top: 10px; right: 10px; border-left: none; border-bottom: none; }
.bento-cell .corner-marker.bl { bottom: 10px; left: 10px; border-right: none; border-top: none; }
.bento-cell .corner-marker.br { bottom: 10px; right: 10px; border-left: none; border-top: none; }

.bento-cell .corner-stamp {
  position: absolute;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.5;
  color: var(--asphalt-graphite);
}

.bento-cell .corner-stamp.tr { top: 8px; right: 8px; }
.bento-cell .corner-stamp.bl { bottom: 8px; left: 8px; }

.bento-cell .big-number {
  position: absolute;
  top: 14px;
  right: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 120px;
  font-weight: 700;
  color: var(--signal-orange);
  opacity: 0.16;
  letter-spacing: -0.04em;
  line-height: 1;
}

.bento-cell.size-large-a {
  grid-column: span 8;
  min-height: 360px;
}

.bento-cell.size-large-b {
  grid-column: span 4;
  min-height: 360px;
}

.bento-cell.size-medium {
  grid-column: span 4;
  min-height: 280px;
}

.bento-cell.size-full {
  grid-column: span 12;
  min-height: 220px;
  background: var(--asphalt-graphite);
  color: #FFFFFF;
}

.bento-cell.size-full .big-number {
  color: var(--safety-yellow);
  opacity: 0.5;
}

.bento-cell.size-full .bento-title {
  color: #FFFFFF;
}

.bento-cell.size-full .bento-desc {
  color: rgba(255, 255, 255, 0.85);
}

.bento-cell.size-full .corner-marker {
  border-color: var(--safety-yellow);
}

.bento-cell.size-full .corner-stamp {
  color: var(--safety-yellow);
}

.bento-cell.yellow-accent {
  border-color: var(--safety-yellow);
}

.bento-cell.blue-accent {
  border-color: var(--steel-blue);
}

.bento-cell.orange-accent {
  border-color: var(--signal-orange);
}

.bento-title {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--asphalt-graphite);
  margin-bottom: 12px;
  line-height: 1.2;
}

.bento-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--graphite-cocoa);
  margin-bottom: 16px;
}

.bento-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--asphalt-graphite);
  opacity: 0.6;
  margin-top: auto;
  padding-top: 12px;
}

.bento-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  font-weight: 700;
  color: var(--signal-orange);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.bento-thumb {
  width: 100%;
  height: 140px;
  background: var(--mist-grey);
  border: 1px dashed var(--asphalt-graphite);
  border-radius: 4px;
  margin-bottom: 16px;
  overflow: hidden;
  position: relative;
}

.bento-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.marquee-strip {
  background: var(--cream-paper);
  border-top: 1.5px solid var(--asphalt-graphite);
  border-bottom: 1.5px solid var(--asphalt-graphite);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
  margin-top: 48px;
}

.marquee-track {
  display: flex;
  gap: 12px;
  animation: marquee-slide 40s linear infinite;
  white-space: nowrap;
}

.marquee-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1.5px solid var(--asphalt-graphite);
  border-radius: 100px;
  background: var(--cream-paper);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--asphalt-graphite);
  flex-shrink: 0;
}

.marquee-chip::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal-orange);
  display: inline-block;
}

@keyframes marquee-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.workflow-strip {
  position: relative;
  background: rgba(245, 240, 229, 0.6);
  background-image:
    linear-gradient(rgba(42, 42, 42, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 42, 42, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  border-top: 1.5px solid var(--asphalt-graphite);
  border-bottom: 1.5px solid var(--asphalt-graphite);
  padding: 32px 0;
  overflow-x: auto;
  display: flex;
  gap: 24px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.workflow-card {
  flex: 0 0 360px;
  scroll-snap-align: start;
  background: var(--cream-paper);
  border: 1.5px solid var(--asphalt-graphite);
  border-radius: 4px;
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.workflow-card:hover {
  transform: scale(1.04);
  z-index: 30;
  box-shadow: var(--shadow-deep);
  outline: 1.5px dashed var(--signal-orange);
  outline-offset: 5px;
}

.workflow-card.is-active {
  border-color: var(--signal-orange);
  outline: 1.5px dashed var(--signal-orange);
  outline-offset: 5px;
}

.workflow-step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--asphalt-graphite);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.workflow-step-num::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--safety-yellow);
}

.workflow-icon {
  width: 56px;
  height: 56px;
  border: 1.5px solid var(--asphalt-graphite);
  border-radius: 4px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: var(--cream-paper);
}

.workflow-card .workflow-icon {
  background: var(--cream-paper);
  transition: all 0.4s ease;
}

.workflow-card:hover .workflow-icon {
  color: var(--signal-orange);
  border-color: var(--signal-orange);
}

.workflow-title {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--asphalt-graphite);
  margin-bottom: 12px;
  line-height: 1.2;
}

.workflow-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--graphite-cocoa);
  margin-bottom: 14px;
}

.workflow-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--signal-orange);
  margin-top: 12px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  position: relative;
}

.feature-card {
  background: var(--cream-paper);
  border: 1.5px solid var(--asphalt-graphite);
  border-radius: 4px;
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.feature-card:hover {
  transform: scale(1.04);
  z-index: 30;
  box-shadow: var(--shadow-deep);
  outline: 1.5px dashed var(--signal-orange);
  outline-offset: 5px;
}

.feature-icon {
  width: 64px;
  height: 64px;
  border: 1.5px solid var(--asphalt-graphite);
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(255, 107, 26, 0.1), rgba(255, 214, 10, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 18px;
  box-shadow: 3px 3px 0px var(--signal-orange);
}

.feature-title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--asphalt-graphite);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--graphite-cocoa);
}

.feature-number {
  position: absolute;
  top: 16px;
  right: 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 32px;
  color: var(--signal-orange);
  opacity: 0.5;
  font-weight: 700;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.about-image-frame {
  position: relative;
  border: 1.5px solid var(--asphalt-graphite);
  border-radius: 4px;
  background: var(--cream-paper);
  padding: 18px;
  box-shadow: var(--shadow-card);
  transform: rotate(-1deg);
}

.about-image-frame img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 2px;
}

.about-image-frame .corner-marker {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--asphalt-graphite);
}

.about-image-frame .corner-marker.tl { top: 8px; left: 8px; border-right: none; border-bottom: none; }
.about-image-frame .corner-marker.tr { top: 8px; right: 8px; border-left: none; border-bottom: none; }
.about-image-frame .corner-marker.bl { bottom: 8px; left: 8px; border-right: none; border-top: none; }
.about-image-frame .corner-marker.br { bottom: 8px; right: 8px; border-left: none; border-top: none; }

.about-stamp-overlay {
  position: absolute;
  bottom: 36px;
  right: 36px;
  background: var(--asphalt-graphite);
  color: #FFFFFF;
  padding: 12px 16px;
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  box-shadow: 4px 4px 0px var(--signal-orange);
  transform: rotate(4deg);
}

.about-text h2 {
  font-size: 56px;
  margin-bottom: 24px;
}

.about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-style: italic;
  color: var(--signal-orange);
  padding-left: 24px;
  border-left: 3px solid var(--signal-orange);
  margin: 24px 0;
  line-height: 1.5;
}

.about-paragraph {
  font-size: 15px;
  line-height: 1.85;
  color: var(--graphite-cocoa);
  margin-bottom: 18px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.team-card {
  background: var(--cream-paper);
  border: 1.5px solid var(--asphalt-graphite);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.team-card:hover {
  transform: scale(1.04);
  z-index: 30;
  box-shadow: var(--shadow-deep);
  outline: 1.5px dashed var(--signal-orange);
  outline-offset: 5px;
}

.team-photo {
  width: 100%;
  height: 320px;
  background: var(--mist-grey);
  overflow: hidden;
  position: relative;
  border-bottom: 1.5px solid var(--asphalt-graphite);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-photo .stamp {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: var(--signal-orange);
  color: #FFFFFF;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  padding: 6px 10px;
  border-radius: 100px;
  text-transform: uppercase;
}

.team-body {
  padding: 24px;
}

.team-name {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--asphalt-graphite);
  margin-bottom: 4px;
}

.team-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--signal-orange);
  margin-bottom: 12px;
}

.team-bio {
  font-size: 14px;
  line-height: 1.7;
  color: var(--graphite-cocoa);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--cream-paper);
  border: 1.5px solid var(--asphalt-graphite);
  border-radius: 4px;
  padding: 32px;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.testimonial-card:hover {
  transform: scale(1.04);
  z-index: 30;
  box-shadow: var(--shadow-deep);
  outline: 1.5px dashed var(--signal-orange);
  outline-offset: 5px;
}

.testimonial-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  line-height: 0.6;
  color: var(--signal-orange);
  margin-bottom: 12px;
  display: block;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--graphite-cocoa);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(42, 42, 42, 0.2);
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--asphalt-graphite);
  background: var(--mist-grey);
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--asphalt-graphite);
  margin-bottom: 2px;
}

.testimonial-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--concrete-cream);
  text-transform: uppercase;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  padding: 56px;
  background: var(--asphalt-graphite);
  color: #FFFFFF;
  border: 1.5px solid var(--asphalt-graphite);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.stats-strip .stat {
  text-align: center;
  position: relative;
  padding: 0 18px;
}

.stats-strip .stat::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5px;
  height: 60%;
  background: rgba(255, 255, 255, 0.18);
}

.stats-strip .stat:last-child::after { display: none; }

.stats-strip .stat-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 56px;
  font-weight: 700;
  color: var(--safety-yellow);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}

.stats-strip .stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.gallery-cell {
  position: relative;
  background: var(--cream-paper);
  border: 1.5px solid var(--asphalt-graphite);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-cell:hover {
  z-index: 30;
  transform: scale(1.03);
  box-shadow: var(--shadow-deep);
  outline: 1.5px dashed var(--signal-orange);
  outline-offset: 5px;
}

.gallery-cell.span-6 { grid-column: span 6; }
.gallery-cell.span-4 { grid-column: span 4; }
.gallery-cell.span-8 { grid-column: span 8; }
.gallery-cell.span-12 { grid-column: span 12; }

.gallery-photo {
  width: 100%;
  height: 320px;
  background: var(--mist-grey);
  overflow: hidden;
  border-bottom: 1.5px solid var(--asphalt-graphite);
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-cell.span-8 .gallery-photo { height: 360px; }
.gallery-cell.span-12 .gallery-photo { height: 420px; }

.gallery-meta {
  padding: 22px 24px;
}

.gallery-title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--asphalt-graphite);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.gallery-info {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--concrete-cream);
  margin-bottom: 10px;
}

.gallery-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--graphite-cocoa);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.pricing-card {
  background: var(--cream-paper);
  border: 1.5px solid var(--asphalt-graphite);
  border-radius: 4px;
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pricing-card:hover {
  transform: scale(1.04);
  z-index: 30;
  box-shadow: var(--shadow-deep);
  outline: 1.5px dashed var(--signal-orange);
  outline-offset: 5px;
}

.pricing-card.featured {
  background: var(--asphalt-graphite);
  color: #FFFFFF;
  transform: scale(1.02);
}

.pricing-card.featured .pricing-title,
.pricing-card.featured .pricing-feature-list li {
  color: #FFFFFF;
}

.pricing-card.featured .pricing-feature-list li::before {
  background: var(--safety-yellow);
}

.pricing-tag {
  position: absolute;
  top: -14px;
  right: 18px;
  background: var(--signal-orange);
  color: #FFFFFF;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  padding: 6px 14px;
  border-radius: 100px;
  text-transform: uppercase;
}

.pricing-title {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--asphalt-graphite);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.pricing-amount {
  font-family: 'JetBrains Mono', monospace;
  font-size: 38px;
  font-weight: 700;
  color: var(--signal-orange);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  line-height: 1;
}

.pricing-card.featured .pricing-amount {
  color: var(--safety-yellow);
}

.pricing-unit {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--concrete-cream);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.pricing-card.featured .pricing-unit {
  color: rgba(255, 255, 255, 0.65);
}

.pricing-feature-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.pricing-feature-list li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--graphite-cocoa);
  padding: 8px 0;
  border-bottom: 1px dashed rgba(42, 42, 42, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-feature-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal-orange);
  flex-shrink: 0;
}

.pricing-feature-list li:last-child {
  border-bottom: none;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-item {
  background: var(--cream-paper);
  border: 1.5px solid var(--asphalt-graphite);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  outline: 1.5px dashed var(--signal-orange);
  outline-offset: 5px;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--asphalt-graphite);
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: none;
  font-family: 'Inter', sans-serif;
  gap: 18px;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--asphalt-graphite);
  border-radius: 4px;
  background: var(--cream-paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--asphalt-graphite);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item.is-open .faq-toggle {
  background: var(--signal-orange);
  color: #FFFFFF;
  border-color: var(--signal-orange);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 28px;
}

.faq-item.is-open .faq-answer {
  max-height: 400px;
  padding: 0 28px 24px;
}

.faq-answer p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--graphite-cocoa);
}

.contact-shell {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: flex-start;
}

.contact-info {
  background: var(--cream-paper);
  border: 1.5px solid var(--asphalt-graphite);
  border-radius: 4px;
  padding: 40px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.contact-info .corner-marker {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--asphalt-graphite);
}

.contact-info .corner-marker.tl { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.contact-info .corner-marker.tr { top: 12px; right: 12px; border-left: none; border-bottom: none; }
.contact-info .corner-marker.bl { bottom: 12px; left: 12px; border-right: none; border-top: none; }
.contact-info .corner-marker.br { bottom: 12px; right: 12px; border-left: none; border-top: none; }

.contact-info h3 {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--asphalt-graphite);
  letter-spacing: -0.01em;
}

.contact-row {
  padding: 18px 0;
  border-bottom: 1px solid rgba(42, 42, 42, 0.2);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

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

.contact-row .icon {
  font-size: 22px;
  width: 36px;
  flex-shrink: 0;
  color: var(--signal-orange);
}

.contact-row .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--concrete-cream);
  margin-bottom: 4px;
}

.contact-row .value {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--asphalt-graphite);
  line-height: 1.5;
  word-break: break-all;
}

.contact-form-card {
  background: var(--cream-paper);
  border: 1.5px solid var(--asphalt-graphite);
  border-radius: 4px;
  padding: 40px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.contact-form-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--asphalt-graphite);
  letter-spacing: -0.01em;
}

.contact-form-card .form-lead {
  font-size: 14px;
  color: var(--graphite-cocoa);
  margin-bottom: 28px;
  line-height: 1.7;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--asphalt-graphite);
  margin-bottom: 8px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  background: var(--cream-paper);
  border: 1.5px solid var(--asphalt-graphite);
  border-radius: 4px;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--asphalt-graphite);
  transition: all 0.3s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 107, 26, 0.3);
  border-color: var(--signal-orange);
}

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

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-success {
  display: none;
  background: var(--signal-orange);
  color: #FFFFFF;
  padding: 18px 24px;
  border-radius: 4px;
  font-weight: 700;
  margin-bottom: 18px;
}

.form-success.is-visible {
  display: block;
}

.site-footer {
  background: var(--asphalt-graphite);
  color: #FFFFFF;
  padding: 80px 80px 32px;
  position: relative;
  z-index: 2;
  border-top: 1.5px solid var(--signal-orange);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1340px;
  margin: 0 auto 56px;
}

.footer-brand h4 {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  color: #FFFFFF;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-col h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--safety-yellow);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--safety-yellow);
}

.footer-contact-block {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.footer-contact-block strong {
  color: #FFFFFF;
  display: block;
  margin-top: 12px;
  margin-bottom: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  max-width: 1340px;
  margin: 0 auto;
}

.footer-copy {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.65);
}

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

.footer-legal-links a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.footer-legal-links a:hover {
  color: var(--safety-yellow);
}

.cookie-consent-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: calc(100% - 48px);
  max-width: 520px;
  background: var(--cream-paper);
  border: 1.5px solid var(--asphalt-graphite);
  border-radius: 4px;
  padding: 24px;
  box-shadow: var(--shadow-deep);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-consent-banner.is-hidden {
  display: none;
}

.cookie-consent-banner .cookie-stamp {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--signal-orange);
}

.cookie-consent-banner h4 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--asphalt-graphite);
  letter-spacing: -0.01em;
}

.cookie-consent-banner p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--graphite-cocoa);
}

.cookie-consent-banner p a {
  color: var(--signal-orange);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  flex: 1;
  min-width: 120px;
  padding: 12px 16px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  border: 1.5px solid var(--asphalt-graphite);
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background: linear-gradient(135deg, #FF6B1A, #FFD60A);
  color: #FFFFFF;
  box-shadow: 3px 3px 0px var(--asphalt-graphite);
}

.cookie-btn.decline {
  background: var(--cream-paper);
  color: var(--asphalt-graphite);
}

.cookie-btn:hover {
  transform: translate(-1px, -1px);
}

.thankyou-card {
  background: var(--cream-paper);
  border: 1.5px solid var(--asphalt-graphite);
  border-radius: 4px;
  padding: 80px 64px;
  text-align: center;
  box-shadow: var(--shadow-deep);
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.thankyou-stamp {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6B1A, #FFD60A);
  border: 1.5px solid var(--asphalt-graphite);
  box-shadow: 5px 5px 0px var(--asphalt-graphite);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  color: #FFFFFF;
}

.thankyou-card h1 {
  font-family: 'Inter', sans-serif;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--asphalt-graphite);
  margin-bottom: 16px;
  line-height: 1.05;
}

.thankyou-card p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--graphite-cocoa);
  margin-bottom: 24px;
}

.thankyou-card .back-cta {
  margin-top: 32px;
}

.legal-page {
  max-width: 920px;
  margin: 0 auto;
  background: var(--cream-paper);
  border: 1.5px solid var(--asphalt-graphite);
  border-radius: 4px;
  padding: 56px 64px;
  box-shadow: var(--shadow-card);
}

.legal-page h1 {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--asphalt-graphite);
  margin-bottom: 12px;
  line-height: 1.1;
}

.legal-page .legal-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--concrete-cream);
  padding-bottom: 24px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(42, 42, 42, 0.2);
}

.legal-page h2 {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--asphalt-graphite);
  margin: 32px 0 14px;
  letter-spacing: -0.01em;
}

.legal-page p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--graphite-cocoa);
  margin-bottom: 14px;
}

.legal-page ul {
  margin: 14px 0 24px 24px;
}

.legal-page li {
  font-size: 15px;
  line-height: 1.85;
  color: var(--graphite-cocoa);
  margin-bottom: 6px;
}

.page-hero {
  position: relative;
  padding: 160px 80px 80px;
  text-align: left;
  background: linear-gradient(135deg, rgba(245, 240, 229, 0.6) 0%, rgba(220, 210, 188, 0.6) 100%);
  border-bottom: 1.5px solid var(--asphalt-graphite);
  z-index: 2;
}

.page-hero .corner-stamp.top-left {
  position: absolute;
  top: 80px;
  left: 32px;
}

.page-hero .corner-stamp.top-right {
  position: absolute;
  top: 80px;
  right: 32px;
}

.page-hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: 80px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--asphalt-graphite);
  margin: 24px 0 18px;
  line-height: 1;
  max-width: 900px;
}

.page-hero .hero-editorial-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-style: italic;
  color: var(--signal-orange);
  margin-bottom: 24px;
}

.page-hero p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--graphite-cocoa);
  max-width: 720px;
}

.page-hero .hero-tech-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--steel-blue);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.page-hero .divider {
  width: 200px;
  height: 3px;
  background: var(--signal-orange);
  margin: 24px 0;
}

.section-header-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 56px;
  align-items: end;
}

.bento-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.bento-detail-card {
  background: var(--cream-paper);
  border: 1.5px solid var(--asphalt-graphite);
  border-radius: 4px;
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.bento-detail-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--asphalt-graphite);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.bento-detail-card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--graphite-cocoa);
}

.detail-image-block {
  position: relative;
  background: var(--cream-paper);
  border: 1.5px solid var(--asphalt-graphite);
  border-radius: 4px;
  padding: 18px;
  box-shadow: var(--shadow-card);
  margin-bottom: 32px;
}

.detail-image-block img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 2px;
}

.detail-image-block .stamp {
  position: absolute;
  bottom: 36px;
  left: 36px;
  background: var(--asphalt-graphite);
  color: #FFFFFF;
  padding: 12px 16px;
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  box-shadow: 4px 4px 0px var(--signal-orange);
}

.three-col-cta {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}

.three-col-cta .info-cell {
  background: var(--cream-paper);
  border: 1.5px solid var(--asphalt-graphite);
  border-radius: 4px;
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.three-col-cta .info-cell .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--signal-orange);
  margin-bottom: 8px;
}

.three-col-cta .info-cell .value {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--asphalt-graphite);
}

.bottom-cta-band {
  background: var(--asphalt-graphite);
  color: #FFFFFF;
  padding: 80px;
  text-align: center;
  position: relative;
  border-top: 1.5px solid var(--asphalt-graphite);
}

.bottom-cta-band h2 {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.1;
}

.bottom-cta-band p {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.78);
  max-width: 720px;
  margin: 0 auto 32px;
}

.bottom-cta-band .btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.bottom-cta-band .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.pure-show-lg,
.pure-show-md,
.pure-show-sm { display: none; }

@media (max-width: 1100px) {
  .pill-nav-list { display: none; }
  .pill-cta-button { display: none; }
  .mobile-burger { display: flex; }
  .floating-pill-header { padding: 0 16px; height: 64px; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-domain { font-size: 9px; }
  .brand-title { font-size: 12px; }
  .hero-canvas { grid-template-columns: 1fr; padding: 110px 24px 60px; gap: 24px; }
  .hero-card { padding: 32px 24px; }
  .hero-card.card-2 { margin-left: 0; transform: rotate(0deg); }
  .hero-card.card-1 { transform: rotate(0deg); }
  .hero-headline { font-size: 48px; }
  .section { padding: 80px 24px; }
  .section-title { font-size: 40px; }
  .section-title.editorial { font-size: 36px; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .about-image-frame img { height: 320px; }
  .about-text h2 { font-size: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-footer { padding: 56px 24px 24px; }
  .bento-cell.size-large-a,
  .bento-cell.size-large-b,
  .bento-cell.size-medium,
  .bento-cell.size-full { grid-column: span 12; }
  .contact-shell { grid-template-columns: 1fr; }
  .floating-stamp { display: none; }
  .stats-strip { grid-template-columns: 1fr 1fr; gap: 16px; padding: 32px; }
  .stats-strip .stat::after { display: none; }
  .gallery-cell.span-6,
  .gallery-cell.span-4,
  .gallery-cell.span-8,
  .gallery-cell.span-12 { grid-column: span 12; }
  .section-header-pair { grid-template-columns: 1fr; gap: 24px; }
  .bento-detail-grid { grid-template-columns: 1fr; }
  .three-col-cta { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .page-hero { padding: 110px 24px 56px; }
  .page-hero h1 { font-size: 44px; }
  .bottom-cta-band { padding: 56px 24px; }
  .bottom-cta-band h2 { font-size: 32px; }
  .legal-page { padding: 40px 24px; }
  .legal-page h1 { font-size: 32px; }
  .thankyou-card { padding: 48px 24px; }
  .thankyou-card h1 { font-size: 36px; }
  .section-head-row { flex-direction: column; align-items: flex-start; }
  .cookie-consent-banner { left: 16px; right: 16px; bottom: 16px; width: auto; max-width: none; }
}

@media (max-width: 560px) {
  .hero-headline { font-size: 38px; }
  .section-title { font-size: 32px; }
  .footer-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr; }
  .workflow-card { flex: 0 0 280px; }
  .section { padding: 60px 16px; }
  .site-footer { padding: 40px 16px 20px; }
  .hero-canvas { padding: 100px 16px 40px; }
  .page-hero { padding: 100px 16px 40px; }
  .bento-cell { padding: 24px 16px; }
  .about-image-frame img { height: 240px !important; }
  .contact-shell { grid-template-columns: 1fr; gap: 32px; }
  .legal-page { padding: 32px 16px; }
  .bottom-cta-band { padding: 40px 16px; }
  .bottom-cta-band h2 { font-size: 28px; }
  .hero-card { padding: 24px 16px; }
  .footer-grid { gap: 24px; }
  .feature-card { padding: 24px 16px; }
  .testimonial-card { padding: 24px 16px; }
  .pricing-card { padding: 24px 16px; }
  .thankyou-card { padding: 32px 16px; }
  .thankyou-card h1 { font-size: 28px; }
  .about-text h2 { font-size: 32px; }
  .page-hero h1 { font-size: 36px; }
  .bento-detail-grid { grid-template-columns: 1fr; gap: 24px; }
  .three-col-cta { grid-template-columns: 1fr; gap: 16px; }
  .workflow-strip { padding: 24px 16px; }
  .marquee-strip { padding: 12px 0; }
  .features-grid { gap: 16px; }
  .team-grid { gap: 24px; }
  .gallery-grid { gap: 16px; }
  .pricing-grid { gap: 16px; }
  .bento-grid { gap: 16px; }
}