/* Ampermot v3 — clean / tech-forward
   Primary: Pantone 641  (#00A3E0)
   Secondary: Pantone 362 (#4CAF50)
*/
:root{
  --blue:#00A3E0;
  --green:#4CAF50;

  --bg:#ffffff;
  --text:#0b1220;
  --muted:#5b6b7c;

  --border: rgba(11,18,32,.12);
  --shadow: 0 18px 55px rgba(11,18,32,.10);

  --r16:16px;
  --r20:20px;
  --r26:26px;

  --container: 1140px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a{color:inherit; text-decoration:none} /* no underlines anywhere */
.container{max-width:var(--container); margin:0 auto; padding:0 20px}

.skip-link{
  position:absolute; left:-999px; top:10px;
  padding:10px 12px; border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
}
.skip-link:focus{left:10px; z-index:9999}

.topbar{
  position:sticky; top:0; z-index:50;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,163,224,.22);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:12px 0;
}
.brand__logo{height:46px; width:auto}

.nav{position:relative}
.nav__toggle{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
}
.nav__toggle span{display:block; width:18px; height:2px; background: rgba(11,18,32,.82); margin:4px auto; border-radius:999px}

.nav__menu{
  list-style:none; margin:0; padding:0;
  display:flex; align-items:center; gap:6px;
  position:relative;
}
.nav__link{
  display:inline-flex;
  padding:10px 12px;
  border-radius: 14px;
  font-weight:800;
  font-size:14px;
  color: rgba(11,18,32,.86);
}
.nav__link:hover{background: rgba(0,163,224,.06)}
.nav__link.is-active{color: rgba(11,18,32,.96)}
.nav__cta{
  display:inline-flex;
  padding:10px 12px;
  border-radius: 14px;
  font-weight:900;
  font-size:14px;
  background: rgba(0,163,224,.10);
  border:1px solid rgba(0,163,224,.28);
  color: rgba(11,18,32,.92);
  margin-left:4px;
}
.nav__cta:hover{background: rgba(76,175,80,.12); border-color: rgba(76,175,80,.32)}
.nav__indicator{
  position:absolute; left:0; bottom:-8px;
  height:3px; width:10px;
  border-radius:999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  opacity:0;
  transition: transform .20s ease, width .20s ease, opacity .20s ease;
  pointer-events:none;
}

/* HERO */
.hero{
  position:relative;
  padding:64px 0 44px;
  overflow:hidden;
}
.hero__bg{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 450px at 12% 0%, rgba(0,163,224,.18), transparent 60%),
    radial-gradient(900px 450px at 85% -10%, rgba(76,175,80,.16), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f7fcff 40%, #ffffff 100%);
  pointer-events:none;
}
.gridlines{
  position:absolute; inset:-2px;
  background:
    linear-gradient(rgba(0,163,224,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,163,224,.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 20% 5%, rgba(0,0,0,.9), transparent 55%);
  opacity:.65;
}

.hero__grid{
  position:relative;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  align-items:start;
}

.kicker{
  display:inline-flex; gap:10px; align-items:center;
  font-weight:900; font-size:13px;
  color: rgba(11,18,32,.80);
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(0,163,224,.18);
  border-radius: 999px;
  padding:8px 10px;
  box-shadow: 0 12px 30px rgba(11,18,32,.06);
}
.dot{
  width:10px; height:10px; border-radius:999px;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(76,175,80,.35);
  animation: pulse 1.6s infinite;
}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(76,175,80,.35)}
  70%{box-shadow:0 0 0 12px rgba(76,175,80,0)}
  100%{box-shadow:0 0 0 0 rgba(76,175,80,0)}
}

h1{
  margin:14px 0 10px;
  font-size:44px;
  line-height:1.06;
  letter-spacing:-.8px;
}
.grad{
  background: linear-gradient(90deg, var(--blue), var(--green));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead{
  margin:0;
  color: rgba(11,18,32,.78);
  font-size:16.6px;
  max-width: 65ch;
}

.hero__actions{display:flex; gap:12px; margin-top:18px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.85);
  font-weight:900;
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
  position:relative;
  overflow:hidden;
}
.btn:hover{transform: translateY(-1px); box-shadow: 0 14px 30px rgba(11,18,32,.10)}
.btn--primary{
  border-color: transparent;
  color:#fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
}
.btn__shine{
  position:absolute; inset:-40px;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.55), transparent 45%);
  transform: translateX(-30%);
  transition: transform .35s ease;
}
.btn--primary:hover .btn__shine{transform: translateX(20%)}
.btn--ghost{
  background: rgba(255,255,255,.85);
  border-color: rgba(0,163,224,.20);
  color: rgba(11,18,32,.90);
}
.btn--ghost:hover{border-color: rgba(76,175,80,.30)}

