/* ═══════════════════════════════════════════════════════════════════
   BLOCKAGRAM UNIFIED STYLESHEET
   Consolidated from blockagram.css and styles.css
   Version 2.0 - All pages, fully responsive
═══════════════════════════════════════════════════════════════════ */

:root {
  --green: #61ff00;
  --black: #000;
  --white: #fff;
  --grey-05: #0d0d0d;
  --grey-90: #e6e6e6;
  --grey-50: #666;
  --sans: "DM Sans", sans-serif;
  --mono: "DM Mono", monospace;
  --max: 1280px;
  --pad: clamp(20px, 5vw, 80px);
}

/* ═══════════════════════════════════════════════════════════════════
   RESET & BASE STYLES
═══════════════════════════════════════════════════════════════════ */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: 84px;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 0;
}

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

button {
  font: inherit;
  cursor: pointer;
}

/* ═══════════════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════════════ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--pad);
  mix-blend-mode: difference;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.1);
}

nav.menu-open {
  mix-blend-mode: normal !important;
  backdrop-filter: none !important;
  background: rgba(0, 0, 0, 0.98) !important;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--white);
}

.logo-svg {
  height: 20px;
  width: auto;
  fill: var(--white);
}

.nav-wordmark {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 36px;
}

.hamburger {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 201;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  transform-origin: center;
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  transform: translateY(-5px) rotate(-45deg);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a.nav-therapy-highlight {
  color: var(--green);
  position: relative;
}

.nav-links a.nav-therapy-highlight:hover {
  color: var(--green);
  opacity: 0.8;
}

@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(97, 255, 0, 0.8);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(97, 255, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(97, 255, 0, 0);
  }
}

.nav-cta {
  background: var(--green);
  color: var(--black);
  padding: 8px 18px;
  border-radius: 0;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
  display: inline-block;
}

.nav-cta:hover {
  opacity: 0.8;
}

.nav-btn-therapy {
  background: transparent;
  color: var(--green);
  border: 1px solid var(--green);
  padding: 7px 17px;
  border-radius: 0;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
  cursor: pointer;
}

.nav-btn-therapy:hover {
  background: var(--green);
  color: var(--black);
}

.mobile-nav-therapy-item {
  display: none;
}

/* PAGE HEADER (used on selected-work, research, workshops, work-with-us) */

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(0, 0, 0, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px clamp(24px, 4vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

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

.site-nav a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--white);
}

.page-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 8vw, 120px) var(--pad);
  display: grid;
  gap: 72px;
}

/* ═══════════════════════════════════════════════════════════════════
   PAGE 1: LANDING / HOMEPAGE
═══════════════════════════════════════════════════════════════════ */

#page-landing {
  display: block;
}

#page-case {
  display: none;
}

/* HERO */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px var(--pad) clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}

.hero-rule {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 60px;
  align-items: end;
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
  opacity: 0;
  animation: fup 0.7s ease forwards 0.1s;
}

.hero-h1 {
  font-size: clamp(40px, 5.5vw, 78px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.04;
  margin-bottom: 32px;
  margin-top: 0;
  opacity: 0;
  animation: fup 0.7s ease forwards 0.25s;
}

.hero-h1 i {
  font-style: italic;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
}

.hero-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--white);
  line-height: 1.7;
  max-width: 500px;
  font-weight: 300;
  margin-bottom: 44px;
  opacity: 0;
  animation: fup 0.7s ease forwards 0.4s;
}

.hero-btns {
  display: flex;
  gap: 12px;
  opacity: 0;
  animation: fup 0.7s ease forwards 0.55s;
}

.btn-p {
  background: var(--green);
  color: var(--black);
  padding: 13px 26px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
  display: inline-block;
  border: none;
}

.btn-p:hover {
  opacity: 0.8;
}

.btn-s {
  background: transparent;
  color: var(--white);
  padding: 13px 26px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: border-color 0.2s;
  display: inline-block;
}

.btn-s:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 0;
  padding-bottom: 4px;
  opacity: 0;
  animation: fin 0.9s ease forwards 0.7s;
}

.hero-stat {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  width: 100%;
  text-align: right;
}

.hero-stat:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-num {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

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

/* MARQUEE */
.marquee-bar {
  background: var(--green);
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
}

.marquee-inner2 {
  display: inline-flex;
  animation: mq 20s linear infinite;
}

.mq-item {
  height: 30px;
  width: auto;
  margin: 0 28px;
  opacity: 0.8;
}

/* WORK GRID (PENTAGRAM STYLE) */
#work {
  padding: 0;
}

.work-header {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px var(--pad) 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.work-h2 {
  font-size: clamp(22px, 2.5vw, 44px);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0;
}

.work-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
  max-width: 280px;
  text-align: right;
  line-height: 1.55;
}

.work-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  padding: 0 var(--pad);
}

.project-card {
  background: var(--black);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: var(--white);
}

/* Alternating sizes - cards 1 & 4 are full width */
.work-grid .project-card:nth-child(1) {
  grid-column: span 2;
}

.work-grid .project-card:nth-child(4) {
  grid-column: span 2;
}

