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

:root {
  --lime-bg-1: #F0FDF4;
  --lime-bg-2: #DCFCE7;
  --lime-bg-3: #BBF7D0;
  --lime-accent: #22C55E;
  --lime-emerald: #16A34A;
  --lime-border: #86EFAC;
  --lime-sage: #A7F3D0;
  --lime-mint: #D1FAE5;
  --forest-deep: #14532D;
  --forest-soft: #4D7A5F;
  --card-white: #FFFFFF;
  --text-light: #FFFFFF;
  --text-dark: #0F2E1B;
  --shadow-hard: 4px 4px 0px #14532D;
  --shadow-hard-lime: 4px 4px 0px #22C55E;
  --transition-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-radius: 0 !important;
}
html {
  overflow-x: hidden;
};

html, body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--forest-deep);
  background: linear-gradient(135deg, var(--lime-bg-1) 0%, var(--lime-bg-2) 50%, var(--lime-bg-3) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  width: 100%;
}

strong, p, span, li, h1, h2, h3, h4, h5, h6, a, button, label, input, textarea, select {
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  color: var(--forest-deep);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

h2 {
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--forest-deep);
}

a {
  color: var(--lime-emerald);
  text-decoration: none;
  transition: all 0.25s var(--transition-spring);
}

a:hover {
  color: var(--lime-accent);
}

.mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--forest-soft);
  text-transform: uppercase;
}

.btn-lime {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--lime-accent);
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 18px 40px;
  border: 3px solid var(--forest-deep);
  box-shadow: var(--shadow-hard);
  text-transform: none;
  cursor: pointer;
  transition: all 0.25s var(--transition-spring);
  white-space: nowrap;
  min-height: 56px;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.btn-lime:hover {
  background: var(--lime-emerald);
  color: var(--text-light);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px var(--forest-deep);
}

.btn-lime:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px var(--forest-deep);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--card-white);
  color: var(--forest-deep);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 18px 40px;
  border: 3px solid var(--lime-accent);
  cursor: pointer;
  transition: all 0.25s var(--transition-spring);
  white-space: nowrap;
  min-height: 56px;
  text-decoration: none;
}

.btn-white:hover {
  background: var(--lime-mint);
  color: var(--forest-deep);
  border-color: var(--forest-deep);
  box-shadow: var(--shadow-hard);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--forest-deep);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 28px;
  border: 2px solid var(--lime-border);
  cursor: pointer;
  transition: all 0.2s var(--transition-spring);
  white-space: nowrap;
  text-decoration: none;
}

.btn-ghost:hover {
  border-color: var(--lime-accent);
  background: var(--lime-mint);
  color: var(--forest-deep);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--lime-accent);
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1600px;
  margin: 0 auto;
  gap: 24px;
}

.site-header .nav-area {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
}

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

.site-header .nav-links a {
  display: inline-block;
  color: var(--forest-deep);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 14px;
  transition: all 0.2s var(--transition-spring);
  white-space: nowrap;
}

.site-header .nav-links a:hover,
.site-header .nav-links a.active {
  background: var(--lime-accent);
  color: var(--text-light);
}

.site-header .header-cta {
  background: var(--lime-accent);
  color: var(--text-light);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 22px;
  border: 2px solid var(--forest-deep);
  text-transform: none;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.2s var(--transition-spring);
}

.site-header .header-cta:hover {
  background: var(--lime-emerald);
  color: var(--text-light);
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--forest-deep);
}

.site-header .logo-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  text-decoration: none;
  color: var(--forest-deep);
  position: relative;
  z-index: 110;
}

.site-header .logo-block:hover {
  color: var(--forest-deep);
}

.site-header .logo-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
}

.site-header .logo-icon {
  width: 38px;
  height: 38px;
  background: var(--lime-accent);
  border: 2px solid var(--forest-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--text-light);
}

.site-header .logo-domain {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--forest-soft);
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.site-header .logo-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--forest-deep);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.site-header .logo-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  color: var(--lime-emerald);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.burger {
  display: none;
  background: var(--lime-accent);
  border: 2px solid var(--forest-deep);
  width: 44px;
  height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  z-index: 110;
}

.burger span {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--text-light);
  transition: all 0.3s var(--transition-spring);
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.burger[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 90vw);
  height: 100vh;
  background: var(--lime-bg-1);
  border-left: 4px solid var(--lime-accent);
  z-index: 105;
  transform: translateX(100%);
  transition: transform 0.4s var(--transition-smooth);
  padding: 100px 32px 32px;
  overflow-y: auto;
}

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

