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

:root {
  --warm-white: #FAFAFA;
  --pure-white: #FFFFFF;
  --deep-emerald: #004D40;
  --soft-emerald: #546E7A;
  --electric-emerald: #00897B;
  --mint-secondary: #26A69A;
  --mint-border: #B2DFDB;
  --mint-soft: #E0F2F1;
  --ink-charcoal: #1A1F1E;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 16px;
  line-height: 1.7;
  background: var(--warm-white);
  color: var(--deep-emerald);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'JetBrains Mono', monospace;
  color: var(--deep-emerald);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.font-tech {
  font-family: 'Space Mono', monospace;
  letter-spacing: 0.04em;
}

.font-base-mono {
  font-family: 'IBM Plex Mono', monospace;
}

.font-display {
  font-family: 'JetBrains Mono', monospace;
}

.bg-warm-white { background: var(--warm-white); color: var(--deep-emerald); }
.bg-pure-white { background: var(--pure-white); color: var(--deep-emerald); }
.bg-deep-emerald { background: var(--deep-emerald); color: var(--pure-white); }
.bg-electric-emerald { background: var(--electric-emerald); color: var(--pure-white); }
.bg-mint-soft { background: var(--mint-soft); color: var(--deep-emerald); }
.bg-mint-border { background: var(--mint-border); color: var(--deep-emerald); }

.text-deep-emerald { color: var(--deep-emerald); }
.text-soft-emerald { color: var(--soft-emerald); }
.text-electric-emerald { color: var(--electric-emerald); }
.text-mint-secondary { color: var(--mint-secondary); }
.text-pure-white { color: var(--pure-white); }

.border-mint-border { border-color: var(--mint-border); }
.border-electric-emerald { border-color: var(--electric-emerald); }
.border-deep-emerald { border-color: var(--deep-emerald); }

.wireframe-card {
  background: var(--pure-white);
  border: 1px solid var(--mint-border);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 77, 64, 0.10);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, border-color 0.25s ease, z-index 0s;
  position: relative;
}

.wireframe-card:hover {
  transform: translateY(-5px) scale(1.03);
  border: 2px solid var(--electric-emerald);
  box-shadow: 0 14px 40px rgba(0, 137, 123, 0.25);
  z-index: 10;
}

.bento-cell {
  background: var(--pure-white);
  border: 1px solid var(--mint-border);
  border-radius: 4px;
  box-shadow: 4px 4px 0px rgba(0, 137, 123, 0.10);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.bento-cell:hover {
  transform: scale(1.02);
  border: 2px solid var(--electric-emerald);
  box-shadow: 6px 6px 0px rgba(0, 137, 123, 0.20);
  z-index: 10;
}

.stacking-card {
  background: var(--pure-white);
  border: 1px solid var(--mint-border);
  border-radius: 4px;
  box-shadow: 0 12px 32px rgba(0, 77, 64, 0.12);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
}

.stacking-card:hover {
  transform: scale(1.04);
  border: 2px solid var(--electric-emerald);
  box-shadow: 0 18px 48px rgba(0, 137, 123, 0.30);
  z-index: 10;
}

.flexgrow-cell {
  background: var(--pure-white);
  border: 1px solid var(--mint-border);
  border-radius: 4px;
  transition: transform 0.30s cubic-bezier(0.34, 1.56, 0.64, 1), flex-grow 0.30s ease, border-color 0.30s ease;
  position: relative;
  overflow: hidden;
}

.flexgrow-cell:hover {
  transform: scale(1.06);
  border: 2px solid var(--electric-emerald);
  z-index: 10;
  flex-grow: 3;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--electric-emerald);
  color: var(--pure-white);
  padding: 16px 36px;
  border: none;
  border-radius: 30px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  min-height: 52px;
  box-shadow: 0 8px 24px rgba(0, 137, 123, 0.35);
  transition: transform 0.20s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.20s ease, background 0.20s ease;
}

.cta-btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  background: var(--mint-secondary);
  box-shadow: 0 12px 32px rgba(0, 137, 123, 0.45);
}

.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--pure-white);
  color: var(--electric-emerald);
  padding: 16px 36px;
  border: 2px solid var(--electric-emerald);
  border-radius: 30px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  min-height: 52px;
  transition: transform 0.20s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.20s ease, color 0.20s ease;
}

