    @font-face {
      font-family: "Sora";
      font-style: normal;
      font-weight: 600 700;
      font-display: swap;
      src: url("/assets/fonts/sora-latin.woff2") format("woff2");
    }
    @font-face {
      font-family: "Inter";
      font-style: normal;
      font-weight: 400 600;
      font-display: swap;
      src: url("/assets/fonts/inter-latin.woff2") format("woff2");
    }

    :root {
      --navy: #0F172A;
      --navy-soft: #16213B;
      --teal: #14B8A6;
      --teal-dark: #0F766E;
      --slate: #64748B;
      --slate-on-dark: #94A3B8;
      --offwhite: #F8FAFC;
      --silver: #C5CED8;
      --ink: #0F172A;
      --line: #E2E8F0;
      --r-btn: 12px;
      --r-card: 16px;
      --max: 1160px;
      --sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
      --display: "Sora", var(--sans);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: var(--sans);
      font-weight: 400;
      color: var(--ink);
      background: var(--offwhite);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; height: auto; }
    a { color: var(--teal-dark); text-decoration: none; }
    a:focus-visible, button:focus-visible {
      outline: 3px solid var(--teal);
      outline-offset: 2px;
      border-radius: 4px;
    }

    .wrap { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }

    h1, h2, h3 { font-family: var(--display); font-weight: 700; letter-spacing: -0.02em; margin: 0; }
    .ic { width: 28px; height: 28px; flex: none; }

    /* ---------- Nav ---------- */
    .nav {
      position: sticky; top: 0; z-index: 40;
      background: rgba(248, 250, 252, 0.92);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--line);
    }
    .nav-inner { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
    .nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 700; font-size: 1.18rem; color: var(--ink); letter-spacing: -0.02em; }
    .nav-logo img { height: 34px; width: auto; display: block; }
    .nav-links { display: flex; align-items: center; gap: 28px; font-size: 0.95rem; font-weight: 500; }
    .nav-links a:not(.btn) { color: var(--ink); }
    .nav-links a:not(.btn):hover { color: var(--teal-dark); }

    /* ---------- Buttons ---------- */
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 9px;
      border: 0; cursor: pointer;
      border-radius: var(--r-btn);
      padding: 14px 22px;
      font-family: var(--sans); font-weight: 600; font-size: 1rem;
      white-space: nowrap;
      transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    }
    .btn:hover { transform: translateY(-1px); }
    .btn:active { transform: scale(0.98); }
    .btn-primary { background: var(--teal); color: var(--navy); box-shadow: 0 10px 28px rgba(20, 184, 166, 0.24); }
    .btn-primary:hover { background: #17CBB8; }
    .btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255, 255, 255, 0.35); }
    .btn-ghost:hover { border-color: rgba(255, 255, 255, 0.7); background: rgba(255, 255, 255, 0.06); }
    .btn .ic { width: 20px; height: 20px; }
    .nav .btn { padding: 10px 18px; font-size: 0.92rem; }

    /* ---------- Hero ---------- */
    .hero {
      position: relative;
      background: var(--navy);
      color: #fff;
      overflow: hidden;
    }
    .hero::before {
      content: "";
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
      background-size: 72px 72px;
      mask-image: radial-gradient(ellipse 90% 80% at 60% 20%, black 30%, transparent 75%);
      -webkit-mask-image: radial-gradient(ellipse 90% 80% at 60% 20%, black 30%, transparent 75%);
    }
    .hero::after {
      content: "";
      position: absolute;
      right: -180px; top: -220px;
      width: 640px; height: 640px; border-radius: 50%;
      background: radial-gradient(circle, rgba(20, 184, 166, 0.22), transparent 65%);
      pointer-events: none;
    }
    .hero-inner {
      position: relative; z-index: 1;
      padding: 88px 0 96px;
      display: grid;
      grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
      gap: 40px;
      align-items: center;
    }
    .hero h1 {
      font-size: clamp(2.5rem, 5.6vw, 4.3rem);
      line-height: 1.06;
      max-width: 15ch;
    }
    .hero h1 .accent { color: var(--teal); }
    .hero p {
      margin: 24px 0 34px;
      font-size: 1.13rem;
      color: var(--slate-on-dark);
      max-width: 46ch;
    }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

    .hero-art { position: relative; min-height: 320px; }
    .sq { position: absolute; border-radius: 10px; }
    .sq-1 { width: 120px; height: 120px; background: var(--teal); right: 60px; top: 40px; opacity: 0.92; }
    .sq-2 { width: 68px; height: 68px; border: 2px solid var(--silver); right: 10px; top: 190px; opacity: 0.55; border-radius: 8px; }
    .sq-3 { width: 36px; height: 36px; background: var(--silver); right: 200px; top: 200px; opacity: 0.5; border-radius: 6px; }
    .sq-4 { width: 20px; height: 20px; background: var(--teal); right: 150px; top: 12px; opacity: 0.65; border-radius: 4px; }

    @media (prefers-reduced-motion: no-preference) {
      .sq-1 { animation: drift 9s ease-in-out infinite alternate; }
      .sq-2 { animation: drift 11s ease-in-out infinite alternate-reverse; }
      .sq-3 { animation: drift 8s ease-in-out infinite alternate; }
      .sq-4 { animation: drift 12s ease-in-out infinite alternate-reverse; }
      @keyframes drift { from { transform: translateY(-8px); } to { transform: translateY(10px); } }

      .js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
      .js .reveal.in { opacity: 1; transform: none; }
    }

    /* ---------- Stats strip ---------- */
    .stats { border-bottom: 1px solid var(--line); background: #fff; }
    .stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
    .stat { padding: 30px 24px; text-align: center; border-right: 1px solid var(--line); }
    .stat:last-child { border-right: 0; }
    .stat strong { display: block; font-family: var(--display); font-weight: 700; font-size: 1.9rem; color: var(--navy); letter-spacing: -0.02em; }
    .stat span { font-size: 0.92rem; color: var(--slate); }

    /* ---------- Sections ---------- */
    section { padding: 96px 0; }
    .lead { color: var(--slate); font-size: 1.1rem; max-width: 62ch; margin: 16px 0 0; }
    h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); line-height: 1.12; max-width: 24ch; }
    .section-head { margin-bottom: 48px; }

    /* ---------- Services bento ---------- */
    .services { background: #fff; border-bottom: 1px solid var(--line); }
    .bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
    .cell {
      border-radius: var(--r-card);
      padding: 30px 28px;
      background: var(--offwhite);
      border: 1px solid var(--line);
      display: flex; flex-direction: column; gap: 14px;
    }
    .cell h3 { font-size: 1.22rem; font-weight: 600; }
    .cell p { margin: 0; color: var(--slate); font-size: 0.97rem; }
    .cell .ic { color: var(--teal-dark); }
    .cell-wide { grid-column: span 2; }
    .cell-navy { background: var(--navy); border-color: var(--navy); color: #fff; }
    .cell-navy p { color: var(--slate-on-dark); }
    .cell-navy .ic { color: var(--teal); }
    .cell-teal { background: linear-gradient(135deg, #14B8A6, #0D9488); border-color: transparent; color: var(--navy); }
    .cell-teal p { color: #073B36; }
    .cell-teal .ic { color: var(--navy); }

    /* ---------- Process ---------- */
    .process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
    .step { border-top: 3px solid var(--teal); padding-top: 22px; }
    .step h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 10px; }
    .step p { margin: 0; color: var(--slate); }

    /* ---------- Why ---------- */
    .why { background: #fff; border-block: 1px solid var(--line); }
    .why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 48px; margin-top: 48px; }
    .why-item { display: flex; gap: 16px; align-items: flex-start; }
    .why-item .ic { color: var(--teal-dark); margin-top: 3px; width: 24px; height: 24px; }
    .why-item h3 { font-size: 1.12rem; font-weight: 600; margin-bottom: 6px; }
    .why-item p { margin: 0; color: var(--slate); font-size: 0.97rem; }


    /* ---------- Work / portfolio ---------- */
    .work { background: #fff; border-block: 1px solid var(--line); }
    .work-feature {
      display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,0.95fr);
      gap: 34px; align-items: center; margin-bottom: 22px;
    }
    .work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .work-card {
      display: block; border: 1px solid var(--line); border-radius: var(--r-card);
      overflow: hidden; background: var(--offwhite); color: inherit;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }
    .work-card:hover { transform: translateY(-3px); border-color: rgba(20,184,166,0.5);
      box-shadow: 0 16px 40px rgba(15,23,42,0.10); }
    .work-shot { display: block; width: 100%; aspect-ratio: 16/10; object-fit: cover;
      object-position: top center; border-bottom: 1px solid var(--line); background: var(--navy); }
    .work-body { padding: 22px 24px 24px; }
    .work-body h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 8px; }
    .work-body p { margin: 0 0 14px; color: var(--slate); font-size: 0.95rem; }
    .work-tags { display: flex; flex-wrap: wrap; gap: 7px; }
    .work-tags span {
      font-size: 0.71rem; font-weight: 600; letter-spacing: 0.03em;
      padding: 4px 10px; border-radius: 999px;
      background: rgba(20,184,166,0.10); border: 1px solid rgba(20,184,166,0.28);
      color: var(--teal-dark);
    }
    .work-feature .work-shot { aspect-ratio: 16/10; border-bottom: 0; border-radius: var(--r-card); border: 1px solid var(--line); }
    .work-feature .work-body { padding: 0; }
    .work-feature h3 { font-size: 1.7rem; }
    .work-feature p { font-size: 1.03rem; }
    .work-live { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px;
      color: var(--teal-dark); font-weight: 600; font-size: 0.95rem; }
    .work-live .ic { width: 17px; height: 17px; }
    @media (max-width: 900px) {
      .work-feature { grid-template-columns: 1fr; gap: 22px; }
      .work-grid { grid-template-columns: 1fr; }
    }

    /* ---------- Products (dropdown) ---------- */
    .product-drop {
      background: linear-gradient(120deg, #07131F, #0B1D2C 60%, #0F2A3A);
      border: 1px solid rgba(54, 211, 192, 0.18);
      border-radius: 18px;
      color: #fff;
      overflow: hidden;
    }
    .product-drop + .product-drop { margin-top: 14px; }
    .product-drop > summary {
      list-style: none;
      cursor: pointer;
      padding: 26px 30px;
      display: flex;
      align-items: center;
      gap: 14px;
      font-family: var(--display);
      font-weight: 700;
      font-size: clamp(1.3rem, 2.4vw, 1.6rem);
      letter-spacing: -0.02em;
      transition: background 0.18s ease;
    }
    .product-drop > summary::-webkit-details-marker { display: none; }
    .product-drop > summary::marker { content: ""; }
    .product-drop > summary:hover { background: rgba(54, 211, 192, 0.07); }
    .product-drop > summary:focus-visible { outline: 3px solid #36D3C0; outline-offset: -3px; }
    .pd-name em { font-style: normal; color: #36D3C0; }
    .pd-live {
      font-family: var(--sans); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em;
      padding: 4px 10px; border-radius: 999px;
      background: rgba(54, 211, 192, 0.14);
      border: 1px solid rgba(54, 211, 192, 0.36);
      color: #36D3C0;
    }
    .pd-chev {
      margin-left: auto; width: 22px; height: 22px; flex: none; color: #36D3C0;
      transition: transform 0.22s ease;
    }
    .product-drop[open] .pd-chev { transform: rotate(180deg); }
    .pd-body { padding: 0 30px 30px; }
    .pd-body p { color: #AEBDCA; max-width: 60ch; margin: 0 0 22px; }
    .btn-nuvtax { background: #36D3C0; color: #06201D; }
    .btn-nuvtax:hover { background: #4BE0CE; }
    @media (prefers-reduced-motion: reduce) { .pd-chev { transition: none; } }
    @media (max-width: 620px) {
      .product-drop > summary { padding: 20px 20px; }
      .pd-body { padding: 0 20px 24px; }
    }


    /* ---------- CTA band + footer ---------- */
    .cta-band { background: var(--navy); color: #fff; padding: 100px 0 84px; text-align: left; }
    .cta-band h2 { color: #fff; }
    .cta-band p { color: var(--slate-on-dark); max-width: 52ch; margin: 18px 0 32px; }
    .cta-alt { margin-top: 22px; font-size: 0.97rem; color: var(--slate-on-dark); }
    .cta-alt a { color: var(--teal); font-weight: 500; }

    footer { background: var(--navy); color: var(--slate-on-dark); border-top: 1px solid rgba(255, 255, 255, 0.09); padding: 52px 0 40px; font-size: 0.93rem; }
    .foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
    .foot-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
    .foot-brand img { width: 44px; height: 44px; border-radius: 10px; }
    .foot-brand span { font-family: var(--display); font-weight: 700; font-size: 1.25rem; color: #fff; }
    .foot h4 { color: #fff; font-family: var(--sans); font-weight: 600; font-size: 0.95rem; margin: 0 0 14px; }
    .foot ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
    .foot a { color: var(--slate-on-dark); }
    .foot a:hover { color: var(--teal); }
    .foot-legal { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.09); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

    /* ---------- WhatsApp float ---------- */
    .wa-float {
      position: fixed; right: 20px; bottom: 20px; z-index: 60;
      width: 58px; height: 58px; border-radius: 50%;
      display: grid; place-items: center;
      background: #25D366;
      box-shadow: 0 14px 34px rgba(7, 24, 18, 0.32);
      transition: transform 0.18s ease;
    }
    .wa-float:hover { transform: translateY(-2px) scale(1.04); }
    .wa-float .ic { width: 30px; height: 30px; }

    /* ---------- Responsive ---------- */
    @media (max-width: 960px) {
      .hero-inner { grid-template-columns: 1fr; padding: 64px 0 72px; }
      .hero-art { display: none; }
      .bento { grid-template-columns: repeat(2, 1fr); }
      .cell-wide { grid-column: span 2; }
      .process-grid { grid-template-columns: 1fr; gap: 30px; }
      .why-grid { grid-template-columns: 1fr; }
      .product-tile { grid-template-columns: 1fr; padding: 40px 28px; }
      .foot-grid { grid-template-columns: 1fr; gap: 30px; }
      .nav-links a:not(.btn) { display: none; }
    }
    @media (max-width: 620px) {
      section { padding: 68px 0; }
      .bento { grid-template-columns: 1fr; }
      .cell-wide { grid-column: auto; }
      .stats-grid { grid-template-columns: 1fr; }
      .stat { border-right: 0; border-bottom: 1px solid var(--line); }
      .stat:last-child { border-bottom: 0; }
      .hero-actions .btn { width: 100%; }
    }
    /* ---------- Inner pages ---------- */
    .crumbs { padding: 22px 0 0; font-size: 0.85rem; color: var(--slate); }
    .crumbs a { color: var(--slate); }
    .crumbs a:hover { color: var(--teal-dark); }
    .crumbs span { margin: 0 8px; opacity: 0.5; }
    .page-hero { padding: 30px 0 4px; }
    .page-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.2rem); line-height: 1.06; max-width: 19ch; }
    .page-hero .lead { font-size: 1.12rem; margin-top: 18px; }
    .page-hero .btn { margin-top: 26px; }
    article.prose { padding: 10px 0 8px; max-width: 70ch; }
    .prose h2 { font-size: clamp(1.45rem, 2.8vw, 2rem); margin: 44px 0 14px; }
    .prose h3 { font-size: 1.16rem; font-weight: 600; margin: 30px 0 9px; }
    .prose p { margin: 0 0 16px; color: var(--slate); }
    .prose ul, .prose ol { margin: 0 0 18px; padding-left: 20px; color: var(--slate); }
    .prose li { margin: 9px 0; }
    .prose strong { color: var(--ink); }
    .prose a { color: var(--teal-dark); text-decoration: underline; text-underline-offset: 3px; }
    .note { background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--teal);
      border-radius: 0 var(--r-card) var(--r-card) 0; padding: 18px 22px; margin: 26px 0; }
    .note p:last-child { margin-bottom: 0; }
    .steps { counter-reset: st; list-style: none; padding: 0; }
    .steps li { counter-increment: st; position: relative; padding-left: 46px; margin: 18px 0; }
    .steps li::before { content: counter(st); position: absolute; left: 0; top: -2px;
      width: 30px; height: 30px; border-radius: 9px; background: rgba(20,184,166,0.12);
      border: 1px solid rgba(20,184,166,0.32); color: var(--teal-dark);
      display: grid; place-items: center; font-weight: 700; font-size: 0.88rem; }
    .tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; margin: 26px 0; }
    .tile { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 22px 24px; }
    .tile b { display: block; font-family: var(--display); font-weight: 600; font-size: 1.05rem; margin-bottom: 7px; }
    .tile span { color: var(--slate); font-size: 0.93rem; line-height: 1.55; display: block; }
    a.tile { color: inherit; transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
    a.tile:hover { transform: translateY(-3px); border-color: rgba(20,184,166,0.5);
      box-shadow: 0 14px 34px rgba(15,23,42,0.08); }
    .related { border-top: 1px solid var(--line); margin-top: 52px; padding-top: 32px; }
    .related h2 { font-size: 1.3rem; margin: 0 0 18px; }
    .page-cta { background: var(--navy); color: #fff; border-radius: var(--r-card);
      padding: 40px 44px; margin: 56px 0 8px; }
    .page-cta h2 { color: #fff; font-size: 1.7rem; margin: 0 0 12px; }
    .page-cta p { color: var(--slate-on-dark); margin: 0 0 24px; max-width: 54ch; }
    @media (max-width: 620px) { .page-cta { padding: 28px 24px; } }