.mobile-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, var(--lime-accent) 1.5px, transparent 1.5px),
    radial-gradient(circle, var(--lime-sage) 1.5px, transparent 1.5px);
  background-size: 30px 30px, 50px 50px;
  background-position: 0 0, 15px 15px;
  opacity: 0.15;
  pointer-events: none;
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 2;
}

.mobile-menu li {
  border-bottom: 1px solid var(--lime-border);
}

.mobile-menu a {
  display: block;
  padding: 18px 8px;
  color: var(--forest-deep);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.mobile-menu a:hover {
  color: var(--lime-emerald);
  padding-left: 18px;
}

.mobile-menu .mobile-cta {
  margin-top: 24px;
  width: 100%;
  text-align: center;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 83, 45, 0.4);
  z-index: 104;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.menu-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.hero-shell {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 80px 32px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--lime-bg-1) 0%, var(--lime-bg-2) 50%, var(--lime-bg-3) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, var(--lime-accent) 1.5px, transparent 1.5px),
    radial-gradient(circle, var(--lime-sage) 1.5px, transparent 1.5px);
  background-size: 28px 28px, 60px 60px;
  background-position: 0 0, 14px 14px;
  opacity: 0.18;
  pointer-events: none;
}

.hero-tech {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-tech span {
  position: absolute;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(4rem, 9vw, 8rem);
  color: var(--lime-accent);
  opacity: 0.07;
  letter-spacing: 0.15em;
  white-space: nowrap;
  user-select: none;
}

.hero-tech span:nth-child(1) { top: 8%; left: 4%; }
.hero-tech span:nth-child(2) { top: 22%; right: 6%; }
.hero-tech span:nth-child(3) { bottom: 14%; left: 8%; }
.hero-tech span:nth-child(4) { top: 60%; right: 12%; }

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text .kicker {
  display: inline-block;
  background: var(--forest-deep);
  color: var(--lime-mint);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 16px;
  margin-bottom: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-text h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  color: var(--forest-deep);
  margin-bottom: 24px;
  line-height: 1.02;
}

.hero-text h1 .accent {
  color: var(--lime-emerald);
  display: block;
}

.hero-text .subline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.95rem;
  color: var(--forest-soft);
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-text .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 48px;
}

.hero-text .stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 32px;
  border-top: 2px solid var(--lime-border);
}

.hero-text .stat .n {
  font-size: 2rem;
  font-weight: 800;
  color: var(--lime-emerald);
  line-height: 1;
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
}

.hero-text .stat .l {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--forest-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 540px;
  margin: 0 auto;
  width: 100%;
}

.hero-visual .scene {
  position: absolute;
  inset: 0;
  border: 3px solid var(--forest-deep);
  background: var(--card-white);
  overflow: hidden;
  box-shadow: var(--shadow-hard);
}

.hero-visual .scene .fabric {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 14px, var(--lime-mint) 14px 16px),
    repeating-linear-gradient(-45deg, transparent 0 14px, var(--lime-sage) 14px 16px);
  opacity: 0.65;
  animation: weave 22s linear infinite;
}

@keyframes weave {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 56px 0, -56px 0; }
}

.hero-visual .scene .badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--forest-deep);
  color: var(--lime-mint);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 12px;
  letter-spacing: 0.1em;
}

.hero-visual .scene .stamp {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--lime-accent);
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 12px 18px;
  border: 2px solid var(--forest-deep);
}

.hero-visual .scene .float-tag {
  position: absolute;
  background: var(--card-white);
  border: 2px solid var(--forest-deep);
  padding: 10px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: var(--forest-deep);
  box-shadow: 2px 2px 0 var(--forest-deep);
}

.hero-visual .scene .float-tag.f1 { top: 18%; right: -16px; }
.hero-visual .scene .float-tag.f2 { bottom: 30%; left: -16px; }

.section {
  padding: 110px 32px;
  position: relative;
}

.section-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.section-head {
  margin-bottom: 64px;
  max-width: 800px;
}

.section-head .kicker {
  display: inline-block;
  background: var(--lime-accent);
  color: var(--text-light);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 16px;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--forest-deep);
}

.section-head h2 {
  margin-bottom: 18px;
}

