@import url('https://fonts.googleapis.com/css2?family=Bungee+Shade&family=Work+Sans:wght@300;400;500;600;700&family=Fira+Code:wght@400;500;600&display=swap');

:root {
  --lime-neon: #84CC16;
  --lime-deep: #65A30D;
  --lime-soft: #A3E635;
  --mint-pale: #D1FAE5;
  --mint-mid: #BBF7D0;
  --mint-light: #DCFCE7;
  --mint-fade: #F0FDF4;
  --border-mint: #C6F6D5;
  --green-dark: #14532D;
  --green-mid: #4D7A5C;
  --pure-white: #FFFFFF;
  --pure-black: #0A1F12;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

body {
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--green-dark);
  background: linear-gradient(135deg, var(--mint-fade) 0%, var(--mint-light) 35%, var(--mint-mid) 100%);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(132, 204, 22, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(132, 204, 22, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

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

.font-display {
  font-family: 'Bungee Shade', cursive;
  font-weight: 400;
  letter-spacing: -0.02em;
  word-spacing: 0.05em;
}

.font-tech {
  font-family: 'Fira Code', monospace;
  font-weight: 400;
}

.text-lime { color: var(--lime-neon) !important; }
.text-lime-deep { color: var(--lime-deep) !important; }
.text-soft { color: var(--lime-soft) !important; }
.text-dark-green { color: var(--green-dark) !important; }
.text-mid-green { color: var(--green-mid) !important; }
.text-white-force { color: var(--pure-white) !important; }
.text-black-force { color: var(--pure-black) !important; }

.bg-lime { background-color: var(--lime-neon) !important; }
.bg-lime-deep { background-color: var(--lime-deep) !important; }
.bg-soft { background-color: var(--lime-soft) !important; }
.bg-dark-green { background-color: var(--green-dark) !important; }
.bg-mint-pale { background-color: var(--mint-pale) !important; }
.bg-mint-light { background-color: var(--mint-light) !important; }
.bg-mint-mid { background-color: var(--mint-mid) !important; }
.bg-pure-white { background-color: var(--pure-white) !important; }

.site-wrapper {
  position: relative;
  z-index: 1;
}

.brand-shell {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-right: 3px solid var(--lime-neon);
  border-radius: 0 32px 32px 0;
  box-shadow: 0 20px 60px rgba(20, 83, 45, 0.12);
  padding: 28px 22px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-height: 92vh;
  overflow-y: auto;
}

.brand-logo-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 22px;
  border-bottom: 2px dashed var(--border-mint);
}

.brand-icon-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--lime-neon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 8px 20px rgba(132, 204, 22, 0.35);
  flex-shrink: 0;
}

.brand-text-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-domain {
  font-family: 'Fira Code', monospace;
  font-size: 11px;
  color: var(--lime-deep);
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.brand-name {
  font-family: 'Bungee Shade', cursive;
  font-size: 16px;
  line-height: 1.15;
  color: var(--green-dark);
  letter-spacing: -0.02em;
}

.brand-sub {
  font-family: 'Fira Code', monospace;
  font-size: 10px;
  color: var(--green-mid);
  margin-top: 2px;
}

.side-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.side-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--green-dark);
  text-decoration: none;
  transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.side-nav a:hover,
.side-nav a.active {
  background: var(--lime-neon);
  color: var(--pure-white);
  transform: translateX(4px);
  box-shadow: 0 6px 16px rgba(132, 204, 22, 0.4);
}

.side-nav a .nav-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.cta-side {
  margin-top: auto;
  background: var(--lime-neon);
  color: var(--pure-white);
  text-align: center;
  padding: 14px 16px;
  border-radius: 18px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(132, 204, 22, 0.4);
  transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  line-height: 1.3;
}

.cta-side:hover {
  background: var(--lime-deep);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 32px rgba(132, 204, 22, 0.55);
}

.mobile-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--lime-neon);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
}

.mobile-bar .brand-mini {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-bar .brand-mini .brand-icon {
  width: 38px;
  height: 38px;
  font-size: 18px;
}

.mobile-bar .brand-mini .brand-name {
  font-size: 13px;
  line-height: 1.1;
}

.mobile-bar .brand-mini .brand-domain {
  font-size: 9px;
}

.burger-btn {
  width: 44px;
  height: 44px;
  background: var(--lime-neon);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 6px 16px rgba(132, 204, 22, 0.4);
  padding: 0;
}

.burger-btn span {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--pure-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.burger-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, rgba(240, 253, 244, 0.98), rgba(220, 252, 231, 0.98));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 150;
  display: none;
  flex-direction: column;
  padding: 90px 24px 40px;
  overflow-y: auto;
}

