/* =========================================
   CSS VARIABLES — SOLACE BRAND
   ========================================= */
:root {
  --navy: #093B5F;
  --navy-deep: #03213B;
  --navy-mid: #273749;
  --green: #00C895;
  --green-light: #ABFF88;
  --green-tint: rgba(199, 255, 203, 0.15);
  --green-tint-strong: rgba(199, 255, 203, 0.3);
  --teal: #14A5A7;
  --white: #FFFFFF;
  --off-white: #F7F8F9;
  --text-secondary: #5A7A8A;
  --border-light: rgba(9, 59, 95, 0.08);

  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

/* =========================================
   BACKGROUND TEXTURE
   ========================================= */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, var(--green-tint) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 85% 80%, var(--green-tint) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* =========================================
   SCREEN SYSTEM — Each "step" is a full screen
   ========================================= */
.screen {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition:
    opacity 0.6s var(--ease-out-expo),
    transform 0.6s var(--ease-out-expo),
    visibility 0.6s;
  z-index: 1;
  overflow-y: auto;
}

.screen.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.screen.exiting {
  opacity: 0;
  transform: translateY(-20px);
}

/* =========================================
   NAV BAR
   ========================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.nav.visible {
  opacity: 1;
  transform: translateY(0);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 22px;
  width: auto;
}

.nav-logo span {
  background: linear-gradient(90deg, var(--green-light), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-back {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  opacity: 0;
  pointer-events: none;
}

.nav-back.visible {
  opacity: 1;
  pointer-events: auto;
}

.nav-back:hover {
  color: var(--navy);
  background: var(--green-tint);
}

.nav-back svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.nav-back:hover svg {
  transform: translateX(-2px);
}

/* Breadcrumb trail */
.nav-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-breadcrumb.visible {
  opacity: 1;
  pointer-events: auto;
}

.nav-breadcrumb .crumb {
  cursor: pointer;
  transition: color 0.2s ease;
}

.nav-breadcrumb .crumb:hover {
  color: var(--navy);
}

.nav-breadcrumb .separator {
  opacity: 0.3;
  font-size: 0.7rem;
}

.nav-breadcrumb .crumb.current {
  color: var(--navy);
  font-weight: 600;
}

/* =========================================
   WELCOME SCREEN
   ========================================= */
.welcome-content {
  text-align: center;
  max-width: 680px;
}

.welcome-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.6s var(--ease-out-expo) 0.2s forwards;
}

.welcome-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeUp 0.7s var(--ease-out-expo) 0.35s forwards;
}

.welcome-title em {
  font-style: italic;
  background: linear-gradient(90deg, var(--green-light), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.welcome-subtitle {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.7s var(--ease-out-expo) 0.5s forwards;
}

.welcome-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(101deg, var(--green-light) 1%, var(--green) 105%);
  color: var(--navy-deep);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  box-shadow: 0 4px 20px rgba(0, 200, 149, 0.25);
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.7s var(--ease-out-expo) 0.65s forwards;
}

.welcome-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 200, 149, 0.35);
}

.welcome-cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.welcome-cta:hover svg {
  transform: translateX(3px);
}

/* =========================================
   SELECTION SCREENS (Role & Industry)
   ========================================= */
.selection-screen {
  justify-content: flex-start;
  padding-top: 6rem;
}

.selection-header {
  text-align: center;
  max-width: 600px;
  margin-bottom: 3rem;
}

.selection-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.selection-header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Card grid */
.card-grid {
  display: grid;
  gap: 1rem;
  width: 100%;
  max-width: 960px;
  padding-bottom: 3rem;
}

.card-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Individual card */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.35s var(--ease-out-expo);
  overflow: hidden;
  opacity: 0;
  transform: translateY(15px);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-light), var(--green));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  border-color: rgba(0, 200, 149, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(9, 59, 95, 0.08), 0 2px 8px rgba(0, 200, 149, 0.06);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--green-tint);
  margin-bottom: 1.25rem;
  transition: background 0.3s ease;
}

.card:hover .card-icon {
  background: var(--green-tint-strong);
}

.card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--green);
}

.card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.card p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.55;
  flex-grow: 1;
}

.card-arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s var(--ease-out-expo);
}

.card:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
}

.card-arrow svg {
  width: 14px;
  height: 14px;
  color: var(--green);
}

/* Card stagger animation */
.card.animate {
  animation: cardIn 0.5s var(--ease-out-expo) forwards;
}

/* Industry cards — more compact for larger grid */
.industry-grid {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1080px;
}

.industry-grid .card {
  padding: 1.5rem;
}

.industry-grid .card-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.industry-grid .card-icon svg {
  width: 20px;
  height: 20px;
}

.industry-grid .card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.industry-grid .card p {
  font-size: 0.8rem;
}