.section-head .lede {
  font-size: 1.1rem;
  color: var(--forest-soft);
  line-height: 1.65;
}

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

.bento-card {
  position: relative;
  background: var(--card-white);
  border: 3px solid var(--forest-deep);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: all 0.3s var(--transition-spring);
  z-index: 1;
  color: var(--forest-deep);
  text-decoration: none;
}

.bento-card:hover {
  transform: scale(1.03) translateY(-4px);
  z-index: 10;
  box-shadow: 6px 6px 0 var(--lime-accent);
  border-color: var(--lime-accent);
  color: var(--forest-deep);
}

.bento-card .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--lime-emerald);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.bento-card .title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--forest-deep);
  line-height: 1.15;
  margin-top: 8px;
}

.bento-card .meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  color: var(--forest-soft);
  margin-top: 6px;
}

.bento-card .price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--lime-emerald);
}

.bento-card.size-2x2 { grid-column: span 2; grid-row: span 2; }
.bento-card.size-2x1 { grid-column: span 2; grid-row: span 1; }
.bento-card.size-1x2 { grid-column: span 1; grid-row: span 2; }
.bento-card.size-1x1 { grid-column: span 1; grid-row: span 1; }

.bento-card.visual {
  padding: 0;
  background: var(--card-white);
}

.bento-card.visual .img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.bento-card.visual .img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 83, 45, 0.0) 40%, rgba(20, 83, 45, 0.78) 100%);
}

.bento-card.visual .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  z-index: 2;
  color: var(--text-light);
}

.bento-card.visual .caption .t {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 4px;
}

.bento-card.visual .caption .s {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--lime-mint);
}

.bento-card.lime {
  background: var(--lime-accent);
  color: var(--text-light);
  border-color: var(--forest-deep);
}

.bento-card.lime .label { color: var(--lime-mint); }
.bento-card.lime .title { color: var(--text-light); }
.bento-card.lime .price { color: var(--text-light); }
.bento-card.lime .meta { color: var(--lime-mint); }

.bento-card.dark {
  background: var(--forest-deep);
  color: var(--text-light);
  border-color: var(--forest-deep);
}

.bento-card.dark .label { color: var(--lime-sage); }
.bento-card.dark .title { color: var(--text-light); }
.bento-card.dark .price { color: var(--lime-accent); }
.bento-card.dark .meta { color: var(--lime-mint); }

.horizontal-shift {
  background: var(--card-white);
  border-top: 3px solid var(--forest-deep);
  border-bottom: 3px solid var(--forest-deep);
  padding: 90px 0;
  position: relative;
}

.shift-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 32px 24px;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}

.shift-track:active { cursor: grabbing; }

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

.shift-track::-webkit-scrollbar-track {
  background: var(--lime-mint);
}

.shift-track::-webkit-scrollbar-thumb {
  background: var(--lime-accent);
}

.shift-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: var(--lime-bg-1);
  border: 3px solid var(--forest-deep);
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--transition-spring);
  z-index: 1;
  position: relative;
}

.shift-card:hover {
  transform: scale(1.04) translateY(-4px);
  z-index: 10;
  box-shadow: 6px 6px 0 var(--lime-accent);
  border-color: var(--lime-accent);
}

.shift-card .photo {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  border-bottom: 3px solid var(--forest-deep);
  position: relative;
}

.shift-card .photo .pin {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--lime-accent);
  color: var(--text-light);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 10px;
  border: 2px solid var(--forest-deep);
}

.shift-card .body {
  padding: 20px 22px;
  background: var(--card-white);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.shift-card .body .t {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin-bottom: 6px;
}

.shift-card .body .d {
  font-size: 0.9rem;
  color: var(--forest-soft);
  line-height: 1.55;
  margin-bottom: 12px;
}

.shift-card .body .p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--lime-emerald);
}

.shift-hint {
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: var(--forest-soft);
  margin-top: 12px;
  letter-spacing: 0.1em;
}

.split-screen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  border-top: 3px solid var(--forest-deep);
  border-bottom: 3px solid var(--forest-deep);
  background: var(--card-white);
}

.split-screen .left-pane {
  padding: 80px 56px;
  background: var(--card-white);
  color: var(--forest-deep);
}

.split-screen .right-pane {
  position: sticky;
  top: 110px;
  align-self: start;
  height: 100%;
  min-height: 640px;
  background-size: cover;
  background-position: center;
  border-left: 3px solid var(--forest-deep);
}