.cta-btn-secondary:hover {
  transform: translateY(-2px) scale(1.03);
  background: var(--electric-emerald);
  color: var(--pure-white);
}

.cta-btn-on-photo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(0, 137, 123, 0.95);
  color: var(--pure-white);
  padding: 14px 30px;
  border: 2px solid var(--pure-white);
  border-radius: 30px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  min-height: 52px;
  backdrop-filter: blur(6px);
  transition: transform 0.20s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.20s ease;
}

.cta-btn-on-photo:hover {
  transform: translateY(-2px) scale(1.03);
  background: var(--electric-emerald);
}

.ghost-link {
  color: var(--electric-emerald);
  text-decoration: none;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.ghost-link:hover {
  border-bottom: 1px solid var(--electric-emerald);
}

.pill-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid var(--mint-border);
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(0, 137, 123, 0.12);
  padding: 10px 18px 10px 28px;
}

.pill-nav-link {
  color: var(--deep-emerald);
  text-decoration: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 20px;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.pill-nav-link:hover, .pill-nav-link.active {
  background: var(--electric-emerald);
  color: var(--pure-white);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--mint-border);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--deep-emerald);
  margin: 2px auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.is-open span:nth-child(2) { opacity: 0; }
.mobile-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--pure-white);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 80px 24px 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow-y: auto;
}

.mobile-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--mint-border) 1px, transparent 1px),
    linear-gradient(to bottom, var(--mint-border) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
  animation: grid-pulse 4s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

.mobile-drawer a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  font-weight: 600;
  color: var(--deep-emerald);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--mint-border);
  width: 100%;
  max-width: 320px;
  text-align: center;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s ease;
}

.mobile-drawer.is-open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-drawer.is-open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-drawer.is-open a:nth-child(2) { transition-delay: 0.11s; }
.mobile-drawer.is-open a:nth-child(3) { transition-delay: 0.17s; }
.mobile-drawer.is-open a:nth-child(4) { transition-delay: 0.23s; }
.mobile-drawer.is-open a:nth-child(5) { transition-delay: 0.29s; }
.mobile-drawer.is-open a:nth-child(6) { transition-delay: 0.35s; }
.mobile-drawer.is-open a:nth-child(7) { transition-delay: 0.41s; }

.mobile-drawer a:hover { color: var(--electric-emerald); }

@keyframes grid-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

.kinetic-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.kinetic-track {
  position: absolute;
  white-space: nowrap;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 800;
  font-size: clamp(80px, 14vw, 200px);
  color: var(--mint-soft);
  opacity: 0.55;
  letter-spacing: 0.1em;
  will-change: transform;
}

.kinetic-track.t1 {
  top: 12%;
  animation: kinetic-left 38s linear infinite;
}

.kinetic-track.t2 {
  top: 38%;
  animation: kinetic-right 44s linear infinite;
  color: var(--mint-border);
}

.kinetic-track.t3 {
  top: 64%;
  animation: kinetic-left 50s linear infinite;
}

.kinetic-track.t4 {
  top: 86%;
  animation: kinetic-right 56s linear infinite;
  color: var(--mint-border);
}

@keyframes kinetic-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes kinetic-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.wireframe-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--mint-border) 1px, transparent 1px),
    linear-gradient(to bottom, var(--mint-border) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.section-divider {
  width: 100%;
  height: 1px;
  background: var(--mint-border);
  margin: 0;
}

.hardcut-section {
  position: relative;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}

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

.node-graph-canvas {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.node-step {
  position: relative;
  background: var(--pure-white);
  border: 1px solid var(--mint-border);
  border-radius: 4px;
  padding: 24px 20px;
  flex: 1 1 200px;
  text-align: center;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.node-step:hover {
  transform: scale(1.05);
  border: 2px solid var(--electric-emerald);
  box-shadow: 0 10px 30px rgba(0, 137, 123, 0.20);
  z-index: 10;
}

.node-step .node-num {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 800;
  font-size: 28px;
  color: var(--electric-emerald);
  letter-spacing: -0.02em;
}

.node-step .node-title {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 16px;
  color: var(--deep-emerald);
  margin-top: 6px;
}

.node-step .node-desc {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--soft-emerald);
  margin-top: 8px;
  line-height: 1.6;
}

.timeline-mobile .node-step {
  flex: 1 1 100%;
  text-align: left;
}

.coverflow-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 40px 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--electric-emerald) transparent;
}

