:root{
    --bg: #09090a;
    --bg-alt: #131316;
    --bg-card: #18181c;
    --line: #29292e;
    --accent: #c8ff3d;
    --accent-dim: #94c723;
    --text: #f1f0ea;
    --text-dim: #9a9a97;
    --text-faint: #656462;
    --serif: Georgia, 'Iowan Old Style', 'Palatino Linotype', 'Times New Roman', serif;
    --sans: 'Segoe UI', ui-sans-serif, system-ui, -apple-system, Helvetica, Arial, sans-serif;
    --radius: 4px;
  }

  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--bg);
    color:var(--text);
    font-family:var(--sans);
    line-height:1.55;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }

  body::before{
    content:"";
    position:fixed; inset:0;
    pointer-events:none;
    z-index:1;
    opacity:.035;
    background-image:
      repeating-linear-gradient(0deg, #fff 0px, transparent 1px, transparent 2px, #fff 3px);
    mix-blend-mode:overlay;
  }

  img{max-width:100%; display:block;}
  a{color:inherit; text-decoration:none;}
  ul{list-style:none;}

  .wrap{
    max-width:1180px;
    margin:0 auto;
    padding:0 32px;
  }

  h1,h2,h3{
    font-family:var(--serif);
    font-weight:400;
    letter-spacing:-0.01em;
    color:var(--text);
  }

  h2{ font-size:clamp(28px, 4vw, 44px); line-height:1.12; }
  h3{ font-size:22px; line-height:1.25; }

  p{ color:var(--text-dim); }

  .label{
    font-family:var(--sans);
    font-size:13px;
    color:var(--accent-dim);
    letter-spacing:.02em;
    margin-bottom:14px;
  }

  /* ---------- reveal on scroll ---------- */
  [data-reveal]{
    opacity:0;
    transform:translateY(22px);
    transition:opacity .7s ease, transform .7s ease;
  }
  [data-reveal].in-view{
    opacity:1;
    transform:translateY(0);
  }
  @media (prefers-reduced-motion: reduce){
    [data-reveal]{opacity:1; transform:none; transition:none;}
    html{scroll-behavior:auto;}
  }

  /* ---------- header ---------- */
  header{
    position:sticky; top:0; z-index:50;
    background:rgba(9,9,10,.86);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line);
  }
  .nav{
    display:flex; align-items:center; justify-content:space-between;
    padding:18px 32px;
    max-width:1180px; margin:0 auto;
  }
  .logo{
    font-family:var(--serif);
    font-size:21px;
    display:flex; align-items:center; gap:9px;
  }
  .logo .dot{
    width:8px; height:8px; border-radius:50%;
    background:var(--accent);
    box-shadow:0 0 10px 2px rgba(200,255,61,.65);
  }
  .nav-links{
    display:flex; gap:32px;
    font-size:14.5px;
    color:var(--text-dim);
  }
  .nav-links a:hover{ color:var(--text); }
  .nav-cta{
    background:var(--accent);
    color:#0a0a0a;
    padding:10px 18px;
    border-radius:var(--radius);
    font-size:14px;
    font-weight:600;
    white-space:nowrap;
  }
  .nav-cta:hover{ background:#d8ff6b; }
  .burger{ display:none; }

  @media (max-width:860px){
    .nav-links{ display:none; }
    .nav{ padding:16px 20px; }
  }

  /* ---------- hero ---------- */
  .hero{
    position:relative;
    padding:88px 0 100px;
    overflow:hidden;
  }
  .hero-glow{
    position:absolute;
    width:640px; height:640px;
    right:-220px; top:-160px;
    background:radial-gradient(circle, rgba(200,255,61,.18) 0%, rgba(200,255,61,0) 68%);
    pointer-events:none;
  }
  .hero-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:56px;
    align-items:center;
    position:relative; z-index:2;
  }
  .hero h1{
    font-size:clamp(38px, 5.4vw, 60px);
    line-height:1.06;
    max-width:620px;
  }
  .hero h1 em{
    font-style:normal;
    color:var(--accent);
  }
  .hero p.lede{
    margin-top:22px;
    font-size:18px;
    color:var(--text-dim);
    max-width:480px;
  }
  .hero-ctas{
    margin-top:34px;
    display:flex; gap:14px; flex-wrap:wrap;
  }
  .btn{
    display:inline-flex; align-items:center; gap:8px;
    padding:14px 24px;
    border-radius:var(--radius);
    font-size:15px;
    font-weight:600;
    border:1px solid transparent;
    transition:transform .18s ease, background .18s ease, border-color .18s ease;
  }
  .btn-primary{
    background:var(--accent);
    color:#0a0a0a;
  }
  .btn-primary:hover{ background:#d8ff6b; transform:translateY(-1px); }
  .btn-ghost{
    border-color:var(--line);
    color:var(--text);
  }
  .btn-ghost:hover{ border-color:var(--accent-dim); color:var(--accent); }

  .hero-note{
    margin-top:20px;
    font-size:13.5px;
    color:var(--text-faint);
  }
  .hero-note strong{ color:var(--accent-dim); font-weight:600; }

  /* browser mockup */
  .mock{
    background:var(--bg-card);
    border:1px solid var(--line);
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 30px 80px -30px rgba(0,0,0,.8);
    transform:rotate(1.2deg);
  }
  .mock-bar{
    display:flex; align-items:center; gap:6px;
    padding:11px 14px;
    border-bottom:1px solid var(--line);
    background:#0e0e11;
  }
  .mock-bar span{
    width:9px; height:9px; border-radius:50%;
    background:#3a3a3e;
  }
  .mock-url{
    margin-left:10px;
    font-size:11.5px;
    color:var(--text-faint);
    background:#0a0a0c;
    padding:4px 10px;
    border-radius:20px;
    flex:1;
  }
  .mock-body{
    padding:26px 22px 30px;
    font-family:'Consolas','Courier New',monospace;
    font-size:13px;
    color:#a9e94f;
    min-height:230px;
  }
  .mock-body .line{ color:var(--text-faint); }
  .mock-body .line span.k{ color:#7fb5ff; }
  .mock-body .line span.s{ color:#c8ff3d; }
  .caret{
    display:inline-block; width:7px; height:14px;
    background:var(--accent); vertical-align:-2px;
    animation:blink 1s step-end infinite;
  }
  @keyframes blink{ 50%{ opacity:0; } }

  @media (max-width:900px){
    .hero-grid{ grid-template-columns:1fr; }
    .mock{ transform:none; }
  }

  /* ---------- stat strip ---------- */
  .strip{
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
    background:var(--bg-alt);
  }
  .strip-inner{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    max-width:1180px; margin:0 auto;
  }
  .strip-item{
    padding:34px 32px;
    text-align:left;
  }
  .strip-item:not(:last-child){ border-right:1px solid var(--line); }
  .strip-item .num{
    font-family:var(--serif);
    font-size:34px;
    color:var(--accent);
  }
  .strip-item .cap{
    margin-top:4px;
    font-size:13.5px;
    color:var(--text-dim);
  }
  @media (max-width:700px){
    .strip-inner{ grid-template-columns:1fr; }
    .strip-item:not(:last-child){ border-right:none; border-bottom:1px solid var(--line); }
  }

  /* ---------- about ---------- */
  .about{ padding:108px 0; }
  .about-grid{
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:64px;
    align-items:start;
  }
  .about-card{
    background:var(--bg-alt);
    border:1px solid var(--line);
    border-radius:8px;
    padding:30px;
  }
  .about-card .name{
    font-family:var(--serif);
    font-size:24px;
  }
  .about-card .role{
    color:var(--accent-dim);
    font-size:13.5px;
    margin-top:4px;
  }
  .about-card .figure{
    width:100%;
    aspect-ratio:4/5;
    border-radius:6px;
    margin-bottom:20px;
    background:
      radial-gradient(circle at 34% 30%, rgba(200,255,61,.35), transparent 45%),
      linear-gradient(155deg, #1d1d20, #0c0c0e 70%);
    position:relative;
    overflow:hidden;
    border:1px solid var(--line);
  }
  .figure svg{ position:absolute; inset:0; width:100%; height:100%; }
  .about p{ font-size:16.5px; margin-bottom:16px; max-width:620px; }
  .about p strong{ color:var(--text); font-weight:600; }
  @media (max-width:860px){
    .about-grid{ grid-template-columns:1fr; }
    .about-card{ max-width:340px; }
  }

  /* ---------- services ---------- */
  .services{ padding:108px 0; background:var(--bg-alt); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
  .svc-head{ max-width:560px; margin-bottom:56px; }
  .svc-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:1px;
    background:var(--line);
    border:1px solid var(--line);
  }
  .svc-card{
    background:var(--bg-alt);
    padding:32px 26px;
    transition:background .25s ease, transform .25s ease;
    position:relative;
  }
  .svc-card:nth-child(2){ background:#141417; }
  .svc-card:nth-child(4){ background:#141417; }
  .svc-card:hover{
    background:var(--bg-card);
    transform:translateY(-6px);
  }
  .svc-card .icon{
    width:38px; height:38px;
    margin-bottom:22px;
    color:var(--accent);
  }
  .svc-card h3{ font-size:19px; margin-bottom:10px; }
  .svc-card p{ font-size:14.5px; }
  .svc-card .tag{
    margin-top:18px;
    font-size:12px;
    color:var(--accent-dim);
    opacity:0;
    transform:translateX(-6px);
    transition:opacity .25s ease, transform .25s ease;
  }
  .svc-card:hover .tag{ opacity:1; transform:translateX(0); }

  @media (max-width:900px){
    .svc-grid{ grid-template-columns:repeat(2,1fr); }
  }
  @media (max-width:560px){
    .svc-grid{ grid-template-columns:1fr; }
  }

  /* ---------- process ---------- */
  .process{ padding:108px 0; }
  .proc-head{ max-width:560px; margin-bottom:56px; }
  .proc-list{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
  }
  .proc-item{
    border-top:2px solid var(--line);
    padding-top:20px;
    position:relative;
  }
  .proc-item .n{
    font-family:var(--serif);
    font-size:15px;
    color:var(--accent);
    position:absolute;
    top:-13px; left:0;
    background:var(--bg);
    padding-right:10px;
  }
  .proc-item h3{ font-size:18px; margin-bottom:8px; margin-top:6px;}
  .proc-item p{ font-size:14px; }
  @media (max-width:900px){
    .proc-list{ grid-template-columns:1fr 1fr; }
  }
  @media (max-width:560px){
    .proc-list{ grid-template-columns:1fr; }
  }

  /* ---------- schedule ---------- */
  .schedule{ padding:108px 0; background:var(--bg-alt); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
  .sched-grid{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:56px;
    align-items:center;
  }
  .days{
    display:flex; flex-direction:column; gap:2px;
    border:1px solid var(--line);
    border-radius:6px;
    overflow:hidden;
  }
  .day-row{
    display:flex; align-items:center; justify-content:space-between;
    padding:15px 20px;
    background:var(--bg-card);
    font-size:14.5px;
  }
  .day-row.off{ color:var(--text-faint); }
  .day-row .d{ color:var(--text); font-weight:600; width:130px; }
  .day-row.off .d{ color:var(--text-faint); font-weight:400; }
  .day-row .hrs{ color:var(--text-dim); flex:1; text-align:right; padding-right:14px;}
  .status-dot{ width:8px; height:8px; border-radius:50%; background:var(--text-faint); flex-shrink:0; }
  .status-dot.on{ background:var(--accent); box-shadow:0 0 8px 1px rgba(200,255,61,.6); }

  .now-card{
    background:var(--bg-card);
    border:1px solid var(--line);
    border-radius:8px;
    padding:28px;
  }
  .now-card .pill{
    display:inline-flex; align-items:center; gap:8px;
    font-size:13px;
    color:var(--accent);
    background:rgba(200,255,61,.09);
    border:1px solid rgba(200,255,61,.3);
    padding:6px 12px;
    border-radius:30px;
    margin-bottom:18px;
  }
  .now-card .pulse{
    width:7px; height:7px; border-radius:50%;
    background:var(--accent);
    animation:pulse 1.6s ease-out infinite;
  }
  @keyframes pulse{
    0%{ box-shadow:0 0 0 0 rgba(200,255,61,.55); }
    70%{ box-shadow:0 0 0 9px rgba(200,255,61,0); }
    100%{ box-shadow:0 0 0 0 rgba(200,255,61,0); }
  }
  .now-card p{ font-size:15px; }

  @media (max-width:860px){
    .sched-grid{ grid-template-columns:1fr; }
  }

  /* ---------- location ---------- */
  .location{ padding:108px 0; }
  .loc-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:56px;
    align-items:center;
  }
  .loc-visual{
    background:var(--bg-card);
    border:1px solid var(--line);
    border-radius:8px;
    aspect-ratio:1/1;
    max-width:420px;
    position:relative;
    overflow:hidden;
  }
  .loc-visual svg{ width:100%; height:100%; }
  .loc-list{ display:flex; flex-direction:column; gap:18px; margin-top:24px; }
  .loc-list li{ font-size:15px; color:var(--text-dim); display:flex; gap:12px; }
  .loc-list li .mk{ color:var(--accent); }
  @media (max-width:860px){
    .loc-grid{ grid-template-columns:1fr; }
    .loc-visual{ max-width:100%; margin:0 auto; }
  }

  /* ---------- final cta ---------- */
  .final{
    padding:120px 0;
    background:
      radial-gradient(circle at 20% 20%, rgba(200,255,61,.10), transparent 55%),
      var(--bg-alt);
    border-top:1px solid var(--line);
    text-align:left;
  }
  .final h2{ max-width:640px; }
  .final p.lede{ max-width:480px; margin-top:18px; font-size:17px; }
  .final .hero-ctas{ margin-top:32px; }

  /* ---------- footer ---------- */
  footer{
    padding:44px 0 34px;
    border-top:1px solid var(--line);
  }
  .foot-grid{
    display:flex; justify-content:space-between; align-items:flex-end; flex-wrap:wrap; gap:24px;
  }
  .foot-grid .logo{ margin-bottom:8px; }
  footer .fine{ font-size:13px; color:var(--text-faint); }
  footer .fcontact{ text-align:right; font-size:14px; color:var(--text-dim); }
  footer .fcontact a:hover{ color:var(--accent); }

  /* ---------- whatsapp float ---------- */
  .wa-float{
    position:fixed;
    right:22px; bottom:22px;
    z-index:80;
    width:58px; height:58px;
    border-radius:50%;
    background:var(--accent);
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 8px 24px -6px rgba(200,255,61,.55);
    animation:floatpulse 2.4s ease-in-out infinite;
  }
  .wa-float svg{ width:28px; height:28px; }
  .wa-float:hover{ background:#d8ff6b; }
  @keyframes floatpulse{
    0%,100%{ transform:scale(1); }
    50%{ transform:scale(1.06); }
  }
  @media (prefers-reduced-motion: reduce){
    .wa-float{ animation:none; }
  }