.split-screen .right-pane::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 83, 45, 0.15) 0%, rgba(20, 83, 45, 0.55) 100%);
}

.split-screen .right-pane .stamp {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  z-index: 2;
  color: var(--text-light);
}

.split-screen .right-pane .stamp .kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: var(--lime-mint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.split-screen .right-pane .stamp .ttl {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.2;
}

.split-screen .left-pane h2 { margin-bottom: 24px; }
.split-screen .left-pane p { margin-bottom: 18px; color: var(--forest-deep); }
.split-screen .left-pane .facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.split-screen .left-pane .fact {
  background: var(--lime-mint);
  border: 2px solid var(--forest-deep);
  padding: 18px;
}

.split-screen .left-pane .fact .n {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--lime-emerald);
  font-family: 'Inter', sans-serif;
  line-height: 1;
}

.split-screen .left-pane .fact .l {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--forest-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

.timeline {
  position: relative;
  padding: 30px 0;
  max-width: 980px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 50%;
  margin-right: 14px;
  width: 3px;
  background: var(--lime-accent);
  transform-origin: top;
}

.timeline .step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  margin-bottom: 36px;
}

.timeline .step .num {
  grid-column: 2;
  width: 64px;
  height: 64px;
  background: var(--lime-accent);
  border: 3px solid var(--forest-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-light);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  box-shadow: 3px 3px 0 var(--forest-deep);
  transition: all 0.3s var(--transition-spring);
}

.timeline .step:hover .num {
  transform: scale(1.1);
  background: var(--forest-deep);
  color: var(--lime-accent);
  z-index: 11;
}

.timeline .step .content {
  background: var(--card-white);
  border: 3px solid var(--forest-deep);
  padding: 22px 24px;
  transition: all 0.3s var(--transition-spring);
  position: relative;
  z-index: 1;
  color: var(--forest-deep);
}

.timeline .step:hover .content {
  transform: scale(1.02) translateY(-3px);
  z-index: 10;
  box-shadow: var(--shadow-hard-lime);
  border-color: var(--lime-accent);
}

.timeline .step:nth-child(odd) .content { grid-column: 1; margin-right: 20px; }
.timeline .step:nth-child(even) .content { grid-column: 3; margin-left: 20px; }
.timeline .step:nth-child(even) .num { grid-column: 2; }

.timeline .step .content h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--forest-deep);
}