/* Cards 5 & 6 layout - different sizing to avoid empty space */
.work-grid .project-card:nth-child(5) {
  grid-column: span 1;
}

.work-grid .project-card:nth-child(6) {
  grid-column: span 1;
}

.project-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: #111;
  overflow: hidden;
  position: relative;
}

.work-grid .project-card:nth-child(1) .project-thumb {
  aspect-ratio: 21/9;
}

.work-grid .project-card:nth-child(4) .project-thumb {
  aspect-ratio: 21/9;
}

.work-grid .project-card:nth-child(5) .project-thumb {
  aspect-ratio: 16/9;
}

.work-grid .project-card:nth-child(6) .project-thumb {
  aspect-ratio: 16/9;
}

.thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  filter: grayscale(20%);
}

.project-card:hover .thumb-img {
  transform: scale(1.03);
}

.project-info {
  padding: 24px 28px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.project-cat {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 6px;
}

.project-name {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.project-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 4px;
  line-height: 1.4;
}

.project-meta {
  flex: 1;
}

.project-arrow {
  color: rgba(255, 255, 255, 0.7);
  font-size: 22px;
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 0.25s,
    transform 0.25s;
  flex-shrink: 0;
  margin-top: 2px;
}

.project-card:hover .project-arrow {
  opacity: 1;
  transform: none;
}

.project-card,
.project-card .project-thumb,
.project-card .project-info,
.case-nav-item,
.preview-card,
.research-card,
.workshop-card,
.problem-card,
.system-card,
.section-panel,
.form-group input,
.form-group textarea,
.form-group select,
.form-success,
.form-error {
  border-radius: 0;
}

.form-success {
  color: rgba(255, 255, 255, 0.9);
}

.form-error {
  color: #ff6464;
}

/* TRANSITION STATEMENT */
.transition-block {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) var(--pad);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.transition-text {
  font-size: clamp(22px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
}

.transition-text em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
}

/* WHAT WE DO */
#services-block {
  background: var(--white);
  color: var(--black);
  margin: 0;
  padding: 0;
}

.services-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) var(--pad);
}

.services-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
}

.services-top-h {
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
}

.services-top-sub {
  font-size: 13px;
  color: #999;
  max-width: 220px;
  text-align: right;
  line-height: 1.6;
}

.services-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.svc {
  padding: 36px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.svc:not(:last-child) {
  padding-right: 40px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.svc:not(:first-child) {
  padding-left: 40px;
}

.svc-num {
  font-family: var(--mono);
  font-size: 10px;
  color: #bbb;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.svc-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  margin-top: 0;
}

.svc-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
  margin-bottom: 16px;
}

.svc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.svc-list li {
  font-size: 12px;
  color: #999;
  padding-left: 12px;
  position: relative;
  line-height: 1.4;
}

.svc-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--black);
  font-size: 10px;
  top: 1px;
}

/* DIFFERENTIATOR */
.diff-block {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) var(--pad);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.diff-h {
  font-size: clamp(28px, 4vw, 58px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.06;
  max-width: 600px;
  margin: 0 0 40px 0;
}

.diff-items {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.diff-item {
  flex: 1;
  padding: 28px 0;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  padding-right: 32px;
}

.diff-item:last-child {
  border-right: none;
  padding-left: 32px;
  padding-right: 0;
}

.diff-item:not(:first-child) {
  padding-left: 32px;
}

.di-before {
  font-size: 13px;
  color: #bbb;
  text-decoration: line-through;
  margin-bottom: 6px;
}

.di-after {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.01em;
}

/* PROCESS STRIP */
.process-strip {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.process-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

.proc-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  min-width: 120px;
}

.proc-steps {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}

.proc-step {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}

.proc-word {
  font-size: clamp(13px, 1.5vw, 18px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  padding: 0 12px;
}

.proc-connector {
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  min-width: 20px;
}

.proc-connector::after {
  content: "›";
  position: absolute;
  right: -4px;
  top: -11px;
  color: rgba(255, 255, 255, 0.2);
  font-size: 18px;
}

.proc-step:last-child .proc-connector {
  display: none;
}

/* WHO WE WORK WITH */
.clients-block {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.clients-left,
.clients-list {
  padding-inline: var(--pad);
}

.clients-left h2 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0;
}

.clients-left p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
  font-style: italic;
  font-weight: 300;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  line-height: 1.65;
}

.clients-list {
  list-style: none;
  margin: 0;
  padding: 0 var(--pad);
}

.client-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
  cursor: default;
}

.client-row:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.client-row:hover {
  color: var(--white);
}

.cr-arrow {
  color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  transition: opacity 0.2s;
  font-size: 16px;
}

.client-row:hover .cr-arrow {
  opacity: 1;
}

/* FINAL CTA */
#final-cta {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
  padding: clamp(100px, 14vw, 180px) var(--pad);
  margin: 0;
}

.cta-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 24px;
}

