
    :root {
      --bg-1: #0a1312;
      --bg-2: #08100f;
      --bg-3: #0d1917;
      --brand-lime: #cee444;
      --brand-mint: #68e9ca;
      --panel: rgba(255, 255, 255, 0.05);
      --panel-2: rgba(255, 255, 255, 0.035);
      --panel-border: rgba(255, 255, 255, 0.1);
      --text: #ffffff;
      --muted: #bfd0ca;
      --muted-2: #82959a;
      --gold: #ffd66a;
      --shadow: 0 24px 72px rgba(0, 0, 0, 0.28);
      --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
      --section-pad: clamp(88px, 11vw, 132px);
      --side-nav-w: 74px;
      --content-max: 1220px;
    }

    * { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--text);
      font-family: Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at 80% 12%, rgba(104, 233, 202, 0.12), transparent 0%, transparent 26%),
        radial-gradient(circle at 84% 16%, rgba(206, 228, 68, 0.08), transparent 0%, transparent 18%),
        linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 48%, var(--bg-3) 100%);
      overflow-x: hidden;
    }
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
      background-size: 46px 46px;
      opacity: 0.18;
      pointer-events: none;
    }
  a {
    color: #5fcdb6;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  a:hover {
    color: #84e0cd;
  }


    .site-header {
      position: absolute;
      top: 28px;
      left: 40px;
      z-index: 50;
    }

    .logo {
      height: 88px;
      width: auto;
    }

    .shell {
      position: relative;
      padding-left: calc(var(--side-nav-w) + 18px);
    }

    .side-nav {
      position: fixed;
      right: 18px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 60;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      padding: 10px 8px;
      border-radius: 999px;
      background: rgba(7, 22, 19, 0.28);
      border: 1px solid rgba(255,255,255,0.08);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: var(--shadow);
      overflow: visible;
    }
    .side-nav::before {
      content: "";
      position: absolute;
      top: 18px;
      bottom: 18px;
      left: 50%;
      width: 1px;
      transform: translateX(-50%);
      background: linear-gradient(to bottom, rgba(255,255,255,0.08), rgba(255,255,255,0.18), rgba(255,255,255,0.08));
      pointer-events: none;
    }

    .nav-dot {
      position: relative;
      z-index: 1;
      display: block;
      cursor: pointer;
      width: 14px;
      height: 14px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.30);
      background: rgba(255,255,255,0.18);
      transition:
        transform 220ms ease,
        background 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
    }
    .nav-dot:hover {
      transform: scale(1.12);
      background: rgba(255,255,255,0.34);
      border-color: rgba(255,255,255,0.55);
    }
    .nav-dot.active {
      background: linear-gradient(135deg, var(--brand-lime), var(--brand-mint));
      border-color: rgba(255,255,255,0.72);
      box-shadow: 0 0 0 4px rgba(206, 228, 68, 0.10), 0 0 22px rgba(104, 233, 202, 0.18);
      transform: scale(1.18);
    }
    .nav-dot::after { content: none; }
    .nav-label {
      position: absolute;
      right: 24px;
      top: 50%;
      transform: translateY(-50%) translateX(6px);
      opacity: 0;
      pointer-events: none;
      white-space: nowrap;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.02em;
      color: rgba(244, 250, 248, 0.92);
      background: rgba(8, 24, 21, 0.92);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 6px 9px;
      border-radius: 999px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.24);
      transition: opacity 180ms ease, transform 180ms ease;
    }
    .nav-dot.active .nav-label,
    .nav-dot:hover .nav-label,
    .nav-dot:focus-visible .nav-label {
      opacity: 1;
      transform: translateY(-50%) translateX(0);
    }
    .nav-dot:focus-visible {
      outline: none;
      box-shadow: 0 0 0 4px rgba(206, 228, 68, 0.14), 0 0 22px rgba(104, 233, 202, 0.16);
    }

    .section {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: var(--section-pad) 28px;
      position: relative;
    }

    .container {
      width: min(var(--content-max), 100%);
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      padding: 8px 12px;
      border-radius: 999px;
      border: 1px solid rgba(104, 233, 202, 0.24);
      background: rgba(104, 233, 202, 0.09);
      color: rgba(236, 250, 246, 0.92);
      font-size: 11px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      backdrop-filter: blur(12px);
      margin-bottom: 18px;
    }

    h1, h2, h3, p { margin: 0; }
    .eyebrow + h1,
    .eyebrow + h2 { margin-top: 0; }
    h1 {
      font-size: clamp(3rem, 7vw, 5.8rem);
      line-height: 0.96;
      letter-spacing: -0.05em;
      font-weight: 600;
      max-width: 11ch;
    }
    h2 {
      font-size: clamp(2rem, 4vw, 3.35rem);
      line-height: 1.02;
      letter-spacing: -0.04em;
      font-weight: 600;
      max-width: 18ch;
    }
    h3 {
      font-size: 1.2rem;
      line-height: 1.2;
      font-weight: 600;
      letter-spacing: -0.02em;
    }

    .lede, .body-copy, .muted {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.9;
    }
    .lede {
      margin-top: 22px;
      max-width: 54ch;
      font-size: 18px;
      line-height: 1.95;
      color: rgba(239, 246, 244, 0.9);
    }
    .body-copy { max-width: 64ch; }
    .muted { color: var(--muted-2); }

    .hero-grid,
    .solve-grid,
    .contact-grid,
    .team-grid,
    .pipeline-wrap,
    .problem-grid {
      display: grid;
      gap: 28px;
      align-items: center;
    }

    .hero-grid { grid-template-columns: 1.1fr 0.9fr; 
      padding-top: 24px; }
    .problem-grid { grid-template-columns: 0.9fr 1.1fr; }
    .solve-grid { grid-template-columns: 0.9fr 1.1fr; }
    .pipeline-wrap { grid-template-columns: 0.8fr 1.2fr; align-items: start; }
    .team-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }
    .contact-grid { grid-template-columns: 0.8fr 1.2fr; align-items: start; }

    .hero-orb {
      width: min(340px, 74vw);
      aspect-ratio: 1;
      margin-inline: auto;
      border-radius: 999px;
      position: relative;
      isolation: isolate;
      display: grid;
      place-items: center;
    }
    .hero-orb::before,
    .hero-orb::after {
      content: "";
      position: absolute;
      border-radius: inherit;
      pointer-events: none;
    }
    .hero-orb::before {
      inset: -16%;
      background:
        radial-gradient(circle at 38% 30%, rgba(206, 228, 68, 0.34), transparent 34%),
        radial-gradient(circle at 72% 68%, rgba(104, 233, 202, 0.30), transparent 38%),
        radial-gradient(circle at 50% 50%, rgba(255, 214, 106, 0.22), rgba(255, 214, 106, 0.08) 34%, transparent 68%);
      filter: blur(22px);
      opacity: 0.96;
      animation: heroAura 7.4s ease-in-out infinite;
    }
    .hero-orb::after {
      inset: -6%;
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: inset 0 0 38px rgba(255,255,255,0.04);
      animation: heroRing 6.4s ease-in-out infinite;
    }
    .hero-logo-wrap {
      position: relative;
      width: 62%;
      aspect-ratio: 1;
      display: grid;
      place-items: center;
      border-radius: 999px;
      background: radial-gradient(circle at 50% 45%, rgba(14, 31, 27, 0.88), rgba(9, 21, 18, 0.64) 64%, rgba(9, 21, 18, 0.16) 100%);
      box-shadow: 0 0 0 1px rgba(255,255,255,0.06), inset 0 0 24px rgba(255,255,255,0.05);
      backdrop-filter: blur(8px);
    }
    .hero-logo-wrap::before {
      content: "";
      position: absolute;
      inset: -14%;
      border-radius: inherit;
      background: radial-gradient(circle, rgba(255, 214, 106, 0.18), rgba(255, 214, 106, 0.05) 42%, transparent 72%);
      filter: blur(18px);
      opacity: 0.9;
      animation: heroCoreGlow 4.8s ease-in-out infinite;
    }
    .hero-logo-mark {
      position: relative;
      width: 100%;
      height: auto;
      display: block;
      filter: drop-shadow(0 0 18px rgba(206, 228, 68, 0.16)) drop-shadow(0 0 24px rgba(104, 233, 202, 0.16));
    }
    @keyframes heroAura {
      0%, 100% { transform: scale(0.96); opacity: 0.82; filter: blur(20px); }
      50% { transform: scale(1.04); opacity: 1; filter: blur(26px); }
    }
    @keyframes heroRing {
      0%, 100% { transform: scale(0.98); opacity: 0.72; }
      50% { transform: scale(1.02); opacity: 1; }
    }
    @keyframes heroCoreGlow {
      0%, 100% { transform: scale(0.94); opacity: 0.74; }
      50% { transform: scale(1.06); opacity: 1; }
    }

    .card {
      border-radius: 26px;
      border: 1px solid var(--panel-border);
      background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
      backdrop-filter: blur(16px);
      box-shadow: var(--shadow);
      overflow: visible;
    }

    .stat-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 26px;
    }
    .stat {
      padding: 18px 18px 16px;
      min-height: 138px;
    }
    .stat .kicker {
      font-size: 11px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--muted-2);
      margin-bottom: 10px;
    }
    .stat .value {
      font-size: clamp(1.4rem, 2.2vw, 1.8rem);
      line-height: 1;
      letter-spacing: -0.04em;
      color: var(--brand-lime);
      font-weight: 600;
      margin-bottom: 12px;
    }
    .stat p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
    }

    .platform-copy {
      padding-right: 18px;
    }
    .bullet-list {
      margin-top: 24px;
      display: grid;
      gap: 14px;
    }
    .bullet-item {
      padding: 18px 18px 16px;
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }
    .bullet-index {
      width: 30px;
      height: 30px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
      font-size: 12px;
      background: rgba(104, 233, 202, 0.12);
      border: 1px solid rgba(104, 233, 202, 0.2);
      color: rgba(236,250,246,0.92);
    }
    .bullet-item p { color: var(--muted); font-size: 14px; line-height: 1.75; }

    .viz-shell {
      position: relative;
      min-height: 560px;
      padding: 18px;
    }
    .viz {
      position: relative;
      min-width: 0;
      height: min(72vh, 500px);
      display: flex;
      align-items: stretch;
      justify-content: center;
      padding-bottom: 72px;
      padding-bottom: 150px;
    }
    svg { width: 100%; height: 100%; overflow: visible; display: block; }
    .tag {
      position: absolute;
      right: 18px;
      top: 18px;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(255, 255, 255, 0.05);
      color: #c7d2de;
      padding: 12px 14px;
      font-size: 11px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      backdrop-filter: blur(14px);
      z-index: 3;
    }
    .score-panel {
      position: absolute;
      left: 50%;
      bottom: -48px;
      transform: translateX(-50%);
      width: min(400px, calc(100% - 36px));
      border-radius: 24px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(9, 20, 18, 0.74);
      backdrop-filter: blur(18px);
      box-shadow: var(--shadow);
      padding: 12px 14px 12px;
      text-align: center;
      z-index: 3;
    }
    .score-stage,
    .score-sub { will-change: opacity, transform, color; backface-visibility: hidden; }
    .score-stage {
      font-size: 11px;
      font-weight: 600;
      transition: opacity 1600ms var(--ease-smooth), transform 1600ms var(--ease-smooth), color 1600ms var(--ease-smooth), text-shadow 1600ms var(--ease-smooth), font-weight 1600ms var(--ease-smooth);
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: #d8e2ee;
    }
    .score-sub {
      margin-top: 8px;
      transition: opacity 1600ms var(--ease-smooth), transform 1600ms var(--ease-smooth), color 1600ms var(--ease-smooth);
      font-size: 14px;
      color: var(--muted);
      min-height: 2.8em;
    }
    .narrative-swap { opacity: 0.01; transform: translateY(18px) scale(0.985); }
    .score-stage.emphasis { color: var(--gold); font-weight: 800; text-shadow: 0 0 26px rgba(255, 214, 106, 0.32); }
    .score-metrics { margin-top: 14px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; text-align: left; }
    .score-metric { border-radius: 18px; border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.04); padding: 12px; }
    .score-metric-label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 8px; }
    .bar { height: 12px; border-radius: 999px; overflow: hidden; background: rgba(255,255,255,0.14); }
    .fill { width: 0%; height: 100%; border-radius: 999px; transform-origin: left center; transition: width 2400ms var(--ease-smooth); }
    .fill.eff { background: linear-gradient(90deg, var(--brand-mint), var(--brand-lime)); box-shadow: 0 0 24px rgba(206, 228, 68, 0.28); }
    .fill.tox { background: linear-gradient(90deg, rgba(255, 122, 89, 0.62), rgba(104, 233, 202, 0.34)); box-shadow: 0 0 24px rgba(104, 233, 202, 0.16); }
    .score-metric-value { margin-top: 10px; font-size: 22px; line-height: 1; font-weight: 700; color: #fff; font-variant-numeric: tabular-nums; }

    .pipeline-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      border-radius: 28px;
      overflow: hidden;

      background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));

      /* stronger visible border */
      border: 1px solid rgba(255,255,255,0.14);

      /* optional: subtle outer glow to make edge crisp */
      box-shadow: 
        0 0 0 1px rgba(255,255,255,0.06),
        var(--shadow);
    }

    .pipeline-table th,
    .pipeline-table td {
      padding: 18px 20px;
      text-align: left;
      font-size: 14px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .pipeline-table th {
      color: rgba(236,250,246,0.92);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      background: rgba(255,255,255,0.03);
    }
    .pipeline-table td { color: var(--muted); }
    .pipeline-table tr:last-child td { border-bottom: none; }
    .stage-pill {
      display: inline-flex;
      padding: 8px 12px;
      border-radius: 999px;
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      border: 1px solid rgba(206,228,68,0.2);
      background: rgba(206,228,68,0.08);
      color: rgba(244,250,248,0.92);
    }

    .team-card {
      padding: 24px;
      min-height: 100%;
    }

.team-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 12px;   /* adds space before the name */
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%; /* shifts face up slightly */
  display: block;
}


    .team-role {
      margin-top: 8px;
      color: var(--muted-2);
      font-size: 12px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }
    .team-card p {
      margin-top: 16px;
      font-size: 14px;
      line-height: 1.8;
      color: var(--muted);
    }

    .contact-card {
      padding: 28px;
    }
    .contact-stack {
      display: grid;
      gap: 16px;
    }
    .contact-item {
      padding: 18px 20px;
      display: grid;
      gap: 8px;
    }
    .contact-label {
      font-size: 11px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--muted-2);
    }
    .contact-value {
      font-size: clamp(1rem, 2vw, 1.18rem);
      line-height: 1.5;
      color: rgba(244,250,248,0.94);
    }
    .small-note { margin-top: 14px; color: var(--muted-2); font-size: 13px; line-height: 1.7; }

    footer {
      padding: 0 28px 34px calc(var(--side-nav-w) + 18px + 28px);
      color: var(--muted-2);
      font-size: 12px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    @media (max-width: 1100px) {
      .hero-grid,
      .problem-grid,
      .solve-grid,
      .pipeline-wrap,
      .contact-grid { grid-template-columns: 1fr; }
      .team-grid { 
      grid-template-columns: repeat(2, 1fr); 
    }
      .platform-copy { padding-right: 0; }
      .viz-shell { min-height: 580px; }
    }

    @media (max-width: 860px) {
      :root { --side-nav-w: 0px; }
      .team-grid { grid-template-columns: 1fr; }
      .shell { padding-left: 0; }
      .side-nav {
        right: 10px;
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        left: auto;
        gap: 12px;
        padding: 10px 7px;
        background: rgba(7, 22, 19, 0.34);
      }
      .nav-dot {
        width: 15px;
        height: 15px;
      }
      .nav-label {
        right: 26px;
        font-size: 10px;
        padding: 5px 8px;
      }
      .section {
        min-height: auto;
        padding: 92px 18px 84px;
      }
      footer { padding: 0 18px 86px; }
      .stat-grid { grid-template-columns: 1fr; }
      h1 { max-width: 12ch; font-size: clamp(2.7rem, 14vw, 4.1rem); }
      h2 { max-width: none; font-size: clamp(2rem, 9vw, 3rem); }
      .lede { font-size: 16px; line-height: 1.85; }
      .viz { height: 430px; padding-bottom: 118px; align-items: flex-start; }
      .tag { right: 10px; top: 10px; max-width: 170px; padding: 9px 10px; font-size: 9px; line-height: 1.35; }
      .score-panel {
        bottom: -48px;
        width: calc(100% - 20px);
        padding: 10px 12px 12px;
        border-radius: 18px;
      }
      .score-stage { font-size: 9px; letter-spacing: 0.16em; }
      .score-sub { margin-top: 6px; font-size: 12px; line-height: 1.4; min-height: 2.9em; }
      .score-metrics { gap: 8px; margin-top: 10px; }
      .score-metric { padding: 10px; border-radius: 14px; }
      .score-metric-label { font-size: 9px; margin-bottom: 6px; }
      .bar { height: 12px; }
      .score-metric-value { margin-top: 8px; font-size: 24px; }
      .pipeline-table,
      .pipeline-table thead,
      .pipeline-table tbody,
      .pipeline-table tr,
      .pipeline-table th,
      .pipeline-table td { display: block; }
      .pipeline-table thead { display: none; }
      .pipeline-table tr { padding: 14px; border-bottom: 1px solid rgba(255,255,255,0.06); }
      .pipeline-table td { padding: 8px 0; border-bottom: none; }
      .pipeline-table td::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 6px;
        color: var(--muted-2);
        font-size: 10px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
      }
    }


    @media (max-width: 480px) {
      .side-nav { right: 8px; }
      .nav-dot {
        width: 14px;
        height: 14px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .fill, .score-stage, .score-sub, .nav-dot, * { transition: none !important; animation: none !important; }
    }
  


/* Production polish */
.hero-mobile-offset {
  height: 20px;
}

.section-reveal { overflow: clip; }

.reveal,
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  will-change: transform, opacity;
  transition:
    opacity 760ms var(--ease-smooth),
    transform 760ms var(--ease-smooth),
    filter 760ms var(--ease-smooth);
}