.hero__kpis{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:10px;
  margin-top:16px;
}
.kpi{
  border:1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.78);
  border-radius: 16px;
  padding:12px 12px;
  box-shadow: 0 12px 30px rgba(11,18,32,.06);
}
.kpi__value{font-weight:900; font-size:22px; letter-spacing:-.3px}
.unit{font-size:12px; color: rgba(11,18,32,.55); font-weight:900; margin-left:6px}
.kpi__label{font-size:12px; color: var(--muted); font-weight:700}

.hero__badges{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
.badge{
  display:inline-flex;
  padding:8px 10px;
  border-radius: 999px;
  border:1px solid rgba(0,163,224,.18);
  background: rgba(0,163,224,.06);
  color: rgba(11,18,32,.82);
  font-weight:900;
  font-size:12px;
}

/* Media Card */
.hero__media{align-self:start}
.mediaCard{
  border-radius: var(--r26);
  border: 1px solid rgba(11,18,32,.12);
  background: rgba(255,255,255,.80);
  box-shadow: var(--shadow);
  overflow:hidden;
  transform-style: preserve-3d;
}
.mediaCard__img{position:relative; height: 340px}
.mediaCard__img img{
  width:100%; height:100%; object-fit:cover; display:block;
  transform: scale(1.02);
  transition: transform 1.8s ease;
}
.mediaCard__overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(11,18,32,.00), rgba(11,18,32,.34));
}
.mediaCard__hud{
  position:absolute; top:14px; left:14px;
  display:flex; gap:10px; flex-wrap:wrap;
}
.hudItem{
  display:inline-flex; gap:8px; align-items:center;
  padding:8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(0,163,224,.18);
  font-weight:900; font-size:12px;
}
.hudDot{width:9px; height:9px; border-radius:999px; background: var(--blue)}
.hudDot--g{background: var(--green)}
.hudText{color: rgba(11,18,32,.80)}

.mediaCard__body{padding:14px 14px}
.mediaCard__title{font-weight:900; letter-spacing:-.3px}
.mediaCard__sub{color: var(--muted); font-weight:700; margin-top:6px}
.mediaCard__mini{display:flex; align-items:center; gap:10px; margin-top:12px}
.miniBtn{
  width:40px; height:40px; border-radius:14px;
  border:1px solid rgba(11,18,32,.14);
  background: rgba(255,255,255,.85);
  font-weight:900;
  cursor:pointer;
}
.miniBtn:hover{border-color: rgba(0,163,224,.35)}
.miniProgress{
  flex:1;
  height:8px;
  border-radius:999px;
  background: rgba(11,18,32,.08);
  overflow:hidden;
}
.miniProgress span{
  display:block; height:100%; width:30%;
  background: linear-gradient(90deg, var(--blue), var(--green));
  border-radius:999px;
  transform-origin:left;
  transform: scaleX(0);
}

/* Sections */
.section{padding:64px 0}
.section--soft{
  background: linear-gradient(180deg, rgba(0,163,224,.03), rgba(76,175,80,.03));
  border-top:1px solid rgba(11,18,32,.06);
  border-bottom:1px solid rgba(11,18,32,.06);
}
.section__head{margin-bottom:18px}
.section__head h2{
  margin:0 0 10px;
  font-size:28px;
  letter-spacing:-.3px;
}
.section__head p{margin:0; color: var(--muted); font-weight:700; max-width: 90ch}

/* About info cards */
.infoGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
  margin-top:16px;
}
.infoCard{
  border:1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.82);
  border-radius: var(--r20);
  padding:16px;
  box-shadow: 0 12px 30px rgba(11,18,32,.06);
}
.infoCard__icon{font-size:22px}
.infoCard h3{margin:8px 0 8px; letter-spacing:-.2px}
.infoCard p{margin:0; color: rgba(11,18,32,.78); font-weight:700}

