/* Aries Enterprises - Cloudflare Pages static site */
:root{
  --bg:#0b1220;
  --panel:#0f1a2e;
  --panel2:#0c1628;
  --text:#eaf0ff;
  --muted:#b8c3dd;
  --line:rgba(234,240,255,.12);
  --brand:#6ee7ff;
  --brand2:#a78bfa;
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: radial-gradient(1200px 600px at 20% -10%, rgba(110,231,255,.18), transparent 60%),
              radial-gradient(900px 500px at 90% 0%, rgba(167,139,250,.16), transparent 55%),
              linear-gradient(180deg, var(--bg), #070b14 70%);
  line-height:1.55;
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{
  width:min(1100px, calc(100% - 40px));
  margin-inline:auto;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:10px;
  background:#fff;
  color:#000;
  padding:10px 12px;
  border-radius:10px;
  z-index:9999;
}
.skip-link:focus{ left:10px; }

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.75);
  border-bottom:1px solid var(--line);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 220px;
}
.logo{
  width:40px;
  height:40px;
  border-radius:14px;
  display:grid;
  place-items:center;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(110,231,255,.45), rgba(167,139,250,.45));
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.brand-text{ display:flex; flex-direction:column; line-height:1.1; }
.brand-name{ font-weight:700; letter-spacing:.2px; }
.brand-tag{ font-size:.82rem; color:var(--muted); margin-top:4px; }

.nav{ display:flex; align-items:center; gap:14px; }
.nav-menu{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav-menu a{ color:var(--muted); font-weight:500; }
.nav-menu a:hover{ color:var(--text); text-decoration:none; }

.nav-toggle{
  display:none;
  background:transparent;
  border:1px solid var(--line);
  color:var(--text);
  padding:10px 10px;
  border-radius:14px;
}
.hamburger{
  width:18px; height:2px; background:var(--text); display:block; position:relative;
}
.hamburger::before, .hamburger::after{
  content:"";
  position:absolute;
  left:0;
  width:18px; height:2px;
  background:var(--text);
}
.hamburger::before{ top:-6px; }
.hamburger::after{ top:6px; }

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

.hero{
  padding:72px 0 34px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:26px;
  align-items:stretch;
}
.eyebrow{
  color:var(--muted);
  font-weight:600;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:.78rem;
  margin:0 0 10px;
}
h1{
  margin:0 0 14px;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height:1.1;
}
.subhead{
  margin:0 0 18px;
  color:var(--muted);
  font-size:1.05rem;
}

.cta-row{ display:flex; gap:12px; flex-wrap:wrap; margin: 18px 0 14px; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  background: linear-gradient(135deg, rgba(110,231,255,.85), rgba(167,139,250,.85));
  color:#0b1220;
  font-weight:700;
  border:0;
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
}
.btn:hover{ text-decoration:none; filter: brightness(1.02); }
.btn:active{ transform: translateY(1px); }
.btn-ghost{
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow:none;
}
.btn-sm{ padding:9px 12px; border-radius:12px; font-weight:700; }

.trust{
  margin:14px 0 0;
  padding:0;
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:10px 16px;
  color:var(--muted);
  font-size:.95rem;
}
.trust li{
  padding-left:18px;
  position:relative;
}
.trust li::before{
  content:"";
  width:8px; height:8px;
  border-radius:99px;
  background: linear-gradient(135deg, rgba(110,231,255,.9), rgba(167,139,250,.9));
  position:absolute;
  left:0; top:.55em;
}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:18px 18px;
}
.hero-card{ align-self:stretch; }
.card-title{ font-weight:700; margin-bottom:12px; }

.checklist{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.checklist li{
  padding-left:26px;
  position:relative;
  color:var(--muted);
}
.checklist li strong{ color:var(--text); }
.checklist li::before{
  content:"✓";
  position:absolute;
  left:0; top:0;
  width:18px; height:18px;
  border-radius:7px;
  display:grid; place-items:center;
  background: rgba(110,231,255,.16);
  border: 1px solid rgba(110,231,255,.22);
  color: var(--brand);
  font-weight:800;
  font-size:.85rem;
}

.mini{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:14px;
}
.mini-kpi{
  border:1px solid var(--line);
  border-radius: 14px;
  padding:12px;
  background: rgba(11,18,32,.35);
}
.kpi{ font-weight:800; }
.kpi-sub{ color:var(--muted); font-size:.88rem; margin-top:4px; }

.note{
  margin-top:14px;
  display:flex;
  align-items:center;
  gap:10px;
  color: var(--muted);
  border-top:1px solid var(--line);
  padding-top:12px;
}
.dot{
  width:10px; height:10px;
  border-radius:99px;
  background: rgba(110,231,255,.9);
  box-shadow: 0 0 18px rgba(110,231,255,.35);
}

.section{
  padding:56px 0;
}
.section-alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}
.section-head h2{ margin:0; font-size:1.9rem; }
.section-head p{ margin:0; color:var(--muted); max-width:60ch; }

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}

