
    /* ── RESET ──────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    /* ── BODY ───────────────────────────────── */
    body {
      font-family: 'Inter', sans-serif;
      background: #080808;
      color: #fff;
      min-height: 100vh;
      overflow-x: hidden;
      cursor: none;
    }

    @media (pointer: coarse) {
      body { cursor: auto; }
      .cur, .cur-ring, .cur-glow { display: none !important; }
    }

    /* ── CUSTOM CURSOR ──────────────────────── */
    .cur {
      position: fixed; width: 6px; height: 6px;
      background: #fff; border-radius: 50%;
      pointer-events: none; z-index: 9999;
      transform: translate(-50%,-50%);
      transition: transform .15s ease;
      will-change: left, top;
    }
    .cur-ring {
      position: fixed; width: 34px; height: 34px;
      border: 1px solid rgba(255,255,255,.22);
      border-radius: 50%; pointer-events: none;
      z-index: 9998; transform: translate(-50%,-50%);
      transition: transform .2s ease, border-color .2s ease;
      will-change: left, top;
    }
    .cur-glow {
      position: fixed; width: 380px; height: 380px;
      background: radial-gradient(circle, rgba(255,255,255,.028) 0%, transparent 65%);
      border-radius: 50%; pointer-events: none; z-index: 3;
      transform: translate(-50%,-50%);
      will-change: left, top;
    }

    /* ── BACKGROUND ─────────────────────────── */
    #cnv {
      position: fixed; inset: 0; z-index: 0; pointer-events: none;
    }
    .bg-lines {
      position: fixed; inset: 0; z-index: 1; pointer-events: none;
      background-image: repeating-linear-gradient(
        -50deg, transparent, transparent 38px,
        rgba(255,255,255,.011) 38px, rgba(255,255,255,.011) 39px
      );
    }
    .bg-top {
      position: fixed; top: 0; left: 50%; transform: translateX(-50%);
      width: 900px; height: 500px; z-index: 2; pointer-events: none;
      background: radial-gradient(ellipse at top, rgba(255,255,255,.038) 0%, transparent 60%);
    }
    .bg-vignette {
      position: fixed; inset: 0; z-index: 3; pointer-events: none;
      background:
        linear-gradient(to right, rgba(0,0,0,.35) 0%, transparent 18%, transparent 82%, rgba(0,0,0,.35) 100%),
        linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.45) 100%);
    }

    /* ── WRAPPER ────────────────────────────── */
    .wrap { position: relative; z-index: 10; }

    /* ════════════════════════════════════════
       HERO
    ════════════════════════════════════════ */
    .hero {
      position: relative; min-height: 100vh;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      padding: 5rem 1.5rem 8rem; text-align: center;
      overflow: hidden;
    }

    /* Ghost "23" */
    .ghost-num {
      position: absolute;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(14rem, 42vw, 30rem);
      color: transparent;
      -webkit-text-stroke: 1px rgba(255,255,255,.022);
      line-height: 1; pointer-events: none; user-select: none;
      letter-spacing: -.04em;
      top: 50%; left: 50%;
      transform: translate(-50%,-50%) rotate(-7deg);
      animation: ghostFloat 14s ease-in-out infinite;
    }

    /* Logo */
    .logo-wrap {
      position: relative;
      opacity: 0;
      animation: logoIn 1.2s cubic-bezier(.16,1,.3,1) forwards .25s;
    }
    .logo-halo {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      width: 460px; height: 460px;
      max-width: 90vw; max-height: 90vw;
      background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 65%);
      border-radius: 50%;
      animation: haloBreath 5s ease-in-out infinite;
      pointer-events: none;
    }
    .logo-img {
      position: relative;
      width: 320px;
      max-width: min(320px, 85vw);
    }

    /* Ornament */
    .ornament {
      display: flex; align-items: center; gap: .8rem;
      margin-top: 2.5rem;
      opacity: 0; animation: fadeUp .7s ease forwards 1.1s;
    }
    .orn-line {
      flex: 1; max-width: 80px; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.3));
    }
    .orn-line.rev { background: linear-gradient(90deg, rgba(255,255,255,.3), transparent); }
    .orn-loz {
      width: 5px; height: 5px;
      background: rgba(255,255,255,.5);
      transform: rotate(45deg); flex-shrink: 0;
    }
    .orn-txt {
      font-size: .58rem; letter-spacing: .5em;
      color: rgba(255,255,255,.35); text-transform: uppercase;
    }

    /* Heading */
    .hero-title-wrap {
      margin-top: 2rem;
      opacity: 0; animation: fadeUp .7s ease forwards 1.3s;
    }
    .hero-eyebrow {
      font-size: .6rem; letter-spacing: .55em;
      color: rgba(255,255,255,.28); text-transform: uppercase;
      margin-bottom: .4rem;
    }
    .hero-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3rem, 9vw, 6rem);
      letter-spacing: .04em; line-height: .9;
      background: linear-gradient(135deg, #fff 20%, rgba(255,255,255,.6) 50%, #fff 80%);
      background-size: 300% auto;
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: shimmer 7s linear infinite 3s;
    }

    /* Body */
    .hero-body {
      margin-top: 1.5rem;
      color: rgba(255,255,255,.4); font-size: .87rem; line-height: 1.9;
      max-width: 360px;
      opacity: 0; animation: fadeUp .7s ease forwards 1.5s;
    }

    /* CTA */
    .hero-cta {
      display: flex; gap: .75rem; flex-wrap: wrap; justify-content: center;
      margin-top: 2.5rem;
      opacity: 0; animation: fadeUp .7s ease forwards 1.7s;
    }
    .btn {
      display: inline-flex; align-items: center; gap: .55rem;
      padding: .8rem 1.65rem;
      font-size: .7rem; font-weight: 600;
      letter-spacing: .22em; text-transform: uppercase;
      text-decoration: none; overflow: hidden; position: relative;
      transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    }
    .btn::before {
      content: ''; position: absolute;
      top: 0; left: -80%; width: 50%; height: 100%;
      transform: skewX(-20deg);
    }
    .btn:hover::before { left: 150%; transition: left .55s ease; }

    .btn-white { background: #fff; color: #000; }
    .btn-white::before { background: rgba(0,0,0,.06); }
    .btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 35px rgba(255,255,255,.1); }

    .btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.18); }
    .btn-ghost:hover { border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.04); transform: translateY(-2px); }

    /* Stats */
    .hero-stats {
      display: flex; align-items: center; gap: 2.5rem;
      margin-top: 3.5rem;
      opacity: 0; animation: fadeUp .7s ease forwards 1.9s;
    }
    .stat { text-align: center; }
    .stat-n {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.2rem; letter-spacing: .04em; line-height: 1;
    }
    .stat-l {
      font-size: .58rem; letter-spacing: .3em;
      color: rgba(255,255,255,.28); text-transform: uppercase; margin-top: .2rem;
    }
    .stat-div { width: 1px; height: 40px; background: rgba(255,255,255,.1); }

    /* Scroll cue */
    .scroll-cue {
      position: absolute; bottom: 2.5rem; left: 50%;
      transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: .6rem;
      opacity: 0; animation: fadeUp .7s ease forwards 2.4s;
      text-decoration: none;
    }
    .scroll-cue-txt {
      font-size: .56rem; letter-spacing: .45em;
      color: rgba(255,255,255,.22); text-transform: uppercase;
    }
    .scroll-cue-line {
      width: 1px; height: 42px;
      background: rgba(255,255,255,.18);
      position: relative; overflow: hidden;
    }
    .scroll-cue-line::after {
      content: ''; position: absolute;
      top: -100%; left: 0; width: 100%; height: 100%;
      background: rgba(255,255,255,.7);
      animation: lineScroll 2s ease-in-out infinite;
    }

    /* ════════════════════════════════════════
       MARQUEE
    ════════════════════════════════════════ */
    .marquee-wrap {
      border-top: 1px solid rgba(255,255,255,.06);
      border-bottom: 1px solid rgba(255,255,255,.06);
      padding: 1.1rem 0; overflow: hidden;
    }
    .marquee-track {
      display: flex; animation: scroll 24s linear infinite;
      width: max-content;
    }
    .marquee-item {
      display: flex; align-items: center;
      gap: 1.8rem; padding: 0 1.8rem;
    }
    .marquee-word {
      font-family: 'Bebas Neue', sans-serif;
      font-size: .88rem; letter-spacing: .45em;
      color: rgba(255,255,255,.15); white-space: nowrap;
    }
    .marquee-sep {
      width: 4px; height: 4px;
      background: rgba(255,255,255,.18);
      transform: rotate(45deg); flex-shrink: 0;
    }

    /* ════════════════════════════════════════
       SERVICES
    ════════════════════════════════════════ */
    .services { padding: 6rem 1.5rem; }

    .sec-hd { text-align: center; margin-bottom: 4rem; }
    .sec-eyebrow {
      font-size: .58rem; letter-spacing: .55em;
      color: rgba(255,255,255,.28); text-transform: uppercase;
      display: flex; align-items: center; justify-content: center; gap: .8rem;
      margin-bottom: .75rem;
    }
    .sec-eyebrow::before, .sec-eyebrow::after {
      content: ''; width: 20px; height: 1px; background: rgba(255,255,255,.18);
    }
    .sec-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2.2rem, 5.5vw, 3.8rem);
      letter-spacing: .05em; line-height: 1;
    }

    .svc-grid {
      display: grid; grid-template-columns: repeat(2,1fr);
      max-width: 900px; margin: 0 auto;
      gap: 1px; background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.06);
    }
    @media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }

    .svc-card {
      background: #080808; padding: 2.5rem 2rem;
      position: relative; overflow: hidden;
      opacity: 0; transform: translateY(25px);
    }
    .svc-card.visible {
      animation: cardIn .65s cubic-bezier(.16,1,.3,1) forwards;
    }
    .svc-card::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(130deg, rgba(255,255,255,.022) 0%, transparent 50%);
      opacity: 0; transition: opacity .3s;
    }
    .svc-card:hover { background: #0e0e0e; }
    .svc-card:hover::after { opacity: 1; }

    .svc-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: .72rem; letter-spacing: .4em;
      color: rgba(255,255,255,.11); margin-bottom: 1.4rem;
    }
    .svc-name {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.7rem; letter-spacing: .04em; line-height: 1;
      margin-bottom: .75rem;
    }
    .svc-desc { font-size: .82rem; color: rgba(255,255,255,.38); line-height: 1.8; }
    .svc-footer {
      display: flex; align-items: center; justify-content: space-between;
      margin-top: 2rem; padding-top: 1.2rem;
      border-top: 1px solid rgba(255,255,255,.06);
    }
    .svc-price { font-size: .7rem; letter-spacing: .15em; color: rgba(255,255,255,.38); }
    .svc-arrow {
      width: 28px; height: 28px;
      border: 1px solid rgba(255,255,255,.12);
      display: flex; align-items: center; justify-content: center;
      transition: all .25s ease; flex-shrink: 0;
    }
    .svc-card:hover .svc-arrow { border-color: rgba(255,255,255,.35); transform: translate(2px,-2px); }

    /* ════════════════════════════════════════
       QUOTE BAND
    ════════════════════════════════════════ */
    .quote-band {
      border-top: 1px solid rgba(255,255,255,.06);
      border-bottom: 1px solid rgba(255,255,255,.06);
      background: rgba(255,255,255,.012);
    }
    .quote-inner {
      max-width: 700px; margin: 0 auto;
      padding: 5.5rem 1.5rem; text-align: center;
    }
    .quote-txt {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(1.8rem, 4.5vw, 3.2rem);
      line-height: 1.25; letter-spacing: .04em;
    }
    .quote-txt em { font-style: normal; color: rgba(255,255,255,.28); }
    .quote-by {
      margin-top: 2rem; font-size: .62rem;
      letter-spacing: .45em; color: rgba(255,255,255,.22); text-transform: uppercase;
      display: flex; align-items: center; justify-content: center; gap: .75rem;
    }
    .quote-by::before, .quote-by::after {
      content: ''; width: 20px; height: 1px; background: rgba(255,255,255,.14);
    }

    /* ════════════════════════════════════════
       CONTACT
    ════════════════════════════════════════ */
    .contact {
      padding: 6rem 1.5rem; text-align: center;
      max-width: 580px; margin: 0 auto;
    }
    .contact-body {
      margin-top: 1.25rem; color: rgba(255,255,255,.4);
      font-size: .85rem; line-height: 1.9;
    }
    .btn-wa {
      display: inline-flex; align-items: center; gap: .75rem;
      padding: .95rem 2.25rem; background: white; color: black;
      font-size: .7rem; font-weight: 600;
      letter-spacing: .2em; text-transform: uppercase;
      text-decoration: none; margin-top: 2.5rem;
      transition: transform .25s ease, box-shadow .25s ease;
      position: relative; overflow: hidden;
    }
    .btn-wa::before {
      content: ''; position: absolute;
      top: 0; left: -60%; width: 40%; height: 100%;
      background: rgba(0,0,0,.06); transform: skewX(-20deg);
      animation: waBtnShine 3.5s ease-in-out infinite 4.5s;
    }
    .btn-wa:hover { transform: translateY(-3px); box-shadow: 0 18px 50px rgba(255,255,255,.1); }

    .socials {
      display: flex; justify-content: center; gap: .875rem; margin-top: 2.5rem;
    }
    .soc {
      width: 42px; height: 42px;
      border: 1px solid rgba(255,255,255,.1);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.32); text-decoration: none;
      transition: all .25s ease;
    }
    .soc:hover { border-color: rgba(255,255,255,.4); color: white; transform: translateY(-2px); }

    /* ════════════════════════════════════════
       FOOTER
    ════════════════════════════════════════ */
    .footer {
      border-top: 1px solid rgba(255,255,255,.06);
      padding: 1.75rem 2rem;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: .75rem;
    }
    .footer-copy {
      font-size: .6rem; letter-spacing: .25em;
      color: rgba(255,255,255,.17); text-transform: uppercase;
    }
    .footer-brand {
      font-family: 'Bebas Neue', sans-serif;
      font-size: .85rem; letter-spacing: .35em; color: rgba(255,255,255,.12);
    }

    /* ════════════════════════════════════════
       KEYFRAMES
    ════════════════════════════════════════ */
    @keyframes ghostFloat {
      0%,100% { transform: translate(-50%,-50%) rotate(-7deg) translateY(0); }
      50%      { transform: translate(-50%,-50%) rotate(-7deg) translateY(-16px); }
    }
    @keyframes logoIn {
      from { opacity:0; transform: scale(.92) translateY(-18px); filter: blur(12px); }
      to   { opacity:1; transform: scale(1)   translateY(0);     filter: blur(0); }
    }
    @keyframes haloBreath {
      0%,100% { opacity:.65; transform: translate(-50%,-50%) scale(1);    }
      50%     { opacity:1;   transform: translate(-50%,-50%) scale(1.08); }
    }
    @keyframes fadeUp {
      from { opacity:0; transform: translateY(18px); }
      to   { opacity:1; transform: translateY(0); }
    }
    @keyframes shimmer {
      0%   { background-position:   0% center; }
      100% { background-position: 300% center; }
    }
    @keyframes lineScroll {
      0%   { top: -100%; }
      100% { top:  100%; }
    }
    @keyframes scroll {
      0%   { transform: translateX(0);    }
      100% { transform: translateX(-50%); }
    }
    @keyframes cardIn {
      to { opacity:1; transform: translateY(0); }
    }
    @keyframes waBtnShine {
      0%      { left: -60%; }
      30%,100% { left: 130%; }
    }

    .svc-arrow{
  display:flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:50%;
  text-decoration:none;
  color:inherit;
  cursor:pointer;
  position:relative;
  z-index:5;
  pointer-events:auto;
}