.mobile-drawer.open {
  display: flex;
}

.drawer-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
  animation: float-blob 12s ease-in-out infinite;
}

.drawer-blob.one {
  width: 280px;
  height: 280px;
  background: var(--lime-neon);
  top: 10%;
  right: -80px;
}

.drawer-blob.two {
  width: 220px;
  height: 220px;
  background: var(--lime-soft);
  bottom: 15%;
  left: -60px;
  animation-delay: 4s;
}

@keyframes float-blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.15); }
}

.drawer-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  background: var(--pure-white);
  border: 2px solid var(--lime-neon);
  border-radius: 12px;
  cursor: pointer;
  font-size: 22px;
  color: var(--green-dark);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 2;
  margin-top: 30px;
}

.drawer-nav a {
  font-family: 'Bungee Shade', cursive;
  font-size: 26px;
  color: var(--green-dark);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 2px solid var(--border-mint);
  opacity: 0;
  transform: translateY(-20px);
  animation: drawer-slide 0.4s ease forwards;
}

.drawer-nav a:nth-child(1) { animation-delay: 0.1s; }
.drawer-nav a:nth-child(2) { animation-delay: 0.18s; }
.drawer-nav a:nth-child(3) { animation-delay: 0.26s; }
.drawer-nav a:nth-child(4) { animation-delay: 0.34s; }
.drawer-nav a:nth-child(5) { animation-delay: 0.42s; }
.drawer-nav a:nth-child(6) { animation-delay: 0.5s; }

@keyframes drawer-slide {
  to { opacity: 1; transform: translateY(0); }
}

.drawer-cta {
  margin-top: 30px;
  background: var(--lime-neon);
  color: var(--pure-white);
  text-align: center;
  padding: 18px;
  border-radius: 22px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(132, 204, 22, 0.4);
  position: relative;
  z-index: 2;
}

.main-area {
  margin-left: 280px;
  position: relative;
  z-index: 1;
}

.hero-scene {
  position: relative;
  min-height: 100vh;
  padding: 80px 60px 60px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.kinetic-line {
  position: absolute;
  font-family: 'Bungee Shade', cursive;
  font-size: 180px;
  color: var(--lime-neon);
  opacity: 0.07;
  white-space: nowrap;
  letter-spacing: 0.1em;
  line-height: 1;
}

.kinetic-line.l1 { top: 8%; left: -10%; animation: scroll-right 38s linear infinite; }
.kinetic-line.l2 { top: 32%; right: -15%; animation: scroll-left 52s linear infinite; font-size: 220px; }
.kinetic-line.l3 { top: 58%; left: -15%; animation: scroll-right 44s linear infinite; }
.kinetic-line.l4 { top: 82%; right: -10%; animation: scroll-left 60s linear infinite; font-size: 160px; }

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

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

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

.hero-content {
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pure-white);
  border: 2px solid var(--lime-neon);
  padding: 8px 18px;
  border-radius: 100px;
  font-family: 'Fira Code', monospace;
  font-size: 12px;
  color: var(--lime-deep);
  margin-bottom: 28px;
  box-shadow: 0 6px 16px rgba(132, 204, 22, 0.15);
}

.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime-neon);
  animation: pulse-dot 1.6s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.hero-h1 {
  font-family: 'Bungee Shade', cursive;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--green-dark);
  margin-bottom: 24px;
}

.hero-h1 .accent {
  color: var(--lime-deep);
  display: inline-block;
  position: relative;
}

.hero-h1 .accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 8px;
  background: var(--lime-neon);
  border-radius: 4px;
  opacity: 0.5;
}

.hero-subline {
  font-family: 'Fira Code', monospace;
  font-size: 14px;
  color: var(--green-mid);
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.6;
}

.hero-subline span::before {
  content: '▸ ';
  color: var(--lime-neon);
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--lime-neon);
  color: var(--pure-white);
  padding: 18px 32px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(132, 204, 22, 0.4);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  min-height: 56px;
}

.btn-primary:hover {
  background: var(--lime-deep);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 40px rgba(132, 204, 22, 0.55);
  color: var(--pure-white);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pure-white);
  color: var(--green-dark);
  padding: 18px 32px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 3px solid var(--lime-neon);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  min-height: 56px;
}

.btn-ghost:hover {
  background: var(--lime-neon);
  color: var(--pure-white);
  transform: translateY(-3px) scale(1.03);
}

.hero-quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 540px;
}