/* Divider for "Other" option */
.grid-divider {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
  opacity: 0;
  animation: fadeUp 0.5s var(--ease-out-expo) 0.8s forwards;
}

.grid-divider::before,
.grid-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-light);
}

.grid-divider span {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
  white-space: nowrap;
}

/* "Just exploring" card — full width, compact */
.card-explore {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  background: var(--off-white);
  border: 1px dashed rgba(9, 59, 95, 0.12);
}

.card-explore .card-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.card-explore .card-text {
  flex: 1;
}

.card-explore h3 {
  margin-bottom: 0.15rem;
}

/* =========================================
   PERSONALISED RESULT SCREEN
   ========================================= */
.result-screen {
  justify-content: flex-start;
  padding-top: 5.5rem;
  align-items: stretch;
}

.result-container {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

/* Hero section of result */
.result-hero {
  text-align: center;
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 3rem;
}

.result-hero .tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  background: var(--green-tint);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.result-hero .tag svg {
  width: 14px;
  height: 14px;
  color: var(--green);
}

.result-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.result-hero h1 em {
  font-style: italic;
  color: var(--green);
}

.result-hero p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Section headings */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

/* Story cards */
.stories-section {
  margin-bottom: 3.5rem;
}

.story-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.story-card:hover {
  border-color: rgba(0, 200, 149, 0.2);
  box-shadow: 0 4px 20px rgba(9, 59, 95, 0.05);
}

.story-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.story-subsector {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green);
  background: rgba(0, 200, 149, 0.08);
  padding: 3px 10px;
  border-radius: 12px;
  letter-spacing: 0.02em;
  align-self: flex-start;
}

.story-headline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.4;
}

.story-outcome {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.story-expand {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  transition: gap 0.2s ease;
  margin-top: 0.5rem;
}

.story-expand:hover {
  gap: 0.6rem;
}

.story-expand svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.story-expand.open svg {
  transform: rotate(180deg);
}

.story-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo), padding 0.3s ease;
}

.story-detail.open {
  max-height: 500px;
  padding-top: 0.75rem;
}

.story-detail-inner {
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-light);
}

.story-detail-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-light);
}

/* Value props */
.values-section {
  margin-bottom: 3.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.value-card {
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.value-card:hover {
  background: var(--green-tint);
}

.value-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Explore links */
.explore-section {
  margin-bottom: 3.5rem;
}

.explore-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.explore-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  text-decoration: none;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.25s ease;
}

.explore-link:hover {
  border-color: rgba(0, 200, 149, 0.3);
  background: var(--green-tint);
  transform: translateX(4px);
}

.explore-link svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex-shrink: 0;
}

.explore-link .arrow {
  margin-left: auto;
  color: var(--text-secondary);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.explore-link:hover .arrow {
  opacity: 1;
}

/* CTA section */
.cta-section {
  text-align: center;
  padding: 3.5rem 2rem;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  border-radius: 20px;
  margin-top: 1rem;
}

.cta-section h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-section h3 em {
  font-style: italic;
  color: var(--green);
}

.cta-section p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: linear-gradient(101deg, var(--green-light) 1%, var(--green) 105%);
  color: var(--navy-deep);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 60px;
  transition: all 0.3s var(--ease-out-expo);
  box-shadow: 0 4px 20px rgba(0, 200, 149, 0.3);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 200, 149, 0.4);
}

.cta-secondary {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.cta-secondary:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
  .card-grid.cols-2,
  .card-grid.cols-4,
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .card-grid.cols-2,
  .card-grid.cols-3,
  .card-grid.cols-4,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    padding: 1rem 1.25rem;
  }

  .screen {
    padding: 1.25rem;
  }

  .selection-screen {
    padding-top: 5rem;
  }

  .result-container {
    padding: 0 1rem 3rem;
  }

  .card-explore {
    flex-direction: column;
    text-align: center;
  }
}

/* =========================================
   PLACEHOLDER SHIMMER (for Phase 1)
   ========================================= */