.cta-h {
  font-size: clamp(34px, 5.5vw, 76px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cta-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 44px;
  font-weight: 300;
}

/* FOOTER */
footer {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 36px var(--pad);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-copy {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.18);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

/* ═══════════════════════════════════════════════════════════════════
   PAGE 2: CASE STUDY
═══════════════════════════════════════════════════════════════════ */

#page-case {
  background: var(--white);
  color: var(--black);
}

.case-hero {
  background: var(--black);
  color: var(--white);
  padding: 140px var(--pad) 0;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.case-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.case-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 60px;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  background: none;
  border: none;
}

.case-back:hover {
  color: var(--white);
}

.case-hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.case-cat-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--green);
  padding: 4px 10px;
  border-radius: 0;
}

.case-year {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.1em;
}

.case-title {
  font-size: clamp(36px, 5.5vw, 78px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.04;
  margin-bottom: 20px;
  margin-top: 0;
}

.case-summary {
  font-size: clamp(16px, 1.8vw, 22px);
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
  max-width: 640px;
  line-height: 1.55;
  padding-bottom: 60px;
}

.case-hero-img {
  width: 100%;
  aspect-ratio: 21/9;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
}

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

.case-body {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.case-overview {
  display: grid;
  grid-template-columns: 3fr 5fr;
  gap: 80px;
  align-items: start;
  padding: 80px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.case-overview-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 20px;
}

.case-scope-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.case-scope-list li {
  font-size: 14px;
  color: #555;
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}

.case-scope-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #ccc;
}

.case-problem-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 16px;
}

.case-problem-text {
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.3;
  color: var(--black);
  margin-bottom: 20px;
}

.case-context {
  font-size: 15px;
  color: #666;
  line-height: 1.75;
}

.case-visual {
  width: 100%;
  aspect-ratio: 16/9;
  background: #f5f5f5;
  position: relative;
  overflow: hidden;
  margin: 0;
}

.case-visual-full {
  width: calc(100% + (var(--pad) * 2));
  margin-left: calc(var(--pad) * -1);
}

.case-visual--left img {
  object-position: left center;
}

.case-visual--right img {
  object-position: right center;
}

.case-visual-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(0, 0, 0, 0.06);
  margin: 0;
}

.case-visual-2col .case-visual {
  margin: 0;
  width: 100%;
}

.case-text-section {
  max-width: 680px;
  padding: 64px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.case-section-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #bbb;
  margin-bottom: 20px;
  display: block;
}

.case-text-h {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 16px;
  margin-top: 0;
}

.case-text-p {
  font-size: 15px;
  color: #666;
  line-height: 1.75;
}

.case-text-p + .case-text-p {
  margin-top: 12px;
}

.exec-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 0 0;
  padding: 0;
}

.exec-list li {
  font-size: 14px;
  color: #555;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.exec-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--black);
  font-size: 12px;
  top: 1px;
}

.case-outcome {
  padding: 64px 0;
  background: var(--white);
}

.case-outcome-inner {
  display: grid;
  grid-template-columns: 3fr 5fr;
  gap: 80px;
  align-items: start;
}

.outcome-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.outcome-stat {
  padding: 24px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.outcome-stat:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.os-num {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--black);
  line-height: 1;
}

.os-label {
  font-size: 13px;
  color: #999;
  margin-top: 4px;
}

.case-nav {
  background: transparent;
  color: var(--white);
  padding: 60px var(--pad);
  position: relative;
  z-index: 0;
}

.case-nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  background: transparent;
  position: relative;
  z-index: 0;
}

.case-nav-item {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  padding: 24px;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
  color: var(--white);
  display: block;
  overflow: hidden;
}

.case-nav-item:hover {
  background: #0a0a0a;
}

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

.cni-title {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.cni-cat {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 4px;
}

.cni-arrow {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 20px;
  opacity: 0.6;
}

.case-nav-item.prev .cni-arrow {
  transform: scaleX(-1);
  display: inline-block;
}

/* ═══════════════════════════════════════════════════════════════════
   SELECTED WORK PAGE
═══════════════════════════════════════════════════════════════════ */

.section-headline {
  display: grid;
  gap: 18px;
}

.section-headline h2 {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-weight: 600;
}

.section-headline p {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  font-size: 1rem;
}

.work-header.reveal {
  display: block;
}

.final-cta {
  display: grid;
  gap: 24px;
  text-align: center;
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-weight: 600;
}

.final-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.8;
}

.final-cta .btn-p {
  margin: 0 auto;
}

.intake-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 20px;
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
}

.intake-form > div {
  width: 100%;
}

.intake-form .full {
  grid-column: 1 / -1;
}

.intake-form label {
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.85);
}

.intake-form input,
.intake-form textarea,
.intake-form select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-radius: 0;
  font-size: 14px;
  font-family: var(--sans);
}

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

.intake-submit {
  display: inline-block;
  padding: 14px 24px;
  background: var(--green);
  color: var(--black);
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.section-panel {
  display: grid;
  gap: 32px;
  padding: 48px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.preview-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px;
  border-radius: 0;
}

.preview-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0;
  pointer-events: none;
}

.preview-card .card-content {
  position: relative;
  z-index: 1;
}

