:root{
    --bg: #0A0C0E;
    --bg-2: #14171B;
    --bg-3: #1C2026;
    --line: rgba(255,255,255,.08);
    --line-2: rgba(255,255,255,.16);
    --paper: #F2F4F0;
    --muted: rgba(242,244,240,.55);

    --lime: #A9CE38;
    --lime-glow: rgba(169,206,56,.45);
    --magenta: #00A7E4;
    --orange: #00B0C8;

    --font-sans: "Space Grotesk", system-ui, sans-serif;
    --font-mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
    --maxw: 1400px;
    --pad: clamp(20px, 4vw, 56px);
  }
  *{ box-sizing: border-box; }
  html, body{ margin:0; padding: 0; }
  body{
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--paper);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
    overflow-x: hidden;
  }
  a{ color: inherit; text-decoration: none; }
  img{ max-width: 100%; display: block; }

  .wrap{ max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
  .section{ padding: clamp(80px, 9vw, 140px) 0; }

  /* Cyber grid background */
  .grid-bg{
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background-image:
      linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 80px 80px;
  }

  /* ── NAV ── */
  .nav{
    position: sticky; top: 0; z-index: 50;
    background: rgba(10,12,14,.7);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
  }
  .nav-inner{
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 0;
  }
  .brand{
    display: flex; align-items: center; gap: 12px;
    font-family: var(--font-mono); font-weight: 700; font-size: 14px;
    letter-spacing: .02em;
  }
  .brand-mark{
    width: 32px; height: 32px;
    background: var(--lime);
    color: var(--bg);
    display: grid; place-items: center;
    font-family: var(--font-mono); font-weight: 700; font-size: 12px;
    border-radius: 6px;
    box-shadow: 0 0 24px var(--lime-glow);
  }
  .nav ul{ list-style: none; padding: 0; margin: 0; display: flex; gap: 28px; font-size: 13px; font-family: var(--font-mono); }
  .nav ul a{ color: rgba(242,244,240,.65); }
  .nav ul a:hover{ color: var(--lime); }
  .status-pill{
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-mono); font-size: 11px;
    color: rgba(242,244,240,.65);
    padding: 6px 12px;
    border: 1px solid var(--line-2);
    border-radius: 999px;
  }
  .status-pill::before{
    content: ""; width: 6px; height: 6px; border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 8px var(--lime);
    animation: pulse 1.6s infinite;
  }
  @keyframes pulse{
    0%, 100%{ opacity: 1; }
    50%{ opacity: .4; }
  }

  .neon-cta{
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 22px;
    background: var(--lime); color: var(--bg);
    font-family: var(--font-mono); font-weight: 700; font-size: 13px;
    letter-spacing: .02em; text-transform: uppercase;
    border-radius: 999px;
    box-shadow: 0 0 0 0 var(--lime-glow);
    transition: box-shadow .25s ease, transform .25s ease;
  }
  .neon-cta:hover{
    box-shadow: 0 0 32px var(--lime-glow);
    transform: translateY(-1px);
  }

  /* ── HERO ── */
  .hero{
    padding: clamp(60px, 8vw, 120px) 0 0;
    position: relative;
    z-index: 1;
  }
  .hero-meta-row{
    display: flex; gap: 16px; align-items: center;
    font-family: var(--font-mono); font-size: 11px;
    color: var(--muted);
    text-transform: uppercase; letter-spacing: .1em;
    margin-bottom: 32px;
    flex-wrap: wrap;
  }
  .hero-meta-row .sep{ width: 24px; height: 1px; background: var(--line-2); }
  .hero-title{
    font-family: var(--font-sans); font-weight: 400;
    font-size: clamp(64px, 11vw, 200px);
    line-height: .88;
    letter-spacing: -0.04em;
    margin: 0;
  }
  .hero-title .neon{
    color: var(--lime);
    text-shadow: 0 0 24px var(--lime-glow);
    font-style: italic;
  }
  .hero-title .stroke{
    -webkit-text-stroke: 1.5px var(--paper);
    color: transparent;
  }

  .hero-sub-grid{
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: clamp(24px, 4vw, 64px);
    margin-top: clamp(48px, 6vw, 88px);
    align-items: end;
  }
  @media (max-width: 880px){ .hero-sub-grid{ grid-template-columns: 1fr; } }
  .hero-sub-grid .lead{
    font-size: clamp(17px, 1.4vw, 22px);
    line-height: 1.45;
    color: rgba(242,244,240,.85);
    max-width: 36ch;
  }
  .hero-cta-row{
    display: flex; gap: 12px; flex-wrap: wrap;
  }
  .ghost-cta{
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 22px;
    background: transparent; color: var(--paper);
    border: 1px solid var(--line-2);
    border-radius: 999px;
    font-family: var(--font-mono); font-size: 13px; font-weight: 500;
    text-transform: uppercase; letter-spacing: .02em;
  }
  .ghost-cta:hover{ border-color: var(--lime); color: var(--lime); }

  /* ── DASHBOARD ── */
  .dashboard{
    margin-top: clamp(64px, 7vw, 120px);
    border: 1px solid var(--line-2);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255,255,255,.025) 0%, rgba(255,255,255,0) 100%);
    overflow: hidden;
  }
  .dashboard-head{
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 22px;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-mono); font-size: 11px;
    color: var(--muted);
    text-transform: uppercase; letter-spacing: .1em;
  }
  .dashboard-head .dots{ display: flex; gap: 6px; }
  .dashboard-head .dot{
    width: 9px; height: 9px; border-radius: 50%;
    background: rgba(255,255,255,.18);
  }
  .dashboard-head .dot.live{ background: var(--lime); box-shadow: 0 0 8px var(--lime); }
  .dashboard-grid{
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1px;
    background: var(--line);
  }
  @media (max-width: 880px){ .dashboard-grid{ grid-template-columns: 1fr 1fr; } }
  .dash-cell{
    background: var(--bg);
    padding: 28px;
    min-height: 160px;
    position: relative;
  }
  .dash-cell .l{
    font-family: var(--font-mono); font-size: 10px; color: var(--muted);
    text-transform: uppercase; letter-spacing: .1em;
    margin-bottom: 16px;
  }
  .dash-cell .v{
    font-family: var(--font-sans); font-weight: 400;
    font-size: clamp(38px, 4vw, 64px); line-height: 1;
    letter-spacing: -0.025em;
  }
  .dash-cell .v .unit{ font-size: 16px; color: var(--muted); margin-left: 6px; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .04em; }
  .dash-cell .v.lime{ color: var(--lime); text-shadow: 0 0 20px var(--lime-glow); }
  .dash-cell .v.magenta{ color: var(--magenta); }
  .dash-cell .v.orange{ color: var(--orange); }
  .dash-cell.span-2{ grid-column: span 2; }
  .dash-cell.span-3{ grid-column: span 3; }
  @media (max-width: 880px){
    .dash-cell.span-2{ grid-column: span 2; }
    .dash-cell.span-3{ grid-column: span 2; }
  }

  /* Production graph */
  .graph{
    height: 120px; margin-top: 24px; position: relative;
  }
  .graph svg{ width: 100%; height: 100%; }

  /* ── TICKER ── */
  .ticker{
    margin-top: 0;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    background: var(--bg);
    position: relative; z-index: 1;
  }
  .ticker-track{
    display: flex; gap: 56px;
    width: max-content;
    animation: tickerScroll 30s linear infinite;
  }
  @keyframes tickerScroll{
    from{ transform: translateX(0); }
    to{ transform: translateX(-50%); }
  }
  .ticker-item{
    display: inline-flex; align-items: center; gap: 18px;
    font-family: var(--font-sans); font-weight: 400;
    font-size: clamp(28px, 3.4vw, 48px);
    letter-spacing: -0.02em;
    color: var(--paper);
  }
  .ticker-item:nth-child(odd) .glyph{ background: var(--lime); }
  .ticker-item:nth-child(3n) .glyph{ background: var(--magenta); }
  .ticker-item:nth-child(5n) .glyph{ background: var(--orange); }
  .ticker-item .glyph{
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--lime);
  }

  /* ── SERVICES (cards) ── */
  .services-section{ position: relative; z-index: 1; }
  .section-head{
    display: flex; align-items: end; justify-content: space-between;
    gap: 32px; flex-wrap: wrap; margin-bottom: 64px;
  }
  .section-head .label{
    font-family: var(--font-mono); font-size: 11px; color: var(--muted);
    text-transform: uppercase; letter-spacing: .1em;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .section-head .label::before{
    content: ""; width: 8px; height: 8px; border-radius: 50%;
    background: var(--lime); box-shadow: 0 0 8px var(--lime-glow);
  }
  .section-head h2{
    font-family: var(--font-sans); font-weight: 400;
    font-size: clamp(40px, 5vw, 72px); line-height: 1;
    letter-spacing: -0.03em;
    margin: 16px 0 0;
  }
  .section-head h2 .stroke{ -webkit-text-stroke: 1.5px var(--paper); color: transparent; }
  .section-head h2 .neon{ color: var(--lime); }

  .services-grid{
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  @media (max-width: 980px){ .services-grid{ grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px){ .services-grid{ grid-template-columns: 1fr; } }
  .service-card{
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px;
    min-height: 320px;
    display: flex; flex-direction: column; justify-content: space-between;
    position: relative; overflow: hidden;
    transition: transform .3s ease, border-color .3s ease;
  }
  .service-card:hover{
    transform: translateY(-4px);
    border-color: var(--lime);
  }
  .service-card .num{
    font-family: var(--font-mono); font-size: 11px; color: var(--muted);
    letter-spacing: .08em;
  }
  .service-card .icon-box{
    width: 48px; height: 48px; border-radius: 10px;
    display: grid; place-items: center;
    margin-top: 24px;
    background: var(--bg-3);
    border: 1px solid var(--line-2);
  }
  .service-card[data-tone="lime"] .icon-box{ background: var(--lime); color: var(--bg); border-color: var(--lime); box-shadow: 0 0 20px var(--lime-glow); }
  .service-card[data-tone="magenta"] .icon-box{ background: var(--magenta); color: var(--bg); border-color: var(--magenta); }
  .service-card[data-tone="orange"] .icon-box{ background: var(--orange); color: var(--bg); border-color: var(--orange); }
  .service-card[data-tone="white"] .icon-box{ background: var(--paper); color: var(--bg); border-color: var(--paper); }
  .service-card h3{
    margin: 32px 0 0;
    font-family: var(--font-sans); font-weight: 400;
    font-size: 30px; line-height: 1;
    letter-spacing: -0.02em;
  }
  .service-card p{
    margin: 12px 0 0;
    font-size: 13.5px; color: rgba(242,244,240,.6);
    max-width: 30ch;
  }
  .service-card .more{
    margin-top: 28px;
    font-family: var(--font-mono); font-size: 12px; color: var(--lime);
    text-transform: uppercase; letter-spacing: .08em;
    display: inline-flex; align-items: center; gap: 6px;
  }

  /* ── BIG NUMBER MOMENT ── */
  .moment{
    background: var(--bg);
    text-align: center;
    position: relative; overflow: hidden;
  }
  .moment::before{
    content: ""; position: absolute; left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, var(--lime-glow) 0%, transparent 60%);
    filter: blur(80px);
    opacity: .25;
    pointer-events: none;
  }
  .moment > *{ position: relative; z-index: 1; }
  .moment .label{
    font-family: var(--font-mono); font-size: 12px; color: var(--lime);
    text-transform: uppercase; letter-spacing: .14em;
  }
  .moment .big{
    font-family: var(--font-sans); font-weight: 300;
    font-size: clamp(120px, 22vw, 360px);
    line-height: .85; letter-spacing: -0.05em;
    color: var(--lime);
    text-shadow: 0 0 60px var(--lime-glow);
    margin: 24px 0 0;
  }
  .moment .big .pct{ font-size: .35em; vertical-align: top; opacity: .8; }
  .moment .caption{
    font-family: var(--font-sans); font-size: clamp(20px, 2vw, 28px);
    color: var(--paper);
    max-width: 28ch; margin: 24px auto 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
  }

  /* ── PROCESS ── */
  .process{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
  }
  @media (max-width: 980px){ .process{ grid-template-columns: 1fr 1fr; } }
  .step{
    background: var(--bg-2);
    padding: 32px 24px;
    min-height: 200px;
    position: relative;
  }
  .step .n{
    font-family: var(--font-mono); font-size: 11px; color: var(--lime);
    letter-spacing: .08em;
  }
  .step h4{
    margin: 80px 0 8px;
    font-family: var(--font-sans); font-weight: 400;
    font-size: 24px; line-height: 1.05; letter-spacing: -0.018em;
  }
  .step p{ margin: 0; font-size: 13px; color: rgba(242,244,240,.6); max-width: 24ch; }

  /* ── CTA BAND ── */
  .cta-band{
    border: 1px solid var(--lime);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(169,206,56,.08) 0%, rgba(169,206,56,0) 60%);
    padding: clamp(48px, 6vw, 88px);
    box-shadow: inset 0 0 80px rgba(169,206,56,.06);
    position: relative; overflow: hidden;
  }
  .cta-band h2{
    font-family: var(--font-sans); font-weight: 400;
    font-size: clamp(40px, 6vw, 96px);
    line-height: .95; letter-spacing: -0.03em;
    margin: 0;
  }
  .cta-band h2 .neon{ color: var(--lime); text-shadow: 0 0 24px var(--lime-glow); }
  .cta-band p{
    margin-top: 24px;
    font-size: 17px;
    color: rgba(242,244,240,.7);
    max-width: 50ch;
  }
  .cta-band .row{
    display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap;
  }

  /* ── FOOTER ── */
  .footer{
    border-top: 1px solid var(--line);
    padding: 64px 0 32px;
    margin-top: 80px;
    position: relative; z-index: 1;
  }
  .footer-grid{
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px; padding-bottom: 48px;
  }
  @media (max-width: 800px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
  .footer h6{
    font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em;
    text-transform: uppercase; color: var(--muted);
    margin: 0 0 14px; font-weight: 500;
  }
  .footer ul{ list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; font-size: 13px; }
  .footer ul a{ color: rgba(242,244,240,.7); }
  .footer ul a:hover{ color: var(--lime); }
  .footer-bot{
    border-top: 1px solid var(--line); padding-top: 20px;
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    font-family: var(--font-mono); font-size: 11px; color: var(--muted);
    text-transform: uppercase; letter-spacing: .08em;
  }


/* ── Page extras (added for service / about / contact pages) ── */
.page-hero{ padding: clamp(60px, 8vw, 120px) 0 clamp(40px, 5vw, 80px); position: relative; z-index: 1; }
.page-hero .meta-row{
  display: flex; gap: 14px; align-items: center;
  font-family: var(--font-mono); font-size: 11px; color: var(--muted);
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 28px; flex-wrap: wrap;
}
.page-hero .meta-row .sep{ width: 24px; height: 1px; background: var(--line-2); }
.page-hero h1{
  font-family: var(--font-sans); font-weight: 400;
  font-size: clamp(56px, 9vw, 160px);
  line-height: .9; letter-spacing: -0.04em;
  margin: 0;
  max-width: 14ch;
}
.page-hero h1 .neon{ color: var(--lime); text-shadow: 0 0 24px var(--lime-glow); font-style: italic; }
.page-hero h1 .stroke{ -webkit-text-stroke: 1.5px var(--paper); color: transparent; }
.page-hero .lead{
  margin-top: 28px;
  font-size: clamp(17px, 1.4vw, 22px); line-height: 1.45;
  color: rgba(242,244,240,.85);
  max-width: 56ch;
}
.page-hero .row{ display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }

.feature-canvas{
  margin-top: 64px;
  height: clamp(320px, 42vw, 480px);
  border: 1px solid var(--line-2);
  border-radius: 16px;
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.03) 0%, rgba(255,255,255,0) 100%);
}
.feature-canvas .label{
  position:absolute; left: 22px; top: 22px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--paper); padding: 6px 12px;
  border: 1px solid var(--line-2); border-radius: 999px;
  background: rgba(10,12,14,.6); backdrop-filter: blur(6px);
  text-transform: uppercase; letter-spacing: .08em;
}
.feature-canvas .label::before{
  content:""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime); box-shadow: 0 0 8px var(--lime);
}