.coverflow-card {
  flex: 0 0 80%;
  max-width: 520px;
  background: var(--pure-white);
  border: 1px solid var(--mint-border);
  border-radius: 4px;
  padding: 36px 30px;
  scroll-snap-align: center;
  box-shadow: 0 12px 32px rgba(0, 77, 64, 0.12);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.coverflow-card:hover {
  transform: scale(1.02);
  border: 2px solid var(--electric-emerald);
}

.coverflow-track::-webkit-scrollbar {
  height: 8px;
}

.coverflow-track::-webkit-scrollbar-thumb {
  background: var(--electric-emerald);
  border-radius: 4px;
}

.star-mark {
  color: var(--electric-emerald);
  font-size: 18px;
  letter-spacing: 2px;
}

.accordion-item {
  background: var(--pure-white);
  border: 1px solid var(--mint-border);
  border-radius: 4px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.accordion-item:hover {
  border-color: var(--electric-emerald);
  box-shadow: 0 6px 20px rgba(0, 137, 123, 0.12);
}

.accordion-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 24px;
  text-align: left;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  font-weight: 600;
  color: var(--deep-emerald);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.accordion-icon {
  width: 22px;
  height: 22px;
  border: 1px solid var(--electric-emerald);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--electric-emerald);
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.accordion-item.is-open .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-content-inner {
  padding: 0 24px 22px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  color: var(--soft-emerald);
  line-height: 1.7;
}

.accordion-item.is-open .accordion-content {
  max-height: 600px;
}

.team-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 8px;
  border-bottom: 1px solid var(--mint-border);
  cursor: pointer;
  position: relative;
  transition: background 0.2s ease, padding 0.2s ease;
}

.team-row:hover {
  background: var(--mint-soft);
  padding-left: 16px;
}

.team-row .team-name {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 18px;
  color: var(--deep-emerald);
}

.team-row .team-meta {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--soft-emerald);
}

.team-tooltip {
  position: fixed;
  background: var(--pure-white);
  border: 2px solid var(--electric-emerald);
  border-radius: 4px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 36px rgba(0, 137, 123, 0.30);
  z-index: 60;
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  max-width: 320px;
}

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

.team-tooltip img {
  width: 56px;
  height: 56px;
  border-radius: 4px;
  object-fit: cover;
}

.team-tooltip .tt-info {
  font-family: 'IBM Plex Mono', monospace;
}

.team-tooltip .tt-info b {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  color: var(--deep-emerald);
  font-size: 14px;
  margin-bottom: 2px;
}

.team-tooltip .tt-info span {
  font-size: 11px;
  color: var(--soft-emerald);
}

.sticky-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.sticky-photo {
  position: sticky;
  top: 100px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--mint-border);
  aspect-ratio: 4 / 5;
}

.sticky-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-card {
  background: var(--pure-white);
  border: 1px solid var(--mint-border);
  border-radius: 4px;
  padding: 20px;
}

.form-field {
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--mint-border);
  padding: 14px 4px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  color: var(--deep-emerald);
  width: 100%;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-field::placeholder {
  color: var(--soft-emerald);
  opacity: 0.7;
}

.form-field:focus {
  border-bottom-color: var(--electric-emerald);
}

.form-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--soft-emerald);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}

.lens-cursor {
  position: fixed;
  width: 50px;
  height: 50px;
  border: 2px solid var(--electric-emerald);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 0 0 2px var(--electric-emerald), 0 6px 20px rgba(0, 137, 123, 0.25);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease;
  opacity: 0;
  mix-blend-mode: multiply;
}

.lens-cursor.is-active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 380px;
  background: var(--pure-white);
  border: 2px solid var(--mint-border);
  border-radius: 8px;
  padding: 20px 22px;
  z-index: 80;
  box-shadow: 0 12px 36px rgba(0, 77, 64, 0.20);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--deep-emerald);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-banner.is-hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.cookie-banner h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--deep-emerald);
  margin-bottom: 8px;
}

.cookie-banner p {
  font-size: 11px;
  line-height: 1.6;
  color: var(--soft-emerald);
  margin-bottom: 12px;
}

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

.cookie-banner button {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  white-space: nowrap;
  min-height: 36px;
  border: 1px solid var(--electric-emerald);
  transition: background 0.2s ease, color 0.2s ease;
}

.cookie-accept {
  background: var(--electric-emerald);
  color: var(--pure-white);
}