.stat-pill {
  background: var(--pure-white);
  border-radius: 18px;
  padding: 16px 14px;
  border: 2px solid var(--border-mint);
  text-align: center;
  box-shadow: 0 6px 16px rgba(20, 83, 45, 0.06);
}

.stat-num {
  font-family: 'Bungee Shade', cursive;
  font-size: 28px;
  color: var(--lime-deep);
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}

.stat-cap {
  font-family: 'Fira Code', monospace;
  font-size: 11px;
  color: var(--green-mid);
  line-height: 1.3;
  display: block;
}

.hero-visual {
  position: relative;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-3d-shell {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  background: linear-gradient(135deg, var(--mint-light), var(--mint-mid));
  border: 3px solid var(--lime-neon);
  box-shadow: 0 30px 70px rgba(20, 83, 45, 0.18);
  overflow: hidden;
}

.hero-3d-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(132, 204, 22, 0.3), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(163, 230, 53, 0.4), transparent 60%);
}

.hero-3d-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.hero-3d-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--pure-white);
  padding: 12px 18px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(20, 83, 45, 0.12);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-3d-badge .num {
  font-family: 'Bungee Shade', cursive;
  font-size: 26px;
  color: var(--lime-deep);
  line-height: 1;
}

.hero-3d-badge .txt {
  font-family: 'Fira Code', monospace;
  font-size: 11px;
  color: var(--green-mid);
  line-height: 1.3;
}

.hero-3d-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--lime-neon);
  color: var(--pure-white);
  padding: 10px 16px;
  border-radius: 100px;
  font-family: 'Fira Code', monospace;
  font-size: 11px;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(132, 204, 22, 0.5);
}

.section-pad {
  padding: 110px 60px;
  position: relative;
}

.section-pad-sm {
  padding: 80px 60px;
  position: relative;
}

.section-shell {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

.section-head {
  margin-bottom: 60px;
  max-width: 760px;
}

.section-eyebrow {
  font-family: 'Fira Code', monospace;
  font-size: 13px;
  color: var(--lime-deep);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--lime-neon);
  border-radius: 2px;
}

.section-h2 {
  font-family: 'Bungee Shade', cursive;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  color: var(--green-dark);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-h2 .accent {
  color: var(--lime-deep);
}

.section-lead {
  font-size: 16px;
  line-height: 1.8;
  color: var(--green-mid);
  max-width: 640px;
}

.stacking-deck {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stack-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: var(--pure-white);
  box-shadow: 0 16px 40px rgba(20, 83, 45, 0.1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  z-index: 1;
  display: flex;
  flex-direction: column;
  border: 3px solid transparent;
}

.stack-card:hover {
  transform: translateY(-10px) scale(1.03);
  z-index: 10;
  border-color: var(--lime-neon);
  box-shadow: 0 28px 60px rgba(132, 204, 22, 0.3);
}

.stack-card:nth-child(1) { transform: translateY(0); }
.stack-card:nth-child(2) { transform: translateY(40px); }
.stack-card:nth-child(3) { transform: translateY(80px); }

.stack-card:nth-child(1):hover { transform: translateY(-10px) scale(1.03); }
.stack-card:nth-child(2):hover { transform: translateY(30px) scale(1.03); }
.stack-card:nth-child(3):hover { transform: translateY(70px) scale(1.03); }

.stack-img {
  height: 200px;
  background: linear-gradient(135deg, var(--mint-light), var(--lime-soft));
  position: relative;
  overflow: hidden;
}

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

.stack-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--lime-neon);
  color: var(--pure-white);
  padding: 6px 12px;
  border-radius: 100px;
  font-family: 'Fira Code', monospace;
  font-size: 11px;
  font-weight: 600;
  z-index: 2;
}

.stack-body {
  padding: 24px 22px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stack-title {
  font-family: 'Bungee Shade', cursive;
  font-size: 22px;
  color: var(--green-dark);
  line-height: 1.15;
}

.stack-desc {
  font-size: 14px;
  color: var(--green-mid);
  line-height: 1.6;
  flex-grow: 1;
}

.stack-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 2px dashed var(--border-mint);
  font-family: 'Fira Code', monospace;
  font-size: 12px;
  color: var(--lime-deep);
}

.stack-meta .price {
  font-weight: 700;
  font-size: 16px;
  color: var(--green-dark);
}

.stack-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--lime-deep);
  font-weight: 700;
  text-decoration: none;
  font-size: 13px;
  margin-top: 8px;
  transition: gap 0.3s ease;
}

.stack-link:hover {
  gap: 12px;
  color: var(--lime-deep);
}

.timeline-deck {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding-left: 60px;
}

.timeline-deck::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--border-mint);
  border-radius: 4px;
}