.reveal { transform: translateY(20px); }
.reveal-up { transform: translateY(32px); }
.reveal-left { transform: translateX(-28px); }
.reveal-right { transform: translateX(28px); }
.reveal-scale { transform: translateY(18px) scale(0.96); filter: blur(2px); }

.reveal.in-view,
.reveal-up.in-view,
.reveal-left.in-view,
.reveal-right.in-view,
.reveal-scale.in-view {
  opacity: 1;
  transform: none;
  filter: none;
}

.reveal-delay-1 { transition-delay: 90ms; }
.reveal-delay-2 { transition-delay: 180ms; }
.reveal-delay-3 { transition-delay: 270ms; }
.reveal-delay-4 { transition-delay: 360ms; }


.team-card {
  position: relative;
  min-height: 100%;
}

.team-link {
  display: block;
  position: relative;
  text-decoration: none;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease,
    background 240ms ease;
}

.team-link::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 26px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(206,228,68,0.32), rgba(104,233,202,0.28), rgba(255,255,255,0.06));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
}

.team-link:hover,
.team-link:focus-visible {
  transform: translateY(-8px);
  border-color: rgba(104,233,202,0.24);
  background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.038));
  box-shadow: 0 34px 80px rgba(0,0,0,0.34), 0 0 0 1px rgba(104,233,202,0.08);
}