/* Services */
.serviceGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:12px;
}
.serviceCard{
  border:1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.82);
  border-radius: var(--r20);
  padding:16px;
  box-shadow: 0 12px 30px rgba(11,18,32,.06);
  transform-style: preserve-3d;
}
.serviceCard__top{display:flex; align-items:center; gap:10px}
.serviceCard__icon{font-size:22px}
.serviceCard__title{font-weight:900; letter-spacing:-.2px}
.serviceCard p{margin:10px 0 10px; color: rgba(11,18,32,.78); font-weight:700}
.serviceCard ul{margin:0; padding-left:18px; color: rgba(11,18,32,.80); font-weight:700}
.serviceCard li{margin:6px 0}

/* Timeline */
.timeline{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin-top:16px;
}
.step{
  border:1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.82);
  border-radius: var(--r20);
  padding:16px;
  box-shadow: 0 12px 30px rgba(11,18,32,.06);
  display:flex; gap:12px;
}
.step__num{
  width:54px; height:54px;
  border-radius:18px;
  background: rgba(0,163,224,.10);
  border:1px solid rgba(0,163,224,.22);
  display:grid; place-items:center;
  font-weight:900;
}
.step h3{margin:0 0 6px; letter-spacing:-.2px}
.step p{margin:0; color: rgba(11,18,32,.78); font-weight:700}
.muted{color: var(--muted); font-weight:700}

.ctaStrip{
  margin-top:16px;
  border-radius: var(--r26);
  border:1px solid rgba(0,163,224,.18);
  background: rgba(255,255,255,.75);
  box-shadow: var(--shadow);
  padding:14px;
  display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.ctaStrip__text{font-weight:900; color: rgba(11,18,32,.90)}
.ctaStrip__text .muted{display:block; font-weight:700; margin-top:2px}

/* Projects */
.filters{
  display:flex; gap:10px; flex-wrap:wrap;
  margin: 10px 0 16px;
}
.filter{
  padding:10px 12px;
  border-radius: 999px;
  border:1px solid rgba(11,18,32,.12);
  background: rgba(255,255,255,.85);
  font-weight:900;
  cursor:pointer;
}
.filter:hover{border-color: rgba(0,163,224,.28)}
.filter.is-active{
  border-color: rgba(0,163,224,.34);
  background: rgba(0,163,224,.08);
}

.projectGrid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:12px;
}
.projectCard{
  margin:0;
  grid-column: span 4;
}
.projectCard:nth-child(1), .projectCard:nth-child(6){grid-column: span 8}
.projectCard__btn{
  width:100%;
  padding:0;
  border:0;
  background: transparent;
  text-align:left;
  cursor:pointer;
}
.projectCard__btn img{
  width:100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--r20);
  border:1px solid rgba(11,18,32,.10);
  display:block;
  box-shadow: 0 14px 34px rgba(11,18,32,.10);
  transform: translateZ(0);
}
.projectCard__overlay{
  position:absolute;
}
.projectCard__meta{
  margin-top:10px;
}
.projectCard__title{font-weight:900; letter-spacing:-.2px}
.projectCard__desc{color: rgba(11,18,32,.74); font-weight:700; margin-top:4px}
.projectCard__chip{
  display:inline-flex;
  margin-top:8px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(0,163,224,.18);
  background: rgba(76,175,80,.10);
  font-weight:900;
  font-size:12px;
  color: rgba(11,18,32,.85);
}

/* Lightbox */
.lightbox{position:fixed; inset:0; display:none; z-index:120}
.lightbox.is-open{display:block}
.lightbox__backdrop{
  position:absolute; inset:0;
  background: rgba(11,18,32,.62);
}
.lightbox__panel{
  position:relative;
  width:min(980px, calc(100vw - 40px));
  margin: 40px auto;
  border-radius: var(--r26);
  background:#fff;
  overflow:hidden;
  box-shadow: 0 28px 90px rgba(0,0,0,.40);
  border:1px solid rgba(255,255,255,.20);
}
.lightbox__close{
  position:absolute; top:12px; right:12px;
  width:42px; height:42px; border-radius:14px;
  border:1px solid rgba(11,18,32,.12);
  background: rgba(255,255,255,.85);
  font-weight:900;
  cursor:pointer;
  z-index:2;
}
.lightbox__img{width:100%; height: 520px; object-fit: cover; display:block}
.lightbox__info{
  padding:14px;
  display:flex; align-items:flex-start; justify-content:space-between; gap:12px; flex-wrap:wrap;
}
.lightbox__title{font-weight:900; letter-spacing:-.2px}
.lightbox__desc{color: rgba(11,18,32,.76); font-weight:700; max-width: 75ch}
.lightbox__nav{display:flex; gap:10px}