.cookie-accept:hover {
  background: var(--mint-secondary);
}

.cookie-decline {
  background: transparent;
  color: var(--electric-emerald);
}

.cookie-decline:hover {
  background: var(--mint-soft);
}

.footer-shell {
  background: var(--electric-emerald);
  color: var(--pure-white);
  border-radius: 24px 24px 0 0;
  padding: 60px 24px 32px;
}

.footer-shell a {
  color: var(--pure-white);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer-shell a:hover {
  opacity: 1;
}

.footer-shell strong, .footer-shell p, .footer-shell span {
  color: var(--pure-white);
}

.footer-logo {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 18px;
}

.footer-tagline {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  opacity: 0.85;
  line-height: 1.6;
}

.footer-nav-title {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  margin-top: 40px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  opacity: 0.8;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}

.container-x {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding-top: 96px;
  padding-bottom: 96px;
}

.section-pad-sm {
  padding-top: 64px;
  padding-bottom: 64px;
}

.tag-tech {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--electric-emerald);
  padding: 6px 12px;
  border: 1px solid var(--electric-emerald);
  border-radius: 20px;
  background: rgba(0, 137, 123, 0.06);
}

.hero-h1 {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: clamp(36px, 6.5vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--deep-emerald);
}

.section-h2 {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--deep-emerald);
}

.section-h3 {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 18px;
  color: var(--deep-emerald);
}

.body-p {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 15px;
  line-height: 1.7;
  color: var(--soft-emerald);
}

.tech-caption {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--soft-emerald);
}

.price-tag {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 22px;
  color: var(--electric-emerald);
  letter-spacing: -0.01em;
}

.price-tag small {
  font-size: 11px;
  color: var(--soft-emerald);
  font-weight: 400;
}

.process-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--electric-emerald);
  opacity: 0.4;
  z-index: 0;
}

.deco-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 2px solid var(--electric-emerald);
}

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

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

.aspect-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--mint-soft);
}

.aspect-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aspect-wide {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--mint-soft);
}

.aspect-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aspect-square {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--mint-soft);
}

.aspect-square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-medium-row { grid-column: span 2; grid-row: span 1; }
.bento-medium-col { grid-column: span 1; grid-row: span 2; }
.bento-small { grid-column: span 1; grid-row: span 1; }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
}

.thanks-checkmark {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--electric-emerald);
  color: var(--pure-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  box-shadow: 0 12px 36px rgba(0, 137, 123, 0.35);
}

@media (max-width: 900px) {
  .pill-nav-link { display: none; }
  .pill-header { padding: 8px 12px 8px 18px; }
  .pill-cta { display: none; }
  .mobile-toggle { display: inline-flex; }
  .mobile-drawer { padding-top: 100px; }
  .sticky-split { grid-template-columns: 1fr; gap: 24px; }
  .sticky-photo { position: relative; top: auto; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .bento-large { grid-column: span 2; grid-row: span 2; }
  .bento-medium-row { grid-column: span 2; }
  .bento-medium-col { grid-column: span 1; grid-row: span 2; }
  .section-pad { padding-top: 64px; padding-bottom: 64px; }
  .section-pad-sm { padding-top: 48px; padding-bottom: 48px; }
  .coverflow-card { flex: 0 0 92%; padding: 24px 20px; }
  .node-step { flex: 1 1 calc(50% - 24px); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cookie-banner { left: 16px; right: 16px; bottom: 16px; max-width: none; }
}

@media (max-width: 560px) {
  .hero-h1 { font-size: 36px; }
  .section-h2 { font-size: 28px; }
  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: 160px; }
  .bento-large, .bento-medium-row, .bento-medium-col { grid-column: span 1; grid-row: span 1; }
  .node-step { flex: 1 1 100%; }
  .cta-btn-primary, .cta-btn-secondary { width: 100%; }
  .cookie-banner { max-width: calc(100% - 32px); left: 16px; right: 16px; bottom: 16px; }
  .pill-header { max-width: 100%; padding: 8px 12px 8px 16px; gap: 8px; }
  .team-tooltip { max-width: calc(100% - 32px); left: 16px !important; right: 16px; }
}

::selection {
  background: var(--electric-emerald);
  color: var(--pure-white);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--electric-emerald) transparent;
}

*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-thumb {
  background: var(--electric-emerald);
  border-radius: 4px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}