.timeline .step .content .d {
  color: var(--forest-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.masonry {
  column-count: 3;
  column-gap: 20px;
}

.masonry .item {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  break-inside: avoid;
  background: var(--card-white);
  border: 3px solid var(--forest-deep);
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--transition-spring);
  z-index: 1;
  cursor: pointer;
  text-decoration: none;
  color: var(--forest-deep);
}

.masonry .item:hover {
  transform: scale(1.03) translateY(-4px);
  z-index: 10;
  box-shadow: 6px 6px 0 var(--lime-accent);
  border-color: var(--lime-accent);
  color: var(--forest-deep);
}

.masonry .item .photo {
  width: 100%;
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.masonry .item .meta {
  padding: 18px 20px;
  background: var(--card-white);
  border-top: 3px solid var(--forest-deep);
}

.masonry .item .meta .t {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--forest-deep);
  margin-bottom: 4px;
}

.masonry .item .meta .s {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: var(--lime-emerald);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stacking {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}

.stacking .card {
  position: relative;
  background: var(--card-white);
  border: 3px solid var(--forest-deep);
  padding: 36px 40px;
  margin-bottom: 10px;
  transition: all 0.4s var(--transition-spring);
  z-index: 1;
  color: var(--forest-deep);
}

.stacking .card:nth-child(1) { z-index: 1; }
.stacking .card:nth-child(2) { z-index: 2; }
.stacking .card:nth-child(3) { z-index: 3; }
.stacking .card:nth-child(4) { z-index: 4; }
.stacking .card:nth-child(5) { z-index: 5; }
.stacking .card:nth-child(6) { z-index: 6; }

.stacking .card:hover {
  transform: scale(1.02) translateY(-4px);
  z-index: 30;
  box-shadow: 6px 6px 0 var(--lime-accent);
  border-color: var(--lime-accent);
}

.stacking .card:last-child { margin-bottom: 0; }

.stacking .card .n {
  font-family: 'Inter', sans-serif;
  font-size: 3.4rem;
  font-weight: 900;
  color: var(--lime-accent);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 14px;
}

.stacking .card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: var(--forest-deep);
}

.stacking .card .d {
  color: var(--forest-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.team-list {
  max-width: 880px;
  margin: 0 auto;
  border-top: 3px solid var(--forest-deep);
}

.team-list .person {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  border-bottom: 3px solid var(--forest-deep);
  cursor: pointer;
  position: relative;
  transition: all 0.3s var(--transition-spring);
  z-index: 1;
}

.team-list .person:hover {
  z-index: 20;
  background: var(--lime-mint);
  padding-left: 18px;
  padding-right: 18px;
  border-color: var(--lime-accent);
}

.team-list .person .name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--forest-deep);
  letter-spacing: -0.02em;
}

.team-list .person .role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: var(--lime-emerald);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.team-list .person .arrow {
  width: 36px;
  height: 36px;
  background: var(--lime-accent);
  border: 2px solid var(--forest-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-weight: 800;
  font-size: 1rem;
  transition: all 0.3s var(--transition-spring);
}

.team-list .person:hover .arrow {
  background: var(--forest-deep);
  color: var(--lime-accent);
  transform: rotate(-45deg);
}

.team-tooltip {
  position: fixed;
  background: var(--card-white);
  border: 3px solid var(--forest-deep);
  padding: 16px;
  z-index: 50;
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s;
  width: 280px;
  box-shadow: var(--shadow-hard);
  display: flex;
  gap: 14px;
  align-items: center;
}

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

.team-tooltip .avatar {
  width: 64px;
  height: 64px;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--forest-deep);
  flex-shrink: 0;
}

.team-tooltip .info .n {
  font-weight: 700;
  font-size: 1rem;
  color: var(--forest-deep);
  margin-bottom: 4px;
}

.team-tooltip .info .r {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--lime-emerald);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.team-tooltip .info .y {
  font-size: 0.85rem;
  color: var(--forest-soft);
}

.coverflow {
  position: relative;
  padding: 60px 0;
  perspective: 1400px;
}

.coverflow-stage {
  position: relative;
  width: 100%;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coverflow .card {
  position: absolute;
  width: min(560px, 86vw);
  background: var(--card-white);
  border: 3px solid var(--forest-deep);
  padding: 36px 40px;
  transition: all 0.5s var(--transition-smooth);
  box-shadow: var(--shadow-hard);
  color: var(--forest-deep);
}

.coverflow .card.is-center {
  z-index: 5;
  transform: translateX(0) scale(1);
  opacity: 1;
}

.coverflow .card.is-left {
  z-index: 2;
  transform: translateX(-65%) scale(0.82) rotateY(18deg);
  opacity: 0.55;
}

.coverflow .card.is-right {
  z-index: 2;
  transform: translateX(65%) scale(0.82) rotateY(-18deg);
  opacity: 0.55;
}

.coverflow .card.is-far {
  opacity: 0;
  pointer-events: none;
}

.coverflow .card .stars {
  color: var(--lime-accent);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.coverflow .card .quote {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--forest-deep);
  margin-bottom: 24px;
}

.coverflow .card .who {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 18px;
  border-top: 2px solid var(--lime-border);
}

.coverflow .card .who .n {
  font-weight: 800;
  font-size: 1rem;
  color: var(--forest-deep);
}

.coverflow .card .who .r {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: var(--lime-emerald);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.coverflow .controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.coverflow .controls button {
  background: var(--card-white);
  color: var(--forest-deep);
  border: 3px solid var(--forest-deep);
  width: 52px;
  height: 52px;
  font-size: 1.4rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s var(--transition-spring);
  display: flex;
  align-items: center;
  justify-content: center;
}

.coverflow .controls button:hover {
  background: var(--lime-accent);
  color: var(--text-light);
  transform: translate(-2px, -2px);
  box-shadow: 3px 3px 0 var(--forest-deep);
}

.coverflow .dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.coverflow .dots span {
  width: 12px;
  height: 12px;
  background: var(--lime-border);
  border: 2px solid var(--forest-deep);
  transition: all 0.2s;
  cursor: pointer;
}

.coverflow .dots span.is-active {
  background: var(--lime-accent);
}

.accordion {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.accordion .item {
  background: var(--card-white);
  border: 3px solid var(--forest-deep);
  transition: all 0.3s var(--transition-spring);
  z-index: 1;
  position: relative;
}

.accordion .item:hover {
  z-index: 5;
  box-shadow: var(--shadow-hard-lime);
  border-color: var(--lime-accent);
}

.accordion .q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  cursor: pointer;
  user-select: none;
}

.accordion .q .t {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--forest-deep);
  flex: 1;
  padding-right: 20px;
}

.accordion .q .ic {
  width: 40px;
  height: 40px;
  background: var(--lime-accent);
  border: 2px solid var(--forest-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s var(--transition-spring);
}

.accordion .item.is-open .q .ic {
  transform: rotate(45deg);
  background: var(--forest-deep);
  color: var(--lime-accent);
}

.accordion .a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--transition-smooth);
}

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

.accordion .a-inner {
  padding: 0 26px 24px;
  color: var(--forest-deep);
  font-size: 0.98rem;
  line-height: 1.7;
  border-top: 2px dashed var(--lime-border);
  padding-top: 20px;
  margin-top: 4px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form {
  background: var(--card-white);
  border: 3px solid var(--forest-deep);
  padding: 44px 40px;
  box-shadow: var(--shadow-hard);
}

.contact-form h2 { margin-bottom: 8px; }
.contact-form .lede { color: var(--forest-soft); margin-bottom: 28px; }

.field-line {
  margin-bottom: 22px;
  position: relative;
}

.field-line label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--lime-emerald);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  font-weight: 600;
}