/* solar canvas viz */
.fc-solar::before{
  content:""; position: absolute; inset: 0;
  background:
    radial-gradient(40% 40% at 70% 30%, rgba(169,206,56,.25), transparent 60%),
    radial-gradient(60% 80% at 30% 80%, rgba(0,176,200,.15), transparent 60%);
}
.fc-solar::after{
  content:""; position:absolute; left: 0; right: 0; bottom: -10%; height: 65%;
  transform: perspective(1200px) rotateX(58deg);
  transform-origin: center bottom;
  background:
    repeating-linear-gradient(90deg, rgba(169,206,56,.18) 0 2px, transparent 2px 64px),
    repeating-linear-gradient(0deg,  rgba(169,206,56,.10) 0 1px, transparent 1px 38px),
    linear-gradient(180deg, rgba(169,206,56,.04) 0%, rgba(169,206,56,0) 100%);
}
.fc-electric::before{
  content:""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(169,206,56,.30), transparent 50%);
}
.fc-electric .bolt{
  position:absolute; left:50%; top:50%; transform: translate(-50%,-50%);
  width: 180px; height: 280px; color: var(--lime);
  filter: drop-shadow(0 0 32px var(--lime-glow));
}
.fc-electric .ring{
  position:absolute; left:50%; top:50%; transform: translate(-50%,-50%);
  width: 380px; height: 380px; border-radius:50%;
  border: 1px solid rgba(169,206,56,.3);
}
.fc-electric .ring::before, .fc-electric .ring::after{
  content:""; position:absolute; inset:-1px; border-radius:50%;
  border: 1px solid rgba(169,206,56,.18);
}
.fc-electric .ring::before{ transform: scale(1.3); }
.fc-electric .ring::after{ transform: scale(1.7); border-color: rgba(169,206,56,.10); }