.card-eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.card-title {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  line-height: 1.2;
  font-weight: 600;
}

.card-text {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.75;
  font-size: 0.99rem;
}

.card-pill {
  display: inline-flex;
  margin-top: 24px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.research-grid,
.workshop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.research-card,
.workshop-card {
  padding: 32px;
  border-radius: 0;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.01);
}

.research-card:hover,
.workshop-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  transition: all 0.3s ease;
}

/* ═══════════════════════════════════════════════════════════════════
   WORK WITH US / INTAKE PAGES
═══════════════════════════════════════════════════════════════════ */

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.problem-card {
  padding: 32px;
  border-radius: 0;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.01);
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.system-card {
  padding: 32px;
  border-radius: 0;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.system-card h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
}

.system-card p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  font-size: 0.96rem;
}

/* Contact Form Styling */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  color: var(--white);
  font-size: 14px;
  font-family: var(--sans);
  transition: all 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
}

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

.form-group select {
  cursor: pointer;
}

.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.btn-primary {
  background: var(--green);
  color: var(--black);
  padding: 13px 26px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 13px 26px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
  display: inline-block;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

.form-success {
  padding: 20px;
  border-radius: 0;
  background: rgba(97, 255, 0, 0.1);
  border: 1px solid rgba(97, 255, 0, 0.3);
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 24px;
  text-align: center;
}

.form-error {
  padding: 20px;
  border-radius: 0;
  background: rgba(255, 100, 100, 0.1);
  border: 1px solid rgba(255, 100, 100, 0.3);
  color: #ff6464;
  margin-bottom: 24px;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════
   SHARED COMPONENTS / ANIMATIONS
═══════════════════════════════════════════════════════════════════ */

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

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes fup {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fin {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes mq {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ─── BOOKING CHOICE CARDS ────────────────── */
.booking-choice {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
  max-width: 920px;
  width: 100%;
  margin: 48px auto;
  text-align: left;
}

.booking-option-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  transition: all 0.3s ease;
  min-height: 280px;
}

.booking-option-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.booking-option-card:first-child:hover {
  border-color: var(--green);
  box-shadow: 0 0 30px rgba(0, 255, 102, 0.04);
}

.option-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
  display: block;
}

.option-h3 {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 600;
  color: var(--white);
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
}

.option-p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 28px 0;
  flex-grow: 1;
}

.booking-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 32px;
}

.booking-divider::before {
  content: "";
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.booking-divider span {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 50%;
  z-index: 2;
  letter-spacing: 0.05em;
}

/* ─── BUILDER'S THERAPY CUSTOM STYLES ────── */
.therapy-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 60px var(--pad);
}

.therapy-hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.therapy-tagline {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
}

.therapy-title {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(28px, 4.5vw, 56px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--white);
  margin: 0 0 28px 0;
  white-space: nowrap;
}

.highlight-green {
  color: var(--green);
}

.therapy-lead {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 40px 0;
  max-width: 580px;
}

.therapy-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  margin-bottom: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}

.t-badge {
  display: flex;
  flex-direction: column;
}