.field-line input,
.field-line textarea,
.field-line select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--lime-border);
  padding: 12px 4px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--forest-deep);
  transition: border-color 0.2s;
  outline: none;
}

.field-line input::placeholder,
.field-line textarea::placeholder {
  color: var(--forest-soft);
  opacity: 0.6;
}

.field-line input:focus,
.field-line textarea:focus,
.field-line select:focus {
  border-color: var(--lime-accent);
}

.field-line textarea {
  resize: vertical;
  min-height: 110px;
  border: 2px solid var(--lime-border);
  padding: 12px;
}

.field-line textarea:focus {
  border-color: var(--lime-accent);
}

.contact-form .submit-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.contact-form .submit-note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--forest-soft);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info .info-card {
  background: var(--card-white);
  border: 3px solid var(--forest-deep);
  padding: 24px 26px;
  transition: all 0.3s var(--transition-spring);
  position: relative;
  z-index: 1;
}

.contact-info .info-card:hover {
  transform: scale(1.02) translateY(-3px);
  z-index: 5;
  box-shadow: var(--shadow-hard-lime);
  border-color: var(--lime-accent);
}

.contact-info .info-card .k {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--lime-emerald);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-info .info-card .v {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--forest-deep);
  line-height: 1.4;
}

.contact-info .info-card .s {
  font-size: 0.88rem;
  color: var(--forest-soft);
  margin-top: 4px;
  line-height: 1.55;
}

.contact-info .info-card.dark {
  background: var(--forest-deep);
  border-color: var(--forest-deep);
}

.contact-info .info-card.dark .k { color: var(--lime-sage); }
.contact-info .info-card.dark .v { color: var(--text-light); }
.contact-info .info-card.dark .s { color: var(--lime-mint); }

.contact-info .map-frame {
  background: var(--lime-mint);
  border: 3px solid var(--forest-deep);
  height: 220px;
  position: relative;
  overflow: hidden;
}

.contact-info .map-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--lime-border) 1px, transparent 1px),
    linear-gradient(to bottom, var(--lime-border) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.5;
}

.contact-info .map-frame .pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--lime-accent);
  color: var(--text-light);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 10px 16px;
  border: 3px solid var(--forest-deep);
  box-shadow: 3px 3px 0 var(--forest-deep);
  z-index: 2;
}

.success-msg {
  background: var(--lime-mint);
  border: 3px solid var(--lime-emerald);
  padding: 24px;
  color: var(--forest-deep);
  display: none;
}

.success-msg.is-shown {
  display: block;
}

.cta-banner {
  background: var(--forest-deep);
  color: var(--text-light);
  padding: 90px 32px;
  position: relative;
  border-top: 3px solid var(--lime-accent);
  border-bottom: 3px solid var(--lime-accent);
}

.cta-banner .inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: center;
}

.cta-banner h2 {
  color: var(--text-light);
  font-size: 2.5rem;
  margin-bottom: 18px;
}

.cta-banner h2 .accent { color: var(--lime-accent); }

.cta-banner p {
  color: var(--lime-mint);
  font-size: 1.05rem;
  line-height: 1.6;
}

