  :root {
    --bg: #05070A;
    --bg-2: #0A0E14;
    --surface: #0E131B;
    --surface-2: #131A24;
    --line: rgba(255,255,255,0.08);
    --line-2: rgba(255,255,255,0.14);
    --ink: #E8EEF5;
    --ink-2: #A6B0C0;
    --ink-3: #6B7689;
    --cyan: #00E5FF;
    --cyan-d: #0096A8;
    --violet: #7C5CFF;
    --amber: #FFB547;
    --green: #2BD693;
    --red: #FF5470;
    --r-sm: 8px;
    --r: 14px;
    --r-lg: 22px;
    --maxw: 1240px;
  }

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); }
  body {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
  }
  ::selection { background: var(--cyan); color: #000; }

  a { color: inherit; text-decoration: none; }
  .mono { font-family: 'JetBrains Mono', monospace; font-variant-numeric: tabular-nums; }

  /* === NAV === */
  nav.top {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);
    background: rgba(5,7,10,0.65);
    border-bottom: 1px solid var(--line);
  }
  .nav-in {
    max-width: var(--maxw); margin: 0 auto;
    padding: 14px 28px;
    display: flex; align-items: center; gap: 32px;
  }
  .nav-logo { display: flex; align-items: center; gap: 12px; }
  .nav-logo img { height: 28px; width: auto; display: block; filter: brightness(1.05); }
  .nav-logo .pill {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--ink-2);
    padding: 3px 8px;
    border: 1px solid var(--line); border-radius: 999px;
  }
  .nav-links {
    display: flex; gap: 28px; margin-left: auto;
    font-size: 14px; color: var(--ink-2);
  }
  .nav-links a:hover { color: var(--ink); }
  .nav-cta {
    font-size: 13px; padding: 9px 16px;
    border-radius: 999px;
    background: var(--ink); color: #000;
    font-weight: 600;
    transition: transform .15s ease;
  }
  .nav-cta:hover { transform: translateY(-1px); }

  /* === HERO === */
  .hero {
    position: relative;
    min-height: 100vh;
    padding: 160px 28px 80px;
    overflow: hidden;
    isolation: isolate;
  }
  .hero-in {
    max-width: var(--maxw); margin: 0 auto;
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: end;
  }

  /* Animated mesh BG */
  .mesh {
    position: absolute; inset: -10%;
    z-index: 0;
    filter: blur(80px) saturate(1.3);
    opacity: 0.55;
  }
  .blob {
    position: absolute; border-radius: 50%;
    mix-blend-mode: screen;
    will-change: transform;
  }
  .blob.b1 { width: 720px; height: 720px; background: #003a6b; top: -10%; left: -10%;
    animation: drift1 24s ease-in-out infinite; }
  .blob.b2 { width: 620px; height: 620px; background: #00d4ec; top: 10%; right: -8%;
    animation: drift2 28s ease-in-out infinite; }
  .blob.b3 { width: 560px; height: 560px; background: #7c5cff; bottom: -20%; left: 20%;
    animation: drift3 32s ease-in-out infinite; }
  @keyframes drift1 {
    0%,100% { transform: translate(0,0) scale(1); }
    50% { transform: translate(160px, 80px) scale(1.1); }
  }
  @keyframes drift2 {
    0%,100% { transform: translate(0,0) scale(1); }
    50% { transform: translate(-180px, 120px) scale(0.92); }
  }
  @keyframes drift3 {
    0%,100% { transform: translate(0,0) scale(1); }
    50% { transform: translate(-80px, -120px) scale(1.15); }
  }

  /* SVG grid overlay */
  .grid-overlay {
    position: absolute; inset: 0; z-index: 1;
    background-image:
      linear-gradient(to right, rgba(255,255,255,0.035) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 35%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 35%, transparent 80%);
  }
  .hero::after {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(5,7,10,1) 0%, transparent 70%);
    pointer-events: none;
  }

  .badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 7px 14px 7px 10px;
    border: 1px solid var(--line-2);
    border-radius: 999px;
    background: rgba(14,19,27,0.6);
    backdrop-filter: blur(8px);
    font-size: 12.5px;
    color: var(--ink-2);
    margin-bottom: 28px;
  }
  .badge .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 3px rgba(43,214,147,0.18);
    animation: pulse 2.4s ease-in-out infinite;
  }
  @keyframes pulse { 0%,100% { opacity:1 } 50% { opacity:.5 } }
  .badge .sep { width: 1px; height: 12px; background: var(--line-2); }

  h1.display {
    font-size: clamp(48px, 7.2vw, 104px);
    line-height: 0.96;
    letter-spacing: -0.035em;
    font-weight: 500;
    margin: 0 0 28px;
    text-wrap: balance;
  }
  h1.display em {
    font-style: normal;
    background: linear-gradient(105deg, #fff 0%, #00E5FF 45%, #7C5CFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 500;
  }
  .lede {
    font-size: clamp(16px, 1.25vw, 19px);
    color: var(--ink-2);
    max-width: 560px;
    margin: 0 0 36px;
    text-wrap: pretty;
  }
  .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    font-size: 14.5px; font-weight: 600;
    transition: all .18s ease;
    border: 1px solid transparent;
  }
  .btn.primary {
    background: var(--cyan); color: #00161a;
    box-shadow: 0 0 0 1px rgba(0,229,255,0.4), 0 18px 48px -16px rgba(0,229,255,0.55);
  }
  .btn.primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(0,229,255,0.6), 0 24px 60px -16px rgba(0,229,255,0.7); }
  .btn.ghost {
    border-color: var(--line-2); color: var(--ink);
    background: rgba(14,19,27,0.4);
    backdrop-filter: blur(6px);
  }
  .btn.ghost:hover { border-color: rgba(255,255,255,0.3); background: rgba(20,26,36,0.6); }
  .btn svg { width: 16px; height: 16px; }

  /* Right side: status card */
  .status-card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    background: linear-gradient(180deg, rgba(20,26,36,0.7) 0%, rgba(10,14,20,0.7) 100%);
    backdrop-filter: blur(16px);
    padding: 22px;
    overflow: hidden;
  }
  .status-card::before {
    content: ""; position: absolute; inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0,229,255,0.4), transparent 40%, transparent 60%, rgba(124,92,255,0.3));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
  }
  .sc-h {
    display: flex; justify-content: space-between; align-items: center;
    font-family: 'JetBrains Mono', monospace; font-size: 12px;
    color: var(--ink-3); letter-spacing: 0.12em; text-transform: uppercase;
    margin-bottom: 18px;
  }
  .sc-h .live { color: var(--green); display: inline-flex; align-items: center; gap: 6px; }
  .sc-h .live .d { width:6px; height:6px; border-radius: 50%; background: var(--green);
    box-shadow: 0 0 8px var(--green); animation: pulse 1.6s ease-in-out infinite; }
  .sc-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 0;
    border-top: 1px dashed var(--line);
    font-size: 13.5px;
  }
  .sc-row:first-of-type { border-top: none; padding-top: 6px; }
  .sc-row .lbl { color: var(--ink-2); }
  .sc-row .val { font-family: 'JetBrains Mono', monospace; color: var(--ink); font-weight: 500; }
  .sc-row .val.ok { color: var(--green); }

  /* Mini sparkline */
  .spark { display: block; width: 100%; height: 56px; margin-top: 12px; }

  /* === MARQUEE === */
  .marquee {
    position: relative;
    padding: 28px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    background: var(--bg);
  }
  .marquee::before, .marquee::after {
    content: ""; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
    pointer-events: none;
  }
  .marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
  .marquee::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }
  .mq-track {
    display: flex; gap: 56px; width: max-content;
    animation: scroll 50s linear infinite;
  }
  .mq-item {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: 'JetBrains Mono', monospace;
    color: var(--ink-2); font-size: 14px;
    white-space: nowrap;
  }
  .mq-item .blip {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan);
  }
  @keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* === SECTIONS === */
  section { padding: 120px 28px; position: relative; }
  .container { max-width: var(--maxw); margin: 0 auto; }
  .eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--cyan);
    display: inline-flex; align-items: center; gap: 10px;
    margin-bottom: 22px;
  }
  .eyebrow::before {
    content: ""; width: 24px; height: 1px; background: var(--cyan);
  }
  h2.section-title {
    font-size: clamp(34px, 4.5vw, 60px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    font-weight: 500;
    margin: 0 0 20px;
    max-width: 880px;
    text-wrap: balance;
  }
  .section-sub {
    color: var(--ink-2);
    font-size: 17px;
    max-width: 640px;
    margin: 0 0 56px;
  }

  /* === CAPABILITIES BENTO === */
  .bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 14px;
  }
  .cell {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
    padding: 28px;
    overflow: hidden;
    transition: border-color .25s ease, transform .25s ease;
    display: flex; flex-direction: column;
  }
  .cell:hover { border-color: var(--line-2); }
  .cell .ic {
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(0,229,255,0.08);
    color: var(--cyan);
    display: grid; place-items: center;
    margin-bottom: 18px;
    border: 1px solid rgba(0,229,255,0.18);
  }
  .cell h3 {
    margin: 0 0 8px; font-size: 22px; font-weight: 600; letter-spacing: -0.01em;
  }
  .cell p {
    margin: 0; color: var(--ink-2); font-size: 14.5px; line-height: 1.55;
  }
  .cell .tag {
    margin-top: auto; padding-top: 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px; color: var(--ink-3); letter-spacing: 0.1em; text-transform: uppercase;
  }

  /* Cell sizes */
  .cell.x6 { grid-column: span 6; }
  .cell.x4 { grid-column: span 4; }
  .cell.x3 { grid-column: span 3; }
  .cell.x2 { grid-column: span 2; }
  .cell.r2 { grid-row: span 2; }

  /* Hero cell — AI */
  .cell.feature {
    grid-column: span 4; grid-row: span 2;
    background:
      radial-gradient(ellipse 70% 50% at 80% 30%, rgba(0,229,255,0.18) 0%, transparent 60%),
      radial-gradient(ellipse 60% 50% at 20% 100%, rgba(124,92,255,0.18) 0%, transparent 60%),
      linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  }
  .cell.feature h3 { font-size: 32px; max-width: 14ch; }
  .cell.feature p { font-size: 16px; max-width: 42ch; }
  .ai-viz {
    margin-top: 20px;
    flex: 1; min-height: 180px;
    position: relative;
  }

  /* Datacenter cell */
  .cell.dc {
    background:
      linear-gradient(180deg, var(--surface) 0%, #0a0f17 100%);
  }
  .rack {
    position: absolute; right: -20px; bottom: -20px;
    width: 220px; height: 220px;
    opacity: 0.85;
  }

  /* Stripe pattern */
  .stripe-bg {
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 14px);
    pointer-events: none;
  }

  /* === STATS === */
  .stats {
    padding: 80px 28px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background:
      radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,229,255,0.08) 0%, transparent 60%),
      var(--bg);
  }
  .stat-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: var(--maxw); margin: 0 auto;
  }
  .stat {
    padding: 24px 32px;
    border-left: 1px solid var(--line);
  }
  .stat:first-child { border-left: none; padding-left: 0; }
  .stat .n {
    font-size: clamp(40px, 4vw, 64px);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1;
    display: flex; align-items: baseline; gap: 4px;
  }
  .stat .n .suf { font-size: 0.45em; color: var(--cyan); }
  .stat .lbl {
    margin-top: 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px; color: var(--ink-3);
    letter-spacing: 0.14em; text-transform: uppercase;
  }

  /* === APPROACH === */
  .approach-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  }
  .step {
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 32px;
    background: var(--surface);
    position: relative;
  }
  .step .num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px; color: var(--ink-3);
    margin-bottom: 18px;
    display: flex; align-items: center; gap: 10px;
  }
  .step .num .l { flex: 1; height: 1px; background: var(--line); }
  .step h3 { margin: 0 0 10px; font-size: 24px; font-weight: 600; letter-spacing: -0.01em; }
  .step p { margin: 0 0 18px; color: var(--ink-2); font-size: 14.5px; }
  .step ul { list-style: none; padding: 0; margin: 0;
    font-size: 13.5px; color: var(--ink-2); }
  .step ul li {
    padding: 8px 0;
    border-top: 1px dashed var(--line);
    display: flex; align-items: center; gap: 10px;
  }
  .step ul li::before {
    content: ""; width: 14px; height: 1px; background: var(--cyan);
  }

  /* === INDUSTRIES === */
  .industries {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  }
  .ind {
    border: 1px solid var(--line); border-radius: var(--r);
    background: var(--surface);
    padding: 24px;
    display: flex; flex-direction: column; gap: 14px;
    min-height: 200px;
    transition: background .2s ease, border-color .2s ease;
  }
  .ind:hover { background: var(--surface-2); border-color: var(--line-2); }
  .ind .label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--ink-3);
  }
  .ind .name { font-size: 20px; font-weight: 600; letter-spacing: -0.01em; }
  .ind p { margin: 0; color: var(--ink-2); font-size: 13.5px; }
  .ind .arrow {
    margin-top: auto;
    width: 32px; height: 32px; border-radius: 50%;
    border: 1px solid var(--line-2);
    display: grid; place-items: center;
    color: var(--ink-2);
  }

  /* === TRUST / CERT === */
  .trust-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  }
  .cert {
    border: 1px solid var(--line); border-radius: var(--r);
    padding: 22px;
    background: var(--surface);
    display: flex; flex-direction: column; gap: 10px;
  }
  .cert .ico {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(0,229,255,0.08);
    border: 1px solid rgba(0,229,255,0.2);
    color: var(--cyan);
    display: grid; place-items: center;
    margin-bottom: 6px;
  }
  .cert .t { font-size: 17px; font-weight: 600; }
  .cert .d { font-size: 13px; color: var(--ink-2); }
  .cert .v {
    margin-top: auto;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px; color: var(--ink-3);
    letter-spacing: 0.12em; text-transform: uppercase;
    padding-top: 12px; border-top: 1px dashed var(--line);
  }

  /* === CTA === */
  .cta {
    margin: 0 28px 80px;
    border: 1px solid var(--line-2);
    border-radius: 28px;
    padding: 80px 64px;
    background:
      radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0,229,255,0.18) 0%, transparent 60%),
      radial-gradient(ellipse 50% 80% at 20% 100%, rgba(124,92,255,0.2) 0%, transparent 60%),
      linear-gradient(180deg, #0c1219 0%, #070a10 100%);
    max-width: var(--maxw); margin-left: auto; margin-right: auto;
    display: flex; align-items: center; justify-content: space-between; gap: 40px;
    flex-wrap: wrap;
    position: relative; overflow: hidden;
  }
  .cta h2 {
    margin: 0; font-size: clamp(32px, 3.6vw, 52px);
    letter-spacing: -0.025em; line-height: 1.05; font-weight: 500;
    text-wrap: balance; max-width: 18ch;
  }
  .cta p { margin: 14px 0 0; color: var(--ink-2); max-width: 44ch; }

  /* === FOOTER === */
  footer {
    border-top: 1px solid var(--line);
    padding: 60px 28px 40px;
  }
  .ft-in {
    max-width: var(--maxw); margin: 0 auto;
    display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px;
  }
  .ft-brand img { height: 26px; }
  .ft-brand p { margin: 16px 0 0; color: var(--ink-3); font-size: 13.5px; max-width: 34ch; }
  .ft-col h4 {
    margin: 4px 0 14px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--ink-3); font-family: 'JetBrains Mono', monospace; font-weight: 500;
  }
  .ft-col a {
    display: block; padding: 5px 0; color: var(--ink-2); font-size: 14px;
  }
  .ft-col a:hover { color: var(--ink); }
  .ft-bottom {
    max-width: var(--maxw); margin: 50px auto 0;
    padding-top: 24px; border-top: 1px solid var(--line);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
    font-size: 12.5px; color: var(--ink-3);
    font-family: 'JetBrains Mono', monospace;
  }


  /* === ENERGYDESK DOUBLE CARD === */
  .cell.energydesk {
    grid-column: span 6;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
    overflow: hidden;
    background: none;
    border-color: rgba(255,181,71,0.25);
  }
  .cell.energydesk:hover { border-color: rgba(255,181,71,0.5); }
  .ed-left {
    padding: 28px;
    background:
      radial-gradient(ellipse 70% 60% at 15% 20%, rgba(255,181,71,0.12) 0%, transparent 55%),
      radial-gradient(ellipse 60% 50% at 85% 90%, rgba(0,229,255,0.08) 0%, transparent 55%),
      linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
    display: flex; flex-direction: column;
    border-right: 1px solid rgba(255,181,71,0.15);
  }
  .ed-right {
    padding: 28px;
    background:
      radial-gradient(ellipse 80% 50% at 90% 10%, rgba(0,229,255,0.08) 0%, transparent 60%),
      radial-gradient(ellipse 60% 60% at 10% 80%, rgba(255,181,71,0.08) 0%, transparent 55%),
      linear-gradient(180deg, var(--surface-2) 0%, var(--bg-2) 100%);
    display: flex; flex-direction: column; gap: 20px;
  }
  .ed-badge {
    display: inline-flex; align-items: center; gap: 7px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--amber); background: rgba(255,181,71,0.1);
    border: 1px solid rgba(255,181,71,0.25); border-radius: 999px;
    padding: 4px 10px; margin-bottom: 14px; width: fit-content;
  }
  .ed-badge .bdot { width:5px; height:5px; border-radius:50%; background:var(--amber); box-shadow:0 0 6px var(--amber); flex-shrink:0; }
  .ed-ic {
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(255,181,71,0.1); border: 1px solid rgba(255,181,71,0.25);
    color: var(--amber); display: grid; place-items: center; margin-bottom: 16px;
  }
  .ed-modules { display:grid; grid-template-columns:1fr 1fr; gap:7px; margin:16px 0 0; flex:1; }
  .ed-mod {
    background:rgba(255,255,255,0.03); border:1px solid var(--line); border-radius:var(--r-sm);
    padding:9px 11px; font-size:12px; color:var(--ink-2);
    display:flex; align-items:center; gap:8px; transition:background .2s,border-color .2s,color .2s;
  }
  .ed-mod:hover { background:rgba(255,181,71,0.06); border-color:rgba(255,181,71,0.2); color:var(--ink); }
  .ed-mod .mdot { width:5px; height:5px; border-radius:50%; background:var(--cyan); flex-shrink:0; }
  .ed-mod.am .mdot { background:var(--amber); }
  .ed-mod.gr .mdot { background:var(--green); }
  .ed-stack { display:flex; flex-wrap:wrap; gap:5px; margin-top:14px; }
  .ed-tag {
    font-family:'JetBrains Mono',monospace; font-size:12.5px; letter-spacing:0.08em; text-transform:uppercase;
    color:var(--ink-3); background:rgba(255,255,255,0.04); border:1px solid var(--line); border-radius:4px; padding:3px 7px;
  }
  /* Right side components */
  .ed-kpi-grid { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
  .ed-kpi {
    background:rgba(255,255,255,0.03); border:1px solid var(--line); border-radius:var(--r-sm);
    padding:14px; display:flex; flex-direction:column; gap:4px;
  }
  .ed-kpi .kval {
    font-size:28px; font-weight:600; letter-spacing:-0.02em; line-height:1;
    background: linear-gradient(120deg, var(--amber), var(--cyan));
    -webkit-background-clip:text; background-clip:text; color:transparent;
  }
  .ed-kpi .kval.gr { background: linear-gradient(120deg, var(--green), var(--cyan)); -webkit-background-clip:text; background-clip:text; color:transparent; }
  .ed-kpi .klbl { font-size:12px; color:var(--ink-2); line-height:1.4; }
  .ed-roles { display:flex; flex-direction:column; gap:6px; }
  .ed-role {
    display:flex; align-items:center; gap:10px;
    font-size:12px; color:var(--ink-2);
    padding:8px 12px;
    background:rgba(255,255,255,0.03); border:1px solid var(--line); border-radius:var(--r-sm);
  }
  .ed-role .rdot { width:6px; height:6px; border-radius:50%; flex-shrink:0; }
  .ed-role .rname { font-weight:600; color:var(--ink); min-width:130px; font-size:12px; }
  .ed-car {
    display:grid; grid-template-columns: repeat(7, minmax(0,1fr)); gap:4px;
  }
  .ed-car-step {
    background:rgba(255,255,255,0.04); border:1px solid var(--line); border-radius:6px;
    padding:8px 3px; text-align:center; font-size:12.5px; color:var(--ink-3);
    overflow-wrap:anywhere; hyphens:auto;
    font-family:'JetBrains Mono',monospace; letter-spacing:0; line-height:1.35;
    display:flex; flex-direction:column; align-items:center; gap:3px;
  }
  .ed-car-step .cnum { font-size:13px; font-weight:600; color:var(--cyan); }
  .ed-section-label {
    font-family:'JetBrains Mono',monospace; font-size:12.5px; letter-spacing:0.14em;
    text-transform:uppercase; color:var(--ink-3); margin-bottom:2px;
    display:flex; align-items:center; gap:8px;
  }
  .ed-section-label::before { content:''; width:16px; height:1px; background:var(--amber); }

  /* === Responsive === */
  @media (max-width: 980px) {
    .hero-in { grid-template-columns: 1fr; }
    .bento { grid-template-columns: repeat(2, 1fr); }
    .cell, .cell.x6, .cell.x4, .cell.x3, .cell.x2, .cell.feature, .cell.energydesk { grid-column: span 2; grid-row: auto; }
    .cell.energydesk { grid-template-columns: 1fr; }
    .stat-grid { grid-template-columns: repeat(2, 1fr); }
    .stat { border-left: none; border-top: 1px solid var(--line); padding: 18px 0; }
    .stat:first-child, .stat:nth-child(2) { border-top: none; }
    .approach-grid, .industries, .trust-grid, .ft-in { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    section { padding: 80px 22px; }
    .cta { padding: 48px 32px; }
  }
  /* =========================================================
     ENERGYDESK PRODUCT PAGE
     ========================================================= */
  .ed-more {
    display:inline-flex; align-items:center; gap:7px; margin-top:14px;
    font-size:12.5px; font-weight:600; color:var(--amber);
    border:1px solid rgba(255,181,71,0.35); border-radius:999px;
    padding:7px 14px; transition:background .18s ease, border-color .18s ease;
  }
  .ed-more:hover { background:rgba(255,181,71,0.10); border-color:rgba(255,181,71,0.6); }

  .page-hero {
    position:relative; padding:150px 28px 70px; overflow:hidden; isolation:isolate;
  }
  .page-hero-in {
    max-width:var(--maxw); margin:0 auto; position:relative; z-index:2;
    display:grid; grid-template-columns:1.05fr 1fr; gap:52px; align-items:center;
  }
  .page-hero .mesh .blob.b2 { background:#c98a12; }
  h1.product {
    font-size:clamp(38px, 5.4vw, 74px); line-height:1.0; letter-spacing:-0.033em;
    font-weight:500; margin:0 0 22px; text-wrap:balance;
  }
  h1.product em {
    font-style:normal;
    background:linear-gradient(100deg,var(--amber),var(--cyan));
    -webkit-background-clip:text; background-clip:text; color:transparent;
  }
  .shot {
    display:block; width:100%; height:auto; border-radius:var(--r);
    border:1px solid var(--line-2); background:var(--surface);
    box-shadow:0 36px 90px -34px rgba(0,0,0,0.9);
  }
  figure.shot-fig { margin:0; }
  figure.shot-fig figcaption {
    margin-top:12px; font-size:12.5px; color:var(--ink-3);
    font-family:'JetBrains Mono',monospace; letter-spacing:0.04em;
  }

  .breadcrumbs {
    max-width:var(--maxw); margin:0 auto; padding:0 28px 18px;
    font-size:12.5px; color:var(--ink-3);
    font-family:'JetBrains Mono',monospace; letter-spacing:0.05em;
  }
  .breadcrumbs a:hover { color:var(--cyan); }
  .breadcrumbs span[aria-current] { color:var(--ink-2); }

  .feat-grid {
    display:grid; grid-template-columns:repeat(3,1fr); gap:16px;
  }
  .feat {
    background:var(--surface); border:1px solid var(--line);
    border-radius:var(--r); padding:24px;
    transition:border-color .2s ease, transform .2s ease;
  }
  .feat:hover { border-color:var(--line-2); transform:translateY(-2px); }
  .feat .ic {
    width:40px; height:40px; border-radius:11px;
    display:grid; place-items:center; margin-bottom:16px;
    background:rgba(255,181,71,0.10); border:1px solid rgba(255,181,71,0.24);
    color:var(--amber);
  }
  .feat .ic svg { width:19px; height:19px; }
  .feat h3 { margin:0 0 8px; font-size:17.5px; font-weight:600; letter-spacing:-0.01em; }
  .feat p { margin:0; font-size:13.8px; color:var(--ink-2); line-height:1.55; }

  .shots-grid { display:grid; grid-template-columns:1fr 1fr; gap:28px; }
  .shots-grid .wide { grid-column:span 2; }

  .flow {
    display:grid; grid-template-columns:repeat(7, minmax(0,1fr)); gap:10px; margin-top:8px;
  }
  .flow-step {
    background:var(--surface); border:1px solid var(--line);
    border-radius:12px; padding:16px 12px; text-align:center;
  }
  .flow-step.last { border-color:rgba(255,181,71,0.45); background:rgba(255,181,71,0.07); }
  .flow-step .n {
    font-family:'JetBrains Mono',monospace; font-size:12px; letter-spacing:0.12em;
    color:var(--amber); display:block; margin-bottom:7px;
  }
  .flow-step .t { font-size:13px; font-weight:600; letter-spacing:-0.01em; }

  .split { display:grid; grid-template-columns:1fr 1fr; gap:44px; align-items:start; }
  .checklist { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:12px; }
  .checklist li {
    position:relative; padding-left:28px; font-size:14.5px; color:var(--ink-2); line-height:1.55;
  }
  .checklist li::before {
    content:""; position:absolute; left:0; top:7px;
    width:14px; height:14px; border-radius:50%;
    background:rgba(43,214,147,0.14); border:1px solid rgba(43,214,147,0.5);
  }
  .checklist li strong { color:var(--ink); font-weight:600; }

  .faq { display:flex; flex-direction:column; gap:12px; }
  .faq details {
    background:var(--surface); border:1px solid var(--line);
    border-radius:var(--r); padding:18px 22px;
  }
  .faq details[open] { border-color:var(--line-2); }
  .faq summary {
    cursor:pointer; font-size:16px; font-weight:600; letter-spacing:-0.01em;
    list-style:none; display:flex; justify-content:space-between; gap:16px;
  }
  .faq summary::-webkit-details-marker { display:none; }
  .faq summary::after { content:"+"; color:var(--amber); font-weight:400; font-size:20px; line-height:1; }
  .faq details[open] summary::after { content:"–"; }
  .faq p { margin:12px 0 0; font-size:14.3px; color:var(--ink-2); line-height:1.6; }

  @media (max-width: 980px) {
    .page-hero-in { grid-template-columns:1fr; gap:36px; }
    .page-hero { padding:120px 22px 50px; }
    .feat-grid { grid-template-columns:1fr; }
    .shots-grid { grid-template-columns:1fr; }
    .shots-grid .wide { grid-column:span 1; }
    .flow { grid-template-columns:repeat(2,1fr); }
    .split { grid-template-columns:1fr; gap:32px; }
  }

  /* === LANGUAGE SWITCH === */
  .lang-switch {
    display:flex; align-items:center; gap:2px;
    border:1px solid var(--line); border-radius:999px; padding:2px;
    margin-left:22px; flex-shrink:0;
  }
  .lang-switch a {
    display:inline-flex; align-items:center; gap:6px;
    font-family:'JetBrains Mono',monospace; font-size:12px; letter-spacing:0.08em;
    color:var(--ink-3); padding:4px 9px; border-radius:999px; line-height:1.4;
    transition:color .15s ease, background .15s ease;
  }
  .lang-switch a img {
    width:20px; height:14px; display:block; border-radius:2px;
    object-fit:cover; flex-shrink:0;
    box-shadow:0 0 0 1px rgba(255,255,255,0.16);
    opacity:.62; transition:opacity .15s ease;
  }
  .lang-switch a:hover { color:var(--ink); }
  .lang-switch a:hover img { opacity:1; }
  .lang-switch a.active { background:rgba(255,255,255,0.09); color:var(--ink); }
  .lang-switch a.active img { opacity:1; box-shadow:0 0 0 1px rgba(255,255,255,0.3); }
  .lang-switch a:focus-visible { outline:2px solid var(--cyan); outline-offset:2px; }

  /* Mobile nav: hide the pill and tighten spacing so logo + language + CTA
     all fit on one row without the CTA being pushed off-screen. */
  @media (max-width: 900px) {
    .nav-in { padding:12px 18px; gap:12px; }
    .nav-logo .pill { display:none; }
    .nav-logo img { height:24px; }
    .lang-switch { margin-left:auto; }
    .nav-cta { font-size:12px; padding:8px 13px; white-space:nowrap; }
  }
  @media (max-width: 560px) {
    .lang-switch a span { display:none; }
    .lang-switch a { padding:5px 7px; }
    .nav-in { padding:11px 14px; gap:8px; }
    .nav-logo img { height:22px; }
    .nav-cta { font-size:12px; padding:7px 11px; }
  }

  @media (max-width: 900px) {
    .nav-links { display:none; }
    .lang-switch { margin-left:auto; }
  }