.timeline-deck::after {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  width: 4px;
  height: var(--fill, 0%);
  background: var(--lime-neon);
  border-radius: 4px;
  transition: height 0.5s ease;
}

.tl-node {
  position: relative;
  margin-bottom: 36px;
  background: var(--pure-white);
  border-radius: 24px;
  padding: 22px 26px;
  box-shadow: 0 10px 28px rgba(20, 83, 45, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.tl-node:hover {
  border-color: var(--lime-neon);
  transform: translateX(6px);
  box-shadow: 0 16px 36px rgba(132, 204, 22, 0.2);
}

.tl-node::before {
  content: '';
  position: absolute;
  left: -46px;
  top: 28px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--lime-neon);
  border: 4px solid var(--pure-white);
  box-shadow: 0 0 0 4px var(--lime-neon), 0 6px 14px rgba(132, 204, 22, 0.4);
}

.tl-num {
  font-family: 'Bungee Shade', cursive;
  font-size: 32px;
  color: var(--lime-deep);
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}

.tl-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.tl-desc {
  font-size: 14px;
  color: var(--green-mid);
  line-height: 1.6;
}

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

.bento-cell {
  background: var(--pure-white);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(20, 83, 45, 0.08);
  border: 3px solid transparent;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
}

.bento-cell:hover {
  border-color: var(--lime-neon);
  transform: scale(1.03);
  z-index: 10;
  box-shadow: 0 24px 50px rgba(132, 204, 22, 0.3);
}

.bento-cell.large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-cell.medium {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-cell.wide {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-cell.tall {
  grid-column: span 1;
  grid-row: span 2;
}

.bento-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 24px;
}

.bento-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bento-cell:hover .bento-image img {
  transform: scale(1.08);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 83, 45, 0.15) 0%, rgba(20, 83, 45, 0.85) 100%);
  border-radius: 24px;
}

.bento-cell-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--pure-white);
}

.bento-tag {
  font-family: 'Fira Code', monospace;
  font-size: 11px;
  color: var(--lime-neon);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.bento-title {
  font-family: 'Bungee Shade', cursive;
  font-size: 24px;
  line-height: 1.1;
  color: var(--pure-white);
  margin-bottom: 8px;
}

.bento-meta {
  font-family: 'Fira Code', monospace;
  font-size: 12px;
  color: var(--lime-soft);
}

.bento-cell.text-only {
  background: linear-gradient(135deg, var(--mint-fade), var(--mint-light));
}

.bento-cell.dark {
  background: var(--green-dark);
}

.bento-cell.dark .bento-title,
.bento-cell.dark .bento-tag {
  color: var(--lime-neon);
}

.bento-cell.dark {
  color: var(--pure-white);
}

.bento-num-display {
  font-family: 'Bungee Shade', cursive;
  font-size: 80px;
  color: var(--lime-deep);
  line-height: 1;
  opacity: 0.18;
  position: absolute;
  top: 14px;
  right: 18px;
}

.bento-cell.dark .bento-num-display {
  color: var(--lime-neon);
  opacity: 0.4;
}

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

.sticky-photo {
  position: sticky;
  top: 60px;
  height: 620px;
  border-radius: 36px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--mint-light), var(--lime-soft));
  border: 3px solid var(--lime-neon);
  box-shadow: 0 30px 70px rgba(20, 83, 45, 0.18);
}

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

.split-content {
  padding-top: 20px;
}

.split-h2 {
  font-family: 'Bungee Shade', cursive;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  color: var(--green-dark);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.split-p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--green-mid);
  margin-bottom: 20px;
}

.split-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 2px dashed var(--border-mint);
}

.split-stat {
  text-align: center;
}

.split-stat .n {
  font-family: 'Bungee Shade', cursive;
  font-size: 36px;
  color: var(--lime-deep);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.split-stat .l {
  font-family: 'Fira Code', monospace;
  font-size: 11px;
  color: var(--green-mid);
}

.flex-grow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  min-height: 380px;
}