.tb-num {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.tb-lbl {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px;
}

.therapy-actions {
  display: flex;
  gap: 16px;
}

.therapy-hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flyer-container {
  position: relative;
  width: 100%;
  max-width: 460px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
  overflow: hidden;
}

.flyer-img {
  width: 100%;
  display: block;
  height: auto;
  transition: transform 0.5s ease;
}

.flyer-container:hover .flyer-img {
  transform: scale(1.02);
}

.flyer-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

/* THE SHIFT SECTION */
.therapy-shift {
  padding: 40px var(--pad);
}

.shift-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 64px 48px;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.shift-quote {
  font-size: clamp(20px, 3vw, 32px);
  line-height: 1.4;
  font-weight: 500;
  color: var(--white);
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
}

.shift-sub {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
}

/* PRICING STYLES */
.therapy-pricing {
  padding: 80px var(--pad);
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
}

.pricing-card {
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.card-glass {
  background: rgba(255, 255, 255, 0.02);
}

.card-featured {
  background: rgba(0, 255, 102, 0.02);
  border-color: rgba(0, 255, 102, 0.2);
}

.card-featured:hover {
  border-color: var(--green);
  box-shadow: 0 0 40px rgba(0, 255, 102, 0.05);
}

.pc-head {
  margin-bottom: 24px;
  width: 100%;
}

.pc-tier {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-bottom: 8px;
}

.pc-price {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
}

.pc-unit {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0;
}

.pc-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 32px 0;
  flex-grow: 1;
}

.pc-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pc-features li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pc-features li::before {
  content: "→";
  color: var(--green);
  font-weight: bold;
}

.pricing-card .btn-p,
.pricing-card .btn-s {
  width: 100%;
  text-align: center;
}

/* THE TARGET DETAILS SECTION (DARK THEME OVERRIDES) */
.therapy-target {
  padding: 0;
}

.therapy-target .diff-block {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.therapy-target .diff-h {
  color: var(--white);
  max-width: 800px;
}

.therapy-target .diff-items {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.therapy-target .diff-item {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.therapy-target .diff-item:last-child {
  border-right: none;
}

.therapy-target .di-before {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.05em;
}

.therapy-target .di-after {
  color: var(--white);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  margin-top: 8px;
}

/* THERAPY FINAL CTA (CENTRAL ALIGNMENT ISOLATION) */
.therapy-final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 100px var(--pad);
  max-width: 900px;
  margin: 0 auto;
  gap: 20px;
}

.therapy-final-cta .cta-tag {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0;
}

.therapy-final-cta .cta-h {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 0 0 8px 0;
  max-width: 800px;
}

.therapy-final-cta .cta-sub {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 12px 0;
  max-width: 600px;
}

.therapy-cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.therapy-cta-btns .btn-p,
.therapy-cta-btns .btn-s {
  margin: 0 !important;
}

/* FEATURED BLOCK ON THE GENERAL WORKSHOPS HUB */
.builders-therapy-featured {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 48px;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.builders-therapy-featured:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 255, 102, 0.2);
}

.builders-therapy-featured .therapy-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(0, 255, 102, 0.08);
  filter: blur(80px);
  top: -50px;
  left: -50px;
  pointer-events: none;
  border-radius: 50%;
}

.builders-therapy-featured .project-thumb {
  width: 100%;
  aspect-ratio: auto !important; /* Prevent 16/9 aspect-ratio crop */
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.builders-therapy-featured .thumb-img {
  width: 100%;
  height: auto !important; /* Prevent 100% height stretching */
  object-fit: contain !important; /* Ensure full image is drawn */
  display: block;
}

.builders-therapy-featured .project-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 0;
  border-top: none;
}

.builders-therapy-featured .project-cat {
  color: var(--green);
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.15em;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 12px;
  background: rgba(0, 255, 102, 0.06);
  padding: 4px 8px;
  border: 1px solid rgba(0, 255, 102, 0.15);
  border-radius: 2px;
  width: fit-content;
}

.builders-therapy-featured .project-name {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.builders-therapy-featured .project-desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 520px;
}

.builders-therapy-featured .bt-action-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
═══════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-right {
    display: none;
  }

  .work-grid {
    grid-template-columns: 1fr 1fr;
  }

  .work-grid .project-card:nth-child(1),
  .work-grid .project-card:nth-child(4) {
    grid-column: span 2;
  }

  .work-grid .project-card:nth-child(5),
  .work-grid .project-card:nth-child(6) {
    grid-column: span 1;
  }

  .work-grid .project-card:nth-child(1) .project-thumb,
  .work-grid .project-card:nth-child(4) .project-thumb {
    aspect-ratio: 16/9;
  }

  .services-row {
    grid-template-columns: 1fr 1fr;
  }

  .svc:not(:last-child) {
    padding-right: 20px;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
  }

  .svc:not(:first-child) {
    padding-left: 20px;
  }

  .svc:nth-child(n + 3) {
    margin-top: 24px;
    padding-left: 0;
    border-right: none;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 24px;
  }

  .diff-items {
    flex-direction: column;
    gap: 0;
  }

  .diff-item {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-left: 0 !important;
    padding-right: 0;
  }

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

  .clients-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .proc-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .proc-connector {
    display: none;
  }

  .work-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .work-sub {
    text-align: left;
  }

  .services-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .services-top-sub {
    text-align: left;
  }

  .case-overview {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .case-outcome-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .case-visual-2col {
    grid-template-columns: 1fr;
  }

  .booking-choice {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 32px auto;
  }

  .booking-option-card {
    padding: 24px;
    min-height: auto;
  }

  .booking-divider {
    padding: 12px 0;
    width: 100%;
    height: auto;
  }

  .booking-divider::before {
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .booking-divider span {
    padding: 6px 10px;
    font-size: 11px;
  }

  .therapy-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px var(--pad);
    text-align: left;
  }

  .therapy-hero-left {
    align-items: flex-start;
  }

  .therapy-lead {
    margin: 0 0 32px 0;
  }

  .therapy-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .therapy-actions .btn-p,
  .therapy-actions .btn-s {
    width: 100%;
    text-align: center;
  }

  .shift-card {
    padding: 32px 24px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-card {
    padding: 32px;
  }

  .therapy-cta-btns {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .therapy-cta-btns .btn-p,
  .therapy-cta-btns .btn-s {
    width: 100%;
    text-align: center;
  }

  .therapy-target .diff-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 0 !important;
    padding-right: 0;
  }

  .therapy-target .diff-item:last-child {
    border-bottom: none;
  }

  .case-nav-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .case-nav-item {
    padding: 18px;
  }

  .case-nav-item .cni-arrow {
    margin-top: 12px;
  }

  .research-grid,
  .workshop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .system-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .builders-therapy-featured {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
    margin-bottom: 40px;
  }
  
  .builders-therapy-featured .bt-action-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  
  .builders-therapy-featured .bt-action-row .btn-p {
    width: 100%;
    text-align: center;
  }
  
  .builders-therapy-featured .bt-action-row span {
    text-align: center;
  }

  nav {
    padding: 16px var(--pad);
  }

  .nav-right {
    gap: 12px;
  }

  body {
    padding-top: 64px;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hamburger {
    display: flex;
    z-index: 201;
  }

  .nav-links {
    position: fixed;
    inset: 60px 0 0;
    left: 0;
    right: 0;
    width: 100vw;
    max-width: none;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.98);
    mix-blend-mode: normal;
    isolation: isolate;
    flex-direction: column;
    padding: 20px 18px 32px;
    display: none;
    gap: 16px;
    z-index: 9999;
    overflow-y: auto;
    min-height: calc(100vh - 60px);
    backface-visibility: hidden;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    padding: 16px 0;
    font-size: 16px;
    display: block;
    width: 100%;
  }

  .nav-btn-therapy {
    display: none !important;
  }

  .mobile-nav-therapy-item {
    display: block !important;
    margin-top: 24px;
    width: 100%;
  }

  .nav-btn-therapy-mobile {
    display: block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    background: transparent;
    color: var(--green) !important;
    border: 1px solid var(--green);
    padding: 14px 20px !important;
    font-size: 14px !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    border-radius: 0;
    text-decoration: none;
  }

  .nav-btn-therapy-mobile:hover,
  .nav-btn-therapy-mobile:active {
    background: var(--green);
    color: var(--black) !important;
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.4);
  }

  .intake-form {
    display: grid;
    gap: 18px;
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }

  .intake-form > div {
    width: 100%;
  }

  .intake-form label {
    display: block;
    font-size: 13px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.85);
  }

  .intake-form input,
  .intake-form textarea,
  .intake-form select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
    border-radius: 0;
    font-size: 14px;
    font-family: var(--sans);
  }

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

  .intake-submit {
    display: inline-block;
    padding: 14px 24px;
    background: var(--green);
    color: var(--black);
    border: none;
    cursor: pointer;
    font-weight: 600;
  }

  #hero {
    padding: 64px var(--pad) clamp(40px, 6vw, 60px);
    min-height: auto;
  }

  .hero-inner {
    gap: 24px;
  }

  .hero-h1 {
    font-size: clamp(28px, 6vw, 40px);
  }

  .hero-sub {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .hero-btns {
    flex-wrap: wrap;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-grid .project-card:nth-child(1),
  .work-grid .project-card:nth-child(4),
  .work-grid .project-card:nth-child(5),
  .work-grid .project-card:nth-child(6) {
    grid-column: span 1;
  }

  .project-thumb {
    aspect-ratio: 4/3;
  }

  .services-row {
    grid-template-columns: 1fr;
  }

  .svc {
    padding: 24px 0;
  }

  .svc:not(:last-child) {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 24px;
  }

  .svc:not(:first-child) {
    padding-left: 0;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }

  .svc:nth-child(n + 3) {
    margin-top: 0;
  }

  .section-panel {
    padding: 24px;
  }

  .preview-card {
    padding: 24px;
  }

  .research-grid,
  .workshop-grid {
    grid-template-columns: 1fr;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .system-grid {
    grid-template-columns: 1fr;
  }

  .case-nav {
    padding: 24px var(--pad);
  }

  .case-nav-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .final-cta {
    gap: 16px;
    padding: clamp(40px, 6vw, 60px) var(--pad);
  }

  .final-cta h2 {
    font-size: clamp(24px, 5vw, 32px);
  }

  .contact-form {
    max-width: 100%;
  }

  .page-main {
    padding: clamp(40px, 5vw, 80px) var(--pad);
    gap: 40px;
  }

  .section-headline h2 {
    font-size: clamp(28px, 6vw, 32px);
  }

  .case-hero {
    padding: 80px var(--pad) 0;
  }

  .case-title {
    font-size: clamp(28px, 6vw, 42px);
  }
}

@media (max-width: 480px) {
  :root {
    --pad: 16px;
  }

  nav {
    padding: 12px var(--pad);
  }

  body {
    padding-top: 56px;
  }

  .nav-wordmark {
    font-size: 14px;
  }

  .nav-cta {
    padding: 6px 14px;
    font-size: 12px;
  }

  .nav-btn-therapy {
    padding: 5px 13px;
    font-size: 12px;
    margin-right: 8px;
  }

  /* Ensure header logo stays visible above content */
  .site-header .nav-logo,
  .nav-logo {
    z-index: 220;
    position: relative;
  }

  #hero {
    padding: 68px var(--pad) 30px;
  }

  .hero-h1 {
    font-size: clamp(24px, 7vw, 36px);
  }

  .hero-sub {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .hero-num {
    font-size: 28px;
  }

  /* Intake form styles */
  .intake-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 100%;
    margin-top: 20px;
  }

  .intake-form .full {
    grid-column: 1 / -1;
  }

  .intake-form label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.85);
  }

  .intake-form input,
  .intake-form textarea,
  .intake-form select {
    width: 100%;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--white);
    border-radius: 0;
    font-size: 14px;
  }

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

  .intake-submit {
    display: inline-block;
    padding: 12px 22px;
    background: var(--green);
    color: var(--black);
    border-radius: 0;
    border: none;
    cursor: pointer;
    font-weight: 600;
  }

  .marquee-bar {
    padding: 8px 0;
  }

  .mq-item {
    height: 24px;
    margin: 0 16px;
  }

  .work-header {
    padding: 40px var(--pad) 24px;
  }

  .work-h2 {
    font-size: 20px;
  }

  .project-info {
    padding: 16px 12px 12px;
  }

  .project-name {
    font-size: 16px;
  }

  .project-desc {
    font-size: 12px;
  }

  .btn-p,
  .btn-s,
  .btn-primary,
  .btn-secondary {
    padding: 12px 20px;
    font-size: 13px;
  }

  .cta-h {
    font-size: clamp(28px, 6vw, 36px);
  }

  .case-title {
    font-size: clamp(24px, 7vw, 36px);
  }

  .form-group {
    margin-bottom: 16px;
  }

  .form-group label {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 10px 12px;
    font-size: 14px;
  }

  .form-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

