/* ====================================================================
     VISIUM TECHNOLOGIES SITE
     Single-file build. All styling self-contained. Do not edit partial
     selectors without reviewing the full rule.
     ==================================================================== */

  :root {
    --bg: #FAFAF7;
    --bg-panel: #F0F0EC;
    --bg-card: #FFFFFF;
    --ink: #1A1A1A;
    --ink-soft: #3A3A3A;
    --ink-muted: #6A6A6A;
    --ink-faint: #9A9A9A;
    --rule: #E4E4DF;
    --rule-strong: #CFCFC9;
    --accent: #0112FA;
    --accent-ink: #0010CC;
    --positive: #0112FA;
    --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
    --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
    --w-narrow: 720px;
    --w-wide: 1080px;
    --w-text: 640px;
  }

  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 17px;
    line-height: 1.55;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern", "liga", "calt";
  }

  a { color: inherit; text-decoration: none; }
  img, svg { display: block; }

  /* =================== HEADER (sticky, cream, no-bullets) =================== */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(250, 250, 247, 0.92);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--rule);
  }
  .site-header .inner {
    max-width: var(--w-wide);
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .brand-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
  }
  .brand-link .logo { height: 44px; width: auto; }

  /* Nav uses a DIV with flex, not <ul>, so list-style can never reappear */
  .nav {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  .nav-item {
    font-family: var(--serif);
    font-size: 15px;
    color: var(--ink-soft);
    background: none;
    border: none;
    padding: 6px 0;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-variation-settings: "opsz" 36;
  }
  .nav-item:hover,
  .nav-item.is-active { color: var(--accent-ink); }
  .nav-item .caret {
    display: inline-block;
    color: var(--ink-faint);
    font-size: 20px;
    line-height: 1;
    margin-top: -2px;
  }

  /* Dropdown */
  .nav-dropdown { position: relative; }
  .nav-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 210px;
    background: var(--bg-card);
    border: 1px solid var(--rule);
    box-shadow: 0 18px 50px -20px rgba(26, 26, 26, 0.18);
    padding: 8px;
    opacity: 0;
    transform: translateY(-4px);
    pointer-events: none;
    transition: opacity 140ms ease, transform 140ms ease;
  }
  .nav-dropdown.is-open .nav-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-menu-link {
    display: block;
    padding: 10px 14px;
    font-size: 15px;
    color: var(--ink-soft);
    text-decoration: none;
  }
  .nav-menu-link:hover { color: var(--accent-ink); background: var(--bg-panel); }
  .nav-menu-link.is-active { color: var(--accent-ink); }

  /* Hamburger button (mobile only) */
  .hamburger {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  .hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    transition: transform 220ms ease, opacity 180ms ease;
  }
  .hamburger.is-open .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.is-open .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-open .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Mobile menu drawer */
  .mobile-menu {
    display: none;
    background: var(--bg);
    border-bottom: 1px solid var(--rule);
    padding: 8px 20px 16px;
  }
  .mobile-menu.is-open { display: flex; flex-direction: column; }
  .mobile-menu-link {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--ink);
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid var(--rule);
    font-variation-settings: "opsz" 36;
  }
  .mobile-menu-link:last-child { border-bottom: none; }
  .mobile-menu-link.is-active { color: var(--accent-ink); }

  /* =================== SHARED TYPOGRAPHY =================== */
  .eyebrow {
    font-family: var(--mono);
    font-size: 11.5px;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-faint);
  }
  .display-xl {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(52px, 6.2vw, 84px);
    line-height: 1.02;
    letter-spacing: -0.03em;
    font-variation-settings: "opsz" 144;
    margin: 0;
  }
  .display-lg {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(42px, 5.4vw, 68px);
    line-height: 1.06;
    letter-spacing: -0.025em;
    font-variation-settings: "opsz" 144;
    margin: 0;
  }
  .display-md {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -0.015em;
    font-variation-settings: "opsz" 72;
    margin: 0;
  }
  .lede {
    font-size: 18px;
    color: var(--ink-soft);
    max-width: 540px;
    line-height: 1.55;
  }

  /* =================== PAGE ROUTING =================== */
  main { min-height: calc(100vh - 280px); }
  .page { display: none; }
  .page.is-active { display: block; }
  /* No-JS fallback: home page visible by default */
  .page[data-page="home"] { display: block; }
  .js-ready .page[data-page="home"]:not(.is-active) { display: none; }

  .band {
    padding: 80px 32px;
    border-bottom: 1px solid var(--rule);
  }
  .band:last-of-type { border-bottom: none; }
  .wrap-narrow { max-width: var(--w-narrow); margin: 0 auto; }
  .wrap-wide { max-width: var(--w-wide); margin: 0 auto; }

  /* =================== HOME / CHAIRMAN LETTER =================== */
  .chairman-wrap {
    padding: 100px 32px 140px;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr);
    gap: 80px;
    align-items: start;
  }
  .chairman {
    max-width: 600px;
    width: 100%;
    justify-self: end;
  }
  .cube-media {
    width: 100%;
    background: transparent;
    aspect-ratio: 1 / 1;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
  }
  .cube-media video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    -webkit-mask-image: radial-gradient(circle at center, black 55%, transparent 70%);
    mask-image: radial-gradient(circle at center, black 55%, transparent 70%);
    filter: brightness(1.05);
  }
  .cube-play-hint {
    position: absolute;
    bottom: 16px;
    right: 16px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-faint);
    opacity: 0;
    transition: opacity 600ms ease;
    pointer-events: none;
  }
  .cube-play-hint.is-visible { opacity: 1; }
  .chairman .eyebrow { margin-bottom: 24px; }
  .chairman h1 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(52px, 6.2vw, 84px);
    line-height: 1.02;
    letter-spacing: -0.03em;
    font-variation-settings: "opsz" 144;
    margin: 0 0 40px 0;
  }
  .chairman p {
    font-size: 16.5px;
    line-height: 1.65;
    color: var(--ink-soft);
    margin: 0 0 20px 0;
  }
  .chairman p.hero-body {
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 28px;
  }
  .chairman strong {
    font-weight: 600;
    color: var(--ink);
    font-feature-settings: "kern", "liga", "calt";
  }
  .chairman em {
    font-style: italic;
    font-variation-settings: "opsz" 36;
  }


  /* Read-more expand pattern (Alphabet-style): intro visible, rest collapsed. */
  .letter-rest {
    display: none;
  }
  .letter-rest.is-expanded {
    display: block;
    animation: letterExpand 420ms ease-out;
  }
  @keyframes letterExpand {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .read-more {
    display: inline-block;
    font-family: var(--serif);
    font-size: 16.5px;
    font-variation-settings: "opsz" 36;
    color: var(--accent-ink);
    background: none;
    border: none;
    border-bottom: 1px solid rgba(1, 18, 250, 0.35);
    padding: 0 0 2px 0;
    margin: 0 0 28px 0;
    cursor: pointer;
    letter-spacing: 0.01em;
    transition: color 140ms ease, border-color 140ms ease;
  }
  .read-more:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
  }
  .read-more.is-hidden { display: none; }

  /* Guaranteed visible macron for the U in ConnexUS brand mark.
     Draws a CSS bar above a plain "U" so the diacritic is visible
     regardless of font loading or glyph rendering quality. */
  .macron-u {
    position: relative;
    display: inline-block;
    line-height: 1;
  }
  .macron-u::before {
    content: "";
    position: absolute;
    left: 14%;
    right: 14%;
    top: -0.02em;
    height: 0.08em;
    background: currentColor;
    border-radius: 1px;
    pointer-events: none;
  }

  .chairman-list {
    display: block;
    margin: 4px 0 24px 0;
    padding: 0;
  }
  .chairman-list-item {
    display: block;
    position: relative;
    padding-left: 28px;
    font-size: 16.5px;
    line-height: 1.65;
    color: var(--ink-soft);
    margin-bottom: 12px;
  }
  .chairman-list-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 14px;
    height: 1px;
    background: var(--accent);
  }
  .chairman p.fls-note {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--rule);
    font-size: 13.5px;
    color: var(--ink-muted);
    font-style: italic;
    line-height: 1.55;
  }
  .chairman p.signoff {
    margin-top: 28px;
    margin-bottom: 0;
    font-size: 17px;
    line-height: 1.5;
  }
  .chairman p.signoff-name {
    margin-top: 8px;
    font-weight: 500;
  }
  .chairman .signoff-title {
    display: inline-block;
    margin-top: 4px;
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-muted);
    font-weight: 400;
  }
  .chairman p.memorium {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--rule);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-faint);
    line-height: 1.7;
  }
  .signature {
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-muted);
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
  }
  .signature::before {
    content: "";
    display: block;
    width: 64px;
    height: 1px;
    background: var(--ink);
  }

  /* =================== INVESTOR RELATIONS =================== */
  .ir-hero { padding: 100px 32px 40px; }
  .ir-hero .eyebrow { margin-bottom: 20px; }
  .ir-hero h1 { margin: 20px 0 28px 0; max-width: 760px; }

  .quote-card {
    max-width: var(--w-narrow);
    margin: 40px auto 0;
    padding: 32px 36px;
    border: 1px solid var(--rule);
    background: var(--bg-card);
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
    gap: 24px;
    align-items: end;
  }
  .quote-card .cell { display: flex; flex-direction: column; gap: 6px; }
  .quote-card .ticker {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-faint);
  }
  .quote-card .price {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 40px;
    letter-spacing: -0.025em;
    line-height: 1;
    font-variation-settings: "opsz" 144;
  }
  .quote-card .change {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--positive);
    margin-left: 8px;
  }
  .quote-card .label {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-faint);
  }
  .quote-card .val {
    font-family: var(--mono);
    font-size: 15px;
    color: var(--ink);
  }
  .quote-meta {
    font-family: var(--mono);
    font-size: 11.5px;
    color: var(--ink-faint);
    margin-top: 6px;
  }
  .quote-meta a { color: var(--accent-ink); border-bottom: 1px solid var(--rule-strong); }

  .quote-status {
    max-width: var(--w-narrow);
    margin: 8px auto 0;
    padding: 0 4px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    color: var(--ink-faint);
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    min-height: 16px;
    transition: color 200ms ease;
  }
  .quote-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ink-faint);
    flex-shrink: 0;
    transition: background-color 200ms ease, box-shadow 600ms ease;
  }
  .quote-status[data-state="live"] .quote-status-dot {
    background: #1FB04A;
    box-shadow: 0 0 0 0 rgba(31, 176, 74, 0.6);
    animation: quote-pulse 2.4s ease-out infinite;
  }
  .quote-status[data-state="stale"] .quote-status-dot { background: #C8A45A; }
  .quote-status[data-state="error"] .quote-status-dot { background: #B23A3A; }
  @keyframes quote-pulse {
    0%   { box-shadow: 0 0 0 0   rgba(31, 176, 74, 0.55); }
    70%  { box-shadow: 0 0 0 8px rgba(31, 176, 74, 0); }
    100% { box-shadow: 0 0 0 0   rgba(31, 176, 74, 0); }
  }

  .disclaimer {
    max-width: var(--w-narrow);
    margin: 20px auto 0;
    padding: 18px 20px;
    border-left: 2px solid var(--accent);
    background: rgba(1, 18, 250, 0.04);
    font-size: 13px;
    color: var(--ink-muted);
    line-height: 1.5;
  }

  /* Data tables */
  .two-cols {
    max-width: var(--w-wide);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
  .data-block .eyebrow { margin-bottom: 24px; }
  .data-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid var(--rule);
  }
  .data-row:first-of-type { border-top: 1px solid var(--rule-strong); }
  .data-row:last-child { border-bottom: 1px solid var(--rule); }
  .data-head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    padding: 0 0 12px;
  }
  .data-head > span {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-faint);
  }
  .tag {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 8px;
    border: 1px solid var(--rule-strong);
    color: var(--ink-muted);
    min-width: 52px;
    text-align: center;
  }
  .tag.accent {
    color: var(--accent-ink);
    border-color: rgba(1, 18, 250, 0.35);
  }
  .data-row .title { font-size: 15px; color: var(--ink); }
  .data-row .date {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--ink-muted);
    white-space: nowrap;
  }

  .ir-lower {
    max-width: var(--w-wide);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .ir-lower .eyebrow { margin-bottom: 20px; }
  .ir-lower .display-md { margin-bottom: 20px; }
  .ir-lower p { color: var(--ink-soft); line-height: 1.6; margin: 0; }

  .btn-row { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
  .btn {
    display: inline-block;
    padding: 14px 20px;
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 1px solid var(--ink);
    color: var(--ink);
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background 140ms ease, color 140ms ease, border-color 140ms ease;
  }
  .btn.primary { background: var(--ink); color: var(--bg); }
  .btn.primary:hover { background: var(--accent-ink); border-color: var(--accent-ink); color: #FFF; }
  .btn:hover { background: var(--ink); color: var(--bg); }

  .contact-list {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 10px 16px;
    align-items: baseline;
    margin: 16px 0 0 0;
    padding: 0;
  }
  .contact-list dt {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin: 0;
  }
  .contact-list dd {
    font-size: 15px;
    color: var(--ink);
    margin: 0;
  }
  .contact-list a.accent-link {
    color: var(--accent-ink);
    border-bottom: 1px solid var(--rule-strong);
  }

  /* =================== PLATFORM =================== */
  .platform-hero { padding: 100px 32px 60px; }
  .platform-hero h1 { max-width: 820px; margin: 20px 0 28px 0; }

  .platform-card {
    max-width: var(--w-wide);
    margin: 40px auto 0;
    border: 1px solid var(--rule);
    background: var(--bg-card);
    padding: 48px;
  }
  .platform-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 32px;
  }
  .platform-head h3 {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -0.015em;
    font-variation-settings: "opsz" 72;
    margin: 0 0 6px 0;
  }
  .platform-head .meta {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-faint);
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
  }
  .badge {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 6px 12px;
    border: 1px solid var(--rule-strong);
    color: var(--ink-muted);
    white-space: nowrap;
  }
  .platform-body {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: start;
  }
  .platform-body > p {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin: 0;
  }
  .product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .product-card {
    padding: 20px;
    border: 1px solid var(--rule);
    background: var(--bg);
  }
  .product-card .eyebrow { margin-bottom: 10px; }
  .product-card h4 {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 8px 0;
    font-variation-settings: "opsz" 36;
  }
  .product-card .sub-eyebrow {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 14px;
    line-height: 1.5;
  }
  .product-card p {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 0;
  }

  /* =================== GOVERNANCE =================== */
  .gov-hero { padding: 100px 32px 60px; }
  .gov-hero h1 { max-width: 820px; margin: 20px 0 24px 0; }

  .section-eyebrow-wrap {
    max-width: var(--w-wide);
    margin: 0 auto 20px;
  }
  .board-grid {
    max-width: var(--w-wide);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--rule-strong);
  }
  .director h4 {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 500;
    margin: 0 0 4px 0;
  }
  .director .role {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 14px;
    /* Single-line height so all bios align to the same baseline,
       regardless of which title is longest. */
    min-height: 1.5em;
    line-height: 1.5em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  /* On narrow screens where titles can't fit one line, allow wrapping
     and reserve 2 lines for all of them so bios still align. */
  @media (max-width: 620px) {
    .director .role {
      white-space: normal;
      min-height: 3em;
      overflow: visible;
      text-overflow: clip;
    }
  }
  .director p {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 0;
  }
  .committee-grid {
    max-width: var(--w-wide);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .committee-card {
    border: 1px solid var(--rule);
    padding: 24px;
    background: var(--bg-card);
  }
  .committee-card h4 {
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 500;
    margin: 0 0 12px 0;
  }
  .committee-card p {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 0 0 18px 0;
  }
  .committee-card .chair {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-faint);
  }
  /* =================== NEWSROOM =================== */
  .news-hero { padding: 100px 32px 60px; }
  .news-hero h1 { max-width: 820px; margin: 20px 0 24px 0; }
  .news-list { max-width: var(--w-wide); margin: 0 auto; }
  .news-head {
    display: grid;
    grid-template-columns: 110px 90px 1fr;
    gap: 24px;
    padding-bottom: 12px;
  }
  .news-head span {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-faint);
  }
  .news-row {
    display: grid;
    grid-template-columns: 110px 90px 1fr;
    gap: 24px;
    align-items: start;
    padding: 20px 0;
    border-top: 1px solid var(--rule);
  }
  .news-row:first-of-type { border-top: 1px solid var(--rule-strong); }
  .news-row:last-child { border-bottom: 1px solid var(--rule); }
  .news-row .date {
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-muted);
    padding-top: 3px;
  }
  .news-row .title {
    font-size: 15.5px;
    line-height: 1.55;
    color: var(--ink-soft);
  }
  .news-row .title strong { font-weight: 600; color: var(--ink); }
  .news-row .title a {
    color: var(--accent-ink);
    border-bottom: 1px solid var(--rule-strong);
    white-space: nowrap;
  }

  /* =================== CAREERS =================== */
  
  
  
  
  
  
  
  
  
  
  

  /* =================== CONTACT =================== */
  .contact-hero { padding: 100px 32px 60px; }
  .contact-hero h1 { max-width: 820px; margin: 20px 0 24px 0; }
  .doors {
    max-width: var(--w-wide);
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--rule);
  }
  .door {
    padding: 24px;
    border-right: 1px solid var(--rule);
  }
  .door:last-child { border-right: none; }
  .door .eyebrow { margin-bottom: 12px; }
  .door h4 {
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 500;
    margin: 0 0 14px 0;
  }
  .door p {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 0 0 20px 0;
    min-height: 64px;
  }
  .door .contact-info {
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: 0.04em;
    color: var(--ink);
    line-height: 1.7;
  }
  .door .contact-info a { color: var(--accent-ink); }

  .address-grid {
    max-width: var(--w-wide);
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  .address-block h4 {
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 500;
    margin: 0 0 14px 0;
  }
  .address-block p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--ink-soft);
    margin: 0;
  }
  .address-block p em {
    font-style: italic;
    color: var(--ink-muted);
    font-size: 13.5px;
  }

  /* =================== FOOTER (clean, compact, Alphabet-style) =================== */
  .site-footer {
    background: var(--bg-panel);
    padding: 40px 32px 28px;
    margin-top: 0;
  }
  .footer-inner {
    max-width: var(--w-wide);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
  }
  .footer-brand-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
  }
  .footer-brand-link .logo {
    height: 38px;
    width: auto;
  }
  .footer-nav {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  .footer-nav a {
    font-family: var(--serif);
    font-size: 15px;
    color: var(--ink-soft);
    text-decoration: none;
    font-variation-settings: "opsz" 36;
    transition: color 120ms ease;
  }
  .footer-nav a:hover { color: var(--accent-ink); }
  .footer-legal {
    max-width: var(--w-wide);
    margin: 28px auto 0;
    padding-top: 18px;
    border-top: 1px solid var(--rule);
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
  .footer-legal .copy {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-faint);
  }
  .footer-legal .fls {
    font-size: 11.5px;
    color: var(--ink-faint);
    line-height: 1.55;
    white-space: nowrap;
  }
  .footer-build {
    max-width: var(--w-wide);
    margin: 14px auto 0;
    padding-top: 0;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-faint);
    opacity: 0.78;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  .footer-build .sep { opacity: 0.4; }
  .footer-build code {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    color: inherit;
    background: transparent;
    padding: 0;
  }
  @media (max-width: 620px) {
    .footer-build { justify-content: center; text-align: center; }
  }
  /* =================== PLATFORM PRODUCT PAIR =================== */
  .product-pair {
    max-width: var(--w-wide);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .product-feature {
    padding: 40px;
    border: 1px solid var(--rule);
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
  }
  .product-feature-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--rule);
    margin-bottom: 24px;
    flex-wrap: wrap;
    min-height: 96px;
  }
  .product-feature-head > div {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
  }
  .product-feature-head .eyebrow { margin-bottom: 8px; }
  .product-feature-head h3 {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.02em;
    font-variation-settings: "opsz" 72;
    margin: 0;
    color: var(--ink);
  }
  .product-logo {
    display: block;
    margin: 0;
    height: auto;
    max-width: 100%;
  }
  .product-logo-athena {
    height: 44px;
    width: auto;
  }
  .product-logo-ragbox {
    height: 48px;
    width: auto;
  }
  .product-feature-desc {
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--ink-soft);
    margin: 0 0 28px 0;
  }
  .metric-row {
    margin: auto 0 0 0;
    padding: 24px 0 0 0;
    border-top: 1px solid var(--rule);
    display: flex;
    flex-direction: column;
  }
  .metric {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 20px;
    padding: 14px 0;
    min-height: 76px;
    border-top: 1px solid var(--rule);
    align-items: center;
  }
  .metric:first-child { border-top: none; padding-top: 0; }
  .metric dt {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin: 0;
  }
  .metric dd {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--ink);
    margin: 0;
    font-variation-settings: "opsz" 72;
    letter-spacing: -0.02em;
    line-height: 1;
  }
  .spec-list {
    margin: auto 0 0 0;
    padding: 24px 0 0 0;
    border-top: 1px solid var(--rule);
  }
  .spec {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 20px;
    padding: 12px 0;
    min-height: 76px;
    border-top: 1px solid var(--rule);
    align-items: center;
  }
  .spec:first-child { border-top: none; padding-top: 0; }
  .spec dt {
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin: 0;
  }
  .spec dd {
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--ink-soft);
    margin: 0;
  }
  .spec dd strong { font-weight: 600; color: var(--ink); }

  /* =================== CONTACT (grid, no doors) =================== */
  .contact-grid {
    max-width: var(--w-wide);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px;
  }
  .contact-cell .eyebrow { margin-bottom: 14px; }
  .contact-cell .contact-detail {
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink-soft);
    margin: 0 0 20px 0;
    max-width: 280px;
  }
  .contact-email {
    font-family: var(--mono);
    font-size: 14px;
    color: var(--accent-ink);
    border-bottom: 1px solid rgba(1, 18, 250, 0.35);
    text-decoration: none;
    transition: border-color 140ms ease;
  }
  .contact-email:hover { border-bottom-color: var(--accent-ink); }
  .contact-secondary {
    margin-top: 14px;
    display: flex;
    align-items: baseline;
    gap: 12px;
  }
  .contact-secondary-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-faint);
  }
  .contact-address {
    font-style: normal;
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--ink);
  }

  /* =================== PRIVACY / TERMS =================== */
  .policy-hero {
    padding: 120px 32px 100px;
  }
  .policy-hero .eyebrow { margin-bottom: 20px; }
  .policy-hero h1 { margin: 20px 0 12px 0; max-width: 760px; }
  .policy-meta {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 40px;
  }
  .policy-body { max-width: 760px; }
  .policy-body h2 {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin: 56px 0 16px 0;
  }
  .policy-body h3 {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--ink);
    margin: 32px 0 10px 0;
  }
  .policy-body p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin: 0 0 16px 0;
  }
  .policy-body ul {
    margin: 0 0 16px 0;
    padding-left: 22px;
  }
  .policy-body ul li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-bottom: 6px;
  }
  .policy-body strong { color: var(--ink); font-weight: 600; }
  .policy-body .legal-block {
    font-size: 14px;
    line-height: 1.65;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    background: var(--bg-panel);
    border-left: 2px solid var(--rule-strong);
    padding: 18px 20px;
    margin: 16px 0;
  }
  .policy-body .verification-block {
    background: var(--bg-panel);
    border: 1px solid var(--rule);
    padding: 18px 20px;
    margin: 16px 0;
  }
  .policy-body .verification-block code {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--ink);
    word-break: break-all;
  }
  .policy-body .contact-card {
    border: 1px solid var(--rule);
    padding: 20px 22px;
    margin: 16px 0;
    background: var(--bg-card);
  }
  .policy-body .contact-card p { margin: 0 0 6px 0; }
  .policy-body .contact-card p:last-child { margin-bottom: 0; }
  .inline-link {
    color: var(--accent-ink);
    border-bottom: 1px solid rgba(1, 18, 250, 0.35);
    text-decoration: none;
  }
  .inline-link:hover { color: var(--accent); border-bottom-color: var(--accent); }
  @media (max-width: 620px) {
    .policy-hero { padding: 100px 22px 60px; }
    .policy-body h2 { font-size: 22px; margin-top: 44px; }
    .policy-body h3 { font-size: 17px; }
    .policy-body p, .policy-body ul li { font-size: 15px; }
  }



  

  /* =================== RESPONSIVE =================== */
  html, body { overflow-x: hidden; }

  @media (max-width: 900px) {
    .quote-card { grid-template-columns: 1fr 1fr; gap: 20px 24px; }
    .two-cols { grid-template-columns: 1fr; gap: 60px; }
    .ir-lower { grid-template-columns: 1fr; gap: 48px; }
    .board-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .committee-grid { grid-template-columns: 1fr; }
    .product-pair { grid-template-columns: 1fr; gap: 24px; }
    .doors { grid-template-columns: 1fr 1fr; }
    .door:nth-child(2n) { border-right: none; }
    .door:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
    .address-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-inner { flex-direction: column; align-items: center; gap: 24px; text-align: center; }
  }

  @media (max-width: 720px) {
    /* Swap desktop nav for hamburger */
    .nav { display: none; }
    .hamburger { display: flex; }
  }

  @media (max-width: 620px) {
    .site-header .inner { padding: 14px 20px; }
    .band { padding: 56px 20px; }

    .chairman-wrap {
      padding: 56px 20px 64px;
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .chairman { max-width: 680px; justify-self: center; }
    .cube-media { max-width: 480px; margin: 0 auto; }
    .chairman h1 { font-size: 44px; }
    .chairman p.hero-body { font-size: 18px; }

    .board-grid { grid-template-columns: 1fr; }
    .news-row, .news-head { grid-template-columns: 1fr; gap: 6px; }
    .doors { grid-template-columns: 1fr; }
    .door { border-right: none; border-bottom: 1px solid var(--rule); }
    .door:last-child { border-bottom: none; }
    .quote-card { grid-template-columns: 1fr; }

    /* Platform: cards full-width, metric/spec rows stack vertically */
    .product-feature { padding: 28px 22px; }
    .product-feature-head h3 { font-size: 30px; }
    .product-logo-athena { height: 28px; max-width: 80%; }
    .product-logo-ragbox { height: 30px; }
    .metric, .spec {
      grid-template-columns: 1fr;
      gap: 6px;
      min-height: 0;
      padding: 14px 0;
      align-items: start;
    }
    .metric dd { font-size: 20px; }

    /* Contact: stack the three cells vertically */
    .contact-grid { grid-template-columns: 1fr; gap: 36px; }
    .contact-cell .contact-detail { max-width: none; }

    /* IR contact list dt/dd stacked */
    .contact-list { grid-template-columns: 1fr; gap: 4px; }
    .contact-list dt { padding-top: 14px; }
    .contact-list dd { padding-bottom: 4px; }

    /* Footer: clean vertical stack, center-aligned */
    .footer-nav {
      flex-direction: column;
      align-items: center;
      gap: 14px;
      width: 100%;
    }
    .footer-legal {
      flex-direction: column;
      align-items: center;
      gap: 14px;
      text-align: center;
    }
    .footer-legal .fls { text-align: center; white-space: normal; }
  }

  .page.is-active { animation: fadeIn 220ms ease-out; }
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
  }