.fg-card {
  background: var(--pure-white);
  border-radius: 28px;
  padding: 32px 28px;
  border: 3px solid var(--border-mint);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fg-card:hover {
  border-color: var(--lime-neon);
  background: var(--lime-neon);
  transform: scale(1.06);
  z-index: 10;
  box-shadow: 0 30px 60px rgba(132, 204, 22, 0.4);
}

.fg-card:hover .fg-num,
.fg-card:hover .fg-title,
.fg-card:hover .fg-desc {
  color: var(--pure-white);
}

.fg-card:hover .fg-bg-num {
  color: var(--pure-white);
  opacity: 0.2;
}

.fg-num {
  font-family: 'Bungee Shade', cursive;
  font-size: 32px;
  color: var(--lime-deep);
  line-height: 1;
}

.fg-title {
  font-family: 'Work Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.25;
}

.fg-desc {
  font-size: 14px;
  color: var(--green-mid);
  line-height: 1.65;
}

.fg-bg-num {
  position: absolute;
  top: -10px;
  right: -8px;
  font-family: 'Bungee Shade', cursive;
  font-size: 130px;
  color: var(--lime-neon);
  opacity: 0.08;
  line-height: 1;
  transition: all 0.3s ease;
  pointer-events: none;
}

.team-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 880px;
  margin: 0 auto;
}

.team-row {
  position: relative;
  padding: 22px 28px;
  background: var(--pure-white);
  border-radius: 20px;
  border: 2px solid var(--border-mint);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}

.team-row:hover {
  border-color: var(--lime-neon);
  transform: translateX(8px);
  box-shadow: 0 14px 32px rgba(132, 204, 22, 0.18);
  z-index: 10;
}

.team-name {
  font-family: 'Bungee Shade', cursive;
  font-size: 24px;
  color: var(--green-dark);
  line-height: 1.1;
}

.team-role {
  font-family: 'Fira Code', monospace;
  font-size: 13px;
  color: var(--green-mid);
  margin-top: 4px;
}

.team-years {
  background: var(--lime-neon);
  color: var(--pure-white);
  padding: 8px 14px;
  border-radius: 100px;
  font-family: 'Fira Code', monospace;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.team-pop {
  position: absolute;
  right: 100px;
  top: 50%;
  transform: translateY(-50%) translateX(20px);
  opacity: 0;
  pointer-events: none;
  background: var(--pure-white);
  border: 2px solid var(--lime-neon);
  border-radius: 16px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 14px 30px rgba(132, 204, 22, 0.25);
  transition: all 0.3s ease;
  z-index: 5;
}

.team-row:hover .team-pop {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.team-pop img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--lime-neon);
}

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

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

.cf-card {
  position: absolute;
  width: 380px;
  padding: 36px 32px;
  background: var(--pure-white);
  border-radius: 28px;
  border: 3px solid var(--border-mint);
  box-shadow: 0 20px 50px rgba(20, 83, 45, 0.15);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.cf-card.center {
  z-index: 10;
  transform: translateX(0) scale(1) rotateY(0);
  border-color: var(--lime-neon);
  box-shadow: 0 30px 70px rgba(132, 204, 22, 0.35);
  opacity: 1;
}

.cf-card.left {
  z-index: 5;
  transform: translateX(-340px) scale(0.85) rotateY(18deg);
  opacity: 0.65;
}

.cf-card.right {
  z-index: 5;
  transform: translateX(340px) scale(0.85) rotateY(-18deg);
  opacity: 0.65;
}

.cf-card.far-left {
  transform: translateX(-580px) scale(0.7) rotateY(28deg);
  opacity: 0.35;
  z-index: 2;
}

.cf-card.far-right {
  transform: translateX(580px) scale(0.7) rotateY(-28deg);
  opacity: 0.35;
  z-index: 2;
}

.cf-stars {
  color: var(--lime-neon);
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 14px;
}

.cf-quote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--green-dark);
  margin-bottom: 22px;
  font-style: italic;
}

.cf-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 2px dashed var(--border-mint);
}

.cf-author .name {
  font-family: 'Bungee Shade', cursive;
  font-size: 16px;
  color: var(--green-dark);
}

.cf-author .role {
  font-family: 'Fira Code', monospace;
  font-size: 12px;
  color: var(--green-mid);
}

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

.cf-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--pure-white);
  border: 3px solid var(--lime-neon);
  color: var(--green-dark);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(132, 204, 22, 0.2);
}

.cf-btn:hover {
  background: var(--lime-neon);
  color: var(--pure-white);
  transform: scale(1.1);
}

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

.acc-item {
  background: var(--pure-white);
  border-radius: 22px;
  border: 2px solid var(--border-mint);
  overflow: hidden;
  transition: all 0.3s ease;
}

.acc-item.open {
  border-color: var(--lime-neon);
  box-shadow: 0 16px 36px rgba(132, 204, 22, 0.18);
}

.acc-trigger {
  width: 100%;
  padding: 22px 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--green-dark);
  text-align: left;
}

.acc-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lime-neon);
  color: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

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

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

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

.acc-body {
  padding: 0 28px 24px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--green-mid);
}