/* ─── BUILDER'S THERAPY CUSTOM INTAKE MODAL ─── */
.therapy-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.therapy-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.therapy-modal {
  position: relative;
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  background: #080808;
  border: 1px solid rgba(0, 255, 102, 0.18);
  box-shadow: 0 24px 64px rgba(0, 255, 102, 0.08);
  padding: 40px;
  box-sizing: border-box;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.therapy-modal-overlay.active .therapy-modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
  padding: 4px;
}

.modal-close:hover {
  color: var(--green);
  transform: scale(1.1);
}

.modal-title {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  color: var(--white);
}

.modal-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
  line-height: 1.5;
}

.therapy-modal .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.therapy-modal label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.8);
}

.therapy-modal input,
.therapy-modal select,
.therapy-modal textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-radius: 0;
  font-size: 14px;
  font-family: var(--sans);
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.therapy-modal input:focus,
.therapy-modal select:focus,
.therapy-modal textarea:focus {
  outline: none;
  border-color: var(--green);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 10px rgba(0, 255, 102, 0.15);
}

.therapy-modal select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.7)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.therapy-modal textarea {
  min-height: 100px;
  resize: vertical;
  margin-bottom: 20px;
}

.therapy-modal .full {
  width: 100%;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
}

.modal-price-display {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

#modalPriceAmount {
  font-size: 26px;
  font-weight: 700;
  margin-left: 6px;
  vertical-align: middle;
}