.team-link:hover::before,
.team-link:focus-visible::before {
  opacity: 1;
}

.team-link:focus-visible {
  outline: none;
}

.team-link-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242,248,246,0.9);
  background: rgba(10, 27, 24, 0.82);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
}


.team-link .team-role {
  padding-right: 88px;
}

.team-link p {
  min-height: 5.4em;
}

@media (max-width: 860px) {
  .hero-mobile-offset {
    height: 78px;
  }

  .team-link:hover,
  .team-link:focus-visible {
    transform: translateY(-4px);
  }

  .team-link .team-role {
    padding-right: 0;
  }

  .team-link-badge {
    top: 14px;
    right: 14px;
    font-size: 9px;
    padding: 6px 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-up,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
    filter: none;
  }
}


/* Newsletter-style 3-line read-more utility */
.summary,
[data-read-more-content] {
  position: relative;
}

.summary.is-collapsible:not(.expanded),
[data-read-more-content].is-collapsible:not(.expanded) {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.summary.is-collapsible:not(.expanded)::after,
[data-read-more-content].is-collapsible:not(.expanded)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2.8em;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(10,19,18,0), rgba(10,19,18,0.96));
}

.read-more-btn,
[data-read-more-button] {
  margin-top: 12px;
  cursor: pointer;
  color: rgba(236,250,246,0.95);
  border: 1px solid rgba(104,233,202,0.18);
  background: rgba(104,233,202,0.08);
  border-radius: 999px;
  padding: 8px 12px;
  font: inherit;
  font-size: 13px;
  line-height: 1;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.read-more-btn:hover,
[data-read-more-button]:hover {
  background: rgba(104,233,202,0.14);
  border-color: rgba(104,233,202,0.28);
  transform: translateY(-1px);
}

.read-more-btn[hidden],
[data-read-more-button][hidden] {
  display: none !important;
}
