    :root{
      --bg0:#0b0f1a;
      --bg1:#0f1422;
      --card: rgba(255,255,255,.04);
      --stroke: rgba(255,255,255,.10);
      --text: rgba(255,255,255,.94);
      --muted: rgba(255,255,255,.70);
      --muted2: rgba(255,255,255,.54);
      --accent:#31c7b8;
      --accent2:#f2a65a;
      --ok:#34d399;
      --shadow: 0 18px 60px rgba(0,0,0,.55);
      --radius: 18px;
      --max: 1080px;
      --paper: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
    }

    *{ box-sizing:border-box; }
    html,body{ height:100%; }
    body{
      margin:0;
      font-family: "Manrope", "Space Grotesk", "Segoe UI", sans-serif;
      color: var(--text);
      background: radial-gradient(1200px 600px at 10% -10%, rgba(49,199,184,.10), transparent 60%),
                  radial-gradient(900px 520px at 90% 10%, rgba(242,166,90,.10), transparent 60%),
                  var(--bg0);
    }

    a{ color:inherit; }
    .container{ width:min(var(--max), calc(100% - 36px)); margin:0 auto; }
    .sr-only{
      position:absolute;
      width:1px;
      height:1px;
      padding:0;
      margin:-1px;
      overflow:hidden;
      clip:rect(0,0,0,0);
      white-space:nowrap;
      border:0;
    }
    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    textarea:focus-visible{
      outline: 2px solid rgba(49,199,184,.6);
      outline-offset: 2px;
    }

    /* Top bar */
    .topbar{
      position: sticky;
      top:0;
      z-index: 50;
      background: rgba(8,12,26,.85);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .topbar-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 14px;
      padding: 14px 0;
    }

    .brand{
      display:flex;
      align-items:center;
      gap: 10px;
      min-width: 180px;
    }
    .logo{
      width: 36px; height: 36px;
      border-radius: 12px;
      border: 1px solid rgba(255,255,255,.16);
      background:
        radial-gradient(circle at 30% 30%, rgba(125,211,252,.95), rgba(125,211,252,0) 60%),
        radial-gradient(circle at 70% 70%, rgba(167,139,250,.85), rgba(167,139,250,0) 62%),
        rgba(255,255,255,.05);
      box-shadow: 0 10px 26px rgba(0,0,0,.35);
      display: grid;
      place-items: center;
      font-weight: 800;
      font-size: 18px;
      color: #fff;
      text-shadow: 0 1px 4px rgba(0,0,0,.4);
    }
    .brand strong{
      letter-spacing:.6px;
      font-size: 18px;
      font-weight: 700;
      font-family: "Palatino Linotype", "Palatino", "Book Antiqua", serif;
      color: var(--text);
    }

    nav{
      display:flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }
    nav a{
      text-decoration:none;
      font-size: 13px;
      color: var(--muted);
      padding: 8px 10px;
      border-radius: 10px;
      border: 1px solid transparent;
    }
    nav a:hover{
      color: var(--text);
      border-color: rgba(255,255,255,.10);
      background: rgba(255,255,255,.04);
    }

    .cta{
      display:flex;
      align-items:center;
      gap: 10px;
      flex-wrap: wrap;
      justify-content:flex-end;
      min-width: 260px;
    }
    .menu-btn{
      display:none;
      align-items:center;
      gap: 8px;
      padding: 8px 10px;
      border-radius: 10px;
      border: 1px solid var(--stroke);
      background: var(--card);
      color: var(--text);
      font-size: 13px;
      cursor: pointer;
    }
    .menu-btn:hover{ background: rgba(255,255,255,.07); }
    .menu-btn svg{
      width: 16px;
      height: 16px;
      stroke: currentColor;
      stroke-width: 1.8;
      fill: none;
    }
    .pill{
      display:flex;
      align-items:center;
      gap: 8px;
      padding: 9px 12px;
      border-radius: 999px;
      border: 1px solid var(--stroke);
      background: var(--card);
      color: rgba(255,255,255,.86);
      font-size: 13px;
      text-decoration:none;
      white-space: nowrap;
    }
    .pill:hover{ background: rgba(255,255,255,.07); }
    .btn{
      border: 1px solid rgba(125,211,252,.35);
      background:
        radial-gradient(140px 60px at 20% 30%, rgba(125,211,252,.35), transparent 60%),
        radial-gradient(160px 80px at 70% 70%, rgba(167,139,250,.25), transparent 62%),
        rgba(255,255,255,.05);
      padding: 10px 14px;
      border-radius: 12px;
      text-decoration:none;
      font-weight: 650;
      letter-spacing:.2px;
      display:inline-flex;
      align-items:center;
      gap: 8px;
      transition: transform .15s ease, background .15s ease;
      white-space: nowrap;
    }
    .btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.08); }

    /* Hero */
    .hero{
      min-height: calc(100vh - 65px);
      display: flex;
      align-items: center;
      padding: 40px 0;
      position: relative;
      overflow: hidden;
    }
    .hero::before{
      content:"";
      position: absolute;
      inset: -25% -15%;
      background:
        radial-gradient(500px 260px at 20% 30%, rgba(49,199,184,.14), transparent 60%),
        radial-gradient(520px 280px at 80% 60%, rgba(242,166,90,.12), transparent 62%);
      background-size: 140% 140%;
      animation: heroDrift 18s ease-in-out infinite;
      pointer-events: none;
      opacity: .75;
    }
    .hero > .container{ position: relative; z-index: 1; }
    .hero-grid{
      width: 100%;
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 48px;
      align-items: center;
    }
    .kicker{
      color: var(--muted);
      font-size: 13px;
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    h1{
      margin:0 0 18px;
      font-size: clamp(34px, 4.3vw, 56px);
      line-height: 1.02;
      letter-spacing: -0.9px;
    }
    .grad{
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      -webkit-background-clip:text;
      background-clip:text;
      color: transparent;
    }
    .sub{
      margin:0;
      max-width: 64ch;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.65;
    }
    .hero-actions{
      margin-top: 28px;
      display:flex;
      gap: 12px;
      flex-wrap: wrap;
      align-items:center;
    }
    .ghost{
      border: 1px solid var(--stroke);
      background: var(--card);
      padding: 10px 14px;
      border-radius: 12px;
      text-decoration:none;
      font-weight: 600;
      color: rgba(255,255,255,.86);
      display:inline-flex;
      align-items:center;
      gap: 8px;
    }
    .ghost:hover{ background: rgba(255,255,255,.07); }

    .stats{
      background: transparent;
      border: 1px solid var(--stroke);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 22px;
      display:grid;
      gap: 16px;
    }
    .stat{
      border: 1px solid var(--stroke);
      background: transparent;
      border-radius: 14px;
      padding: 18px 18px;
    }
    .stat strong{
      display:block;
      font-size: 14px;
      margin-bottom: 6px;
      letter-spacing:.2px;
    }
    .stat p{
      margin:0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.55;
    }

    /* Sections */
    section{
      padding: 72px 0;
      background: var(--bg1);
      border-top: 1px solid rgba(255,255,255,.04);
      border-bottom: 1px solid rgba(255,255,255,.04);
    }
    .section-alt{
      background: #0c1220;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap: 20px;
      margin-bottom: 28px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap: 8px;
      font-size: 12px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--muted2);
    }
    .eyebrow::before{
      content:"";
      width: 16px;
      height: 2px;
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      border-radius: 999px;
    }
    h2{
      margin:8px 0 8px;
      font-size: clamp(22px, 2.6vw, 30px);
      letter-spacing: -0.4px;
    }
    .hint{
      color: var(--muted);
      font-size: 15px;
      margin: 0;
      line-height: 1.6;
      max-width: 60ch;
    }

    /* Service cards */
    .service-card{
      border-radius: 20px;
      border: 1px solid var(--stroke);
      background: var(--paper);
      box-shadow: var(--shadow);
      overflow: hidden;
      position: relative;
    }
    .service-card::after{
      content:"";
      position:absolute;
      inset: -40% -20% auto auto;
      width: 220px;
      height: 220px;
      background: radial-gradient(circle at 30% 30%, rgba(49,199,184,.18), transparent 60%);
      pointer-events:none;
    }
    .service-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 16px;
      padding: 18px 20px;
      border-bottom: 1px solid rgba(255,255,255,.08);
      background: linear-gradient(90deg, rgba(49,199,184,.10), rgba(242,166,90,.08));
    }
    .service-title{
      display:flex;
      align-items:center;
      gap: 10px;
    }
    .svc-icon{
      width: 28px;
      height: 28px;
      display:grid;
      place-items:center;
      border-radius: 9px;
      background: rgba(0,0,0,.2);
      border: 1px solid rgba(255,255,255,.12);
    }
    .svc-icon svg{
      width: 18px;
      height: 18px;
      stroke: var(--accent);
      stroke-width: 1.6;
      fill: none;
    }
    .tag{
      font-weight: 700;
      font-size: 13px;
      letter-spacing:.2px;
    }
    .tiles{
      display: grid;
      gap: 16px;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      padding: 22px 22px 26px;
    }
    .tile{
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(0,0,0,.22);
      padding: 20px 18px;
      min-height: 140px;
      display:flex;
      flex-direction: column;
      gap: 12px;
      align-items:flex-start;
      color: var(--text);
      transition: transform .15s ease, border-color .15s ease, background .15s ease;
    }
    .tile:hover{
      transform: translateY(-1px);
      border-color: rgba(49,199,184,.28);
      background: rgba(255,255,255,.04);
    }
    .tile-ico{
      width: 44px;
      height: 44px;
      border-radius: 14px;
      border: 1px solid rgba(49,199,184,.28);
      background: rgba(49,199,184,.18);
      position: relative;
    }
    .tile-ico::before{
      content:"";
      position: absolute;
      inset: 0;
      background-color: var(--accent);
      -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M4 12h7l-2.5-3.5L20 12l-11.5 3.5L11 12H4z' fill='black'/></svg>") center/22px 22px no-repeat;
      mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M4 12h7l-2.5-3.5L20 12l-11.5 3.5L11 12H4z' fill='black'/></svg>") center/22px 22px no-repeat;
    }
    .tiles .tile:nth-child(4n+1) .tile-ico::before{
      -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M14.5 4.5a4 4 0 0 0-3.7 5.5L4 16.8V20h3.2l6.8-6.8a4 4 0 0 0 5.5-3.7l-3 3-2-2 3-3z' fill='black'/></svg>") center/22px 22px no-repeat;
      mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M14.5 4.5a4 4 0 0 0-3.7 5.5L4 16.8V20h3.2l6.8-6.8a4 4 0 0 0 5.5-3.7l-3 3-2-2 3-3z' fill='black'/></svg>") center/22px 22px no-repeat;
    }
    .tiles .tile:nth-child(4n+2) .tile-ico::before{
      -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 3h6v2h2v2h2v6h-2v2h-2v2H9v-2H7v-2H5V7h2V5h2V3zm2 4H9v2H7v2h2v2h2v2h2v-2h2v-2h2V9h-2V7h-2V5h-2v2z' fill='black'/></svg>") center/22px 22px no-repeat;
      mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 3h6v2h2v2h2v6h-2v2h-2v2H9v-2H7v-2H5V7h2V5h2V3zm2 4H9v2H7v2h2v2h2v2h2v-2h2v-2h2V9h-2V7h-2V5h-2v2z' fill='black'/></svg>") center/22px 22px no-repeat;
    }
    .tiles .tile:nth-child(4n+3) .tile-ico::before{
      -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 3l7 3v6c0 5-3.5 7.5-7 9-3.5-1.5-7-4-7-9V6l7-3zm0 4.2l-3.3 1.4v3.6c0 2.7 1.7 4.3 3.3 5.1 1.6-.8 3.3-2.4 3.3-5.1V8.6L12 7.2z' fill='black'/></svg>") center/22px 22px no-repeat;
      mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 3l7 3v6c0 5-3.5 7.5-7 9-3.5-1.5-7-4-7-9V6l7-3zm0 4.2l-3.3 1.4v3.6c0 2.7 1.7 4.3 3.3 5.1 1.6-.8 3.3-2.4 3.3-5.1V8.6L12 7.2z' fill='black'/></svg>") center/22px 22px no-repeat;
    }
    .tiles .tile:nth-child(4n) .tile-ico::before{
      -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M7 17a4 4 0 0 1 0-8 5 5 0 0 1 9.5-1.5A4 4 0 1 1 17 17H7z' fill='black'/></svg>") center/22px 22px no-repeat;
      mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M7 17a4 4 0 0 1 0-8 5 5 0 0 1 9.5-1.5A4 4 0 1 1 17 17H7z' fill='black'/></svg>") center/22px 22px no-repeat;
    }
    .tile-title{
      font-size: 15px;
      line-height: 1.45;
      font-weight: 600;
      color: var(--text);
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    /* Contact */
    .contact-wrap{
      max-width: var(--max);
      margin: 0 auto;
    }
    .contact-card{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 20px;
      border-radius: 20px;
      border: 1px solid var(--stroke);
      background: var(--paper);
      box-shadow: var(--shadow);
      padding: 20px;
    }
    .contact-left h2{
      margin: 6px 0 10px;
    }
    .contact-left{
      padding: 2px 4px;
    }
    .contact-left p{
      color: var(--muted);
      font-size: 15px;
      line-height: 1.6;
      margin: 0 0 16px;
    }
    .contact-actions{
      display:flex;
      gap: 12px;
      flex-wrap: wrap;
    }
    .contact-actions .btn,
    .contact-actions .ghost{
      padding: 12px 18px;
      font-size: 14px;
    }
    .contact-meta{
      margin-top: 12px;
      display:grid;
      gap: 10px;
      color: var(--muted2);
      font-size: 13px;
    }
    .contact-actions{ margin-top: 14px; }
    .contact-meta a{ color: var(--text); text-decoration:none; }
    .contact-meta span{ color: var(--muted2); }

    form{
      display: grid;
      gap: 12px;
      align-content: start;
    }
    .form-title{
      font-weight: 700;
      font-size: 14px;
      letter-spacing:.2px;
      margin-bottom: 6px;
    }
    input, textarea{
      width: 100%;
      padding: 14px 16px;
      border-radius: 12px;
      border: 1px solid var(--stroke);
      background: rgba(0,0,0,.2);
      color: var(--text);
      outline: none;
      font: inherit;
      font-size: 14px;
      transition: border-color .15s ease;
    }
    input:focus, textarea:focus{
      border-color: rgba(125,211,252,.3);
    }
    textarea{ min-height: 120px; resize: vertical; }
    input::placeholder, textarea::placeholder{ color: rgba(255,255,255,.35); }

    .send{
      width: fit-content;
      margin: 4px 0 0;
      border: 1px solid rgba(125,211,252,.35);
      background:
        radial-gradient(140px 60px at 20% 30%, rgba(125,211,252,.25), transparent 60%),
        rgba(255,255,255,.04);
      color: rgba(255,255,255,.92);
      padding: 13px 28px;
      border-radius: 12px;
      cursor: pointer;
      font-weight: 700;
      font-size: 14px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: transform .15s ease, background .15s ease;
    }
    .send:hover{ transform: translateY(-1px); background: rgba(255,255,255,.08); }

    /* Footer */
    footer{
      padding: 26px 0 36px;
      color: var(--muted2);
      font-size: 12px;
      border-top: 1px solid rgba(255,255,255,.06);
      background:
        radial-gradient(420px 160px at 10% 0%, rgba(49,199,184,.10), transparent 60%),
        #0c1220;
    }

    /* Animations */
    @keyframes fadeUp{
      from{ opacity:0; transform: translateY(14px); }
      to{ opacity:1; transform: translateY(0); }
    }
    @keyframes fadeIn{
      from{ opacity:0; transform: translateY(6px); }
      to{ opacity:1; transform: translateY(0); }
    }
    @keyframes heroDrift{
      0%{ background-position: 20% 30%, 80% 60%; }
      50%{ background-position: 30% 40%, 70% 50%; }
      100%{ background-position: 20% 30%, 80% 60%; }
    }
    .hero .kicker,
    .hero h1,
    .hero .sub,
    .hero .hero-actions{
      animation: fadeUp .7s ease both;
    }
    .hero h1{ animation-delay: .08s; }
    .hero .sub{ animation-delay: .16s; }
    .hero .hero-actions{ animation-delay: .24s; }
    .stats{ animation: fadeUp .8s ease .12s both; }
    .service-card,
    .contact-card,
    footer{
      animation: fadeIn .7s ease both;
    }
    .tiles .tile{
      animation: fadeIn .6s ease both;
    }
    .tiles .tile:nth-child(1){ animation-delay: .04s; }
    .tiles .tile:nth-child(2){ animation-delay: .08s; }
    .tiles .tile:nth-child(3){ animation-delay: .12s; }
    .tiles .tile:nth-child(4){ animation-delay: .16s; }
    .tiles .tile:nth-child(5){ animation-delay: .20s; }
    .tiles .tile:nth-child(6){ animation-delay: .24s; }
    .tiles .tile:nth-child(7){ animation-delay: .28s; }
    .tiles .tile:nth-child(8){ animation-delay: .32s; }
    .tiles .tile:nth-child(9){ animation-delay: .36s; }
    .foot{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 20px;
      align-items:center;
    }
    .foot-brand{
      display:flex;
      align-items:center;
      gap: 10px;
    }
    .foot-brand .logo{
      width: 28px;
      height: 28px;
      border-radius: 10px;
      font-size: 14px;
    }
    .foot-note{
      color: var(--muted2);
      font-size: 12px;
      margin-top: 6px;
    }
    .foot-actions{
      display:flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content:flex-end;
    }
    .foot-actions a{
      text-decoration:none;
      font-size: 12px;
      padding: 8px 12px;
      border-radius: 12px;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(0,0,0,.25);
      color: var(--text);
    }
    .foot-actions a.primary{
      border-color: rgba(49,199,184,.45);
      background: rgba(49,199,184,.12);
      color: #e7fffb;
      font-weight: 700;
    }
    .foot-actions a:hover{ background: rgba(255,255,255,.06); }

    /* Mobile sticky call */
    .sticky-call{
      position: fixed;
      left: 50%;
      transform: translateX(-50%);
      bottom: 14px;
      width: min(var(--max), calc(100% - 24px));
      z-index: 60;
      display:none;
    }
    .sticky-call a{
      display:flex;
      justify-content: space-between;
      align-items:center;
      gap: 10px;
      padding: 14px 14px;
      border-radius: 16px;
      text-decoration:none;
      border: 1px solid var(--stroke);
      background: rgba(8,12,26,.9);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      box-shadow: 0 12px 40px rgba(0,0,0,.5);
      color: rgba(255,255,255,.92);
      font-weight: 800;
      letter-spacing:.2px;
    }
    .sticky-call span{
      font-weight: 650;
      color: rgba(255,255,255,.78);
      letter-spacing:0;
    }

    /* Utilities */
    .muted{ color: var(--muted); }

    /* Responsive */
    @media (max-width: 900px){
      .hero-grid{ grid-template-columns: 1fr; }
      .cta{ min-width: auto; }
      nav{
        display:none;
        width: 100%;
        flex-direction: column;
        align-items:flex-start;
        gap: 6px;
        padding: 8px 0 4px;
      }
      nav.open{ display:flex; }
      nav a{ width: 100%; }
      .sticky-call{ display:block; }
      .section-head{ flex-direction: column; align-items:flex-start; }
      .topbar-inner{ flex-wrap: wrap; }
      .cta{ width: 100%; justify-content: flex-start; }
      .hero{ min-height: auto; padding: 24px 0; }
      .stats{ order: 2; }
      .menu-btn{ display:inline-flex; }
      .tiles{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (max-width: 700px){
      .container{ width:min(100%, calc(100% - 28px)); }
      section{ padding: 56px 0; }
      h1{ font-size: clamp(28px, 7vw, 40px); }
      .hero-actions{ gap: 10px; }
      .tiles{ grid-template-columns: 1fr; }
      .foot{ grid-template-columns: 1fr; }
      .foot-actions{ justify-content:flex-start; }
      .contact-card{ grid-template-columns: 1fr; }
      .service-top{ flex-direction: column; align-items:flex-start; gap: 8px; }
      .contact-card{ padding: 16px; }
      input, textarea{ font-size: 16px; }
    }
    @media (max-width: 520px){
      .topbar-inner{ gap: 10px; }
      .brand{ min-width: auto; }
      .cta{ gap: 8px; }
      .pill{ width: 100%; justify-content:center; }
      .btn, .ghost{ width: 100%; justify-content:center; }
      .stats{ padding: 16px; }
      .stat{ padding: 14px; }
      .service-top{ padding: 14px 16px; }
      .tiles{ padding: 16px 16px 18px; }
      .tile{ min-height: auto; }
      .contact-left{ padding: 0; }
      .contact-actions{ width: 100%; }
      .contact-actions .btn, .contact-actions .ghost{ width: 100%; justify-content:center; }
      .send{ width: 100%; justify-content:center; }
      .foot-actions a{ width: 100%; text-align:center; }
    }

    @media (prefers-reduced-motion: reduce){
      *{ scroll-behavior:auto !important; animation: none !important; transition: none !important; }
    }
  </style>