.contact-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  background: var(--pure-white);
  border-radius: 36px;
  padding: 50px;
  box-shadow: 0 30px 70px rgba(20, 83, 45, 0.1);
  border: 3px solid var(--lime-neon);
}

.form-stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-row {
  position: relative;
  border-bottom: 2px solid var(--border-mint);
  transition: border-color 0.3s ease;
}

.form-row:focus-within {
  border-color: var(--lime-neon);
}

.form-row label {
  display: block;
  font-family: 'Fira Code', monospace;
  font-size: 11px;
  color: var(--lime-deep);
  margin-bottom: 6px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 8px 0 12px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 16px;
  color: var(--green-dark);
  outline: none;
}

.form-row textarea {
  min-height: 100px;
  resize: vertical;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--green-mid);
  opacity: 0.7;
}

.form-success {
  display: none;
  background: var(--lime-neon);
  color: var(--pure-white);
  padding: 40px;
  border-radius: 22px;
  text-align: center;
}

.form-success.show {
  display: block;
}

.form-success h3 {
  font-family: 'Bungee Shade', cursive;
  font-size: 32px;
  color: var(--pure-white);
  margin-bottom: 14px;
}

.form-success p {
  font-size: 15px;
  color: var(--pure-white);
}

.info-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-block {
  padding: 22px;
  background: linear-gradient(135deg, var(--mint-fade), var(--mint-light));
  border-radius: 20px;
  border: 2px solid var(--border-mint);
}

.info-cap {
  font-family: 'Fira Code', monospace;
  font-size: 11px;
  color: var(--lime-deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.info-val {
  font-family: 'Bungee Shade', cursive;
  font-size: 22px;
  color: var(--green-dark);
  line-height: 1.2;
  word-break: break-word;
}

.info-val a {
  color: var(--green-dark);
  text-decoration: none;
}

.info-val a:hover {
  color: var(--lime-deep);
}

.info-add {
  font-family: 'Fira Code', monospace;
  font-size: 13px;
  color: var(--green-mid);
  margin-top: 8px;
  line-height: 1.5;
}

.cta-banner {
  background: linear-gradient(135deg, var(--green-dark), #0d3a1f);
  border-radius: 36px;
  padding: 60px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  color: var(--pure-white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(132, 204, 22, 0.3), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(163, 230, 53, 0.3), transparent 50%);
  pointer-events: none;
}

.cta-banner > * {
  position: relative;
  z-index: 1;
}

.cta-banner-text {
  flex: 1;
  min-width: 280px;
}

.cta-banner-text h3 {
  font-family: 'Bungee Shade', cursive;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--pure-white);
  line-height: 1.05;
  margin-bottom: 12px;
}

.cta-banner-text p {
  font-size: 15px;
  color: var(--lime-soft);
  line-height: 1.7;
}

.cta-banner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.site-footer {
  background: var(--lime-neon);
  color: var(--pure-white);
  border-radius: 40px 40px 0 0;
  padding: 70px 60px 30px;
  position: relative;
  z-index: 5;
  margin-top: 60px;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand-block h4 {
  font-family: 'Bungee Shade', cursive;
  font-size: 24px;
  color: var(--pure-white);
  margin-bottom: 14px;
  line-height: 1.2;
}

.footer-brand-block p {
  font-size: 14px;
  color: var(--pure-white);
  line-height: 1.7;
  opacity: 0.9;
}

.footer-col h5 {
  font-family: 'Fira Code', monospace;
  font-size: 12px;
  color: var(--pure-white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: 0.85;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--pure-white);
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.2s ease;
}

.footer-col a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 26px;
  border-top: 2px solid rgba(255, 255, 255, 0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-family: 'Fira Code', monospace;
  font-size: 12px;
  color: var(--pure-white);
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 460px;
  background: var(--pure-white);
  border: 3px solid var(--lime-neon);
  border-radius: 24px;
  padding: 24px 26px;
  box-shadow: 0 30px 70px rgba(20, 83, 45, 0.25);
  z-index: 1000;
}

.cookie-banner.hidden-banner {
  display: none !important;
}

.cookie-banner h4 {
  font-family: 'Bungee Shade', cursive;
  font-size: 20px;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.cookie-banner p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--green-mid);
  margin-bottom: 16px;
}

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

.cookie-actions button {
  flex: 1;
  min-width: 100px;
  padding: 12px 16px;
  border-radius: 14px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid var(--lime-neon);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.cookie-accept {
  background: var(--lime-neon);
  color: var(--pure-white);
}

.cookie-accept:hover {
  background: var(--lime-deep);
}

.cookie-decline {
  background: var(--pure-white);
  color: var(--green-dark);
}

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

.cookie-links {
  margin-top: 12px;
  font-family: 'Fira Code', monospace;
  font-size: 11px;
}

.cookie-links a {
  color: var(--lime-deep);
  text-decoration: none;
  margin-right: 10px;
}

.cookie-links a:hover {
  text-decoration: underline;
}

.inner-hero {
  padding: 80px 60px 50px;
  position: relative;
}

.inner-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--mint-fade), var(--mint-light));
  border-radius: 0 0 40px 40px;
  z-index: -1;
}