.modal-submit-btn {
  padding: 14px 28px;
  background: var(--green);
  color: var(--black);
  border: none;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.modal-submit-btn:hover {
  background: #00e65c;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 255, 102, 0.25);
}

.modal-submit-btn:active {
  transform: translateY(0);
}

/* SUCCESS ANIMATION DETAILS */
.success-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px auto;
}

.success-checkmark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: block;
  stroke-width: 2.5;
  stroke: var(--green);
  stroke-miterlimit: 10;
}

.success-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2.5;
  stroke-miterlimit: 10;
  stroke: var(--green);
  fill: none;
  animation: stroke-circle-anim 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke: var(--green);
  fill: none;
  animation: stroke-check-anim 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.5s forwards;
}

@keyframes stroke-circle-anim {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes stroke-check-anim {
  100% {
    stroke-dashoffset: 0;
  }
}

.success-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.success-message {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  margin: 0 auto 24px auto;
  line-height: 1.6;
}

.receipt-box {
  background: rgba(0, 255, 102, 0.04);
  border: 1px dashed rgba(0, 255, 102, 0.25);
  padding: 16px 20px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  margin: 12px 0;
}

.receipt-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
}

.receipt-code {
  font-family: monospace;
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.5px;
}

/* RESPONSIVE MODAL MEDIA QUERIES */
@media (max-width: 768px) {
  .therapy-modal {
    padding: 30px 20px;
  }
  .therapy-modal .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }
  .modal-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    text-align: center;
  }
  .modal-submit-btn {
    width: 100%;
  }
}

/* ─── WEB3 CRYPTO PAYMENT COMPONENT STYLES ─── */
.payment-method-selector {
  margin-top: 24px;
  width: 100%;
}

.payment-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}

.pay-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.pay-tab svg {
  transition: stroke 0.25s;
}

.pay-tab:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

.pay-tab.active {
  background: rgba(0, 255, 102, 0.04);
  border-color: var(--green);
  color: var(--green);
  font-weight: 600;
  box-shadow: 0 0 16px rgba(0, 255, 102, 0.05);
}

.pay-tab.active svg {
  stroke: var(--green);
}

/* Crypto Grid */
.crypto-chain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 10px;
}