.fc-security::before{
  content:""; position:absolute; inset:0;
  background: radial-gradient(circle at 50% 40%, rgba(0,167,228,.22), transparent 55%);
}
.fc-security .scan{
  position:absolute; left:50%; top:50%; transform: translate(-50%,-50%);
  width: 280px; height: 280px; border-radius:50%;
  border: 1px solid rgba(0,167,228,.45);
}
.fc-security .scan::before, .fc-security .scan::after{
  content:""; position:absolute; inset:-1px; border-radius:50%;
}
.fc-security .scan::before{ border: 1px solid rgba(0,167,228,.25); transform: scale(1.3); }
.fc-security .scan::after{ border: 1px solid rgba(0,167,228,.12); transform: scale(1.7); }
.fc-security .shield{
  position:absolute; left:50%; top:50%; transform: translate(-50%,-50%);
  width: 84px; height: 100px; color: var(--magenta);
  filter: drop-shadow(0 0 24px rgba(0,167,228,.55));
}
.fc-security .nodes span{
  position:absolute; width: 8px; height: 8px; border-radius:50%;
  background: var(--magenta); box-shadow: 0 0 12px rgba(0,167,228,.7);
}
.fc-security .nodes span:nth-child(1){ left: 12%; top: 22%; }
.fc-security .nodes span:nth-child(2){ right: 18%; top: 28%; }
.fc-security .nodes span:nth-child(3){ left: 22%; bottom: 24%; }
.fc-security .nodes span:nth-child(4){ right: 14%; bottom: 18%; }

