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

  :root {
    --bg:          #f5f5f3;
    --bg-2:        #ebeae4;
    --white:       #ffffff;
    --ink:         #0e0e0a;
    --ink-card:    #010101;          /* canonical site black — all dark backgrounds */
    --muted:       #555550;
    --hint:        #87877f;
    --border:      #e5e4dc;
    --border-mid:  #cfcdc3;

    --terra:       #C4522E;          /* Omnes primary (Kraken uses purple) */
    --terra-dark:  #a84226;
    --terra-light: #e8b8a8;
    --terra-pale:  #faf0ec;
    --terra-glow:  rgba(196,82,46,0.35);

    --teal:        #5A7A5E;
    --teal-glow:   rgba(90,122,94,0.25);
    --sand:        #B89A72;
    --blue:        #4A6E8A;

    --maxw:        1480px;
    --card-r:      8px;
    --pill:        6px;
    --t:           all .18s ease;
  }

  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: var(--bg); color: var(--ink);
    font-size: 17px; line-height: 1.47;
    letter-spacing: -0.022em;
    -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
  img, svg { max-width: 100%; display: block; }
  ::selection { background: var(--terra); color: #fff; }
  .mono { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-variant-numeric: tabular-nums; }

  /* ──────────── NAV (Kraken: logo left, nav center, search + login + signup right) ──────────── */
  nav.top {
    position: sticky; top: 0; z-index: 800;
    background: var(--bg);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
  }
  .nav-inner {
    max-width: var(--maxw); margin: 0 auto;
    height: 72px; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
  }
  .brand { display: inline-flex; align-items: center; }
  .brand img { height: 28px; width: auto; display: block; }

  .nav-mid { display: flex; align-items: center; gap: 4px; }
  .nav-dd { position: relative; }
  /* Bridge below the toggle so hover stays alive across the gap. Lives on .nav-dd (not the menu) so it's always pointer-active. */
  .nav-dd::after {
    content: "";
    position: absolute;
    top: 100%; left: -10px; right: -10px;
    height: 14px;
    pointer-events: none;
  }
  .nav-dd:hover::after,
  .nav-dd.open::after { pointer-events: auto; }
  .nav-dd-toggle {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 14px;
    font-family: inherit;
    font-size: 14px; color: var(--ink); font-weight: 500;
    background: transparent; border: 0;
    border-radius: 6px;
    cursor: pointer;
    transition: background .15s;
  }
  .nav-dd-toggle:hover,
  .nav-dd:hover .nav-dd-toggle,
  .nav-dd.open .nav-dd-toggle { background: rgba(14,14,10,0.06); }
  .nav-dd-toggle svg { width: 11px; height: 11px; opacity: 0.55; transition: transform .2s; }
  .nav-dd:hover .nav-dd-toggle svg,
  .nav-dd.open .nav-dd-toggle svg { transform: rotate(180deg); }

  .nav-dd-menu {
    position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(-4px);
    min-width: 280px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 4px;
    box-shadow: 0 4px 14px rgba(14,14,10,0.06), 0 24px 50px rgba(14,14,10,0.08);
    opacity: 0; pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
    z-index: 100;
  }
  /* invisible bridge so the menu stays open as the cursor crosses the gap */
  .nav-dd-menu::before {
    content: "";
    position: absolute;
    top: -14px; left: 0; right: 0;
    height: 14px;
  }
  .nav-dd:hover .nav-dd-menu,
  .nav-dd.open .nav-dd-menu {
    opacity: 1; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .nav-dd-item {
    display: block;
    padding: 16px 22px;
    text-decoration: none;
    color: var(--ink);
    border-bottom: 1px solid var(--border);
    transition: background .12s;
  }
  .nav-dd-item:last-child { border-bottom: 0; }
  .nav-dd-item:hover { background: var(--bg); }
  .nav-dd-item-title {
    display: block;
    font-size: 16px; font-weight: 600;
    letter-spacing: -0.015em;
    margin-bottom: 2px;
    color: var(--ink);
  }
  .nav-dd-item-title .ext { font-size: 13px; opacity: 0.6; margin-left: 4px; font-weight: 400; }
  .nav-dd-item-sub {
    display: block;
    font-size: 13.5px; color: var(--muted);
    line-height: 1.4;
  }

  .nav-right { display: flex; align-items: center; gap: 8px; }
  .nav-search {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--pill);
    font-size: 13.5px; color: var(--muted);
    width: 220px;
    transition: var(--t);
  }
  .nav-search:hover { border-color: var(--border-mid); }
  .nav-search svg { width: 14px; height: 14px; opacity: 0.5; }
  .nav-search .slash { margin-left: auto; padding: 2px 7px; background: var(--bg-2); border: 1px solid var(--border); border-radius: 5px; font-size: 11px; color: var(--hint); font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; }
  .nav-login { padding: 9px 14px; font-size: 14px; color: var(--ink); border-radius: var(--pill); transition: var(--t); font-weight: 500; }
  .nav-login:hover { background: rgba(14,14,10,0.06); }
  .nav-signup {
    padding: 10px 22px;
    font-size: 14px; font-weight: 600;
    color: #fff; background: var(--terra);
    border-radius: var(--pill);
    transition: background .18s;
  }
  .nav-signup:hover { background: var(--terra-dark); }

  @media (max-width: 1100px) { .nav-search { width: 180px; } }
  @media (max-width: 920px) { .nav-mid { display: none; } .nav-search { display: none; } .nav-login { display: none; } .nav-signup { display: none; } }

  /* Hamburger button — hidden on desktop */
  .nav-hamburger {
    display: none;
    width: 44px; height: 44px;
    padding: 0;
    background: transparent; border: 0;
    cursor: pointer;
    border-radius: 8px;
    transition: background .18s;
    flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  }
  .nav-hamburger:hover { background: rgba(14,14,10,0.06); }
  .nav-hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--ink); border-radius: 2px;
    transition: transform .22s ease, opacity .18s ease;
  }
  .nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  @media (max-width: 920px) { .nav-hamburger { display: inline-flex; } }

  /* Mobile drawer — fixed full-viewport panel, hidden by default */
  .mobile-nav {
    position: fixed; inset: 72px 0 0 0; z-index: 750;
    background: var(--bg);
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
  }
  .mobile-nav.open {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateY(0);
    transition: opacity .22s ease, transform .22s ease, visibility 0s linear 0s;
  }
  .mobile-nav-inner {
    max-width: var(--maxw); margin: 0 auto;
    padding: 24px 24px 40px;
    display: flex; flex-direction: column; gap: 28px;
  }
  .mobile-nav-section { display: flex; flex-direction: column; gap: 2px; }
  .mobile-nav-h {
    font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;
    font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--hint);
    padding: 8px 4px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 6px;
  }
  .mobile-nav-section a {
    display: block;
    padding: 14px 4px;
    font-size: 17px; font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: color .18s;
  }
  .mobile-nav-section a:hover { color: var(--terra); }
  .mobile-nav-section a:last-child { border-bottom: 0; }
  .mobile-nav-section a .ext { font-size: 13px; color: var(--hint); margin-left: 4px; }
  .mobile-nav-cta {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    margin-top: 8px;
  }
  .mobile-nav-cta .btn { padding: 14px 18px; font-size: 15px; }
  @media (min-width: 921px) { .mobile-nav { display: none !important; } }

  /* Lock body scroll when drawer is open */
  body.menu-open { overflow: hidden; }

  /* ──────────── BUTTONS ──────────── */
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 7px;
    padding: 14px 28px;
    font-size: 15px; font-weight: 600;
    border-radius: var(--pill);
    transition: var(--t);
    white-space: nowrap;
    letter-spacing: -0.005em;
  }
  .btn-terra { background: var(--terra); color: #fff; }
  .btn-terra:hover { background: var(--terra-dark); transform: translateY(-1px); }
  .btn-blue { background: var(--blue); color: #fff; }
  .btn-blue:hover { background: #3a5e7a; transform: translateY(-1px); }
  .btn-sage { background: var(--teal); color: #fff; }
  .btn-sage:hover { background: #4a6a4e; transform: translateY(-1px); }
  .btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--border-mid); }
  .btn-ghost:hover { background: var(--white); border-color: var(--ink); }
  .btn-white { background: #fff; color: var(--ink); }
  .btn-white:hover { background: #f0f0eb; }
  .btn-dark { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.18); pointer-events: none; cursor: default; }
  .btn-lg { padding: 16px 32px; font-size: 16px; }

  /* ──────────── HERO (Anthropic-style: big headline left, aside right) ──────────── */
  .hero {
    max-width: var(--maxw); margin: 0 auto;
    padding: 96px 24px 72px;
    min-height: 56vh;
    display: grid; grid-template-columns: 1.55fr 1fr; gap: 72px;
    align-items: center;
  }
  @media (max-width: 960px) {
    .hero { grid-template-columns: 1fr; gap: 36px; padding: 56px 24px 72px; min-height: 0; }
  }
  .hero-headline h1 {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', sans-serif;
    font-size: clamp(44px, 5.4vw, 78px);
    font-weight: 600; letter-spacing: -0.038em; line-height: 1.04;
    color: var(--ink);
  }
  .hero-aside { padding-top: 0; }
  .hero-aside .sub {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 20px; color: var(--ink); line-height: 1.5;
    margin: 0;
  }
  .hero-aside .note {
    font-size: 15px; color: var(--muted); line-height: 1.5;
    margin-top: 22px;
  }
  .hero-aside .note sup { font-size: 10px; color: var(--hint); }
  .hero-phone {
    width: min(100%, 340px);
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 25px 50px -10px rgba(0,0,0,0.3), 0 8px 16px -4px rgba(0,0,0,0.15);
    overflow: hidden;
    padding: 22px 22px 26px;
    font-size: 14px;
    position: relative;
  }
  .hero-phone-head {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 24px;
  }
  .hero-phone-head .menu, .hero-phone-head .bell, .hero-phone-head .logo {
    width: 22px; height: 22px;
    display: grid; place-items: center;
    color: var(--muted);
  }
  .hero-phone-head .search {
    flex: 1;
    background: var(--bg-2);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 11.5px; color: var(--hint);
    display: flex; align-items: center; gap: 6px;
  }
  .hero-phone-head .logo-circle {
    width: 26px; height: 26px; border-radius: 50%;
    background: var(--terra);
    display: grid; place-items: center;
    flex-shrink: 0;
  }
  .hero-phone-head .logo-circle svg { width: 17px; height: 17px; display: block; }
  .hero-phone-val {
    font-size: 32px; font-weight: 700; letter-spacing: -0.025em;
    color: var(--ink); line-height: 1; margin-bottom: 6px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  }
  .hero-phone-delta { font-size: 12.5px; color: var(--teal); font-weight: 500; margin-bottom: 16px; display: inline-flex; align-items: center; gap: 4px; }
  .hero-phone-chart { height: 130px; margin: 6px -6px 14px; position: relative; }
  .hero-phone-chart svg { width: 100%; height: 100%; }
  .hero-phone-chart .pulse-dot {
    position: absolute; right: -7px; top: 11px;
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--terra); border: 3px solid #fff;
    box-shadow: 0 0 0 4px rgba(196,82,46,0.2);
  }
  .hero-phone-tabs {
    display: flex; justify-content: space-between; align-items: center;
    margin: 0 -4px 18px;
    font-size: 11.5px; color: var(--hint);
  }
  .hero-phone-tabs span { padding: 4px 9px; border-radius: 8px; font-weight: 500; }
  .hero-phone-tabs span.active { background: var(--terra-pale); color: var(--terra); font-weight: 600; }
  .hero-phone-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 11px 0;
    font-size: 13px; color: var(--ink);
  }
  .hero-phone-row + .hero-phone-row { border-top: 1px solid var(--bg-2); }
  .hero-phone-row .l { display: flex; align-items: center; gap: 10px; font-weight: 500; }
  .hero-phone-row .l .ico {
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--bg-2); display: grid; place-items: center;
    color: var(--muted);
  }
  .hero-phone-row .l .ico svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 1.8; }
  .hero-phone-row .v { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-weight: 500; font-size: 12.5px; color: var(--ink); }
  .hero-phone-row .v.up { color: var(--teal); }

  /* hero form */
  .hero-form {
    display: flex; gap: 8px;
    margin-top: 26px;
    max-width: 440px;
  }
  .hero-form input {
    flex: 1;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px 18px;
    font-family: inherit;
    font-size: 14.5px; color: var(--ink);
    transition: var(--t);
  }
  .hero-form input::placeholder { color: var(--hint); }
  .hero-form input:focus { outline: none; border-color: var(--terra); box-shadow: 0 0 0 3px rgba(196,82,46,0.12); }
  .hero-form button {
    padding: 14px 32px;
    font-size: 14.5px; font-weight: 600;
    color: #fff; background: var(--terra);
    border-radius: 8px;
    transition: background .18s;
  }
  .hero-form button:hover { background: var(--terra-dark); }

  /* ──────────── BIG DARK CARDS ──────────── */
  .cards { max-width: var(--maxw); margin: 0 auto; padding: 0 24px 12px; }
  .card {
    position: relative; overflow: hidden;
    background: #010101;
    color: #fff;
    border-radius: var(--card-r);
    padding: 88px 64px 0;
    margin-bottom: 12px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.06);
  }
  .card::before { display: none; }
  .card-inner { position: relative; z-index: 2; }
  .card .badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
  }
  .card .badge .mark { width: 18px; height: 18px; border-radius: 50%; background: rgba(255,255,255,0.12); display: grid; place-items: center; }
  .card .badge .mark::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--terra); }
  .card h2 {
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 700; letter-spacing: -0.03em; line-height: 1.08;
    margin: 0 auto;
    max-width: 720px;
  }
  .card p.lead {
    font-size: clamp(17px, 1.5vw, 20px);
    color: rgba(255,255,255,0.7); line-height: 1.45;
    margin: 22px auto 32px; max-width: 620px;
  }
  .card .cta-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }

  /* product UI screenshot inside the card */
  .card-screenshot {
    position: relative;
    max-width: 1080px; margin: 0 auto;
    margin-bottom: -1px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    background: #14140e;
    border: 1px solid rgba(255,255,255,0.08);
    border-bottom: 0;
  }
  .scr-chrome {
    display: flex; align-items: center; gap: 7px;
    padding: 14px 22px;
    background: rgba(255,255,255,0.025);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 11.5px; color: rgba(255,255,255,0.4);
  }
  .scr-chrome .d { width: 11px; height: 11px; border-radius: 50%; }
  .scr-chrome .r { background: #ff6058; } .scr-chrome .y { background: #ffbd2e; } .scr-chrome .g { background: #28c941; }
  .scr-chrome .addr { margin-left: 14px; }
  .scr-body {
    display: grid; grid-template-columns: 220px 1fr 340px;
    min-height: 380px;
    color: #d5d5cc;
    font-size: 13px;
    text-align: left;
  }
  @media (max-width: 880px) { .scr-body { grid-template-columns: 1fr; min-height: auto; } .scr-side, .scr-right { display: none; } }
  .scr-side {
    background: rgba(255,255,255,0.02);
    border-right: 1px solid rgba(255,255,255,0.05);
    padding: 20px 16px;
    font-size: 12.5px;
  }
  .scr-side .lbl { color: rgba(255,255,255,0.4); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; margin: 14px 8px 8px; }
  .scr-side .item { display: flex; justify-content: space-between; padding: 8px 10px; border-radius: 6px; cursor: pointer; }
  .scr-side .item:hover { background: rgba(255,255,255,0.04); }
  .scr-side .item.active { background: var(--terra); color: #fff; }
  .scr-side .item .pct { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; opacity: 0.7; font-size: 11.5px; }
  .scr-side .item.up .pct { color: #e8b8a8; }
  .scr-main { padding: 24px 28px; display: flex; flex-direction: column; gap: 20px; }
  .scr-tabs { display: flex; gap: 24px; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 14px; font-size: 12.5px; color: rgba(255,255,255,0.5); }
  .scr-tabs .t { padding-bottom: 6px; cursor: pointer; }
  .scr-tabs .t.active { color: #fff; border-bottom: 2px solid var(--terra); margin-bottom: -15px; padding-bottom: 14px; font-weight: 500; }
  .scr-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .scr-stat-lbl { font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 6px; }
  .scr-stat-val { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 22px; font-weight: 500; color: #fff; letter-spacing: -0.02em; }
  .scr-stat-meta { font-size: 11.5px; color: #e8b8a8; margin-top: 4px; }
  .scr-chart { flex: 1; min-height: 140px; }
  .scr-chart svg { width: 100%; height: 100%; }
  .scr-right {
    background: rgba(255,255,255,0.02);
    border-left: 1px solid rgba(255,255,255,0.05);
    padding: 20px 22px;
    font-size: 12.5px;
  }
  .scr-right h4 { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 14px; font-weight: 600; }
  .scr-row { display: grid; grid-template-columns: 60px 1fr auto; gap: 10px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 12px; align-items: center; }
  .scr-row .date { color: rgba(255,255,255,0.4); font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 11px; }
  .scr-row .lbl { color: rgba(255,255,255,0.85); }
  .scr-row .v { color: #e8b8a8; font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 11px; }
  .scr-row .v.t { color: var(--terra-light); }

  /* ──────────── WHY OMNES (3-up light cards on cream) ──────────── */
  .why {
    background: var(--bg);
    color: var(--ink);
    padding: 112px 0 128px;
  }
  .why-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
  .why-h {
    text-align: center;
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 600; letter-spacing: -0.028em; line-height: 1.08;
    color: var(--ink);
    max-width: 720px;
    margin: 0 auto 72px;
  }
  .why-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  }
  @media (max-width: 880px) {
    .why { padding: 72px 0 88px; }
    .why-inner { padding: 0 20px; }
    .why-grid { grid-template-columns: 1fr; gap: 12px; }
    .why-h { margin-bottom: 48px; }
  }
  .why-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 36px 32px 36px 0;
    display: flex; flex-direction: column;
    min-height: 240px;
  }
  .why-icon {
    width: 28px; height: 28px;
    color: var(--ink);
    margin-bottom: 52px;
  }
  .why-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
  .why-title {
    font-size: 19px; font-weight: 600;
    letter-spacing: -0.018em; line-height: 1.25;
    color: var(--ink);
    margin-bottom: 14px;
  }
  .why-text {
    font-size: 15px; line-height: 1.55;
    color: var(--muted);
  }

  /* ──────────── PAIR GRID (two dark cards side by side) ──────────── */
  .pair { max-width: var(--maxw); margin: 0 auto; padding: 0 24px 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  @media (max-width: 960px) { .pair { grid-template-columns: 1fr; } }
  .pcard {
    position: relative; overflow: hidden;
    background: #010101;
    color: #fff;
    border-radius: var(--card-r);
    padding: 64px 48px 0;
    text-align: center;
    min-height: 620px;
    display: flex; flex-direction: column;
    border: 1px solid rgba(255,255,255,0.06);
  }
  .pcard::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
    background-size: 28px 28px;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 65%);
            mask-image: linear-gradient(180deg, #000 0%, transparent 65%);
  }
  .pcard-inner { position: relative; z-index: 2; }
  .pcard h3 {
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 600; letter-spacing: -0.02em; line-height: 1.15;
    color: #fff;
    margin-bottom: 14px;
    max-width: 520px; margin-left: auto; margin-right: auto;
  }
  .pcard p { font-size: 17px; color: rgba(255,255,255,0.7); line-height: 1.5; margin-bottom: 28px; max-width: 580px; margin-left: auto; margin-right: auto; }
  .pcard .btn { margin-bottom: 32px; }
  .pcard-art { flex: 1; position: relative; min-height: 280px; }

  /* Terminal-style mockup for first pair card */
  .terminal {
    position: absolute; left: 50%; bottom: 0;
    transform: translateX(-50%);
    width: min(560px, 100%);
    background: #14140e;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px 8px 0 0;
    box-shadow: 0 30px 60px -20px rgba(196,82,46,0.25);
    overflow: hidden;
    text-align: left;
  }
  .term-chrome {
    display: flex; align-items: center; justify-content: center;
    padding: 12px 16px;
    background: rgba(255,255,255,0.025);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 11px; color: rgba(255,255,255,0.45);
    letter-spacing: 0.08em;
  }
  .term-chrome .dots { position: absolute; left: 16px; display: flex; gap: 6px; }
  .term-chrome .dots span { width: 10px; height: 10px; border-radius: 50%; }
  .term-body {
    padding: 22px 22px 28px;
    font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 13px;
    color: #e6e3d8; line-height: 1.85;
  }
  .term-body .line { display: flex; gap: 12px; align-items: flex-start; }
  .term-body .prompt { color: var(--terra-light); }
  .term-body .cmd { color: #fff; }
  .term-body .arg { color: rgba(255,255,255,0.55); }
  .term-body .out { color: rgba(255,255,255,0.7); padding-left: 24px; }
  .term-body .ok { color: #e8b8a8; }
  .term-body .key { color: var(--terra-light); }
  .term-body .cursor { display: inline-block; width: 7px; height: 14px; background: var(--terra-light); margin-left: 4px; vertical-align: -2px; }

  /* 3D composability stack — three overlapping glossy coins */
  .compose-stack {
    position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: clamp(300px, 40vw, 420px);
    height: clamp(210px, 28vw, 290px);
  }
  .compose-coin {
    position: absolute;
    aspect-ratio: 1;
    border-radius: 50%;
    /* default = sand/tan (OMN) */
    background: linear-gradient(135deg, #d4b88e 0%, #B89A72 35%, #6e5942 75%, #2b2419 100%);
    box-shadow:
      0 30px 60px -10px rgba(184,154,114,0.45),
      0 12px 24px -6px rgba(0,0,0,0.35),
      inset -8px -12px 28px rgba(43,36,25,0.65),
      inset 8px 12px 24px rgba(232,216,180,0.22);
    border: 1.5px solid rgba(232,216,180,0.28);
    display: grid; place-items: center;
  }
  .compose-coin::before {
    content: ""; position: absolute; inset: 8%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent 55%);
    pointer-events: none;
  }
  .compose-coin span {
    position: relative; z-index: 2;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.35);
    font-weight: 700; letter-spacing: -0.02em;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  }
  /* Bitcoin coin (left) */
  .compose-coin.c-left {
    left: 0; top: 50%;
    width: 52%;
    transform: translateY(-50%);
    z-index: 1;
    background: transparent;
    border: none;
    border-radius: 50%;
    box-shadow:
      0 30px 60px -10px rgba(247,147,26,0.45),
      0 12px 24px -6px rgba(0,0,0,0.35);
    overflow: visible;
  }
  .compose-coin.c-left::before { display: none; }
  .compose-coin.c-left .btc-svg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    display: block;
    border-radius: 50%;
  }
  /* OMN coin (right) — same size as Bitcoin, in front */
  .compose-coin.c-center {
    right: 0; left: auto; top: 50%;
    width: 52%;
    transform: translateY(-50%);
    z-index: 2;
    box-shadow:
      0 30px 60px -10px rgba(184,154,114,0.5),
      0 12px 24px -6px rgba(0,0,0,0.35),
      inset -10px -14px 32px rgba(43,36,25,0.65),
      inset 10px 14px 28px rgba(232,216,180,0.25);
  }
  .compose-coin.c-center span { font-size: clamp(28px, 3.6vw, 42px); }

  /* ──────────── INSIGHTS / BLOG (editorial, light tan) ──────────── */
  .blog {
    background: var(--white);
    color: var(--ink);
    padding: 96px 0 112px;
    border-top: 1px solid var(--border);
  }
  .blog-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
  .blog-head {
    display: grid; grid-template-columns: 1fr auto;
    align-items: end;
    gap: 32px;
    margin-bottom: 72px;
  }
  .blog-h {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 600; letter-spacing: -0.028em; line-height: 1.08;
    color: var(--ink);
  }
  .blog-view {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;
    font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--ink);
    border-bottom: 1px solid var(--ink);
    padding-bottom: 4px;
    justify-self: end; align-self: end;
    transition: opacity .2s;
  }
  .blog-view::after { content: "↗"; }
  .blog-view:hover { opacity: 0.65; }
  @media (max-width: 720px) {
    .blog { padding: 64px 0 80px; }
    .blog-inner { padding: 0 16px; }
    .blog-head { grid-template-columns: 1fr; align-items: start; gap: 20px; margin-bottom: 48px; }
    .blog-view { justify-self: start; }
  }

  .blog-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
    padding-top: 56px;
  }
  @media (max-width: 880px) {
    .blog-grid { grid-template-columns: 1fr; padding-top: 40px; }
  }
  .blog-card {
    padding: 0 48px;
    border-right: 1px solid var(--border);
    display: flex; flex-direction: column;
    color: var(--ink);
  }
  .blog-card:first-child { padding-left: 0; }
  .blog-card:last-child { padding-right: 0; border-right: 0; }
  @media (max-width: 880px) {
    .blog-card { padding: 32px 0; border-right: 0; border-bottom: 1px solid var(--border); }
    .blog-card:first-child { padding-top: 0; }
    .blog-card:last-child { padding-bottom: 0; border-bottom: 0; }
  }
  .blog-cat {
    font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;
    font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--terra);
    font-weight: 600;
    margin-bottom: 28px;
  }
  .blog-cat.research { color: var(--teal); }
  .blog-date {
    font-size: 14.5px; color: var(--muted);
    margin-bottom: 36px;
  }
  .blog-title {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: 21px; font-weight: 600;
    letter-spacing: -0.022em; line-height: 1.28;
    color: var(--ink);
    margin-bottom: 56px;
    flex: 1;
    transition: color .2s;
  }
  .blog-card:hover .blog-title { color: var(--terra); }
  .blog-read {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;
    font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--ink);
    transition: color .2s;
  }
  .blog-read::after { content: "→"; margin-left: 2px; }
  .blog-card:hover .blog-read { color: var(--terra); }


  /* ──────────── FOOTER (black) ──────────── */
  footer {
    background: #010101;
    color: #fff;
    padding: 88px 0 56px;
  }
  .ft-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
  .ft-top {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.4fr 1.2fr 1.2fr;
    gap: 56px;
    padding-bottom: 72px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  @media (max-width: 880px) {
    .ft-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .ft-brand { grid-column: 1 / -1; }
  }
  .ft-brand .logo {
    display: inline-flex; align-items: center;
    margin-bottom: 40px;
  }
  .ft-brand .logo img {
    height: 28px; width: auto; display: block;
  }
  .ft-socials { display: flex; gap: 8px; }
  .ft-socials a {
    width: 38px; height: 38px;
    display: grid; place-items: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    color: #fff;
    transition: background .2s, border-color .2s;
  }
  .ft-socials a:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); }
  .ft-socials a svg { width: 16px; height: 16px; }

  .ft-col h5 {
    font-size: 11px; color: rgba(255,255,255,0.5);
    letter-spacing: 0.18em; text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 36px;
  }
  .ft-col ul { list-style: none; display: grid; gap: 22px; }
  .ft-col a {
    font-size: 16px; color: #fff; font-weight: 400;
    display: inline-flex; align-items: center; gap: 4px;
    transition: opacity .2s;
  }
  .ft-col a:hover { opacity: 0.65; }
  .ft-col .ext::after {
    content: "↗"; margin-left: 4px;
    font-size: 14px; opacity: 0.6; font-weight: 400;
  }

  .ft-disc {
    padding-top: 56px;
    font-size: 14px; color: rgba(255,255,255,0.5);
    line-height: 1.62;
    margin-bottom: 28px;
  }
  .ft-disc a { color: var(--terra-light); text-decoration: underline; }
  .ft-copy {
    font-size: 14px; color: rgba(255,255,255,0.5);
  }

  /* ──────────── REVEAL ──────────── */
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s ease, transform .8s ease; }
  .reveal.in { opacity: 1; transform: none; }

  /* small */
  @media (max-width: 720px) {
    .nav-inner { padding: 0 16px; height: 60px; }
    .brand { font-size: 22px; }
    .brand .mark { width: 22px; height: 22px; }
    .hero { padding: 48px 16px 64px; }
    .hero-form { flex-direction: column; }
    .hero-stats { gap: 36px; }
    .cards, .pair, .partners { padding-left: 16px; padding-right: 16px; }
    .card { padding: 56px 24px 0; }
    .pcard { padding: 48px 24px 0; min-height: 540px; }
    footer { padding: 48px 0 24px; }
    .ft-inner { padding: 0 16px; }
    .partners { padding: 64px 16px; }
  }

  /* ──────────── PAGE HEADER (non-home pages) ──────────── */
  .pg-hero { padding: 88px 0 64px; border-bottom: 1px solid var(--border); }
  .pg-hero-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
  .pg-hero .eyebrow { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--hint); margin-bottom: 22px; display: inline-block; }
  .pg-hero .eyebrow .slashes { color: var(--terra); letter-spacing: 0; margin-right: 8px; }
  .pg-hero h1 { font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif; font-size: clamp(32px, 3.8vw, 48px); font-weight: 600; letter-spacing: -0.035em; line-height: 1.07; color: var(--ink); margin-bottom: 22px; }
  .pg-hero .sub { font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif; font-size: clamp(17px, 1.4vw, 19px); color: var(--muted); line-height: 1.5; max-width: 720px; }
  .pg-hero .meta { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 12px; color: var(--hint); margin-top: 20px; letter-spacing: 0.04em; }
  .pg-hero .ctas { margin-top: 32px; display: inline-flex; gap: 12px; flex-wrap: wrap; }

  /* ──────────── GENERIC SECTION ──────────── */
  .section { padding: 80px 0 96px; }
  .section.cream { background: var(--bg); }
  .section-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
  .section-eyebrow { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--hint); margin-bottom: 18px; display: inline-block; }
  .section-eyebrow .slashes { color: var(--terra); letter-spacing: 0; margin-right: 8px; }
  .section-h { font-size: clamp(28px, 3.6vw, 44px); font-weight: 600; letter-spacing: -0.028em; line-height: 1.08; color: var(--ink); margin-bottom: 24px; }
  .section-sub { font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif; font-size: 18px; color: var(--muted); line-height: 1.5; max-width: 720px; margin-bottom: 48px; }

  /* Two-col layout: aside + content */
  .two-col { display: grid; grid-template-columns: 280px 1fr; gap: 64px; }
  @media (max-width: 880px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }

  /* Numbered pillar cards (used on home + about) */
  .pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  @media (max-width: 880px) { .pillars { grid-template-columns: 1fr; } }
  .pillar { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 36px 32px; transition: var(--t); }
  .pillar:hover { border-color: var(--border-mid); box-shadow: 0 4px 14px rgba(14,14,10,0.06), 0 24px 40px rgba(14,14,10,0.06); }
  .pillar .num { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 12px; color: var(--terra); letter-spacing: 0.18em; margin-bottom: 28px; display: block; }
  .pillar h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.018em; line-height: 1.25; margin-bottom: 12px; color: var(--ink); }
  .pillar p { font-size: 15px; line-height: 1.55; color: var(--muted); }

  /* Data table (used in OMN details, etc.) */
  .data-table { width: 100%; border-collapse: collapse; }
  .data-table tr { border-bottom: 1px solid var(--border); }
  .data-table tr:last-child { border-bottom: 0; }
  .data-table th, .data-table td { padding: 18px 0; text-align: left; font-size: 15px; color: var(--ink); vertical-align: top; }
  .data-table th { font-weight: 500; color: var(--muted); font-size: 14px; width: 40%; }
  .data-table td { font-weight: 500; }

  /* Stat grid */
  .stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
  @media (max-width: 880px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
  .stat { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 22px 24px; }
  .stat .lbl { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 10.5px; color: var(--hint); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 12px; }
  .stat .v { font-size: 22px; font-weight: 600; color: var(--ink); letter-spacing: -0.02em; line-height: 1.1; }

  /* Tabs */
  .tabs { display: flex; gap: 0; border-bottom: 1px solid var(--border); margin-bottom: 40px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .tab { flex-shrink: 0; padding: 16px 20px; font-size: 14px; font-weight: 500; color: var(--muted); border: 0; background: transparent; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: var(--t); white-space: nowrap; font-family: inherit; }
  .tab:hover { color: var(--ink); }
  .tab.active { color: var(--ink); border-bottom-color: var(--terra); }
  .tab-panel { display: none; }
  .tab-panel.active { display: block; }

  /* Accordion */
  .acc-list { border-top: 1px solid var(--border); }
  .acc-cat { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 12px; color: var(--terra); letter-spacing: 0.18em; text-transform: uppercase; margin: 56px 0 8px; padding-top: 24px; border-top: 1px solid var(--border); }
  .acc-cat:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
  .acc-item { border-bottom: 1px solid var(--border); }
  .acc-q { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 22px 0; background: transparent; border: 0; cursor: pointer; text-align: left; font-size: 16px; font-weight: 500; color: var(--ink); font-family: inherit; transition: var(--t); }
  .acc-q:hover { color: var(--terra); }
  .acc-q .ico { width: 14px; height: 14px; flex-shrink: 0; margin-left: 16px; position: relative; }
  .acc-q .ico::before, .acc-q .ico::after { content: ''; position: absolute; background: currentColor; }
  .acc-q .ico::before { left: 0; right: 0; top: 6px; height: 2px; }
  .acc-q .ico::after { top: 0; bottom: 0; left: 6px; width: 2px; transition: transform 0.2s; }
  .acc-item.open .acc-q .ico::after { transform: scaleY(0); }
  .acc-a { padding: 0; font-size: 15px; line-height: 1.65; color: var(--muted); max-height: 0; overflow: hidden; transition: max-height 0.25s ease, padding 0.25s ease; }
  .acc-item.open .acc-a { max-height: 1200px; padding: 0 0 24px 0; }
  .acc-a p + p { margin-top: 12px; }

  /* Form */
  .form { display: grid; gap: 18px; max-width: 580px; }
  .form-row { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
  @media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
  .form-field label { display: block; font-size: 13px; font-weight: 500; color: var(--muted); margin-bottom: 6px; }
  .form-field input, .form-field select, .form-field textarea { width: 100%; padding: 13px 15px; border: 1px solid var(--border-mid); border-radius: 8px; background: var(--white); font-size: 15px; font-family: inherit; color: var(--ink); transition: var(--t); }
  .form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: 0; border-color: var(--terra); box-shadow: 0 0 0 4px rgba(196,82,46,0.1); }
  .form-field textarea { resize: vertical; min-height: 140px; }

  /* Color swatch */
  .swatch-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
  .swatch { background: var(--white); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
  .swatch .chip { aspect-ratio: 4 / 3; }
  .swatch .meta { padding: 14px 16px 16px; }
  .swatch .nm { font-size: 14px; font-weight: 600; color: var(--ink); }
  .swatch .hex { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 12px; color: var(--muted); margin-top: 4px; }

  /* Asset card */
  .asset-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
  .asset-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 28px; display: flex; flex-direction: column; }
  .asset-card.dark { background: var(--ink-card); border-color: rgba(255,255,255,0.06); }
  .asset-card .preview { width: 100%; aspect-ratio: 16 / 10; display: grid; place-items: center; margin-bottom: 16px; }
  .asset-card .preview img { max-width: 70%; max-height: 70%; }
  .asset-card .nm { font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 6px; font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; word-break: break-all; }
  .asset-card.dark .nm { color: #fff; }
  .asset-card .dl { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terra); text-decoration: none; margin-top: auto; padding-top: 12px; transition: var(--t); }
  .asset-card .dl:hover { color: var(--terra-dark); }

  /* Coming Soon card */
  .cs-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 64px 48px; text-align: center; max-width: 640px; margin: 80px auto 96px; }
  .cs-card .badge { display: inline-block; font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 11px; color: var(--terra); background: var(--terra-pale); padding: 6px 14px; border-radius: 8px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 28px; font-weight: 500; }
  .cs-card h2 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 600; color: var(--ink); margin-bottom: 16px; letter-spacing: -0.02em; line-height: 1.1; }
  .cs-card p { font-size: 16px; color: var(--muted); line-height: 1.55; margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }
  .cs-card .ctas { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
  .cs-card .help { font-size: 13px; color: var(--hint); margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--border); }
  .cs-card .help a { color: var(--terra); text-decoration: none; font-weight: 500; }
  .cs-card .help a:hover { text-decoration: underline; }

  /* Team grid */
  .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  @media (max-width: 880px) { .team-grid { grid-template-columns: 1fr; } }
  .team-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 32px; }
  .team-card .avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--bg-2); display: grid; place-items: center; margin-bottom: 20px; font-weight: 600; color: var(--ink); font-size: 18px; }
  .team-card .nm { font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
  .team-card .role { font-size: 13.5px; color: var(--muted); margin-bottom: 14px; }
  .team-card .li { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terra); text-decoration: none; }
  .team-card .li:hover { color: var(--terra-dark); }

  /* Contact cards */
  .contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  @media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
  .contact-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 28px; }
  .contact-card h4 { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
  .contact-card p { font-size: 14px; color: var(--muted); line-height: 1.5; margin-bottom: 16px; }
  .contact-card a { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 13px; color: var(--terra); text-decoration: none; word-break: break-all; }
  .contact-card a:hover { color: var(--terra-dark); }

  /* Legal pages */
  .legal { padding: 64px 0 96px; }
  .legal-inner { max-width: 820px; margin: 0 auto; padding: 0 24px; }
  .legal h2 { font-size: 22px; font-weight: 600; color: var(--ink); margin: 56px 0 16px; letter-spacing: -0.01em; line-height: 1.3; }
  .legal h2:first-of-type { margin-top: 0; }
  .legal h2 .num { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 13px; color: var(--terra); font-weight: 400; letter-spacing: 0.1em; margin-right: 14px; }
  .legal h3 { font-size: 16px; font-weight: 600; color: var(--ink); margin: 24px 0 10px; }
  .legal p { font-size: 15px; line-height: 1.7; color: var(--muted); margin-bottom: 14px; }
  .legal ul, .legal ol { margin: 14px 0 14px 24px; }
  .legal li { font-size: 15px; line-height: 1.7; color: var(--muted); margin-bottom: 6px; }
  .legal a { color: var(--terra); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
  .legal a:hover { color: var(--terra-dark); }
  .legal table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 13.5px; }
  .legal table th, .legal table td { padding: 12px 14px; border: 1px solid var(--border); text-align: left; vertical-align: top; line-height: 1.5; color: var(--muted); }
  .legal table th { background: var(--bg); font-weight: 600; color: var(--ink); }
  .legal sup { font-size: 10px; color: var(--terra); }

  /* OMN key term card (top of product page) */
  .key-terms { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 36px; margin-top: 48px; }
  .key-terms-h { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 11.5px; color: var(--terra); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 24px; }

  /* Feature card grid (DeFi features etc.) */
  .feat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
  @media (max-width: 880px) { .feat-grid { grid-template-columns: 1fr; } }
  .feat-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 32px; }
  .feat-card .badge { display: inline-block; font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 10.5px; padding: 4px 10px; background: var(--terra-pale); color: var(--terra); border-radius: 8px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; font-weight: 500; }
  .feat-card .badge.gray { background: var(--bg-2); color: var(--muted); }
  .feat-card h3 { font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.015em; }
  .feat-card p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }

  /* Step list (subscription process) */
  .step-list { display: grid; gap: 14px; }
  .step { display: grid; grid-template-columns: 60px 1fr; gap: 24px; padding: 28px; background: var(--white); border: 1px solid var(--border); border-radius: 8px; align-items: start; }
  @media (max-width: 600px) { .step { grid-template-columns: 1fr; gap: 12px; } }
  .step .n { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 13px; color: var(--terra); letter-spacing: 0.12em; font-weight: 500; padding-top: 4px; }
  .step h4 { font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
  .step p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }

  /* ──────────── AUTH SHELL (signup/login: stripped nav, no footer) ──────────── */
  body.auth { min-height: 100vh; display: flex; flex-direction: column; background: var(--bg); }
  .auth-nav { padding: 22px 32px; display: flex; align-items: center; justify-content: space-between; }
  .auth-nav .brand { display: inline-flex; align-items: center; }
  .auth-nav .brand img { height: 26px; width: auto; }
  .auth-nav-right { display: flex; align-items: center; gap: 12px; }
  .auth-nav-link { font-size: 14px; color: var(--ink); padding: 9px 14px; border-radius: var(--pill); font-weight: 500; transition: var(--t); }
  .auth-nav-link:hover { background: rgba(14,14,10,0.06); }
  .auth-nav-cta { padding: 9px 16px; background: var(--terra); color: #fff; font-size: 14px; font-weight: 500; border-radius: var(--pill); transition: var(--t); }
  .auth-nav-cta:hover { background: var(--terra-dark); }

  .auth-main { flex: 1; display: flex; align-items: center; justify-content: center; padding: 32px 24px 64px; }
  .auth-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 48px 48px 40px; width: 100%; max-width: 460px; text-align: center; box-shadow: 0 1px 2px rgba(14,14,10,0.04); }
  @media (max-width: 520px) { .auth-card { padding: 36px 28px 32px; } }
  .auth-logo { width: 76px; height: 76px; margin: 0 auto 28px; background: var(--terra); border-radius: 50%; display: grid; place-items: center; }
  .auth-logo svg { width: 44px; height: 44px; }
  .auth-card .badge { display: inline-block; font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 11px; color: var(--terra); background: var(--terra-pale); padding: 5px 12px; border-radius: 8px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 18px; font-weight: 500; }
  .auth-card h1 { font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif; font-size: 30px; font-weight: 600; color: var(--ink); margin-bottom: 14px; letter-spacing: -0.03em; line-height: 1.12; }
  .auth-card .lead { font-family: 'Source Serif 4', Georgia, serif; font-size: 16px; color: var(--muted); line-height: 1.55; margin-bottom: 28px; }
  .auth-card .ctas { display: flex; flex-direction: column; gap: 10px; margin-bottom: 0; }
  .auth-card .ctas .btn { width: 100%; padding: 14px 20px; font-size: 15px; }
  .auth-card .help { font-size: 13px; color: var(--hint); margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--border); }
  .auth-card .help a { color: var(--terra); text-decoration: none; font-weight: 500; }
  .auth-card .help a:hover { text-decoration: underline; }

  /* Auth-page legal strip (no full footer — just Privacy/Terms links) */
  .auth-legal { padding: 20px 32px 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 12.5px; color: var(--hint); flex-wrap: wrap; }
  .auth-legal-disc { max-width: 720px; line-height: 1.5; }
  .auth-legal-links { display: flex; gap: 20px; flex-shrink: 0; }
  .auth-legal-links a { color: var(--ink); text-decoration: none; transition: var(--t); }
  .auth-legal-links a:hover { color: var(--terra); }
  @media (max-width: 720px) { .auth-legal { padding: 16px 20px 22px; flex-direction: column; align-items: flex-start; } }

  /* ──────────── LEGAL PAGE LAYOUT (sticky sidebar TOC + content) ──────────── */
  .legal-layout { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 260px 1fr; gap: 80px; }
  @media (max-width: 980px) { .legal-layout { grid-template-columns: 1fr; gap: 32px; } }

  .legal-toc { position: sticky; top: 32px; align-self: start; max-height: calc(100vh - 64px); overflow-y: auto; padding-right: 16px; }
  @media (max-width: 980px) { .legal-toc { position: static; max-height: none; padding: 0 0 32px; border-bottom: 1px solid var(--border); padding-right: 0; } }
  .legal-toc-h { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--hint); margin-bottom: 18px; padding-left: 14px; }
  .legal-toc ol { list-style: none; margin: 0; padding: 0; border-left: 1px solid var(--border); }
  .legal-toc li { margin: 0; }
  .legal-toc a { display: flex; gap: 10px; padding: 9px 14px; font-size: 13.5px; color: var(--muted); text-decoration: none; line-height: 1.35; transition: color 0.15s ease, border-color 0.15s ease; border-left: 2px solid transparent; margin-left: -1px; }
  .legal-toc a:hover { color: var(--ink); }
  .legal-toc a.active { color: var(--terra); border-left-color: var(--terra); font-weight: 500; }
  .legal-toc a .num { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 11px; color: var(--hint); flex-shrink: 0; min-width: 20px; padding-top: 2px; }
  .legal-toc a.active .num { color: var(--terra); }

  .legal-content { min-width: 0; max-width: 760px; }
  .legal-content h2 { scroll-margin-top: 24px; }
  .legal-content h2:first-of-type { margin-top: 0; }

  /* ════════════════════════════════════════════════════════════════════════
     V2: Kraken-institutional patterns
     ════════════════════════════════════════════════════════════════════════ */

  /* ─── Lightweight hero (no graphic, big restrained type) ─── */
  .hero-lite { padding: 120px 0 96px; }
  .hero-lite-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
  .hero-lite h1 { font-size: clamp(48px, 6.2vw, 84px); font-weight: 500; letter-spacing: -0.04em; line-height: 1; color: var(--ink); margin-bottom: 28px; max-width: 880px; }
  .hero-lite .sub { font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif; font-size: clamp(18px, 1.6vw, 22px); color: var(--muted); line-height: 1.5; max-width: 700px; margin-bottom: 36px; }
  .hero-lite .ctas { display: inline-flex; gap: 12px; flex-wrap: wrap; }
  @media (max-width: 720px) { .hero-lite { padding: 72px 0 56px; } }

  /* ─── Sticky in-page sub-nav (OMN-style) ─── */
  .subnav { background: var(--bg); border-bottom: 1px solid var(--border); }
  .subnav-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; display: flex; justify-content: center; align-items: center; gap: 4px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .subnav a { flex-shrink: 0; padding: 22px 26px; font-size: 14px; font-weight: 500; color: var(--muted); text-decoration: none; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: var(--t); white-space: nowrap; }
  .subnav a:hover { color: var(--ink); }
  .subnav a.active { color: var(--terra); border-bottom-color: var(--terra); }
  @media (max-width: 560px) {
    .subnav-inner { justify-content: flex-start; padding: 0 16px; }
    .subnav a { padding: 18px 14px; font-size: 13px; }
  }

  /* ─── Trust band: text-only 3- or 4-up ─── */
  .trust-band { padding: 64px 0 80px; }
  .trust-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; }
  @media (max-width: 980px) { .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 36px; } }
  @media (max-width: 600px) { .trust-inner { grid-template-columns: 1fr; gap: 28px; } }
  .trust-item h3 { font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.01em; }
  .trust-item p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }

  /* ─── Chapter break ─── */
  .chapter { padding: 80px 0 0; }
  .chapter-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
  .chapter h2 { font-size: clamp(32px, 4.2vw, 56px); font-weight: 500; letter-spacing: -0.03em; line-height: 1.05; color: var(--ink); max-width: 800px; }
  .chapter .sub { font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif; font-size: clamp(17px, 1.4vw, 20px); color: var(--muted); line-height: 1.5; margin-top: 18px; max-width: 700px; }

  /* ─── Split row (the workhorse: text one side, visual the other) ─── */
  .split-row { padding: 80px 0; }
  .split-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .split-row.reverse .split-inner > :first-child { order: 2; }
  @media (max-width: 880px) { .split-inner { grid-template-columns: 1fr; gap: 40px; } .split-row.reverse .split-inner > :first-child { order: 0; } }
  .split-text h3 { font-size: clamp(28px, 3.6vw, 44px); font-weight: 500; letter-spacing: -0.025em; line-height: 1.08; color: var(--ink); margin-bottom: 22px; }
  .split-text p { font-size: 17px; line-height: 1.6; color: var(--muted); margin-bottom: 14px; }
  .split-text p:last-child { margin-bottom: 0; }
  .split-text .ilink { display: inline-block; margin-top: 18px; font-size: 14.5px; font-weight: 500; color: var(--terra); text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 1px; transition: var(--t); }
  .split-text .ilink:hover { color: var(--terra-dark); }

  .split-visual { display: grid; place-items: center; }
  .split-visual > * { width: 100%; max-width: 560px; }

  /* Mock visual: framed UI card */
  .ui-frame { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 24px; box-shadow: 0 4px 14px rgba(14,14,10,0.04), 0 24px 40px rgba(14,14,10,0.04); }
  .ui-frame-head { display: flex; align-items: center; gap: 10px; padding-bottom: 16px; border-bottom: 1px solid var(--border); margin-bottom: 18px; font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 12px; color: var(--hint); }
  .ui-frame-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--terra); }
  .ui-frame-body { display: grid; gap: 12px; }
  .ui-frame-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--bg-2); font-size: 13.5px; }
  .ui-frame-row:last-child { border-bottom: 0; }
  .ui-frame-row .l { color: var(--muted); }
  .ui-frame-row .v { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; color: var(--ink); font-weight: 500; }
  .ui-frame-row .v.up { color: var(--teal); }

  /* Mock visual: terminal */
  .ui-term { background: var(--ink-card); color: #fff; border-radius: 8px; padding: 22px 24px; font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 13px; line-height: 1.7; box-shadow: 0 30px 60px -20px rgba(196,82,46,0.18); }
  .ui-term-head { display: flex; gap: 6px; margin-bottom: 14px; }
  .ui-term-head span { width: 10px; height: 10px; border-radius: 50%; }
  .ui-term-head .r { background: #ff5f56; } .ui-term-head .y { background: #ffbd2e; } .ui-term-head .g { background: #27c93f; }
  .ui-term .pr { color: var(--terra); margin-right: 8px; }
  .ui-term .cm { color: #fff; }
  .ui-term .ar { color: #b8b8a6; }
  .ui-term .ok { color: #6cd58a; }
  .ui-term .ot { color: #6f6f66; }

  /* Mock visual: structure diagram */
  .ui-diagram { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 32px; }
  .ui-diagram-row { display: grid; grid-template-columns: 110px 1fr; gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--bg-2); }
  .ui-diagram-row:last-child { border-bottom: 0; }
  .ui-diagram-tag { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--hint); }
  .ui-diagram-body { font-size: 14px; color: var(--ink); font-weight: 500; }
  .ui-diagram-body small { display: block; font-size: 12.5px; color: var(--muted); font-weight: 400; margin-top: 2px; }

  /* ─── Stats band (oversized numerals) ─── */
  .stats-band { padding: 96px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .stats-band-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
  @media (max-width: 980px) { .stats-band-inner { grid-template-columns: repeat(2, 1fr); gap: 36px; } }
  @media (max-width: 600px) { .stats-band-inner { grid-template-columns: 1fr; } }
  .stat-big .v { font-size: clamp(48px, 5.8vw, 80px); font-weight: 500; letter-spacing: -0.04em; line-height: 1; color: var(--ink); margin-bottom: 14px; }
  .stat-big .v sup { font-size: 0.5em; vertical-align: super; color: var(--terra); margin-left: 4px; font-weight: 400; }
  .stat-big .l { font-size: 14px; color: var(--muted); line-height: 1.4; max-width: 240px; }

  /* ─── Details table (refined) ─── */
  .details-section { padding: 96px 0; }
  .details-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 280px 1fr; gap: 80px; align-items: start; }
  @media (max-width: 880px) { .details-inner { grid-template-columns: 1fr; gap: 24px; } }
  .details-table { width: 100%; border-collapse: collapse; }
  .details-table tr { border-bottom: 1px solid var(--border); }
  .details-table tr:first-child { border-top: 1px solid var(--border); }
  .details-table th, .details-table td { padding: 20px 0; font-size: 15px; text-align: left; vertical-align: top; }
  .details-table th { color: var(--muted); font-weight: 400; width: 45%; }
  .details-table td { color: var(--ink); font-weight: 500; }

  /* ─── Fees breakdown ─── */
  .fees-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 880px; margin-top: 32px; }
  @media (max-width: 720px) { .fees-grid { grid-template-columns: 1fr; } }
  .fee-card { padding-top: 24px; border-top: 1px solid var(--border); }
  .fee-card .lbl { font-size: 13px; color: var(--muted); margin-bottom: 10px; }
  .fee-card .v { font-size: 48px; font-weight: 500; color: var(--ink); letter-spacing: -0.03em; line-height: 1; margin-bottom: 12px; }
  .fee-card .v sup { font-size: 0.42em; color: var(--terra); vertical-align: super; margin-left: 2px; font-weight: 400; }
  .fee-card .desc { font-size: 13.5px; color: var(--muted); line-height: 1.55; }

  /* ─── Document list ─── */
  .doc-list { display: grid; gap: 0; max-width: 720px; margin-top: 24px; border-top: 1px solid var(--border); }
  .doc-row { display: grid; grid-template-columns: 32px 1fr auto auto; gap: 16px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--border); color: var(--ink); text-decoration: none; transition: var(--t); }
  .doc-row:hover { color: var(--terra); }
  .doc-row .ico { width: 32px; height: 32px; display: grid; place-items: center; color: var(--muted); }
  .doc-row .ico svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.5; }
  .doc-row .nm { font-size: 15px; font-weight: 500; }
  .doc-row .nm small { display: block; font-size: 12.5px; color: var(--muted); font-weight: 400; margin-top: 2px; }
  .doc-row .meta { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 11.5px; color: var(--hint); }
  .doc-row .dl { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terra); }
  .doc-row.locked { cursor: default; }
  .doc-row.locked:hover { color: var(--ink); }
  .doc-row.locked .dl { color: var(--hint); }

  /* ─── FAQ accordion v2 (no borders, lighter) ─── */
  .acc-v2 { max-width: 800px; margin-top: 32px; border-top: 1px solid var(--border); }
  .acc-v2 .acc-item { border-bottom: 1px solid var(--border); }
  .acc-v2 .acc-q { padding: 24px 0; font-size: 17px; }

  /* ─── Disclaimer block ─── */
  .disclaimer { padding: 64px 0 32px; }
  .disclaimer-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
  .disclaimer .lbl { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--hint); margin-bottom: 20px; }
  .disclaimer p { font-size: 13px; line-height: 1.7; color: var(--hint); margin-bottom: 12px; max-width: 920px; }
  .disclaimer a { color: var(--muted); text-decoration: underline; }

  /* ─── Inline contact form section ─── */
  .form-section { padding: 96px 0 120px; background: var(--bg-2); }
  .form-section-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
  @media (max-width: 880px) { .form-section-inner { grid-template-columns: 1fr; gap: 40px; } }
  .form-section h2 { font-size: clamp(28px, 3.6vw, 44px); font-weight: 500; letter-spacing: -0.025em; line-height: 1.05; color: var(--ink); margin-bottom: 18px; }
  .form-section .sub { font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif; font-size: 16px; color: var(--muted); line-height: 1.55; margin-bottom: 24px; }
  .form-side-meta { font-size: 13.5px; color: var(--muted); line-height: 1.6; }
  .form-side-meta strong { color: var(--ink); font-weight: 500; display: block; margin-top: 14px; margin-bottom: 4px; }
  .form-side-meta a { color: var(--terra); text-decoration: none; font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 12.5px; }

  /* ─── Logo strip (partners) ─── */
  .logo-strip { padding: 56px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .logo-strip-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
  .logo-strip .lbl { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--hint); margin-bottom: 28px; }
  .logo-strip-row { display: flex; flex-wrap: wrap; align-items: center; gap: 56px; opacity: 0.78; }
  .logo-strip-row > div { font-family: -apple-system, BlinkMacSystemFont, sans-serif; font-size: 18px; font-weight: 500; color: var(--ink); letter-spacing: -0.01em; }
  @media (max-width: 720px) { .logo-strip-row { gap: 32px; } .logo-strip-row > div { font-size: 16px; } }

  /* ─── Category cards (FAQ hub) ─── */
  .cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px; }
  @media (max-width: 980px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { .cat-grid { grid-template-columns: 1fr; } }
  .cat-card { display: block; padding: 28px 24px; background: transparent; border: 1px solid var(--border); border-radius: 8px; text-decoration: none; transition: var(--t); }
  .cat-card:hover { border-color: var(--ink); }
  .cat-card .nm { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 6px; letter-spacing: -0.01em; }
  .cat-card .ct { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 11.5px; color: var(--terra); letter-spacing: 0.12em; text-transform: uppercase; }

  /* ─── Boilerplate panel (media kit) ─── */
  .boilerplate { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 36px; }
  .boilerplate .lbl { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--hint); margin-bottom: 16px; }
  .boilerplate p { font-size: 15px; line-height: 1.65; color: var(--muted); margin-bottom: 14px; }
  .boilerplate p:last-of-type { margin-bottom: 0; }
  .boilerplate .copy { margin-top: 18px; font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 11px; color: var(--terra); letter-spacing: 0.14em; text-transform: uppercase; background: transparent; border: 0; cursor: pointer; }

  /* ─── In-the-news list ─── */
  .news-list { display: grid; gap: 0; max-width: 880px; margin-top: 24px; border-top: 1px solid var(--border); }
  .news-row { display: grid; grid-template-columns: 180px 1fr 100px; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--border); text-decoration: none; color: var(--ink); transition: var(--t); align-items: baseline; }
  @media (max-width: 720px) { .news-row { grid-template-columns: 1fr; gap: 4px; } }
  .news-row:hover { color: var(--terra); }
  .news-row .pub { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--hint); }
  .news-row .ttl { font-size: 15px; font-weight: 500; line-height: 1.4; }
  .news-row .date { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 11.5px; color: var(--hint); text-align: right; }
  @media (max-width: 720px) { .news-row .date { text-align: left; } }


  /* ──────────── RICH VISUAL MOCKUPS (for split rows) ──────────── */

  /* Portfolio dashboard mockup */
  .mock-dash {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px 28px 24px;
    box-shadow: 0 1px 2px rgba(14,14,10,0.03), 0 30px 60px -20px rgba(14,14,10,0.08), 0 12px 24px -8px rgba(14,14,10,0.06);
    overflow: hidden;
  }
  .mock-dash-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
  .mock-dash-head .l { display: flex; align-items: center; gap: 10px; }
  .mock-dash-head .mark { width: 26px; height: 26px; border-radius: 50%; background: var(--terra); display: grid; place-items: center; }
  .mock-dash-head .mark svg { width: 16px; height: 16px; }
  .mock-dash-head .ttl { font-size: 14px; font-weight: 600; color: var(--ink); }
  .mock-dash-head .ttl small { display: block; font-size: 11.5px; color: var(--muted); font-weight: 400; font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; margin-top: 1px; }
  .mock-dash-head .pill { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); background: rgba(90,122,94,0.1); padding: 4px 10px; border-radius: 8px; font-weight: 500; }

  .mock-dash-val { font-size: 36px; font-weight: 600; letter-spacing: -0.025em; color: var(--ink); line-height: 1; margin-bottom: 4px; font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; }
  .mock-dash-delta { font-size: 12.5px; color: var(--teal); font-weight: 500; margin-bottom: 18px; font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; }

  .mock-dash-chart { height: 100px; margin: 0 -8px 14px; position: relative; }
  .mock-dash-chart svg { width: 100%; height: 100%; }

  .mock-dash-tabs { display: flex; gap: 4px; padding: 12px 0; margin-bottom: 4px; border-top: 1px solid var(--border); font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 11px; color: var(--hint); letter-spacing: 0.06em; }
  .mock-dash-tabs span { padding: 4px 9px; border-radius: 8px; }
  .mock-dash-tabs span.on { background: var(--terra-pale); color: var(--terra); font-weight: 500; }

  .mock-dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; padding-top: 14px; border-top: 1px solid var(--border); }
  .mock-dash-stat .l { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--hint); margin-bottom: 5px; }
  .mock-dash-stat .v { font-size: 16px; font-weight: 600; color: var(--ink); font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; letter-spacing: -0.005em; }
  .mock-dash-stat .v.up { color: var(--teal); }

  /* Architecture stack — for DeFi Features */
  .mock-stack {
    background: var(--ink-card);
    color: #fff;
    border-radius: 8px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(196,82,46,0.18), 0 1px 2px rgba(0,0,0,0.4);
  }
  .mock-stack::before {
    content: ""; position: absolute; inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
    background-size: 24px 24px;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%, transparent 100%);
            mask-image: linear-gradient(180deg, transparent 0%, #000 30%, transparent 100%);
    pointer-events: none;
  }
  .mock-stack-token { position: relative; z-index: 2; width: 80px; height: 80px; margin: 0 auto 24px; background: linear-gradient(135deg, var(--terra) 0%, var(--terra-dark) 100%); border-radius: 50%; display: grid; place-items: center; box-shadow: 0 0 32px rgba(196,82,46,0.4); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; color: #fff; }
  .mock-stack-token .sub { display: block; font-size: 9.5px; letter-spacing: 0.18em; color: rgba(255,255,255,0.6); font-weight: 500; margin-top: -2px; }
  .mock-stack-layers { position: relative; z-index: 2; display: grid; gap: 10px; }
  .mock-stack-layer { display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; }
  .mock-stack-layer:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.14); }
  .mock-stack-layer .ico { width: 32px; height: 32px; flex-shrink: 0; border-radius: 8px; background: rgba(196,82,46,0.16); display: grid; place-items: center; color: var(--terra-light); }
  .mock-stack-layer .ico svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
  .mock-stack-layer .nm { font-size: 14px; font-weight: 500; color: #fff; line-height: 1.3; }
  .mock-stack-layer .nm small { display: block; font-size: 11.5px; color: rgba(255,255,255,0.55); font-weight: 400; margin-top: 2px; }
  .mock-stack-layer .badge { margin-left: auto; font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; padding: 3px 8px; border-radius: 8px; background: rgba(108,213,138,0.14); color: #6cd58a; font-weight: 500; flex-shrink: 0; }
  .mock-stack-layer .badge.gray { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.55); }

  /* Stat schematic — for About */
  .mock-schema {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px 28px;
    box-shadow: 0 1px 2px rgba(14,14,10,0.03), 0 30px 60px -20px rgba(14,14,10,0.08), 0 12px 24px -8px rgba(14,14,10,0.06);
  }
  .mock-schema-row { display: grid; grid-template-columns: 130px 1fr auto; gap: 16px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--bg-2); }
  .mock-schema-row:last-child { border-bottom: 0; }
  .mock-schema-tag { display: flex; align-items: center; gap: 8px; font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--hint); }
  .mock-schema-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--terra); flex-shrink: 0; }
  .mock-schema-body { font-size: 14.5px; color: var(--ink); font-weight: 500; line-height: 1.35; }
  .mock-schema-body small { display: block; font-size: 12px; color: var(--muted); font-weight: 400; margin-top: 3px; }
  .mock-schema-flag { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 10px; padding: 3px 8px; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

  /* Team avatars */
  .mock-team {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px 28px;
    box-shadow: 0 1px 2px rgba(14,14,10,0.03), 0 30px 60px -20px rgba(14,14,10,0.08);
  }
  .mock-team-row { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--bg-2); }
  .mock-team-row:last-child { border-bottom: 0; }
  .mock-team-avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-size: 14px; font-weight: 600; color: #fff; letter-spacing: -0.005em; flex-shrink: 0; }
  .mock-team-avatar.a1 { background: linear-gradient(135deg, var(--terra), var(--terra-dark)); }
  .mock-team-avatar.a2 { background: linear-gradient(135deg, var(--teal), #436547); }
  .mock-team-avatar.a3 { background: linear-gradient(135deg, var(--blue), #345168); }
  .mock-team-info { flex: 1; min-width: 0; }
  .mock-team-info .nm { font-size: 15px; font-weight: 600; color: var(--ink); }
  .mock-team-info .role { font-size: 12.5px; color: var(--muted); margin-top: 1px; }
  .mock-team-row .li { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--terra); text-decoration: none; flex-shrink: 0; }
  .mock-team-row .li:hover { color: var(--terra-dark); }

  /* Map / locations */
  .mock-locs {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px 28px;
    box-shadow: 0 1px 2px rgba(14,14,10,0.03), 0 30px 60px -20px rgba(14,14,10,0.08);
  }
  .mock-locs-row { display: grid; grid-template-columns: 80px 1fr auto; gap: 18px; align-items: start; padding: 18px 0; border-bottom: 1px solid var(--bg-2); }
  .mock-locs-row:last-child { border-bottom: 0; }
  .mock-locs-flag { font-size: 28px; line-height: 1; padding-top: 2px; }
  .mock-locs-body { font-size: 14.5px; color: var(--ink); font-weight: 600; line-height: 1.4; }
  .mock-locs-body small { display: block; font-size: 12.5px; color: var(--muted); font-weight: 400; margin-top: 4px; line-height: 1.5; }
  .mock-locs-badge { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 10px; padding: 4px 9px; background: var(--terra-pale); color: var(--terra); border-radius: 8px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; flex-shrink: 0; }

  /* ──────────── OMN TAB SECTIONS (per omnes.io/omn structure) ──────────── */
  .omn-tabs-bar { position: sticky; top: 0; z-index: 40; background: var(--bg); border-bottom: 1px solid var(--border); backdrop-filter: blur(8px); }
  .omn-tabs-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 0; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .omn-tab { flex-shrink: 0; padding: 18px 22px; font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; color: var(--muted); border: 0; background: transparent; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: var(--t); white-space: nowrap; }
  .omn-tab:hover { color: var(--ink); }
  .omn-tab.active { color: var(--ink); border-bottom-color: var(--terra); }

  .omn-panel { display: none; padding: 88px 0 96px; }
  .omn-panel.active { display: block; }
  .omn-panel-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

  .omn-eyebrow { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--hint); margin-bottom: 22px; display: inline-block; }
  .omn-eyebrow .sl { color: var(--terra); letter-spacing: 0; margin-right: 8px; }

  /* Two-col header (eyebrow + huge H2 on left, body paragraphs on right) */
  .omn-head { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-bottom: 56px; }
  @media (max-width: 880px) { .omn-head { grid-template-columns: 1fr; gap: 32px; } }
  .omn-head h2 { font-size: clamp(32px, 4.4vw, 56px); font-weight: 500; letter-spacing: -0.03em; line-height: 1.05; color: var(--ink); max-width: 580px; }
  .omn-head .body p { font-size: 16px; line-height: 1.65; color: var(--muted); margin-bottom: 18px; }
  .omn-head .body p:last-child { margin-bottom: 0; }
  .omn-head .body .intro { font-size: 17px; color: var(--ink); font-weight: 400; }

  /* Two-col key/value grid for Overview + Details */
  .omn-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 80px; row-gap: 0; margin-top: 24px; }
  @media (max-width: 880px) { .omn-grid { grid-template-columns: 1fr; column-gap: 0; } }
  .omn-grid-row { padding: 22px 0; border-bottom: 1px solid var(--border); }
  .omn-grid-row .lbl { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--hint); margin-bottom: 8px; }
  .omn-grid-row .val { font-size: 16px; font-weight: 500; color: var(--ink); line-height: 1.4; }
  .omn-grid-row .val.terra { color: var(--terra); }

  /* Documents coming-soon card */
  .omn-doc-card { background: var(--bg-2); border-radius: 8px; padding: 40px 36px; max-width: 720px; margin: 24px auto; }
  .omn-doc-card .badge { display: inline-block; font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--terra); margin-bottom: 14px; font-weight: 500; }
  .omn-doc-card h3 { font-size: 22px; font-weight: 600; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.015em; }
  .omn-doc-card p { font-size: 15px; color: var(--muted); line-height: 1.55; margin-bottom: 24px; }

  /* Fees panel: 2-col big stats + gray body block */
  .omn-fees { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin: 24px 0 32px; }
  @media (max-width: 720px) { .omn-fees { grid-template-columns: 1fr; } }
  .omn-fee { padding: 56px 48px; text-align: center; }
  .omn-fee + .omn-fee { border-left: 1px solid var(--border); }
  @media (max-width: 720px) { .omn-fee + .omn-fee { border-left: 0; border-top: 1px solid var(--border); } }
  .omn-fee .lbl { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--hint); margin-bottom: 22px; }
  .omn-fee .v { font-size: clamp(72px, 9vw, 128px); font-weight: 500; letter-spacing: -0.04em; line-height: 1; margin-bottom: 24px; }
  .omn-fee .v .accent { color: var(--terra); }
  .omn-fee .v .zero { color: var(--teal); }
  .omn-fee .desc { font-size: 15px; color: var(--muted); line-height: 1.55; max-width: 380px; margin: 0 auto; }

  .omn-fees-body { background: var(--bg-2); border-radius: 8px; padding: 32px 36px; }
  .omn-fees-body p { font-size: 15px; color: var(--ink); line-height: 1.65; margin-bottom: 18px; }
  .omn-fees-body .fn { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 0; }

  /* DeFi Features 2x2 grid */
  .omn-feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--border); border-left: 1px solid var(--border); margin-top: 32px; }
  @media (max-width: 720px) { .omn-feat-grid { grid-template-columns: 1fr; } }
  .omn-feat { padding: 36px 40px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; min-height: 240px; display: flex; flex-direction: column; }
  .omn-feat-ico { width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 8px; display: grid; place-items: center; margin-bottom: 24px; color: var(--ink); }
  .omn-feat-ico svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
  .omn-feat h3 { font-size: 22px; font-weight: 600; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.015em; }
  .omn-feat .sub { font-size: 14.5px; color: var(--muted); line-height: 1.5; margin-bottom: 16px; }
  .omn-feat .body { font-size: 14.5px; color: var(--muted); line-height: 1.55; margin-top: auto; }
  .omn-feat .pill { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; background: var(--bg); color: var(--ink); border-radius: 8px; font-weight: 500; align-self: flex-start; }
  .omn-feat .pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
  .omn-feat .coming { position: absolute; top: 24px; right: 24px; font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; padding: 4px 10px; background: var(--terra-pale); color: var(--terra); border-radius: 8px; font-weight: 500; }

  /* Subscription steps */
  .omn-steps { display: grid; gap: 0; margin-top: 24px; border-top: 1px solid var(--border); }
  .omn-step { display: grid; grid-template-columns: 80px 1fr; gap: 32px; padding: 32px 0; border-bottom: 1px solid var(--border); align-items: start; }
  @media (max-width: 600px) { .omn-step { grid-template-columns: 1fr; gap: 8px; } }
  .omn-step .n { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 14px; color: var(--terra); letter-spacing: 0.12em; padding-top: 3px; font-weight: 500; }
  .omn-step h3 { font-size: 22px; font-weight: 600; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.015em; }
  .omn-step p { font-size: 15px; line-height: 1.6; color: var(--muted); }

  /* ──────────── HERO ART (Pixel noise field — cream bg, dark pixels) ──────────── */
  .hero-art {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 640px;
    max-height: 640px;
    width: 100%;
    background: transparent;
    overflow: hidden;
    display: grid;
    place-items: center;
  }
  .hero-art-svg {
    position: relative;
    width: 100%; height: 100%;
    overflow: hidden;
    display: block;
  }
  .hero-art-svg .px { /* pre-rendered random pixel */ }
  .hero-art-svg .px-frame { /* outlined square accent */ }
  /* Flicker pixels — staggered opacity animation, gives the noise a "live" feel */
  .hero-art-svg .px.f { animation: pxFlicker 1.6s ease-in-out infinite; }
  .hero-art-svg .px.f:nth-of-type(2n)  { animation-duration: 2.1s; animation-delay: 0.3s; }
  .hero-art-svg .px.f:nth-of-type(3n)  { animation-duration: 1.4s; animation-delay: 0.6s; }
  .hero-art-svg .px.f:nth-of-type(5n)  { animation-duration: 2.8s; animation-delay: 1.1s; }
  .hero-art-svg .px.f:nth-of-type(7n)  { animation-duration: 1.9s; animation-delay: 0.9s; }
  @keyframes pxFlicker {
    0%, 100% { opacity: 0.1; }
    35%      { opacity: 0.95; }
    70%      { opacity: 0.3; }
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-art-svg .px.f { animation: none; }
  }
  /* Voronoi cells — dark on cream background */
  .hero-art-svg .cell {
    stroke: var(--ink);
    stroke-width: 1.2;
    opacity: 0;
    animation: cellBreathe 7s ease-in-out infinite;
  }
  /* Stagger the breathing across cells (each cell has its own delay) */
  .hero-art-svg .cell:nth-child(1)  { animation-delay: 0s;    animation-duration: 6.5s; }
  .hero-art-svg .cell:nth-child(2)  { animation-delay: 0.8s;  animation-duration: 7.2s; }
  .hero-art-svg .cell:nth-child(3)  { animation-delay: 1.4s;  animation-duration: 6.8s; }
  .hero-art-svg .cell:nth-child(4)  { animation-delay: 2.1s;  animation-duration: 7.4s; }
  .hero-art-svg .cell:nth-child(5)  { animation-delay: 0.4s;  animation-duration: 6.9s; }
  .hero-art-svg .cell:nth-child(6)  { animation-delay: 2.8s;  animation-duration: 7.6s; }
  .hero-art-svg .cell:nth-child(7)  { animation-delay: 1.2s;  animation-duration: 6.7s; }
  .hero-art-svg .cell:nth-child(8)  { animation-delay: 3.0s;  animation-duration: 7.0s; }
  .hero-art-svg .cell:nth-child(9)  { animation-delay: 0.6s;  animation-duration: 7.3s; }
  .hero-art-svg .cell:nth-child(10) { animation-delay: 2.4s;  animation-duration: 6.6s; }
  .hero-art-svg .cell:nth-child(11) { animation-delay: 1.8s;  animation-duration: 7.5s; }
  .hero-art-svg .cell:nth-child(12) { animation-delay: 3.4s;  animation-duration: 7.1s; }

  /* Diagonal accent lines — slow draw + redraw */
  .hero-art-svg .accent {
    stroke: var(--terra);
    stroke-width: 2.2;
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: dashDraw 8s ease-in-out infinite;
  }
  .hero-art-svg .accent.b { animation-delay: 2s; stroke-width: 1.6; opacity: 0.65; }

  /* Twinkling dots scattered around the composition */
  .hero-art-svg .dot {
    fill: var(--ink);
    opacity: 0;
    animation: twinkle 4s ease-in-out infinite;
  }
  .hero-art-svg .dot.d2 { animation-delay: 0.7s; }
  .hero-art-svg .dot.d3 { animation-delay: 1.4s; }
  .hero-art-svg .dot.d4 { animation-delay: 2.1s; }
  .hero-art-svg .dot.d5 { animation-delay: 2.8s; }
  .hero-art-svg .dot.d6 { animation-delay: 3.5s; }
  .hero-art-svg .dot.d7 { animation-delay: 0.4s; }
  .hero-art-svg .dot.d8 { animation-delay: 1.8s; }

  @keyframes cellBreathe {
    0%, 100% { opacity: 0.15; }
    50%      { opacity: 0.95; }
  }
  @keyframes dashDraw {
    0%   { stroke-dashoffset: 600; opacity: 0.2; }
    50%  { stroke-dashoffset: 0;   opacity: 0.95; }
    100% { stroke-dashoffset: -600; opacity: 0.2; }
  }
  @keyframes twinkle {
    0%, 100% { opacity: 0; }
    50%      { opacity: 0.7; }
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-art-svg .cell { opacity: 0.6; animation: none; }
    .hero-art-svg .accent { stroke-dashoffset: 0; opacity: 0.7; animation: none; }
    .hero-art-svg .dot { opacity: 0.3; animation: none; }
  }

  /* ──────────── OMN PAGE OVERRIDES (smaller hero + split hero w/ phone) ──────────── */
  .omn-hero { padding: 88px 0 80px; }
  .omn-hero-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
  @media (max-width: 880px) { .omn-hero-inner { grid-template-columns: 1fr; gap: 48px; } .omn-hero { padding: 56px 0 56px; } }
  .omn-hero-text h1 { font-size: clamp(32px, 4.2vw, 52px); font-weight: 500; letter-spacing: -0.035em; line-height: 1.05; color: var(--ink); margin-bottom: 20px; }
  .omn-hero-text .sub { font-size: clamp(15px, 1.2vw, 17px); color: var(--muted); line-height: 1.55; max-width: 540px; margin-bottom: 28px; }
  .omn-hero-text .ctas { display: inline-flex; gap: 12px; flex-wrap: wrap; }
  .omn-hero-visual { display: grid; place-items: center; }

  /* Phone visual centered in a rounded card backdrop (matches home page treatment) */
  .omn-hero-phone-wrap {
    width: 100%; max-width: 460px;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, #C4522E 0%, #a84226 100%);
    border-radius: 8px;
    display: grid; place-items: center;
    padding: 36px;
  }
  .omn-hero-phone-wrap .hero-phone { width: 100%; max-width: 340px; box-shadow: none; }

  /* Shrink OMN tab section headers (the big two-col head h2) */
  .omn-panel .omn-head h2 { font-size: clamp(22px, 2.6vw, 36px); line-height: 1.1; }

  /* Key terms card (sits between hero and sticky tabs — mirrors omnes.io/omn) */
  .omn-keyterms-sec { max-width: var(--maxw); margin: 0 auto; padding: 0 24px 56px; }
  @media (max-width: 720px) { .omn-keyterms-sec { padding: 0 20px 40px; } }
  .omn-keyterms { border: 1px solid var(--border); border-radius: 12px; background: var(--bg-2); padding: 36px 40px; }
  @media (max-width: 720px) { .omn-keyterms { padding: 28px 24px; } }
  .omn-keyterms-head { margin-bottom: 28px; }
  .omn-keyterms-head h2 { font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif; font-size: 24px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }
  .omn-kt-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
  @media (max-width: 1000px) { .omn-kt-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .omn-kt-grid { grid-template-columns: 1fr; } }
  .omn-kt { padding: 20px 22px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .omn-kt .lbl { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--hint); margin-bottom: 8px; }
  .omn-kt .val { font-size: 15px; font-weight: 500; color: var(--ink); line-height: 1.4; }

  /* Space the lead sub away from the body prose inside OMN tab panels */
  .omn-panel .cb-sub { margin-bottom: 8px; }
  .omn-panel .cb-prose { margin-top: 32px; }

  /* ──────────── LEGAL EDITORIAL (Glasswing-style article typography, serif body) ──────────── */
  .legal-content { max-width: 720px; font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif; }
  .legal-content h2 { font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', sans-serif; font-size: 30px; font-weight: 600; line-height: 1.2; color: var(--ink); letter-spacing: -0.02em; margin: 72px 0 20px; }
  .legal-content h2 .num { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 13px; color: var(--hint); letter-spacing: 0.12em; font-weight: 400; margin-right: 16px; vertical-align: middle; }
  .legal-content h3 { font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', sans-serif; font-size: 21px; font-weight: 600; color: var(--ink); margin: 36px 0 14px; letter-spacing: -0.015em; }
  .legal-content p { font-size: 18px; line-height: 1.7; color: var(--ink); margin-bottom: 24px; letter-spacing: 0; }
  .legal-content ul, .legal-content ol { margin: 18px 0 24px 28px; }
  .legal-content li { font-size: 18px; line-height: 1.65; color: var(--ink); margin-bottom: 10px; }
  .legal-content a { color: var(--terra); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
  .legal-content a:hover { color: var(--terra-dark); }
  .legal-content table { width: 100%; max-width: 100%; table-layout: fixed; border-collapse: collapse; margin: 28px 0; font-size: 16px; font-family: 'Source Serif 4', Georgia, serif; }
  .legal-content table th, .legal-content table td { padding: 16px 18px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: top; line-height: 1.6; color: var(--ink); word-break: break-word; overflow-wrap: anywhere; }
  .legal-content table th { background: transparent; font-weight: 600; color: var(--ink); border-bottom: 1.5px solid var(--ink); }
  @media (max-width: 720px) {
    .legal-content table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .legal-content table th, .legal-content table td { padding: 10px 12px; font-size: 13.5px; }
  }

  /* FAQ accordions inside the legal (sidebar TOC) layout — keep sans typography */
  .legal-content .cb-faq { border-top: 1px solid var(--border); margin-bottom: 8px; }
  .legal-content .acc-q { font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif; font-size: 17px; }
  .legal-content .acc-a { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif; }
  .legal-content .acc-a p { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, sans-serif; font-size: 15px; line-height: 1.65; color: var(--muted); margin-bottom: 0; letter-spacing: 0; }
  .legal-content .acc-a p + p { margin-top: 12px; }

  /* ──────────── SECONDARY SERIF (Source Serif 4 for body copy site-wide) ──────────── */
  .hero-text .sub,
  .hero-lite .sub,
  .omn-hero-text .sub,
  .hero .note,
  .split-text p,
  .pillar p,
  .trust-item p,
  .feat-card p,
  .pcard p,
  .card p,
  .step p,
  .contact-card p,
  .team-card .role,
  .blog-card .blog-cat,
  .blog-card .blog-date,
  .why-text,
  .ft-disc,
  .why h2 + p,
  .chapter .sub,
  .section-sub,
  .stat-big .l,
  .trust-band .trust-item p,
  .omn-fee .desc,
  .omn-fees-body p,
  .omn-step p,
  .omn-head .body p,
  .omn-doc-card p {
    font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
    letter-spacing: 0;
  }

  /* ──────────── PIXEL THEME (tileable noise patterns used site-wide) ──────────── */
  .px-bg-dark     { background-image: url('/assets/pixel-dark.svg'); background-repeat: repeat; }
  .px-bg-light    { background-image: url('/assets/pixel-light.svg'); background-repeat: repeat; }
  .px-bg-terra    { background-image: url('/assets/pixel-terra.svg'); background-repeat: repeat; }
  .px-bg-subtle   { background-image: url('/assets/pixel-dark-subtle.svg'); background-repeat: repeat; }

  /* (m PORTAL card: pixel overlay + dot pattern removed per user request) */

  /* (OMN phone wrap pixel pattern removed — keep original clean terra gradient) */

  /* Form section: subtle pixel band */
  /* (form-section pixel band removed per user request) */

  /* Footer: light-pixel noise across the top edge of the dark footer */
  /* (footer pixel overlay removed per user request) */

  /* Page hero accent: a small decorative pixel block in the corner */
  .pg-hero { position: relative; }

  /* Hero-lite (used on About / FAQs / Contact / Media Kit / OMN) — dense pixel field accent in the corner */
  .hero-lite { position: relative; overflow: hidden; }
  .hero-lite::after {
    content: ""; position: absolute;
    top: -40px; right: -40px;
    width: 640px; height: 640px;
    background-image: url('/assets/pixel-dark.svg'); background-repeat: repeat;
    -webkit-mask-image: radial-gradient(circle at 85% 15%, #000 0%, #000 25%, transparent 78%);
            mask-image: radial-gradient(circle at 85% 15%, #000 0%, #000 25%, transparent 78%);
    opacity: 0.95;
    pointer-events: none;
  }
  @media (max-width: 880px) { .hero-lite::after { width: 360px; height: 360px; top: -20px; right: -20px; } }
  .hero-lite-inner { position: relative; z-index: 2; }

  /* Stats band — subtle pixel band */
  .stats-band { position: relative; overflow: hidden; }
  .stats-band::before {
    content: ""; position: absolute; inset: 0;
    background-image: url('/assets/pixel-dark-subtle.svg'); background-repeat: repeat;
    opacity: 0.35;
    pointer-events: none;
  }
  .stats-band-inner { position: relative; z-index: 2; }

  body.auth .auth-main { position: relative; }
  body.auth .auth-card { position: relative; z-index: 2; }

  /* ──────────── TEAM DARK (About page — Stable AI–style headshot grid) ──────────── */
  .team-dark { background: var(--ink-card); color: #fff; padding: 120px 0 128px; }
  .team-dark-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
  .team-dark-head { display: grid; grid-template-columns: 280px 1fr; gap: 80px; align-items: end; margin-bottom: 64px; }
  @media (max-width: 880px) { .team-dark-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; } }
  .team-dark-h { font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif; font-size: clamp(25px, 2.9vw, 36px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.12; color: #fff; }
  .team-dark-sub { font-family: 'Source Serif 4', Georgia, serif; font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.55; max-width: 640px; }

  .team-dark-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  @media (max-width: 880px) { .team-dark-grid { grid-template-columns: 1fr; gap: 32px; } }
  .team-dark-card { display: flex; flex-direction: column; }
  .team-dark-photo {
    position: relative;
    aspect-ratio: 1 / 1;
    width: 100%;
    overflow: hidden;
    background: #1a1a1a;
    border-radius: 8px;
  }
  .team-dark-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); display: block; }
  .team-dark-photo.fallback {
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  }
  .team-dark-photo.fallback::before {
    content: ""; position: absolute; inset: 0;
    background-image: url('/assets/pixel-light-subtle.svg'); background-repeat: repeat;
    opacity: 0.5;
    -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 100%);
            mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 100%);
  }
  .team-dark-initials {
    position: absolute; inset: 0;
    display: grid; place-items: center;
    font-size: 88px; font-weight: 500;
    letter-spacing: -0.02em;
    color: rgba(255,255,255,0.85);
    z-index: 2;
  }
  .team-dark-photo:not(.fallback) .team-dark-initials { display: none; }

  .team-dark-meta { padding-top: 22px; }
  .team-dark-role {
    font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 12px;
  }
  .team-dark-name-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
  .team-dark-name { font-size: 22px; font-weight: 500; color: #fff; letter-spacing: -0.015em; flex: 1; min-width: 0; }
  .team-dark-socials { display: flex; gap: 8px; }
  .team-dark-socials a {
    width: 30px; height: 30px; border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: grid; place-items: center;
    color: rgba(255,255,255,0.7);
    transition: var(--t);
  }
  .team-dark-socials a:hover { background: rgba(255,255,255,0.18); color: #fff; }
  .team-dark-socials svg { width: 13px; height: 13px; fill: currentColor; }

  /* ════════════ HOMEPAGE — cbBTC-style sections (Glasswing palette) ════════════ */
  .cb-section { padding: 100px 0; }
  .cb-section-alt { background: var(--bg-2); }
  .cb-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
  .cb-narrow { max-width: 760px; }
  .cb-section-head { margin-bottom: 56px; }
  .cb-section-head.center { text-align: center; }
  .cb-section-head.center .cb-sub { margin-left: auto; margin-right: auto; }
  .cb-h2 {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', sans-serif;
    font-size: clamp(25px, 2.9vw, 36px); font-weight: 600;
    letter-spacing: -0.03em; line-height: 1.12; color: var(--ink);
  }
  .cb-sub {
    font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
    font-size: clamp(17px, 1.6vw, 20px); line-height: 1.55;
    color: var(--muted); margin-top: 20px; max-width: 580px;
  }
  .cb-lead {
    font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
    font-size: clamp(17px, 1.6vw, 20px); line-height: 1.55;
    color: var(--ink); margin-top: 22px;
  }

  /* 3-up benefit / advantage cards */
  .cb-3up { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .cb-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 14px; padding: 36px 32px 38px;
    transition: var(--t);
  }
  .cb-card:hover { border-color: var(--border-mid); }
  .cb-ico {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--terra-pale); color: var(--terra);
    display: grid; place-items: center; margin-bottom: 24px;
  }
  .cb-ico svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
  .cb-card h3 {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: 22px; font-weight: 600; letter-spacing: -0.022em;
    color: var(--ink); margin-bottom: 11px;
  }
  .cb-card p { font-family: 'Source Serif 4', Georgia, serif; font-size: 15.5px; line-height: 1.62; color: var(--muted); }

  /* DeFi features grid (omn page) */
  .defi-head {
    display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px;
    align-items: start; margin-bottom: 36px;
  }
  .defi-title {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', sans-serif;
    font-size: clamp(25px, 2.9vw, 36px); font-weight: 600;
    letter-spacing: -0.03em; line-height: 1.12; color: var(--ink);
  }
  .defi-head-note { font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif; font-size: clamp(17px, 1.6vw, 20px); line-height: 1.55; color: var(--muted); max-width: 340px; }
  .defi-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1px; background: var(--border);
    border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
  }
  .defi-cell {
    position: relative; background: var(--bg);
    padding: 32px 34px 34px;
    display: flex; flex-direction: column;
  }
  .defi-cell.is-soon { background: var(--bg-2); }
  .defi-cell-top { display: flex; gap: 15px; align-items: flex-start; }
  .defi-ico {
    flex-shrink: 0; width: 44px; height: 44px;
    border-radius: 10px; background: var(--bg-2);
    display: grid; place-items: center; color: var(--muted);
  }
  .defi-cell.is-soon .defi-ico { background: var(--white); }
  .defi-ico svg {
    width: 20px; height: 20px; fill: none; stroke: currentColor;
    stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
  }
  .defi-cell h3 {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: 17px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink);
  }
  .defi-sub { font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif; font-size: 13.5px; line-height: 1.45; color: var(--muted); margin-top: 4px; }
  .defi-desc { font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif; font-size: 14.5px; line-height: 1.6; color: var(--muted); margin-top: 24px; }
  .defi-chain {
    align-self: flex-start; margin-top: 24px;
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 13px; font-weight: 500; color: var(--ink);
    background: var(--white); border: 1px solid var(--border);
    padding: 6px 12px; border-radius: var(--pill);
  }
  .defi-chain i { width: 7px; height: 7px; border-radius: 50%; background: #2563eb; }
  .defi-badge {
    position: absolute; top: 24px; right: 26px;
    font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;
    font-size: 10px; font-weight: 500; letter-spacing: 0.09em; text-transform: uppercase;
    color: var(--terra); background: var(--terra-pale);
    padding: 5px 9px; border-radius: 6px;
  }
  @media (max-width: 760px) {
    .defi-head { grid-template-columns: 1fr; gap: 14px; margin-bottom: 28px; }
    .defi-grid { grid-template-columns: 1fr; }
    .defi-cell { padding: 26px 24px 28px; }
  }

  /* Documents panel (omn page) */
  .docs-intro {
    font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
    font-size: clamp(17px, 1.6vw, 20px); line-height: 1.55;
    color: var(--muted); max-width: 720px; margin-top: 20px;
  }
  .docs-card {
    margin-top: 32px; max-width: 800px;
    background: var(--bg-2); border: 1px solid var(--border);
    border-radius: 14px; padding: 34px 38px;
  }
  .docs-soon {
    display: block;
    font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;
    font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--terra);
  }
  .docs-card h3 {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: 22px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink);
    margin-top: 12px;
  }
  .docs-card > p { font-size: 15.5px; line-height: 1.6; color: var(--muted); margin-top: 8px; }
  .docs-card .btn { margin-top: 24px; }
  .docs-foot { margin-top: 22px; font-size: 14.5px; color: var(--muted); }
  .docs-foot a { color: var(--terra); }

  /* Overview panel (omn page) */
  .ov-head {
    display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px;
    align-items: start; margin-bottom: 60px;
  }
  .ov-h {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', sans-serif;
    font-size: clamp(25px, 2.9vw, 36px); font-weight: 600;
    letter-spacing: -0.03em; line-height: 1.12; color: var(--ink);
  }
  .ov-head-r p {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 16.5px; line-height: 1.65; color: var(--muted);
  }
  .ov-head-r p + p { margin-top: 16px; }
  .ov-terms {
    display: grid; grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--border);
  }
  .ov-term {
    display: flex; flex-direction: column; gap: 10px;
    padding: 26px 0;
    border-bottom: 1px solid var(--border);
  }
  .ov-term:nth-child(odd) { padding-right: 48px; border-right: 1px solid var(--border); }
  .ov-term:nth-child(even) { padding-left: 48px; }
  .ov-term-k {
    font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;
    font-size: 11.5px; letter-spacing: 0.07em; text-transform: uppercase;
    color: var(--hint); font-weight: 500;
  }
  .ov-term-v {
    font-size: 15.5px; line-height: 1.5; color: var(--ink);
  }
  .ov-term-terra { color: var(--terra); }
  @media (max-width: 760px) {
    .ov-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 44px; }
    .ov-terms { grid-template-columns: 1fr; }
    .ov-term:nth-child(odd) { padding-right: 0; border-right: 0; }
    .ov-term:nth-child(even) { padding-left: 0; }
  }

  /* how it works — steps */
  .cb-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
  .cb-step { border-top: 2px solid var(--ink); padding-top: 20px; }
  .cb-step .n {
    font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;
    font-size: 12px; color: var(--terra); letter-spacing: 0.1em; margin-bottom: 12px;
  }
  .cb-step h4 {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.015em;
  }
  .cb-step p { font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif; font-size: 14px; line-height: 1.55; color: var(--muted); }

  /* onchain ecosystem grid */
  .cb-eco-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .cb-eco-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 12px; padding: 28px 26px 30px; transition: var(--t);
  }
  .cb-eco-card:hover { border-color: var(--border-mid); }
  .cb-eco-ico {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--bg-2); color: var(--ink);
    display: grid; place-items: center; margin-bottom: 20px;
  }
  .cb-eco-ico svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
  .cb-eco-card h4 {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: 16.5px; font-weight: 600; color: var(--ink);
    margin-bottom: 8px; letter-spacing: -0.018em;
  }
  .cb-eco-card p { font-size: 14px; line-height: 1.55; color: var(--muted); }
  .cb-eco-note {
    margin-top: 28px; font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;
    font-size: 12px; letter-spacing: 0.04em; color: var(--hint);
  }
  .cb-eco-note .dot { color: var(--terra); }

  /* quote band */
  .cb-quote { background: var(--terra); padding: 116px 0; }
  .cb-quote-inner { max-width: 1000px; margin: 0 auto; padding: 0 24px; text-align: center; }
  .cb-quote p {
    font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
    font-size: clamp(27px, 3.7vw, 46px); line-height: 1.28;
    color: #fff; letter-spacing: -0.018em; font-weight: 400;
  }
  .cb-quote .em { font-style: italic; color: var(--terra-pale); }

  /* closing CTA */
  .cb-cta { padding: 116px 0 124px; text-align: center; }
  .cb-cta-inner { max-width: 720px; margin: 0 auto; padding: 0 24px; }
  .cb-cta h2 {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: clamp(28px, 3.2vw, 40px); font-weight: 600;
    letter-spacing: -0.032em; line-height: 1.08; color: var(--ink);
  }
  .cb-cta p {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 19px; line-height: 1.5; color: var(--muted);
    margin: 18px auto 0; max-width: 480px;
  }
  .cb-cta .hero-form { margin: 32px auto 0; }
  .ir-cta .cb-h2 { max-width: 560px; margin: 0 auto; }
  .ir-cta .hero-form { margin: 28px auto 0; }
  .cb-cta-white { background: var(--white); }
  .cb-cta-white .cb-cta-inner { display: flex; flex-direction: column; align-items: center; }
  .cb-cta-inner .btn { margin-top: 28px; }

  @media (max-width: 940px) {
    .cb-3up { grid-template-columns: 1fr; }
    .cb-steps { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
    .cb-eco-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 560px) {
    .cb-section { padding: 68px 0; }
    .cb-eco-grid { grid-template-columns: 1fr; }
    .cb-quote { padding: 80px 0; }
    .cb-cta { padding: 80px 0 88px; }
  }

  /* "Learn more" button (How OMN works) */
  .cb-more {
    display: inline-flex; align-items: center; gap: 9px;
    margin-top: 52px; padding: 14px 26px;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: 15px; font-weight: 500; color: var(--ink);
    border: 1px solid var(--border-mid); border-radius: var(--pill);
    transition: var(--t);
  }
  .cb-more:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
  .cb-more svg { width: 16px; height: 16px; }

  /* contact form (homepage closing section) */
  .cb-form-wrap { max-width: 660px; margin: 0 auto; padding: 0 24px; text-align: center; }
  .cb-form {
    margin-top: 40px; text-align: left;
    display: grid; gap: 20px;
  }
  .cb-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .cb-field { display: grid; gap: 9px; }
  .cb-field label {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: 14px; font-weight: 500; color: var(--muted);
  }
  .cb-field input, .cb-field select, .cb-field textarea {
    width: 100%; background: var(--white);
    border: 1px solid var(--border); border-radius: 10px;
    padding: 14px 16px; font-family: inherit; font-size: 15px;
    color: var(--ink); transition: var(--t);
  }
  .cb-field textarea { resize: vertical; min-height: 140px; line-height: 1.55; }
  .cb-field input::placeholder, .cb-field textarea::placeholder { color: var(--hint); }
  .cb-field input:focus, .cb-field select:focus, .cb-field textarea:focus {
    outline: none; border-color: var(--terra);
    box-shadow: 0 0 0 3px rgba(196,82,46,0.12);
  }
  .cb-form-submit {
    margin-top: 6px; padding: 16px 24px;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: 16px; font-weight: 600; color: #fff;
    background: var(--terra); border-radius: 10px; transition: background .18s;
  }
  .cb-form-submit:hover { background: var(--terra-dark); }
  @media (max-width: 560px) {
    .cb-form-row { grid-template-columns: 1fr; }
  }

  /* ════════ SHARED INNER-PAGE LAYOUT (cbBTC / Glasswing) ════════ */
  .cb-page-hero { max-width: var(--maxw); margin: 0 auto; padding: 104px 24px 64px; }
  .cb-page-hero.center { text-align: center; }
  @media (max-width: 720px) { .cb-page-hero { padding: 60px 20px 40px; } }
  .cb-page-hero h1 {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: clamp(32px, 3.8vw, 48px); font-weight: 600;
    letter-spacing: -0.035em; line-height: 1.07; color: var(--ink);
  }
  .cb-page-hero .sub {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: clamp(18px, 1.9vw, 23px); line-height: 1.5;
    color: var(--muted); margin-top: 22px; max-width: 620px;
  }
  .cb-page-hero.center .sub { margin-left: auto; margin-right: auto; }
  .cb-page-hero .ctas { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
  .cb-page-hero.center .ctas { justify-content: center; }

  /* Centered feature hero (eyebrow + large serif headline) */
  .cb-hero-eyebrow {
    display: block;
    font-size: 12px; font-weight: 500;
    letter-spacing: 0.13em; text-transform: uppercase;
    color: var(--hint);
    margin-bottom: 22px;
  }
  .cb-page-hero.cb-hero-lg { padding-top: 120px; }
  .cb-page-hero.cb-hero-lg h1 {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: clamp(40px, 5.4vw, 72px);
    font-weight: 600; letter-spacing: -0.035em; line-height: 1.06;
  }
  @media (max-width: 720px) { .cb-page-hero.cb-hero-lg { padding-top: 64px; } }

  .compute-bars {
    position: relative;
    display: flex; align-items: flex-end; justify-content: center;
    gap: 5px; height: 132px;
    max-width: 680px; margin: 56px auto 0;
  }
  .compute-bars::before, .compute-bars::after {
    content: ""; position: absolute; left: 0; right: 0;
    border-top: 1px dashed var(--border-mid);
  }
  .compute-bars::before { top: 34%; }
  .compute-bars::after  { top: 67%; }
  .compute-bars i {
    position: relative; z-index: 1;
    flex: 1 1 0; min-width: 0;
    height: var(--h);
    background: linear-gradient(180deg, var(--terra) 0%, rgba(196,82,46,0.16) 100%);
    border-radius: 2px;
  }
  @media (max-width: 720px) {
    .compute-bars { height: 96px; gap: 3px; margin-top: 40px; }
  }

  .cb-2up { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  @media (max-width: 760px) { .cb-2up { grid-template-columns: 1fr; } }

  /* simple prose block */
  .cb-prose { max-width: 720px; }
  .cb-prose p {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 18px; line-height: 1.7; color: var(--ink); margin-bottom: 22px;
  }
  .cb-prose p:last-child { margin-bottom: 0; }
  .cb-prose a { color: var(--terra); text-decoration: underline; text-underline-offset: 3px; }

  /* ──────────── HERO SCROLL-TAKEOVER FEATURE CARD ──────────── */
  .cb-takeover { padding: 48px 0 0; }
  .cb-takeover-card {
    --p: 0;
    background: var(--ink-card); color: #fff;
    border-radius: calc(28px * (1 - var(--p)));
    margin: 0 calc(max(24px, (100vw - var(--maxw)) / 2 + 24px) * (1 - var(--p)));
    min-height: 82vh;
    display: grid; place-items: center;
    overflow: hidden;
    will-change: margin, border-radius;
  }
  .cb-takeover-grid {
    width: 100%; max-width: 1320px;
    padding: 80px clamp(28px, 6vw, 104px);
    display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 88px);
    align-items: center;
  }
  .cb-takeover-visual {
    position: relative;
    display: grid; place-items: center;
    background: #ebeae4;
    border-radius: 18px;
    padding: clamp(40px, 4.8vw, 64px);
    box-shadow:
      0 44px 88px -36px rgba(0,0,0,0.55),
      0 16px 36px -12px rgba(0,0,0,0.32),
      inset 0 1px 0 rgba(255,255,255,0.8);
  }
  /* mini term sheet */
  .mini-ts { position: relative; z-index: 1; width: 100%; }
  .mts-row {
    display: flex; justify-content: space-between; align-items: baseline;
    gap: 16px; padding: 15px 0;
    border-bottom: 1px solid rgba(14,14,10,0.09);
  }
  .mts-row:first-child { padding-top: 4px; }
  .mts-row:last-child { border-bottom: 0; padding-bottom: 4px; }
  .mts-k {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px; font-weight: 400; color: var(--muted);
  }
  .mts-v {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: 15.5px; font-weight: 600; color: var(--ink); text-align: right;
    letter-spacing: -0.01em;
  }
  .cb-takeover-eyebrow {
    display: inline-block;
    font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;
    font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.5); margin-bottom: 22px;
  }
  .cb-takeover-text h2 {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: clamp(32px, 3.6vw, 48px); font-weight: 600;
    letter-spacing: -0.035em; line-height: 1.07; color: #fff;
  }
  .cb-takeover-text p {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: clamp(16px, 1.5vw, 19px); line-height: 1.6;
    color: rgba(255,255,255,0.72); margin: 20px 0 0; max-width: 500px;
  }
  .cb-takeover-text p + p { margin-top: 14px; }
  .cb-takeover-ctas {
    display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
    margin-top: 32px;
  }
  .cb-takeover-link {
    color: rgba(255,255,255,0.85); text-decoration: none;
    font-size: 15px; font-weight: 500; letter-spacing: -0.005em;
    transition: var(--t);
  }
  .cb-takeover-link span { display: inline-block; transition: transform .18s; margin-left: 4px; }
  .cb-takeover-link:hover { color: #fff; }
  .cb-takeover-link:hover span { transform: translateX(3px); }
  /* let grid items shrink below intrinsic content size at narrow widths */
  .cb-takeover-visual, .cb-takeover-text { min-width: 0; }
  @media (max-width: 860px) {
    .cb-takeover-grid { grid-template-columns: 1fr; gap: 44px; padding: 64px 28px; text-align: center; }
    .cb-takeover-text p { margin-left: auto; margin-right: auto; }
    .cb-takeover-ctas { justify-content: center; }
  }
  @media (max-width: 720px) {
    .cb-takeover { padding: 24px 0 0; }
    .cb-takeover-card { min-height: 60vh; margin: 0 16px !important; }
    .cb-takeover-grid { padding: 56px 20px; gap: 36px; }
    .cb-takeover-visual { padding: 28px 22px !important; border-radius: 14px; }
    .mts-v { font-size: 14.5px; }
    .mts-k { font-size: 13.5px; }
    .cb-takeover-text h2 { font-size: clamp(26px, 7vw, 36px); }
  }
  @media (max-width: 400px) {
    .cb-takeover-grid { padding: 48px 16px; }
    .cb-takeover-visual { padding: 22px 16px !important; }
    .mts-row { padding: 12px 0; }
  }

  /* ──────────── ONCHAIN TABBED SHOWCASE (homepage) ──────────── */
  .onx { margin-top: 6px; }
  .onx-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin: 0 0 40px; border: 0; overflow: visible; }
  .onx-tab {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 11px 20px;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: 15px; font-weight: 500; color: var(--muted);
    background: transparent; border: 1px solid transparent; border-radius: var(--pill);
    cursor: pointer; transition: var(--t); white-space: nowrap;
  }
  .onx-tab svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .onx-tab:hover { color: var(--ink); }
  .onx-tab.active { background: var(--white); color: var(--ink); border-color: var(--border); box-shadow: 0 1px 3px rgba(14,14,10,0.07); }

  .onx-panel { display: none; }
  .onx-panel.active {
    display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center;
  }
  @media (max-width: 880px) { .onx-panel.active { grid-template-columns: 1fr; gap: 36px; } }
  @media (max-width: 560px) {
    .onx-tabs { flex-direction: column; align-items: stretch; }
    .onx-tab { width: 100%; justify-content: center; }
  }

  .onx-visual {
    background: var(--terra-pale); border-radius: 20px;
    min-height: 400px; display: grid; place-items: center; padding: 48px 40px;
  }
  /* Distinct background tint per tab */
  #onx-borrow   .onx-visual { background: var(--terra-pale); }
  #onx-treasury .onx-visual { background: #e9f0ea; }
  #onx-settle   .onx-visual { background: #e8edf3; }
  .onx-text h3 {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: clamp(22px, 2.4vw, 30px); font-weight: 600;
    letter-spacing: -0.03em; color: var(--ink); line-height: 1.14;
  }
  .onx-text p {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 17px; line-height: 1.6; color: var(--muted);
    margin: 14px 0 22px; max-width: 440px;
  }
  .onx-list { list-style: none; display: grid; gap: 13px; margin: 0; padding: 0; }
  .onx-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; line-height: 1.45; color: var(--ink); }
  .onx-chk { flex-shrink: 0; width: 18px; height: 18px; margin-top: 1px; }
  .onx-note { margin-top: 26px; font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 12px; letter-spacing: 0.04em; color: var(--hint); }
  .onx-note .dot { color: var(--terra); }

  /* mockup card */
  .onx-mock {
    width: 100%; max-width: 352px;
    background: var(--white); border: 1px solid var(--border);
    border-radius: 14px; padding: 22px 22px 24px;
    box-shadow: 0 20px 44px -18px rgba(0,0,0,0.22);
  }
  .onx-mock-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
  .onx-mock-tag { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 12px; color: var(--ink); font-weight: 500; }
  .onx-mock-pill { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 9px; border-radius: 6px; background: var(--terra-pale); color: var(--terra); }
  .onx-mock-big { font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif; font-size: 21px; font-weight: 600; letter-spacing: -0.022em; color: var(--ink); }
  .onx-mock-cap { font-size: 12.5px; color: var(--hint); margin-top: 3px; }
  .onx-mock-row { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-top: 1px solid var(--border); font-size: 13px; color: var(--muted); }
  .onx-mock-row:first-of-type { margin-top: 16px; }
  .onx-mock-row .v { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 12.5px; color: var(--ink); }
  .onx-mock-row .v.ok { color: var(--teal); }
  .onx-mock-bar { height: 7px; border-radius: 4px; background: var(--bg-2); margin: 16px 0 7px; overflow: hidden; }
  .onx-mock-bar i { display: block; height: 100%; background: var(--terra); border-radius: 4px; }
  .onx-mock-btn { margin-top: 18px; text-align: center; padding: 12px; border-radius: 9px; background: var(--ink); color: #fff; font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif; font-size: 13px; font-weight: 600; }
  .onx-mock-label { font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--hint); margin: 18px 0 2px; }

  /* ──────────── CONTACT PAGE ──────────── */
  .ct-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(40px, 5vw, 76px); align-items: start; }
  @media (max-width: 860px) { .ct-grid { grid-template-columns: 1fr; gap: 48px; } }
  .ct-form-h {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: clamp(24px, 2.6vw, 32px); font-weight: 600;
    letter-spacing: -0.03em; color: var(--ink); margin-bottom: 26px;
  }
  .ct-block + .ct-block { margin-top: 44px; }
  .ct-block h3 {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: 19px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 6px;
  }
  .ct-detail { padding: 18px 0; border-bottom: 1px solid var(--border); }
  .ct-detail:first-of-type { border-top: 1px solid var(--border); }
  .ct-detail .role {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    font-size: 15.5px; font-weight: 600; color: var(--ink);
  }
  .ct-detail .desc { font-size: 14px; color: var(--muted); line-height: 1.5; margin: 5px 0 8px; }
  .ct-detail a {
    font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;
    font-size: 13px; color: var(--terra); text-decoration: none;
  }
  .ct-detail a:hover { text-decoration: underline; text-underline-offset: 3px; }
  .ct-social { display: flex; gap: 10px; margin-top: 14px; }
  .ct-social a {
    width: 42px; height: 42px; border-radius: 10px;
    border: 1px solid var(--border); background: var(--white);
    display: grid; place-items: center; color: var(--ink); transition: var(--t);
  }
  .ct-social a:hover { border-color: var(--ink); }
  .ct-social svg { width: 17px; height: 17px; fill: currentColor; }

  /* ──────────── ACCESS GATE (terms of access modal) ──────────── */
  .omnes-agreed .gate-overlay{display:none!important;}
  .gate-overlay{
    position:fixed;inset:0;z-index:9999;
    background:rgba(26,26,20,.65);
    backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);
    display:flex;align-items:center;justify-content:center;
    padding:24px;
  }
  .gate-modal{
    font-family:'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    background:var(--bg);
    border:1px solid var(--border);
    max-width:680px;width:100%;
    max-height:90vh;
    display:flex;flex-direction:column;
    border-radius:14px;
    box-shadow:0 24px 80px rgba(0,0,0,.35);
    overflow:hidden;
  }
  .gate-header{ padding:40px 40px 0; flex-shrink:0; }
  .gate-slabel{
    font-size:10px;font-weight:600;letter-spacing:0.12em;text-transform:uppercase;
    color:var(--hint);display:flex;align-items:center;gap:8px;margin-bottom:16px;
  }
  .gate-slabel .sl{color:var(--terra)}
  .gate-title{
    font-family:'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size:clamp(26px,3.5vw,34px);font-weight:600;letter-spacing:-0.035em;
    line-height:1.1;color:var(--ink);margin-bottom:16px;
  }
  .gate-title span{color:var(--terra)}
  .gate-intro{ font-size:14.5px;color:var(--muted);line-height:1.85;margin-bottom:8px; }
  .gate-scroll-hint{
    font-size:12px;color:var(--terra);font-weight:500;letter-spacing:0.02em;
    margin:0;padding-bottom:20px;border-bottom:1px solid var(--border);
  }
  .gate-body{ overflow-y:auto;padding:28px 40px;flex:1;min-height:0; }
  .gate-body::-webkit-scrollbar{width:4px}
  .gate-body::-webkit-scrollbar-track{background:transparent}
  .gate-body::-webkit-scrollbar-thumb{background:var(--border-mid);border-radius:2px}
  .gate-h2{
    font-size:14px;font-weight:600;letter-spacing:-0.01em;color:var(--ink);
    margin:28px 0 12px;padding-top:20px;border-top:1px solid var(--border);
  }
  .gate-h2:first-child{margin-top:0;padding-top:0;border-top:none}
  .gate-p{font-size:13.5px;color:var(--muted);line-height:1.85;margin-bottom:12px}
  .gate-p:last-child{margin-bottom:0}
  .gate-ul{list-style:none;padding:0;margin:0 0 12px}
  .gate-ul li{
    font-size:13.5px;color:var(--muted);line-height:1.85;
    padding-left:16px;position:relative;margin-bottom:6px;
  }
  .gate-ul li::before{
    content:'·';position:absolute;left:0;color:var(--terra);font-weight:700;font-size:18px;line-height:1.5;
  }
  .gate-ol{list-style:none;padding:0;margin:0 0 12px;counter-reset:gate-ol}
  .gate-ol li{
    font-size:13.5px;color:var(--muted);line-height:1.85;
    padding-left:24px;position:relative;margin-bottom:8px;counter-increment:gate-ol;
  }
  .gate-ol li::before{
    content:counter(gate-ol) '.';position:absolute;left:0;color:var(--ink);font-weight:600;font-size:12px;
  }
  .gate-link{color:var(--terra);text-decoration:none;border-bottom:1px solid var(--terra-light)}
  .gate-link:hover{border-bottom-color:var(--terra)}
  .gate-strong{font-weight:600;color:var(--ink)}
  .gate-notice{
    font-size:13px;color:var(--muted);line-height:1.85;
    padding:20px;background:var(--bg-2);border:1px solid var(--border);
    margin-top:24px;
  }
  .gate-notice-label{
    font-size:9.5px;font-weight:700;letter-spacing:0.12em;text-transform:uppercase;
    color:var(--hint);margin-bottom:10px;
  }
  .gate-footer{
    padding:20px 40px 32px;flex-shrink:0;
    border-top:1px solid var(--border);
    display:flex;gap:12px;flex-wrap:wrap;
  }
  .gate-btn-agree{
    font-family:'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size:15px;font-weight:600;letter-spacing:-0.005em;
    padding:14px 30px;background:var(--terra);color:#fff;border:none;border-radius:var(--pill);
    cursor:pointer;transition:background .18s, transform .18s;
  }
  .gate-btn-agree:hover{background:var(--terra-dark);transform:translateY(-1px)}
  @media(max-width:680px){
    .gate-overlay{padding:0}
    .gate-modal{max-height:100vh;height:100vh;border-radius:0;border:none}
    .gate-header{padding:28px 24px 0}
    .gate-body{padding:20px 24px}
    .gate-footer{padding:16px 24px 28px}
    .gate-title{font-size:22px}
  }
