/* / */
/* Homepage-specific */
  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  @media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 32px; } }

  .hero-visual {
    position: relative;
    aspect-ratio: 5/4;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background:
      radial-gradient(ellipse 50% 45% at 22% 26%, rgba(85, 194, 94, 0.40), transparent 65%),
      radial-gradient(ellipse 80% 80% at 50% 50%, #0c1a13 0%, #06100a 70%);
    border: 1px solid color-mix(in oklab, var(--primary) 20%, var(--border));
  }
  .hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      linear-gradient(to right, transparent 55%, #06100a 100%),
      linear-gradient(to bottom, transparent 55%, #06100a 100%);
  }
  [data-theme="light"] .hero-visual::after {
    background:
      linear-gradient(to right, transparent 55%, var(--bg) 100%),
      linear-gradient(to bottom, transparent 55%, var(--bg) 100%);
  }
  [data-theme="light"] .hero-visual {
    background:
      radial-gradient(ellipse 50% 45% at 22% 26%, rgba(85, 194, 94, 0.30), transparent 65%),
      var(--bg);
    border-color: color-mix(in oklab, var(--primary-strong) 25%, var(--border));
  }
  .hero-visual img {
    position: absolute;
    top: 14%;
    left: 14%;
    width: 96%;
    height: auto;
    border-radius: 10px 0 0 0;
    box-shadow:
      0 0 0 1px rgba(85, 194, 94, 0.20),
      -14px -14px 50px rgba(85, 194, 94, 0.26),
      0 36px 70px rgba(0, 0, 0, 0.65);
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.6s cubic-bezier(.2,.7,.2,1);
  }
  .hero-visual img.is-active { opacity: 1; }
  .hero-visual:hover img.is-active { transform: translate(-8px, -8px); }
  [data-theme="light"] .hero-visual img {
    box-shadow:
      0 0 0 1px rgba(85, 194, 94, 0.22),
      -12px -12px 48px rgba(85, 194, 94, 0.20),
      0 28px 56px rgba(20, 40, 22, 0.22);
  }
  /* Carousel controls */
  .hero-visual .carousel-controls {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(6, 16, 10, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(85, 194, 94, 0.22);
    z-index: 2;
  }
  .hero-visual .carousel-controls button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.55);
    font: inherit;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
  }
  .hero-visual .carousel-controls button::before {
    content: none;
  }
  .hero-visual .carousel-controls button i {
    font-size: 13px;
    opacity: 0.85;
  }
  .hero-visual .carousel-controls button:hover { color: rgba(255, 255, 255, 0.85); }
  .hero-visual .carousel-controls button.is-active {
    color: #fff;
    background: rgba(85, 194, 94, 0.22);
  }
  .hero-visual .carousel-controls button.is-active::before {
    content: none;
  }
  .hero-visual .carousel-controls button.is-active i {
    opacity: 1;
    color: var(--primary);
    text-shadow: 0 0 10px rgba(85, 194, 94, 0.6);
  }

  /* HERO B - editorial single column */
  .hero-b {
    text-align: center;
    padding: 96px 0 32px;
  }
  .hero-b h1 { font-size: clamp(48px, 8vw, 96px); max-width: 14ch; margin: 24px auto 0; }
  .hero-b .lede { margin: 24px auto 0; text-align: center; }
  .hero-b .cta-row { justify-content: center; margin-top: 36px; }
  .hero-b .stamp-row {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
  }
  .hero-b .stamp { text-align: center; font-size: 13px; color: var(--muted); }
  .hero-b .stamp strong { display: block; color: var(--text); font-size: 22px; font-family: var(--font-sans); font-weight: 400; margin-bottom: 4px; }

  /* Pillars */
  .pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  .pillar {
    background: var(--surface);
    padding: 32px;
  }
  .pillar .num {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 24px;
  }
  .pillar h3 { margin-bottom: 12px; }
  .pillar p { color: var(--muted); font-size: 14.5px; }

  @media (max-width: 900px) {
    .pillars, .suite-grid { grid-template-columns: 1fr; }
    .hero-b .stamp-row { grid-template-columns: repeat(2, 1fr); }
  }

  /* Quote */