.feature{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(11,18,32,.35);
  padding:18px;
}
.feature h3{ margin:0 0 8px; font-size:1.12rem; }
.feature p{ margin:0 0 12px; color:var(--muted); }
.feature ul{
  margin:0;
  padding-left:18px;
  color:var(--muted);
}
.feature li{ margin:6px 0; }

.plan{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(11,18,32,.35);
  padding:18px;
  position:relative;
}
.plan h3{ margin:0 0 8px; }
.plan .muted{ margin:0 0 12px; }
.plan-list{
  margin:0;
  padding-left:18px;
  color:var(--muted);
}
.plan-list li{ margin:6px 0; }
.plan-featured{
  background: linear-gradient(180deg, rgba(110,231,255,.10), rgba(167,139,250,.08));
  box-shadow: 0 22px 60px rgba(0,0,0,.35);
}
.badge{
  position:absolute;
  top:14px; right:14px;
  background: rgba(110,231,255,.18);
  border:1px solid rgba(110,231,255,.25);
  color: var(--brand);
  padding:6px 10px;
  border-radius:999px;
  font-size:.82rem;
  font-weight:800;
}

.steps{
  display:grid;
  gap:12px;
}
.step{
  display:grid;
  grid-template-columns: 44px 1fr;
  gap:14px;
  padding:16px;
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(11,18,32,.35);
}
.step-num{
  width:40px; height:40px;
  border-radius:14px;
  display:grid; place-items:center;
  font-weight:900;
  color:#0b1220;
  background: linear-gradient(135deg, rgba(110,231,255,.85), rgba(167,139,250,.85));
}
.step h3{ margin:0 0 6px; }
.step p{ margin:0; color:var(--muted); }

.about-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:16px;
  align-items:start;
}
.about-card .card{ background: rgba(11,18,32,.35); box-shadow:none; }

.contact-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:start;
}
.contact-cards{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin: 16px 0 8px;
}
.contact-card{
  border:1px solid var(--line);
  background: rgba(11,18,32,.35);
  border-radius: var(--radius);
  padding:14px;
  display:block;
}
.contact-card:hover{ text-decoration:none; border-color: rgba(110,231,255,.25); }
.contact-label{ color:var(--muted); font-size:.9rem; }
.contact-value{ font-weight:800; margin-top:6px; }

.form{
  border:1px solid var(--line);
  background: rgba(11,18,32,.35);
  border-radius: var(--radius);
  padding:18px;
}
label{ display:block; margin-bottom:12px; }
label span{ display:block; font-weight:700; margin-bottom:6px; }
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(234,240,255,.14);
  background: rgba(7,11,20,.65);
  color: var(--text);
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(110,231,255,.35);
  box-shadow: 0 0 0 4px rgba(110,231,255,.10);
}
.muted{ color:var(--muted); }
.tiny{ font-size:.86rem; }

.footer{
  border-top:1px solid var(--line);
  padding:22px 0;
  background: rgba(7,11,20,.55);
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.footer-brand{ font-weight:900; }

@media (max-width: 900px){
  .hero-grid, .about-grid, .contact-grid{ grid-template-columns:1fr; }
  .grid-3{ grid-template-columns:1fr; }
  .section-head{ flex-direction:column; align-items:flex-start; }
}

@media (max-width: 760px){
  .nav-toggle{ display:inline-flex; }
  .nav-menu{
    position:absolute;
    right:20px;
    top:64px;
    width:min(340px, calc(100vw - 40px));
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
    padding:12px;
    border-radius:16px;
    background: rgba(11,18,32,.95);
    border:1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-menu.open{ display:flex; }
  .nav-menu a{ padding:10px 12px; border-radius:14px; }
  .nav-menu a:hover{ background: rgba(255,255,255,.04); }
  .contact-cards{ grid-template-columns:1fr; }
}