.crypto-chain-option {
  display: flex;
  align-items: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.crypto-chain-option:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.crypto-chain-option.active {
  background: rgba(0, 255, 102, 0.03);
  border-color: var(--green);
  box-shadow: 0 0 16px rgba(0, 255, 102, 0.04);
}

/* Gradient Badge Icons */
.chain-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  margin-right: 14px;
  flex-shrink: 0;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.chain-logo-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
  transition: transform 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.crypto-chain-option:hover .chain-logo-img {
  transform: scale(1.1);
}

.chain-badge-icon.solana {
  background: linear-gradient(135deg, #9945FF, #14F195);
}

.chain-badge-icon.polygon {
  background: linear-gradient(135deg, #8247E5, #A275E9);
}

.chain-badge-icon.arbitrum {
  background: linear-gradient(135deg, #28A0F0, #0076c5);
}

.chain-badge-icon.ethereum {
  background: linear-gradient(135deg, #627EEA, #3C3C3D);
}

.chain-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.chain-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.chain-asset {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

/* Wallet Connection Panel */
.wallet-panel {
  margin-top: 20px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 16px;
  text-align: center;
  box-sizing: border-box;
}

.wallet-status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.wallet-status-lbl {
  color: rgba(255, 255, 255, 0.5);
}

.wallet-status-val {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: 2px;
}

.wallet-status-val.status-disconnected {
  color: #ff3b30;
  background: rgba(255, 59, 48, 0.1);
}

.wallet-status-val.status-connected {
  color: var(--green);
  background: rgba(0, 255, 102, 0.1);
  position: relative;
  padding-left: 16px;
}

.wallet-status-val.status-connected::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0% { transform: translateY(-50%) scale(0.9); opacity: 1; }
  50% { transform: translateY(-50%) scale(1.3); opacity: 0.4; }
  100% { transform: translateY(-50%) scale(0.9); opacity: 1; }
}

.btn-wallet-connect {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid var(--green);
  color: var(--green);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-wallet-connect:hover {
  background: rgba(0, 255, 102, 0.08);
  box-shadow: 0 0 12px rgba(0, 255, 102, 0.15);
}

.wallet-address-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  background: rgba(255, 255, 255, 0.02);
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.wallet-addr-label {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  text-transform: uppercase;
}

.wallet-address-display code {
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Fallback panel */
.crypto-fallback-panel {
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 14px;
}

.fallback-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
  margin-bottom: 12px;
  text-align: center;
}

.fallback-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.btn-fallback-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
}

.btn-fallback-link:hover {
  background: var(--white);
  color: var(--black);
}

.btn-copy-address {
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-copy-address:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

@media (max-width: 480px) {
  .crypto-chain-grid {
    grid-template-columns: 1fr;
  }
  .fallback-actions {
    grid-template-columns: 1fr;
  }
}

/* ─── FEATURED WORK LAYOUT ─── */
#work .work-grid .project-card {
  grid-column: span 2;
}

#work .work-grid .project-card .project-thumb {
  aspect-ratio: 21/9;
}

@media (max-width: 768px) {
  #work .work-grid .project-card .project-thumb {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 480px) {
  #work .work-grid .project-card {
    grid-column: span 1;
  }
  #work .work-grid .project-card .project-thumb {
    aspect-ratio: 4/3;
  }
}

/* ─── CUSTOM CASE STUDY - ARCFUNMI EDITORIAL DESIGN ─── */
.case-editorial-block {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.case-editorial-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 32px;
}

.case-lead-p {
  font-family: "Editorial New", var(--sans);
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.4;
  color: var(--black);
  margin-bottom: 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.case-editorial-p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
}

.case-pullquote {
  font-family: "Editorial New", Georgia, serif;
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.35;
  color: var(--black);
  font-style: italic;
  padding: 40px 0;
  margin: 40px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
  letter-spacing: -0.01em;
}

.case-qa-block {
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 32px;
  margin: 32px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.case-qa-item {
  font-family: "Editorial New", var(--sans);
  font-size: 20px;
  color: var(--black);
  font-weight: 500;
  font-style: italic;
  line-height: 1.3;
}

.case-qa-item::before {
  content: "? ";
  font-family: var(--mono);
  font-size: 14px;
  color: #aaa;
  margin-right: 12px;
  font-style: normal;
}

/* Pillars grid */
.case-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.case-pillar-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.case-pillar-num {
  font-family: var(--mono);
  font-size: 12px;
  color: #bbb;
  letter-spacing: 0.1em;
}

.case-pillar-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
}

.case-pillar-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .case-pillars-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Decisions grid */
.case-design-decisions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

.case-decision-item {
  border-left: 2px solid var(--black);
  padding-left: 24px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  align-items: start;
}

.case-decision-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
  padding-top: 2px;
}

.case-decision-content {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .case-decision-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-left: 16px;
  }
}

/* Outcomes Banner */
.case-outcomes-banner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  background: var(--black);
  color: var(--white);
  padding: 60px 40px;
  margin: 40px 0;
  text-align: center;
}

.case-outcome-stat {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.case-outcome-num {
  font-family: "Editorial New", var(--sans);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.02em;
}

.case-outcome-label {
  font-size: 12px;
  color: #888;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .case-outcomes-banner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px;
  }
}

.case-reflection-container {
  background: #fafafa;
  padding: 40px;
  border-left: 4px solid var(--black);
}

.case-reflection-p {
  font-family: "Editorial New", var(--sans);
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 16px;
}