.cta-banner .actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

.cta-banner .actions .btn-lime {
  background: var(--lime-accent);
  color: var(--text-light);
  width: 100%;
}

.cta-banner .actions .btn-lime:hover {
  background: var(--lime-emerald);
}

.cta-banner .phone-line {
  font-family: 'JetBrains Mono', monospace;
  color: var(--lime-mint);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.cta-banner .phone-line a { color: var(--lime-accent); font-weight: 700; text-decoration: none; }

.site-footer {
  background: var(--lime-accent);
  color: var(--text-light);
  padding: 80px 32px 30px;
  border-top: 6px solid var(--forest-deep);
}

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

.site-footer h4 {
  font-size: 0.78rem;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  color: var(--lime-mint);
  font-weight: 700;
}

.site-footer .ftr-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.site-footer .ftr-logo .mark {
  width: 46px;
  height: 46px;
  background: var(--card-white);
  color: var(--lime-emerald);
  border: 2px solid var(--forest-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
}

.site-footer .ftr-logo .name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.1;
}

.site-footer .ftr-logo .domain {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--lime-mint);
  text-transform: lowercase;
}

.site-footer p {
  color: var(--lime-mint);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer ul li a {
  color: var(--text-light);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.site-footer ul li a:hover {
  color: var(--forest-deep);
  padding-left: 6px;
}

.site-footer .address {
  font-size: 0.88rem;
  color: var(--lime-mint);
  line-height: 1.6;
  margin-bottom: 14px;
}

.site-footer .address strong {
  color: var(--text-light);
  font-weight: 700;
}

.site-footer .contact-line {
  font-size: 0.92rem;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 6px;
}

.site-footer .contact-line span {
  color: var(--lime-mint);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  margin-right: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer .bottom {
  max-width: 1400px;
  margin: 50px auto 0;
  padding-top: 24px;
  border-top: 2px solid var(--lime-mint);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer .copy {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: var(--lime-mint);
}

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

.site-footer .legal-links a {
  color: var(--text-light);
  font-size: 0.78rem;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.site-footer .legal-links a:hover { color: var(--forest-deep); }

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 200;
  background: var(--card-white);
  border: 3px solid var(--forest-deep);
  padding: 22px 24px;
  max-width: 360px;
  box-shadow: 6px 6px 0 var(--forest-deep);
}

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

.cookie-banner .ck-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.cookie-banner .ck-head .ico {
  width: 32px;
  height: 32px;
  background: var(--lime-accent);
  border: 2px solid var(--forest-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 800;
}

.cookie-banner .ck-head h5 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--forest-deep);
}

.cookie-banner .ck-body {
  font-size: 0.85rem;
  color: var(--forest-soft);
  line-height: 1.55;
  margin-bottom: 16px;
}

.cookie-banner .ck-body a { color: var(--lime-emerald); font-weight: 600; text-decoration: underline; }

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

.cookie-banner .ck-btn {
  flex: 1;
  min-width: 100px;
  padding: 10px 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  border: 2px solid var(--forest-deep);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
  white-space: nowrap;
}

.cookie-banner .ck-accept {
  background: var(--lime-accent);
  color: var(--text-light);
}

.cookie-banner .ck-accept:hover { background: var(--lime-emerald); }

.cookie-banner .ck-decline {
  background: var(--card-white);
  color: var(--forest-deep);
}

.cookie-banner .ck-decline:hover { background: var(--lime-mint); }

.mini-hero {
  padding: 100px 32px 70px;
  background: linear-gradient(135deg, var(--lime-bg-1) 0%, var(--lime-bg-2) 50%, var(--lime-bg-3) 100%);
  border-bottom: 3px solid var(--lime-accent);
  position: relative;
  overflow: hidden;
}

.mini-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, var(--lime-accent) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  opacity: 0.15;
  pointer-events: none;
}

.mini-hero .inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.mini-hero .crumbs {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  color: var(--forest-soft);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mini-hero .crumbs a { color: var(--lime-emerald); text-decoration: none; }
.mini-hero .crumbs a:hover { color: var(--lime-accent); }

.mini-hero .kicker {
  display: inline-block;
  background: var(--forest-deep);
  color: var(--lime-mint);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 16px;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mini-hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  margin-bottom: 18px;
  color: var(--forest-deep);
  max-width: 880px;
}

.mini-hero .lede {
  font-size: 1.1rem;
  color: var(--forest-soft);
  line-height: 1.65;
  max-width: 720px;
  margin-bottom: 28px;
}

.article-body {
  max-width: 920px;
  margin: 0 auto;
  padding: 80px 32px;
  color: var(--forest-deep);
}

.article-body h2 {
  font-size: 1.85rem;
  margin: 40px 0 16px;
  color: var(--forest-deep);
}

.article-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--forest-deep);
  margin-bottom: 18px;
}

.article-body ul {
  margin: 0 0 22px 22px;
  padding: 0;
}

.article-body ul li {
  margin-bottom: 10px;
  line-height: 1.7;
  color: var(--forest-deep);
}

.article-body .callout {
  background: var(--lime-mint);
  border-left: 4px solid var(--lime-accent);
  padding: 22px 26px;
  margin: 28px 0;
  color: var(--forest-deep);
  font-size: 0.98rem;
  line-height: 1.7;
}

.article-body .callout strong { color: var(--forest-deep); }

.thank-you-card {
  max-width: 720px;
  margin: 80px auto;
  background: var(--card-white);
  border: 3px solid var(--forest-deep);
  padding: 64px 48px;
  text-align: center;
  box-shadow: var(--shadow-hard);
}

.thank-you-card .check {
  width: 96px;
  height: 96px;
  background: var(--lime-accent);
  border: 3px solid var(--forest-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 3rem;
  color: var(--text-light);
  font-weight: 800;
  box-shadow: var(--shadow-hard);
}

.thank-you-card h1 { margin-bottom: 18px; }
.thank-you-card p { font-size: 1.1rem; color: var(--forest-soft); margin-bottom: 32px; }
.thank-you-card .actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--transition-smooth), transform 0.6s var(--transition-smooth);
}

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