.placeholder {
  background: linear-gradient(90deg, var(--off-white) 25%, var(--green-tint) 50%, var(--off-white) 75%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
  border-radius: 6px;
  min-height: 1em;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
/* ---- Architecture Diagram ---- */
.arch-section{margin-bottom:64px}
.arch-desc{font-size:14px;color:var(--grey-600);margin-bottom:20px;line-height:1.6;margin-top:-16px}
.arch-container{background:rgba(0,200,149,0.04);border:1.5px solid rgba(0,200,149,0.15);border-radius:var(--radius);padding:28px}
.arch-mesh-label{font-size:10px;font-weight:600;text-transform:uppercase;letter-spacing:0.12em;color:var(--green);text-align:center;margin-bottom:16px;opacity:0.7}
.arch-grid{display:grid;grid-template-columns:1fr 40px 1fr;gap:0;align-items:stretch}
.col-box{border:1px solid var(--grey-200);border-radius:var(--radius);padding:18px 14px 14px;background:var(--white)}
.col-label{font-size:10px;font-weight:600;text-transform:uppercase;letter-spacing:0.1em;color:var(--grey-400);margin-bottom:12px;padding:0 4px}
.col-nodes{display:flex;flex-direction:column;gap:8px}
.sys-node{padding:12px 14px;border-radius:var(--radius-sm);border:1px solid var(--grey-200);background:var(--white);cursor:pointer;transition:all 0.15s}
.sys-node:hover{border-color:rgba(0,200,149,0.4);background:rgba(0,200,149,0.03)}
.sys-node.on{border-color:var(--green);box-shadow:0 0 0 2px rgba(0,200,149,0.1)}
.sys-node .sn-name{font-size:13px;font-weight:600;color:var(--navy)}
.sys-node .sn-proto{font-size:10px;color:var(--grey-400);margin-top:3px}
.sys-node .sn-flows{font-size:9px;color:var(--grey-400);margin-top:3px;letter-spacing:0.02em}
.left-col .sys-node{text-align:right}
.right-col .sys-node{text-align:left}
.mesh-gutter{display:flex;flex-direction:column;align-items:center;justify-content:center;position:relative}
.mesh-gutter::after{content:'';position:absolute;top:20px;bottom:20px;width:0;border-left:1px dashed rgba(0,200,149,0.3)}
.detail-panel{margin-top:16px;background:var(--white);border:1px solid var(--grey-200);border-radius:var(--radius);overflow:hidden;transition:max-height 0.3s ease,opacity 0.25s ease,padding 0.3s ease;max-height:0;opacity:0;padding:0 18px}
.detail-panel.open{max-height:200px;opacity:1;padding:16px 18px;border-color:rgba(0,200,149,0.25)}
.dp-title{font-size:14px;font-weight:600;color:var(--navy);margin-bottom:6px}
.dp-flow{font-size:11px;color:var(--green);font-weight:600;line-height:1.4;margin-bottom:8px}
.dp-desc{font-size:13px;color:var(--grey-600);line-height:1.55}
.deploy-section{margin-top:18px;padding-top:14px;border-top:1px solid rgba(0,200,149,0.12)}
.deploy-row{display:flex;gap:8px}
.deploy-tag{flex:1;text-align:center;padding:10px 8px;border-radius:var(--radius-sm);background:var(--white);border:1px solid var(--grey-200);cursor:pointer;transition:all 0.15s;font-size:11px;color:var(--grey-600)}
.deploy-tag:hover{border-color:rgba(0,200,149,0.3)}
.deploy-tag.on{border-color:var(--green);box-shadow:0 0 0 2px rgba(0,200,149,0.1)}
.deploy-tag .dt-label{font-weight:600;color:var(--navy);font-size:11px}
.deploy-tag .dt-sub{font-size:9px;color:var(--grey-400);margin-top:2px}
.deploy-footnote{font-size:10px;color:var(--grey-400);text-align:center;margin-top:10px}
.deploy-footnote span{color:var(--green);font-weight:600}

/* ---- Logo Bar ---- */
.logo-section{margin-bottom:64px}
.logo-band{background:var(--white);border:1px solid var(--grey-200);border-radius:var(--radius);padding:24px 32px;display:flex;align-items:center;justify-content:center;gap:40px;flex-wrap:wrap}
.logo-item{display:flex;flex-direction:column;align-items:center;gap:8px;text-decoration:none;transition:transform 0.2s,opacity 0.2s;opacity:0.8}
.logo-item:hover{transform:translateY(-2px);opacity:1}
.logo-mark{width:110px;height:48px;display:flex;align-items:center;justify-content:center;font-weight:600;color:var(--navy);letter-spacing:-0.02em}
.logo-link{font-size:11px;color:var(--grey-400);transition:color 0.2s}
.logo-item:hover .logo-link{color:var(--green)}
.logo-count{font-size:13px;color:var(--grey-400);margin-top:12px;text-align:center}

/* Mobile adjustments for new sections */
@media(max-width:640px){
  .arch-grid{grid-template-columns:1fr;gap:12px}
  .left-col .sys-node,.right-col .sys-node{text-align:left}
  .mesh-gutter{display:none}
  .deploy-row{flex-direction:column}
  .logo-band{gap:24px;padding:20px}
  .logo-mark{width:90px;height:40px}
}

/* ---- Explore Links: Coming Soon ---- */
.explore-link-soon{pointer-events:none;opacity:0.45;cursor:default;position:relative}
.explore-link-soon svg{color:var(--grey-400)}
.soon-badge{margin-left:auto;font-size:10px;font-weight:600;text-transform:uppercase;letter-spacing:0.08em;color:var(--grey-400);background:var(--grey-200);padding:3px 10px;border-radius:100px;flex-shrink:0}