/* Metrics */
.metricGrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
}
.metricCard{
  border:1px solid rgba(11,18,32,.10);
  background: rgba(255,255,255,.82);
  border-radius: var(--r20);
  padding:16px;
  box-shadow: 0 12px 30px rgba(11,18,32,.06);
}
.metricCard__kpi{font-size:30px; font-weight:900; letter-spacing:-.6px}
.metricCard__label{color: rgba(11,18,32,.82); font-weight:900; margin-top:4px}
.metricCard__sub{color: var(--muted); font-weight:700; margin-top:6px}
.metricCard--wide{grid-column: 1 / -1}
.pillRow{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}
.pill{
  display:inline-flex;
  padding:9px 12px;
  border-radius: 999px;
  border:1px solid rgba(11,18,32,.14);
  background: rgba(255,255,255,.86);
  font-weight:900;
}
.pill--dark{
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.14);
  color:#fff;
}

/* Contact */
.section--cta{
  background: linear-gradient(135deg, rgba(0,163,224,.95), rgba(76,175,80,.92));
  color:#fff;
}
.contactGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  align-items:start;
}
.contactCopy h2{margin:0 0 10px; font-size:28px; letter-spacing:-.4px}
.contactCopy p{margin:0; color: rgba(255,255,255,.92); font-weight:700}
.contactPills{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}

.form{
  border-radius: var(--r26);
  background: rgba(255,255,255,.90);
  color: var(--text);
  padding:16px;
  border:1px solid rgba(255,255,255,.35);
}
.form__row{display:grid; gap:6px; margin-bottom:10px}
label{font-weight:900; font-size:13px; color: rgba(11,18,32,.90)}
input, textarea{
  width:100%;
  border-radius: 14px;
  border:1px solid rgba(11,18,32,.14);
  background: #fff;
  color: var(--text);
  padding:12px;
  outline:none;
}
input:focus, textarea:focus{border-color: rgba(0,163,224,.55); box-shadow: 0 0 0 6px rgba(0,163,224,.16)}
.form__actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:8px}
.form__hint{margin:10px 0 0; color: rgba(11,18,32,.65); font-size:12.5px; font-weight:700}

/* Footer */
.footer{padding:26px 0 42px; border-top:1px solid rgba(11,18,32,.08); background:#fff}
.footer__inner{display:flex; align-items:flex-start; justify-content:space-between; gap:16px; flex-wrap:wrap}
.footer__logo{height:38px; width:auto}
.footer__small{color: var(--muted); font-weight:700; font-size:12.5px; margin-top:8px}
.footer__links{display:flex; gap:10px; flex-wrap:wrap; font-weight:800; color: rgba(11,18,32,.80)}
.footer__links a{padding:8px 10px; border-radius:14px}
.footer__links a:hover{background: rgba(0,163,224,.06)}

/* Reveal */
.reveal{opacity:0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease}
.reveal.is-visible{opacity:1; transform: translateY(0)}

.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}

@media (max-width: 980px){
  h1{font-size:38px}
  .hero__grid{grid-template-columns:1fr}
  .hero__kpis{grid-template-columns:1fr}
  .infoGrid{grid-template-columns:1fr}
  .serviceGrid{grid-template-columns:1fr}
  .timeline{grid-template-columns:1fr}
  .metricGrid{grid-template-columns:1fr}
  .contactGrid{grid-template-columns:1fr}
  .projectCard{grid-column: span 6}
  .projectCard:nth-child(1), .projectCard:nth-child(6){grid-column: span 12}
}
@media (max-width: 760px){
  .nav__toggle{display:inline-flex; align-items:center; justify-content:center}
  .nav__menu{
    position:absolute; right:0; top:56px;
    width:min(340px, calc(100vw - 40px));
    flex-direction:column;
    align-items:stretch;
    padding:10px;
    gap:6px;
    border-radius: 18px;
    border:1px solid var(--border);
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow);
    display:none;
  }
  .nav__menu.is-open{display:flex}
  .nav__indicator{display:none}
  .projectGrid{grid-template-columns: 1fr}
  .projectCard{grid-column: auto}
  .projectCard:nth-child(1), .projectCard:nth-child(6){grid-column:auto}
  .projectCard__btn img{height: 220px}
  .lightbox__img{height: 320px}
}