.fc-ev::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(60% 40% at 50% 60%, rgba(0,176,200,.30), transparent 60%),
    repeating-linear-gradient(90deg, rgba(0,176,200,.07) 0 1px, transparent 1px 64px);
}
.fc-ev .car{
  position:absolute; left: 8%; bottom: 14%;
  width: 56%; height: 34%;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(0,0,0,.7) 0%, transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,.02) 100%);
  border-radius: 80px 120px 18px 18px / 100px 140px 18px 18px;
  border: 1px solid rgba(255,255,255,.10);
}
.fc-ev .box{
  position:absolute; right: 14%; bottom: 22%;
  width: 90px; height: 140px;
  background: var(--bg-3); border: 1px solid var(--orange);
  border-radius: 12px;
  display:flex; flex-direction: column; justify-content: space-between;
  padding: 14px;
  box-shadow: 0 0 40px rgba(0,176,200,.35);
}
.fc-ev .box .led{ width: 26px; height: 26px; border-radius:50%; background: var(--orange); box-shadow: 0 0 18px var(--orange); }
.fc-ev .box .stripe{ height: 4px; border-radius: 4px; background: rgba(255,255,255,.18); }
.fc-ev .cable{
  position: absolute; left: 60%; bottom: 32%;
  width: 24%; height: 70px;
  border: 3px solid var(--orange); border-radius: 0 0 60px 60px; border-top: 0;
  filter: drop-shadow(0 0 12px rgba(0,176,200,.5));
}

