:root{
    /* ---- color tokens ---- */
    --ink:        #17181b;   /* primary dark grey (near-black) */
    --ink-soft:   #26272b;   /* secondary dark surface */
    --ink-line:   #38393e;   /* hairline on dark */
    --paper:      #f3f3f1;   /* light grey background */
    --paper-alt:  #ffffff;   /* white surface */
    --grey-mid:   #8b8c92;   /* secondary text on light */
    --grey-soft:  #cfcfcc;   /* muted text on dark */
    --line:       #e1e1de;   /* hairline on light */

    --flame-1:    #f84402;   /* brand orange, red edge */
    --flame-2:    #ff8a00;   /* mid */
    --flame-3:    #ffb830;   /* amber edge */
    --flame-grad: linear-gradient(115deg, var(--flame-1) 0%, var(--flame-2) 55%, var(--flame-3) 100%);
    --flame-grad-soft: linear-gradient(115deg, rgba(248,68,2,0.14) 0%, rgba(255,138,0,0.14) 55%, rgba(255,184,48,0.14) 100%);

    --display: "Space Grotesk", "Segoe UI", sans-serif;
    --body:    "Inter", "Segoe UI", sans-serif;
    --mono:    "JetBrains Mono", ui-monospace, monospace;

    --max: 1220px;
    --radius: 18px;
    --radius-sm: 10px;
  }

  *{ box-sizing: border-box; }
  html{
    scroll-behavior: smooth;
    overflow-x: hidden;
  }
  body{
    margin:0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
    width: 100%;
  }
  img{ max-width:100%; display:block; }
  a{ color:inherit; text-decoration:none; }
  ul{ margin:0; padding:0; list-style:none; }
  section{ position:relative; }

  .wrap{
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 32px;
  }

  .eyebrow{
    font-family: var(--mono);
    font-size: 12.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--flame-1);
    display:flex;
    align-items:center;
    gap:10px;
  }
  .eyebrow::before{
    content:"";
    width: 22px; height:1px;
    background: var(--flame-grad);
  }
  section.on-dark .eyebrow{ color: var(--flame-3); }

  h1,h2,h3,h4{
    font-family: var(--display);
    line-height: 1.08;
    margin: 0;
    letter-spacing: -0.01em;
  }
  .h-tight{ letter-spacing: -0.02em; }

  p{ line-height:1.65; color: var(--grey-mid); margin:0; }
  section.on-dark p{ color: var(--grey-soft); }

  .btn{
    display:inline-flex;
    align-items:center;
    gap:9px;
    font-family: var(--body);
    font-weight:600;
    font-size:15px;
    padding: 14px 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor:pointer;
    white-space:nowrap;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
  }
  .btn-primary{
    background: var(--flame-grad);
    color:#fff;
    box-shadow: 0 8px 24px -8px rgba(248,68,2,0.55);
  }
  .btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(248,68,2,0.65); }
  .btn-ghost{
    background: transparent;
    color: var(--ink);
    border-color: var(--line);
  }
  .btn-ghost:hover{ border-color: var(--ink); }
  section.on-dark .btn-ghost{ color:#fff; border-color: var(--ink-line); }
  section.on-dark .btn-ghost:hover{ border-color:#fff; }
  .btn svg{ width:15px; height:15px; transition: transform .25s ease; }
  .btn:hover svg{ transform: translateX(3px); }

  /* ---------------- NAV ---------------- */
  #nav{
    position: sticky; top:0; z-index: 100;
    background: rgba(243,243,241,0.82);
    backdrop-filter: blur(14px) saturate(1.4);
    -webkit-backdrop-filter: blur(14px) saturate(1.4);
    border-bottom: 1px solid var(--line);
    transition: background .3s ease, border-color .3s ease;
  }
  #nav .wrap{
    display:flex; align-items:center; justify-content:space-between;
    height: 78px;
  }
  .brand{ display:flex; align-items:center; height: 48px; }
  .brand img{ height: 100%; width:auto; }

  .nav-links{ display:flex; align-items:center; gap: 34px; }
  .nav-links a{
    font-size:14.5px; font-weight:500; color: var(--ink);
    position:relative; padding: 4px 0;
  }
  .nav-links a::after{
    content:""; position:absolute; left:0; right:0; bottom:-2px; height:2px;
    background: var(--flame-grad); transform: scaleX(0); transform-origin:right;
    transition: transform .3s ease;
  }
  .nav-links a:hover::after{ transform: scaleX(1); transform-origin:left; }
  .nav-cta{ display:flex; align-items:center; gap:22px; }
  .nav-toggle{ display:none; }

  /* Language toggle styles */
  .lang-toggle{
    display:flex; align-items:center;
    background: rgba(23,24,27,0.05);
    border:1px solid var(--line);
    border-radius: 999px; padding: 2px; gap: 2px;
  }
  .lang-btn{
    border:none; background:none;
    font-family: var(--mono); font-size:11px; font-weight:600;
    color: var(--grey-mid); padding:5px 9px; border-radius:999px;
    cursor:pointer; transition: background .2s ease, color .2s ease;
  }
  .lang-btn.active{
    background: var(--ink); color:#fff;
  }
  .lang-toggle-mobile{ display:none; }

  /* ---------------- HERO ---------------- */
  #hero{
    padding: 84px 0 60px;
    overflow:hidden;
  }
  .hero-grid{
    display:grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items:center;
  }
  .hero-copy h1{
    font-size: clamp(38px, 4.6vw, 60px);
    margin: 22px 0 22px;
  }
  .hero-copy h1 em{
    font-style:normal;
    background: var(--flame-grad);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
  }
  .hero-copy p.lead{
    font-size: 17.5px;
    max-width: 480px;
    color:#4c4d52;
  }
  .hero-actions{ display:flex; gap:14px; margin-top: 34px; flex-wrap:wrap; }

  .trust-strip{
    margin-top: 46px;
    display:flex; gap: 30px; flex-wrap:wrap;
    padding-top: 26px;
    border-top: 1px solid var(--line);
  }
  .trust-item{ display:flex; align-items:center; gap:10px; font-size:13.5px; color:#57585d; font-weight:500;}
  .trust-item svg{ width:17px; height:17px; flex:none; }

  .hero-visual{ position:relative; }
  .hero-visual svg{ width:100%; height:auto; display:block; }

  /* ---------------- VALUE STRIP ---------------- */
  #values{
    padding: 10px 0 78px;
  }
  .values-grid{
    display:grid; grid-template-columns: repeat(3, 1fr); gap:1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow:hidden;
  }
  .value-card{
    background: var(--paper-alt);
    padding: 30px 28px;
  }
  .value-card .vi{
    width:38px; height:38px; margin-bottom:18px;
  }
  .value-card h3{ font-size:18px; margin-bottom:8px; }
  .value-card p{ font-size:14.5px; }

  /* ---------------- SERVICES ---------------- */
  #services{ padding: 30px 0 100px; }
  .section-head{
    max-width: 640px;
    margin-bottom: 48px;
  }
  .section-head h2{ font-size: clamp(28px,3.4vw,40px); margin: 16px 0 16px; }
  .section-head p{ font-size:16px; }

  .service-grid{
    display:grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    grid-template-rows: repeat(2, auto);
    gap: 18px;
  }
  .svc{
    display: block;
    text-decoration: none;
    color: var(--ink);
    background: var(--paper-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
    position:relative;
    overflow:hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  }
  .svc:hover{ transform: translateY(-4px); box-shadow: 0 20px 40px -22px rgba(23,24,27,0.25); border-color:#d7d7d3; }
  .svc-featured{
    grid-row: 1 / 3;
    display:flex; flex-direction:column; justify-content:space-between;
    padding: 36px;
    background: var(--ink);
    border-color: var(--ink);
  }
  .svc-featured .tag{
    font-family: var(--mono); font-size:11.5px; letter-spacing:.12em;
    color: var(--flame-3); text-transform:uppercase; font-weight:600;
    display:inline-block; margin-bottom:22px;
  }
  .svc-featured h3{ color:#fff; font-size: 27px; margin-bottom:14px; }
  .svc-featured p{ color: var(--grey-soft); font-size:15px; max-width: 340px; }
  .svc-featured .svc-icon{
    width:56px; height:56px; margin-bottom: 10px;
  }
  .svc-featured .svc-foot{
    display:flex; align-items:center; justify-content:space-between;
    margin-top: 30px; padding-top:22px; border-top:1px solid var(--ink-line);
  }
  .svc-featured .svc-foot span{
    font-family:var(--mono); font-size:12px; color:var(--grey-soft);
  }
  .svc-arrow{
    width:38px; height:38px; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    background: var(--flame-grad); flex:none;
  }
  .svc-arrow svg{ width:16px; height:16px; color:#fff; }

  .svc .svc-icon{ width:34px; height:34px; margin-bottom:20px; }
  .svc h4{ font-size:18px; margin-bottom:9px; }
  .svc p{ font-size:14px; }

  /* ---------------- SOLUTIONS (dark) ---------------- */
  #solutions{
    background: var(--ink);
    padding: 100px 0;
    color:#fff;
  }
  .sol-grid{
    display:grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
  }
  .sol-head h2{
    font-size: clamp(28px,3.2vw,38px); color:#fff; margin: 16px 0 18px;
  }
  .sol-head{ position:sticky; top:110px; align-self:start; }
  .sol-head .btn{ margin-top:30px; }

  .sol-list{ border-top:1px solid var(--ink-line); }
  .sol-row{
    display:grid;
    grid-template-columns: 46px 1fr;
    gap: 22px;
    padding: 26px 0;
    border-bottom: 1px solid var(--ink-line);
  }
  .sol-row .si{
    width: 40px; height:40px;
  }
  .sol-row h4{ color:#fff; font-size:17.5px; margin-bottom:7px; font-family: var(--display); font-weight:600;}
  .sol-row p{ font-size:14.5px; max-width: 520px; }

  /* ---------------- PARTNER BANNER ---------------- */
  #partner{
    padding: 78px 0;
    border-bottom: 1px solid var(--line);
  }
  .partner-inner{
    display:flex; align-items:center; gap: 34px;
    background: var(--paper-alt);
    border:1px solid var(--line);
    border-radius: var(--radius);
    padding: 40px 44px;
    flex-wrap: wrap;
  }
  .seal{
    width: 78px; height:78px; border-radius:50%;
    background: var(--flame-grad);
    display:flex; align-items:center; justify-content:center;
    flex: none;
    box-shadow: 0 14px 30px -12px rgba(248,68,2,0.5);
  }
  .seal span{
    font-family: var(--mono); color:#fff; font-weight:700; font-size:15px; letter-spacing:.03em;
  }
  .partner-text{ flex:1; min-width:260px; }
  .partner-text .eyebrow{ margin-bottom:10px; }
  .partner-text h3{ font-size:22px; margin-bottom:8px; }
  .partner-text p{ font-size:15px; max-width:640px; }

  /* ---------------- CTA ---------------- */
  #cta{
    margin: 90px auto 0;
    max-width: var(--max);
    padding: 0 32px;
  }
  .cta-panel{
    position:relative;
    border-radius: 26px;
    padding: 74px 60px 120px;
    background: linear-gradient(120deg, #1a1b1e 0%, #17181b 60%), var(--flame-grad);
    background-blend-mode: normal;
    overflow:hidden;
    text-align:center;
  }
  .cta-panel::before{
    content:"";
    position:absolute; inset:0;
    background: radial-gradient(60% 90% at 18% 20%, rgba(248,68,2,0.55), transparent 60%),
                radial-gradient(55% 80% at 85% 100%, rgba(255,184,48,0.4), transparent 60%),
                #121316;
    z-index:0;
  }
  .cta-panel > *{ position:relative; z-index:1; }
  .cta-panel .eyebrow{ justify-content:center; color:var(--flame-3); }
  .cta-panel h2{ color:#fff; font-size: clamp(30px,4vw,46px); margin: 18px auto 16px; max-width:640px; }
  .cta-panel p{ color: var(--grey-soft); max-width:520px; margin:0 auto 0; font-size:16px; }

  /* ---- consultation form card (overlaps the gradient panel) ---- */
  .form-card{
    position:relative;
    z-index: 2;
    margin: -80px auto 0;
    max-width: 1040px;
    background: var(--paper-alt);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 30px 60px -30px rgba(23,24,27,0.35);
    padding: 46px;
    display:grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 46px;
  }
  .form-intro h3{ font-size:23px; margin: 14px 0 12px; }
  .form-intro p{ font-size:14.5px; margin-bottom: 26px; }
  .form-trust{ display:flex; flex-direction:column; gap:14px; }
  .form-trust li{
    display:flex; align-items:center; gap:10px;
    font-size:13.5px; font-weight:500; color:#4c4d52;
  }
  .form-trust svg{ width:18px; height:18px; flex:none; }

  .consult-form{ display:flex; flex-direction:column; gap:18px; }
  .hp-field{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }

  .segmented{
    display:flex; gap:8px; flex-wrap:wrap;
    background: var(--paper); border:1px solid var(--line);
    border-radius: 999px; padding: 5px;
  }
  .segmented input{ position:absolute; opacity:0; pointer-events:none; }
  .segmented label{
    flex:1; text-align:center; white-space:nowrap;
    font-size: 13px; font-weight:600; color:#6a6b70;
    padding: 9px 14px; border-radius:999px; cursor:pointer;
    transition: background .25s ease, color .25s ease, box-shadow .25s ease;
  }
  .segmented input:checked + label{
    background: var(--flame-grad); color:#fff;
    box-shadow: 0 8px 18px -8px rgba(248,68,2,0.55);
  }
  .segmented input:focus-visible + label{ outline: 2px solid var(--flame-1); outline-offset:2px; }

  .field-row{ display:grid; grid-template-columns: 1fr 1fr; gap:16px; }
  .field{ display:flex; flex-direction:column; gap:7px; }
  .field label{ font-size:13px; font-weight:600; color:#3a3b3f; }
  .field label span{ font-weight:400; color: var(--grey-mid); }
  .field input, .field textarea{
    font-family: var(--body); font-size:14.5px; color: var(--ink);
    background: var(--paper); border:1px solid var(--line); border-radius: 10px;
    padding: 12px 14px; resize:vertical;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  }
  .field input::placeholder, .field textarea::placeholder{ color:#a6a7ac; }
  .field input:focus, .field textarea:focus{
    outline:none; border-color: var(--flame-2); background:#fff;
    box-shadow: 0 0 0 3px rgba(248,68,2,0.12);
  }
  .field input:invalid:not(:placeholder-shown){ border-color:#e0a0a0; }

  .form-foot{ display:flex; flex-direction:column; align-items:flex-start; gap:10px; margin-top:4px; }
  .form-foot .btn{ width:100%; justify-content:center; }
  .form-foot .btn[disabled]{ opacity:.65; cursor:not-allowed; transform:none; }
  .form-legal{ font-size:12px; color:#9a9a9f; line-height:1.5; }

  .form-status{ font-size:14px; font-weight:500; min-height:0; }
  .form-status.success{ color:#1f8b4c; }
  .form-status.error{ color:#c23a2f; }

  /* ---------------- FOOTER ---------------- */
  #footer{
    background: var(--ink);
    color: var(--grey-soft);
    padding: 70px 0 30px;
  }
  .foot-top{
    display:grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--ink-line);
  }
  .foot-brand .brand{ height:26px; margin-bottom:18px; }
  .foot-brand p{ font-size:14px; max-width:280px; color: var(--grey-soft); }
  .foot-social{ display:flex; gap:12px; margin-top:22px; }
  .foot-social a{
    width:36px; height:36px; border-radius:50%;
    border:1px solid var(--ink-line);
    display:flex; align-items:center; justify-content:center;
    transition: border-color .25s ease, background .25s ease;
  }
  .foot-social a:hover{ border-color: var(--flame-2); background: rgba(248,68,2,0.1); }
  .foot-social svg{ width:16px; height:16px; color:#fff; }

  .foot-col h5{
    font-family: var(--mono); font-size:12px; letter-spacing:.12em;
    text-transform:uppercase; color:#fff; font-weight:600; margin-bottom:20px;
  }
  .foot-col ul li{ margin-bottom:13px; }
  .foot-col ul a{ font-size:14.5px; color: var(--grey-soft); transition: color .2s ease; }
  .foot-col ul a:hover{ color:#fff; }

  .foot-bottom{
    display:flex; justify-content:space-between; align-items:center;
    padding-top: 26px; flex-wrap:wrap; gap:14px;
  }
  .foot-bottom p{ font-size:13px; color:#6f7075; }
  .foot-bottom .legal{ display:flex; gap:22px; }
  .foot-bottom .legal a{ font-size:13px; color:#6f7075; }
  .foot-bottom .legal a:hover{ color:#fff; }

  /* ---------------- misc ---------------- */
  .reveal{ opacity:0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.in{ opacity:1; transform:none; }

  ::selection{ background: var(--flame-1); color:#fff; }

  /* ---------------- responsive ---------------- */
  @media (max-width: 980px){
    .hero-grid{ grid-template-columns:1fr; }
    .hero-visual{ order:-1; max-width:440px; margin:0 auto 10px; }
    .values-grid{ grid-template-columns:1fr; }
    .service-grid{ grid-template-columns: 1fr 1fr; }
    .svc-featured{ grid-column: 1/3; grid-row:auto; }
    .sol-grid{ grid-template-columns:1fr; gap:34px; }
    .sol-head{ position:static; }
    .foot-top{ grid-template-columns: 1fr 1fr; }
    .form-card{ grid-template-columns:1fr; padding:36px; margin-top:-60px; }
    .cta-panel{ padding-bottom:100px; }
  }
  @media (max-width: 680px){
    .wrap{ padding:0 20px; }
    .nav-links{
      position:fixed; inset:78px 0 0 0; height:calc(100vh - 78px);
      background: var(--paper); flex-direction:column; justify-content:flex-start;
      padding: 40px 32px; gap: 26px; transform: translateX(100%);
      visibility: hidden;
      transition: transform .35s ease, visibility .35s ease; z-index:90;
    }
    .nav-links.open{ transform: translateX(0); visibility: visible; }
    .nav-links a{ font-size:20px; }
    .nav-cta .btn-ghost{ display:none; }
    .nav-toggle{
      display:flex; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:8px; z-index:95;
    }
    .nav-toggle span{ width:22px; height:2px; background: var(--ink); transition: transform .3s ease, opacity .3s ease; }
    .nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2){ opacity:0; }
    .nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

    .service-grid{ grid-template-columns:1fr; }
    .svc-featured{ grid-column:auto; }
    .partner-inner{ padding: 30px; text-align:left; }
    .cta-panel{ padding: 50px 22px 90px; }
    .form-card{ padding:26px; margin-top:-56px; border-radius:18px; }
    .field-row{ grid-template-columns:1fr; }
    .segmented{
      flex-direction: column;
      border-radius: 14px;
      gap: 4px;
      padding: 6px;
    }
    .segmented label{
      text-align: left;
      border-radius: 10px;
      font-size: 13.5px;
      padding: 10px 14px;
    }
    .foot-top{ grid-template-columns:1fr; }
    .trust-strip{ gap:18px 26px; }
    .lang-toggle{ display:none; }
    .lang-toggle-mobile{
      display:flex; align-items:center; width:100%; justify-content:center;
      background: rgba(23,24,27,0.05); border:1px solid var(--line);
      border-radius: 12px; padding: 4px; gap: 4px; margin-top:20px;
    }
    .lang-toggle-mobile .lang-btn{
      flex:1; text-align:center; padding:10px; font-size:14px; border-radius:8px;
      font-family: var(--mono); font-weight:600; border:none; background:none;
      color: var(--grey-mid); cursor:pointer; transition: background .2s ease, color .2s ease;
    }
    .lang-toggle-mobile .lang-btn.active{
      background: var(--ink); color:#fff;
    }
  }



  /* hero pulse animation, kept separate for clarity */
  .glownode{ animation: nodepulse 2.6s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
  .n2{ animation-delay: .6s; }
  .n3{ animation-delay: 1.2s; }
  @keyframes nodepulse{
    0%, 100%{ opacity:.55; transform: scale(1); }
    50%{ opacity:1; transform: scale(1.35); }
  }
  .pulse-path path{ stroke-dasharray: 140; stroke-dashoffset: 140; animation: draw 3.4s ease-in-out infinite; }
  .p2{ animation-delay: .5s; }
  .p3{ animation-delay: 1s; }
  .p4{ animation-delay: 1.6s; }
  @keyframes draw{
    0%{ stroke-dashoffset: 140; opacity:0; }
    15%{ opacity:1; }
    45%{ stroke-dashoffset:0; opacity:1; }
    70%{ opacity: .35; }
    100%{ stroke-dashoffset:0; opacity:.35; }
  }
  /* Contact page styling */
  .contact-page {
    padding: 120px 0 80px;
    max-width: 1040px;
    margin: 0 auto;
  }
  @media (max-width: 680px) {
    .contact-page {
      padding: 100px 0 60px;
    }
  }

  /* Privacy policy page styling */
  .privacy-page {
    padding: 120px 0 80px;
    max-width: 800px;
    margin: 0 auto;
  }
  .privacy-card {
    background: var(--paper-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 48px;
  }
  .privacy-card h1 {
    font-family: var(--display);
    font-size: 38px;
    margin: 0 0 10px 0;
    font-weight: 700;
    color: var(--ink);
  }
  .privacy-card h2 {
    font-family: var(--display);
    font-size: 24px;
    margin: 36px 0 16px 0;
    font-weight: 600;
    color: var(--ink);
  }
  .privacy-card p, .privacy-card li {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-soft);
  }
  .privacy-card ul {
    padding-left: 20px;
    list-style-type: disc;
    margin: 16px 0;
  }
  .privacy-card li {
    margin-bottom: 8px;
  }
  .effective-date {
    color: var(--grey-mid);
    margin-bottom: 40px;
    font-size: 13.5px;
    font-family: var(--mono);
  }
  @media (max-width: 680px) {
    .privacy-page {
      padding: 100px 0 60px;
    }
    .privacy-card {
      padding: 24px;
      border-radius: 12px;
    }
    .privacy-card h1 {
      font-size: 28px;
    }
    .privacy-card h2 {
      font-size: 20px;
      margin: 28px 0 12px 0;
    }
  }

  /* Service subpage styles */
  .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    color: var(--grey-mid);
    text-transform: uppercase;
    letter-spacing: .08em;
    text-decoration: none;
    margin-bottom: 32px;
    transition: color .2s ease;
  }
  .back-link:hover {
    color: var(--flame);
  }
  .service-checklist {
    margin: 36px 0;
  }
  .service-checklist h3 {
    font-family: var(--display);
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--ink);
  }
  .service-checklist ul {
    list-style-type: none !important;
    padding-left: 0 !important;
  }
  .service-checklist li {
    margin-bottom: 14px;
    line-height: 1.6;
    font-size: 15px;
    color: var(--ink-soft);
    position: relative;
    padding-left: 24px;
  }
  .service-checklist li::before {
    content: "→";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--flame);
    font-weight: 700;
  }
  .tech-stack {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
  }
  .tech-stack h3 {
    font-family: var(--display);
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 600;
    color: var(--ink);
  }
  .tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .tech-badge {
    background: rgba(23,24,27,0.03);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 6px 12px;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    color: var(--ink);
  }

  @media (prefers-reduced-motion: reduce){
    .glownode, .pulse-path path, .reveal{ animation:none !important; transition:none !important; opacity:1 !important; transform:none !important; }
  }