.inner-hero-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 40px;
}

.inner-hero .section-eyebrow {
  margin-bottom: 16px;
}

.inner-h1 {
  font-family: 'Bungee Shade', cursive;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  color: var(--green-dark);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.inner-lead {
  font-size: 16px;
  line-height: 1.8;
  color: var(--green-mid);
  max-width: 720px;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Fira Code', monospace;
  font-size: 12px;
  color: var(--lime-deep);
  margin-bottom: 20px;
  background: var(--pure-white);
  padding: 8px 16px;
  border-radius: 100px;
  border: 2px solid var(--border-mint);
}

.breadcrumb a {
  color: var(--lime-deep);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--green-dark);
}

.legal-shell {
  max-width: 880px;
  margin: 0 auto;
  padding: 40px 60px 80px;
}

.legal-shell h2 {
  font-family: 'Bungee Shade', cursive;
  font-size: 28px;
  color: var(--green-dark);
  margin: 36px 0 14px;
  line-height: 1.2;
}

.legal-shell h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--green-dark);
  margin: 24px 0 10px;
}

.legal-shell p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--green-mid);
  margin-bottom: 14px;
}

.legal-shell ul {
  padding-left: 24px;
  margin-bottom: 14px;
}

.legal-shell li {
  font-size: 15px;
  line-height: 1.85;
  color: var(--green-mid);
  margin-bottom: 8px;
}

.thanks-scene {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
}

.thanks-card {
  background: var(--pure-white);
  border: 3px solid var(--lime-neon);
  border-radius: 36px;
  padding: 60px 50px;
  text-align: center;
  max-width: 720px;
  box-shadow: 0 40px 90px rgba(132, 204, 22, 0.3);
  position: relative;
  overflow: hidden;
}

.thanks-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(132, 204, 22, 0.15), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(163, 230, 53, 0.2), transparent 50%);
  pointer-events: none;
}

.thanks-card > * {
  position: relative;
  z-index: 1;
}

.thanks-icon {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--lime-neon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 0 auto 28px;
  box-shadow: 0 20px 40px rgba(132, 204, 22, 0.5);
  animation: bounce-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes bounce-in {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

.thanks-h1 {
  font-family: 'Bungee Shade', cursive;
  font-size: clamp(32px, 5vw, 56px);
  color: var(--green-dark);
  line-height: 1.05;
  margin-bottom: 18px;
}

.thanks-lead {
  font-size: 16px;
  line-height: 1.85;
  color: var(--green-mid);
  margin-bottom: 32px;
}

.thanks-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.13s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.21s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.29s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.37s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: 0.45s; }
.reveal-stagger.in-view > *:nth-child(7) { transition-delay: 0.53s; }
.reveal-stagger.in-view > *:nth-child(8) { transition-delay: 0.61s; }

.reveal-stagger.in-view > * {
  opacity: 1;
  transform: translateY(0);
}

.service-detail-shell {
  max-width: 1100px;
  margin: 0 auto;
}

.sd-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: start;
}

.sd-img-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 3px solid var(--lime-neon);
  box-shadow: 0 24px 60px rgba(20, 83, 45, 0.18);
  margin-bottom: 30px;
}

.sd-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.sd-side {
  position: sticky;
  top: 60px;
  background: var(--pure-white);
  border: 3px solid var(--lime-neon);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(132, 204, 22, 0.18);
}

.sd-price-tag {
  font-family: 'Bungee Shade', cursive;
  font-size: 38px;
  color: var(--lime-deep);
  line-height: 1;
  margin-bottom: 6px;
}

.sd-price-cap {
  font-family: 'Fira Code', monospace;
  font-size: 12px;
  color: var(--green-mid);
  margin-bottom: 22px;
}

.sd-spec-list {
  list-style: none;
  margin: 22px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sd-spec-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border-mint);
  font-size: 14px;
  color: var(--green-mid);
}

.sd-spec-list li strong {
  color: var(--green-dark);
}

.sd-content h2 {
  font-family: 'Bungee Shade', cursive;
  font-size: 32px;
  color: var(--green-dark);
  margin: 30px 0 16px;
  line-height: 1.15;
}

