  :root {
    --ink: #0a0a0a;
    --paper: #f5f0e8;
    --gold: #c8973a;
    --gold-light: #e8b85a;
    --rust: #8b3a2a;
    --slate: #2a3540;
    --mist: #d8d0c4;
    --accent: #1a4a2e;
    --white: #faf8f4;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--paper);
    color: var(--ink);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 4rem;
    background: rgba(245,240,232,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--mist);
  }

  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    color: var(--ink);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .nav-logo span {
    color: var(--gold);
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
  }

  .nav-links a {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--slate);
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--gold); }

  .nav-cta {
    background: var(--ink) !important;
    color: var(--paper) !important;
    padding: 0.55rem 1.4rem;
    border-radius: 2px;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--gold) !important; color: var(--ink) !important; }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 4rem 6rem 4rem;
    position: relative;
    z-index: 2;
  }

  .hero-eyebrow {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  .hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--gold);
  }

  .hero-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 7vw, 7.5rem);
    line-height: 0.92;
    letter-spacing: 0.02em;
    color: var(--ink);
    margin-bottom: 2.4rem;
  }

  .hero-headline em {
    font-style: normal;
    color: var(--gold);
  }

  .hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--slate);
    max-width: 420px;
    margin-bottom: 3rem;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--ink);
    color: var(--paper);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.9rem 2rem;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--gold); color: var(--ink); }

  .btn-secondary {
    background: transparent;
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.9rem 2rem;
    border: 1px solid var(--ink);
    border-radius: 2px;
    transition: border-color 0.2s, color 0.2s;
    display: inline-block;
  }
  .btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

  .hero-right {
    background: var(--slate);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(200,151,58,0.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(200,151,58,0.08) 1px, transparent 1px);
    background-size: 48px 48px;
  }

  .hero-diagram {
    position: relative;
    z-index: 2;
    width: 380px;
    padding: 2rem;
  }

  .diagram-node {
    background: rgba(245,240,232,0.06);
    border: 1px solid rgba(200,151,58,0.3);
    border-radius: 4px;
    padding: 1.2rem 1.6rem;
    margin-bottom: 1rem;
    position: relative;
    animation: fadein 0.6s ease both;
  }

  .diagram-node:nth-child(1) { animation-delay: 0.2s; margin-left: 0; }
  .diagram-node:nth-child(2) { animation-delay: 0.4s; margin-left: 2rem; border-color: rgba(200,151,58,0.6); }
  .diagram-node:nth-child(3) { animation-delay: 0.6s; margin-left: 4rem; }
  .diagram-node:nth-child(4) { animation-delay: 0.8s; margin-left: 2rem; border-color: rgba(200,151,58,0.6); }
  .diagram-node:nth-child(5) { animation-delay: 1s; margin-left: 0; }

  .node-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
  }

  .node-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    color: var(--paper);
  }

  .node-desc {
    font-size: 0.72rem;
    color: rgba(245,240,232,0.5);
    margin-top: 0.2rem;
    font-weight: 300;
  }

  .connector-line {
    width: 1px;
    height: 16px;
    background: rgba(200,151,58,0.3);
    margin: 0 auto 0 2.8rem;
    animation: fadein 0.4s ease both;
  }

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

  .hero-stat-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.25);
    display: flex;
    justify-content: space-around;
    padding: 1rem 2rem;
    border-top: 1px solid rgba(200,151,58,0.2);
  }

  .hero-stat {
    text-align: center;
  }

  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--gold);
    letter-spacing: 0.05em;
  }

  .stat-label {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.5);
    font-family: 'DM Mono', monospace;
  }

  /* ── SECTION SHARED ── */
  section {
    padding: 7rem 4rem;
  }

  .section-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  .section-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--gold);
  }

  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 1;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
  }

  /* ── PLATFORM SECTION ── */
  #platform {
    background: var(--ink);
    color: var(--paper);
  }

  #platform .section-title { color: var(--paper); }

  .platform-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
    margin-bottom: 5rem;
  }

  .platform-body {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(245,240,232,0.7);
    max-width: 420px;
  }

  .platform-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .platform-card {
    background: rgba(245,240,232,0.04);
    border: 1px solid rgba(245,240,232,0.1);
    border-radius: 4px;
    padding: 2rem;
    position: relative;
    transition: border-color 0.3s, background 0.3s;
    cursor: default;
  }

  .platform-card:hover {
    border-color: var(--gold);
    background: rgba(200,151,58,0.05);
  }

  .platform-card.featured {
    border-color: rgba(200,151,58,0.4);
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
  }

  .card-tag {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
  }

  .card-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.05em;
    color: var(--paper);
    margin-bottom: 0.6rem;
  }

  .card-desc {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.65;
    color: rgba(245,240,232,0.55);
  }

  .card-features {
    list-style: none;
    margin-top: 1.2rem;
  }

  .card-features li {
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(245,240,232,0.6);
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(245,240,232,0.06);
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
  }

  .card-features li::before {
    content: '→';
    color: var(--gold);
    font-size: 0.7rem;
    margin-top: 0.05rem;
    flex-shrink: 0;
  }

  .card-status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 1.2rem;
    padding: 0.3rem 0.7rem;
    border-radius: 2px;
  }

  .status-live { background: rgba(26,74,46,0.4); color: #5ec47a; border: 1px solid rgba(94,196,122,0.3); }
  .status-beta { background: rgba(200,151,58,0.15); color: var(--gold-light); border: 1px solid rgba(200,151,58,0.3); }
  .status-soon { background: rgba(245,240,232,0.05); color: rgba(245,240,232,0.4); border: 1px solid rgba(245,240,232,0.1); }

  .status-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse 2s ease infinite;
  }

  @keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

  /* ── ADVISORY ── */
  #advisory {
    background: var(--white);
  }

  .advisory-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 6rem;
    align-items: start;
  }

  .advisory-left .section-title { margin-bottom: 1.2rem; }

  .advisory-body {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--slate);
    margin-bottom: 2rem;
  }

  .advisory-callout {
    background: var(--ink);
    color: var(--paper);
    padding: 1.8rem;
    border-radius: 4px;
    border-left: 3px solid var(--gold);
  }

  .callout-quote {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
    font-style: italic;
    color: rgba(245,240,232,0.8);
    margin-bottom: 1rem;
  }

  .callout-attr {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
  }

  .service-lines {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .service-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 1.2rem;
    align-items: start;
    padding: 1.6rem 0;
    border-bottom: 1px solid var(--mist);
  }

  .service-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--mist);
    letter-spacing: 0.05em;
    line-height: 1;
  }

  .service-content-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
    color: var(--ink);
  }

  .service-content-desc {
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--slate);
  }

  /* ── INTELLIGENCE / INSIGHTS ── */
  #intelligence {
    background: var(--paper);
    border-top: 1px solid var(--mist);
  }

  .intel-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
    margin-bottom: 4rem;
  }

  .intel-sub {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--slate);
  }

  .intel-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1.5rem;
  }

  .intel-card {
    background: var(--white);
    border: 1px solid var(--mist);
    border-radius: 4px;
    padding: 2rem;
    transition: border-color 0.3s;
    position: relative;
    overflow: hidden;
  }

  .intel-card:hover { border-color: var(--gold); }

  .intel-card.featured {
    background: var(--slate);
    border-color: transparent;
    color: var(--paper);
  }

  .intel-card-tag {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
  }

  .intel-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    line-height: 1.1;
    letter-spacing: 0.03em;
    margin-bottom: 0.8rem;
  }

  .intel-card.featured .intel-card-title { color: var(--paper); font-size: 2rem; }

  .intel-card-body {
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.65;
    color: var(--slate);
  }

  .intel-card.featured .intel-card-body { color: rgba(245,240,232,0.65); }

  .intel-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.2rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    font-family: 'DM Mono', monospace;
  }

  /* ── GEOGRAPHY STRIP ── */
  #geography {
    background: var(--ink);
    color: var(--paper);
    padding: 5rem 4rem;
  }

  .geo-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 6rem;
    align-items: center;
  }

  .geo-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    line-height: 1;
    color: var(--paper);
    margin-bottom: 1rem;
  }

  .geo-body {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(245,240,232,0.6);
  }

  .geo-markets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .geo-market {
    border: 1px solid rgba(245,240,232,0.1);
    border-radius: 4px;
    padding: 1.5rem;
    position: relative;
  }

  .geo-market.active { border-color: var(--gold); }

  .geo-phase {
    font-family: 'DM Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.6rem;
  }

  .geo-country {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    color: var(--paper);
    margin-bottom: 0.4rem;
  }

  .geo-focus {
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(245,240,232,0.5);
  }

  .geo-market.active::before {
    content: 'NOW';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: 'DM Mono', monospace;
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    color: var(--gold);
    background: rgba(200,151,58,0.15);
    padding: 0.2rem 0.5rem;
    border-radius: 2px;
  }

  /* ── CTA ── */
  #contact {
    background: var(--paper);
    padding: 8rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  #contact::before {
    content: 'ASSETINTEL';
    position: absolute;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18vw;
    color: rgba(200,151,58,0.04);
    letter-spacing: 0.05em;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
  }

  .cta-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
  }

  .cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
  }

  .cta-sub {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--slate);
    margin-bottom: 3rem;
  }

  .cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .cta-divider {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 2rem auto;
  }

  .contact-channels {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
  }

  .contact-channel {
    text-align: left;
  }

  .channel-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
  }

  .channel-value {
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--ink);
  }

  /* ── FOOTER ── */
  footer {
    background: var(--ink);
    color: rgba(245,240,232,0.4);
    padding: 2.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    color: var(--paper);
  }

  .footer-logo span { color: var(--gold); }

  .footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  .footer-links a {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(245,240,232,0.35);
    transition: color 0.2s;
    font-family: 'DM Mono', monospace;
  }

  .footer-links a:hover { color: var(--gold); }

  .footer-copy {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    font-family: 'DM Mono', monospace;
  }

  /* ── SCROLL REVEAL ── */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    #hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 5rem 1.5rem 3rem; }
    .hero-right { min-height: 400px; }
    section { padding: 5rem 1.5rem; }
    .platform-intro, .advisory-grid, .geo-inner, .intel-header { grid-template-columns: 1fr; gap: 2rem; }
    .platform-cards { grid-template-columns: 1fr; }
    .platform-card.featured { grid-template-columns: 1fr; }
    .intel-grid { grid-template-columns: 1fr; }
    .geo-markets { grid-template-columns: 1fr; }
    footer { flex-direction: column; gap: 1.5rem; text-align: center; }
  }