.two-col{ display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: start; }
@media (max-width: 880px){ .two-col{ grid-template-columns: 1fr; } }

.feat-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 880px){ .feat-grid{ grid-template-columns: 1fr; } }
.feat{
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 14px; padding: 28px;
  transition: border-color .25s ease, transform .25s ease;
}
.feat:hover{ border-color: var(--lime); transform: translateY(-3px); }
.feat .num{ font-family: var(--font-mono); font-size: 11px; color: var(--lime); letter-spacing: .08em; }
.feat h4{
  margin: 14px 0 8px;
  font-family: var(--font-sans); font-weight: 400;
  font-size: 24px; line-height: 1.05; letter-spacing: -0.018em;
}
.feat p{ margin: 0; font-size: 13.5px; color: rgba(242,244,240,.6); }

/* Specs panel */
.specs{
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(40px, 5vw, 72px);
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 4vw, 56px);
}
@media (max-width: 880px){ .specs{ grid-template-columns: 1fr; } }
.specs ul{ list-style:none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 0; }
.specs li{
  display:flex; justify-content: space-between; padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 13px;
}
.specs li span:first-child{ color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-size: 11px; }
.specs li span:last-child{ color: var(--paper); }
.specs-card{
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 36px;
}
.specs-card .big{
  font-family: var(--font-sans); font-weight: 350;
  font-size: clamp(48px, 5vw, 72px); line-height: 1; letter-spacing: -0.02em;
  color: var(--lime);
}