.sd-content h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--green-dark);
  margin: 24px 0 10px;
}

.sd-content p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--green-mid);
  margin-bottom: 14px;
}

.sd-content ul {
  padding-left: 24px;
  margin-bottom: 18px;
}

.sd-content li {
  font-size: 15px;
  line-height: 1.85;
  color: var(--green-mid);
  margin-bottom: 8px;
}

@media (max-width: 1100px) {
  .hero-scene { padding: 60px 30px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 380px; }
  .section-pad { padding: 70px 30px; }
  .section-pad-sm { padding: 50px 30px; }
  .inner-hero { padding: 60px 30px 40px; }
  .stacking-deck { grid-template-columns: 1fr; height: auto; }
  .stack-card { transform: none !important; }
  .stack-card:hover { transform: translateY(-8px) scale(1.02) !important; }
  .stack-img { height: 180px; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .bento-cell.large { grid-column: span 2; grid-row: span 2; }
  .bento-cell.medium { grid-column: span 2; }
  .bento-cell.wide { grid-column: span 2; }
  .bento-cell.tall { grid-column: span 1; grid-row: span 1; }
  .split-deck { grid-template-columns: 1fr; gap: 30px; }
  .sticky-photo { position: relative; top: 0; height: 380px; }
  .flex-grow-grid { grid-template-columns: 1fr; min-height: auto; }
  .contact-shell { grid-template-columns: 1fr; padding: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .legal-shell { padding: 30px 24px 60px; }
  .sd-grid { grid-template-columns: 1fr; }
  .sd-side { position: relative; top: 0; }
  .thanks-scene { padding: 60px 24px; }
  .thanks-card { padding: 40px 28px; }
  .site-footer { padding: 50px 24px 24px; }
  .coverflow-stage { min-height: 460px; }
  .cf-card { width: 320px; padding: 28px 24px; }
  .cf-card.left { transform: translateX(-260px) scale(0.85) rotateY(18deg); }
  .cf-card.right { transform: translateX(260px) scale(0.85) rotateY(-18deg); }
  .cf-card.far-left { transform: translateX(-440px) scale(0.7) rotateY(28deg); opacity: 0.2; }
  .cf-card.far-right { transform: translateX(440px) scale(0.7) rotateY(-28deg); opacity: 0.2; }
  .team-pop { display: none; }
  .cta-banner { padding: 40px 28px; }
}

@media (max-width: 820px) {
  .mobile-bar { display: flex; }
  .brand-shell { display: none; }
  .main-area { margin-left: 0; }
  .hero-scene { padding: 90px 20px 40px; min-height: auto; }
  .section-pad { padding: 60px 20px; }
  .section-pad-sm { padding: 40px 20px; }
  .inner-hero { padding: 90px 20px 30px; }
  .hero-h1 { font-size: 44px; }
  .hero-cta-row { flex-direction: column; }
  .hero-cta-row a { width: 100%; justify-content: center; }
  .hero-quick-stats { grid-template-columns: 1fr; gap: 12px; }
  .hero-visual { height: 320px; }
  .kinetic-line { font-size: 100px; }
  .kinetic-line.l2 { font-size: 130px; }
  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento-cell.large,
  .bento-cell.medium,
  .bento-cell.wide { grid-column: span 1; grid-row: span 1; min-height: 280px; }
  .bento-cell.tall { grid-column: span 1; grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .split-stats { grid-template-columns: 1fr; gap: 14px; }
  .timeline-deck { padding-left: 40px; }
  .tl-node::before { left: -32px; }
  .coverflow-stage { min-height: 480px; }
  .cf-card { width: 88vw; max-width: 360px; padding: 24px 20px; }
  .cf-card.left,
  .cf-card.right,
  .cf-card.far-left,
  .cf-card.far-right { display: none; }
  .cookie-banner { left: 12px; right: 12px; max-width: none; bottom: 12px; padding: 18px 20px; }
  .team-row { flex-wrap: wrap; gap: 12px; }
  .team-name { font-size: 18px; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
  .legal-shell { padding: 24px 20px 50px; }
  .thanks-card { padding: 36px 22px; }
  .thanks-icon { width: 80px; height: 80px; font-size: 44px; }
  .form-success { padding: 28px 20px; }
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--mint-fade);
}

::-webkit-scrollbar-thumb {
  background: var(--lime-neon);
  border-radius: 10px;
  border: 2px solid var(--mint-fade);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--lime-deep);
}

::selection {
  background: var(--lime-neon);
  color: var(--pure-white);
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--lime-neon);
  outline-offset: 3px;
}