.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.3s; }

@media (max-width: 1100px) {
  .site-header .nav-links { display: none; }
  .burger { display: flex; }
  .site-header .header-cta { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 440px; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .split-screen { grid-template-columns: 1fr; }
  .split-screen .right-pane { min-height: 420px; position: relative; top: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .site-footer .inner { grid-template-columns: 1fr 1fr; }
  .masonry { column-count: 2; }
  .cta-banner .inner { grid-template-columns: 1fr; }
  .cta-banner .actions { align-items: flex-start; }
}

@media (max-width: 720px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .section { padding: 70px 18px; }
  .site-header .header-inner { padding: 14px 18px; }
  .hero-shell { padding: 60px 18px; min-height: auto; }
  .hero-text .stats { grid-template-columns: 1fr 1fr; }
  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento-card { min-height: 180px; }
  .bento-card.size-2x2, .bento-card.size-1x2, .bento-card.size-2x1 { grid-column: span 1; grid-row: span 1; }
  .shift-track { padding: 0 18px 18px; }
  .shift-card { flex: 0 0 280px; }
  .masonry { column-count: 1; }
  .site-footer .inner { grid-template-columns: 1fr; }
  .site-footer .bottom { flex-direction: column; align-items: flex-start; }
  .timeline::before { right: 20px; margin-right: 0; }
  .timeline .step { grid-template-columns: 50px 1fr; }
  .timeline .step .num { grid-column: 1; width: 44px; height: 44px; font-size: 1.1rem; }
  .timeline .step:nth-child(odd) .content,
  .timeline .step:nth-child(even) .content { grid-column: 2; margin: 0 0 0 14px; }
  .stacking .card { margin-bottom: -60px; padding: 26px 24px; }
  .coverflow .card { padding: 24px 22px; }
  .coverflow .card .quote { font-size: 1rem; }
  .mini-hero { padding: 70px 18px 50px; }
  .article-body { padding: 50px 18px; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; max-width: none; }
  .cta-banner { padding: 60px 18px; }
  .cta-banner h2 { font-size: 1.8rem; }
  .contact-form { padding: 30px 22px; }
  .thank-you-card { padding: 40px 24px; margin: 50px 18px; }
  .hero-text .cta-row { flex-direction: column; align-items: stretch; }
  .hero-text .cta-row .btn-lime, .hero-text .cta-row .btn-white { width: 100%; }
}

@media (min-width: 1101px) {
  .hero-text .cta-row .btn-lime, .hero-text .cta-row .btn-white { white-space: nowrap; }
}

::selection {
  background: var(--lime-accent);
  color: var(--text-light);
}