/* Brands strip */
.brands{
  display:grid; grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
@media (max-width: 880px){ .brands{ grid-template-columns: repeat(3, 1fr); } }
.brand-cell{
  border-right: 1px solid var(--line);
  height: 88px; display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: .04em;
  color: rgba(242,244,240,.65);
  transition: color .2s ease, background .2s ease;
}
.brand-cell:hover{ color: var(--lime); background: rgba(169,206,56,.04); }
.brand-cell:last-child{ border-right: 0; }

/* Reveal */
[data-reveal]{ opacity: 0; transform: translateY(18px); transition: opacity .9s ease, transform .9s ease; }
[data-reveal].in-view{ opacity: 1; transform: none; }

/* About — stat band */
.stat-band{
  display:grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
@media (max-width: 760px){ .stat-band{ grid-template-columns: 1fr 1fr; } }
.stat-cell{ padding: 36px 28px; border-right: 1px solid var(--line); }
.stat-cell:last-child{ border-right: 0; }
@media (max-width: 760px){ .stat-cell:nth-child(2n){ border-right: 0; } }
.stat-cell .v{ font-family: var(--font-sans); font-weight: 350; font-size: clamp(48px, 5vw, 72px); line-height: 1; letter-spacing: -0.02em; color: var(--lime); }
.stat-cell .l{ font-family: var(--font-mono); font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-top: 12px; }

/* About — timeline */
.timeline{ display: flex; flex-direction: column; }
.tl-row{
  display: grid; grid-template-columns: 140px 1fr; gap: 32px;
  padding: 32px 0; border-bottom: 1px solid var(--line);
}
.tl-row .y{ font-family: var(--font-mono); font-size: 13px; color: var(--lime); letter-spacing: .04em; }
.tl-row h4{ margin: 0 0 8px; font-family: var(--font-sans); font-weight: 400; font-size: clamp(22px, 2.4vw, 32px); letter-spacing: -0.015em; line-height: 1.05; }
.tl-row p{ margin:0; max-width: 60ch; color: rgba(242,244,240,.6); font-size: 14px; }

/* Contact — form */
.contact-grid{
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 4vw, 64px);
  margin-top: clamp(40px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 880px){ .contact-grid{ grid-template-columns: 1fr; } }
.form{
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 16px; padding: clamp(28px, 4vw, 44px);
}
.form h3{
  margin: 0 0 6px;
  font-family: var(--font-sans); font-weight: 400;
  font-size: clamp(28px, 3vw, 36px); letter-spacing: -.018em; line-height: 1.05;
}
.form .sub{ font-size: 14px; color: var(--muted); margin: 0 0 28px; }
.field-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px){ .field-row{ grid-template-columns: 1fr; } }
.field-block{ margin-bottom: 16px; }
.field-block label{
  display:block;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.field-block input, .field-block textarea, .field-block select{
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--line-2); border-radius: 10px;
  font: inherit; font-size: 15px;
  background: var(--bg); color: var(--paper);
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.field-block input:focus, .field-block textarea:focus, .field-block select:focus{
  border-color: var(--lime); background: var(--bg-2);
}
.field-block textarea{ resize: vertical; min-height: 110px; }
.pills{ display:flex; flex-wrap: wrap; gap: 8px; }
.pill{
  display:inline-flex; align-items:center; gap:6px;
  padding: 10px 16px; border-radius: 999px;
  border: 1px solid var(--line-2); background: var(--bg);
  font-size: 13px; cursor: default;
  font-family: var(--font-mono); letter-spacing: .03em;
  transition: all .15s ease;
}
.pill input{ display:none; }
.pill:has(input:checked){ background: var(--lime); color: var(--bg); border-color: var(--lime); }
.form-cta{ margin-top: 16px; display:flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form-cta .note{ font-size: 12px; color: var(--muted); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .06em; }

.info{ display:flex; flex-direction: column; gap: 16px; }
.info-card{
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 14px; padding: 32px; color: var(--paper);
  text-decoration: none; display: block;
}
.info-card.lime{ background: var(--lime); color: var(--bg); border-color: var(--lime); box-shadow: 0 0 60px rgba(169,206,56,.15); }
.info-card.lime .lbl{ color: rgba(10,12,14,.6); }
.info-card .lbl{
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted);
}
.info-card .v{
  font-family: var(--font-sans); font-weight: 400;
  font-size: clamp(28px, 3vw, 38px); line-height: 1.05; letter-spacing: -.015em;
  margin-top: 10px;
}

.zone-list{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  margin-top: 18px;
}
@media (max-width: 600px){ .zone-list{ grid-template-columns: 1fr 1fr; } }
.zone-list span{
  padding: 10px 14px;
  background: var(--bg-3); border: 1px solid var(--line-2); border-radius: 10px;
  font-size: 11px; font-family: var(--font-mono);
  text-align: center; color: rgba(242,244,240,.7);
  letter-spacing: .05em; text-transform: uppercase;
}

.map-card{
  border: 1px solid var(--line-2); border-radius: 12px; overflow: hidden;
  aspect-ratio: 4/3; position: relative;
  background:
    radial-gradient(60% 70% at 50% 50%, rgba(169,206,56,.10) 0%, transparent 60%),
    var(--bg-3);
}
.map-card::before{
  content:""; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(169,206,56,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(169,206,56,.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-card::after{
  content:""; position:absolute; inset:0;
  background:
    linear-gradient(60deg, transparent 38%, rgba(255,255,255,.08) 38% 40%, transparent 40%),
    linear-gradient(120deg, transparent 48%, rgba(255,255,255,.05) 48% 49%, transparent 49%);
}
.map-card .pin{
  position:absolute; left: 48%; top: 48%;
  width: 22px; height: 22px;
  background: var(--lime);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -100%) rotate(-45deg);
  box-shadow: 0 0 24px var(--lime-glow);
}
.map-card .pin::after{ content:""; position:absolute; inset:6px; background: var(--bg); border-radius:50%; }
.map-card .label{
  position:absolute; left: 14px; bottom: 14px;
  background: var(--bg); color: var(--paper);
  padding: 8px 12px; border-radius: 8px;
  border: 1px solid var(--line-2);
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: .08em; text-transform: uppercase;
}

/* ── Photo gallery (foto reali dai cantieri) ── */
.photo-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 44px; }
@media (max-width: 760px){ .photo-grid{ grid-template-columns: repeat(2, 1fr); } }
.photo-grid a{ display: block; border: 1px solid var(--line-2); border-radius: 12px; overflow: hidden; }
.photo-grid img{ width: 100%; height: 170px; object-fit: cover; display: block; transition: transform .3s ease; }
.photo-grid a:hover img{ transform: scale(1.05); }
