:root{
  --bg:#07111f;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.10);
  --text:#eaf2ff;
  --muted:#b8c7e6;
  --brand:#1ea7ff;
  --accent:#ffb000;
  --border: rgba(255,255,255,.14);
  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --radius: 16px;
  --max: 1100px;
  --font: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Noto Sans", Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: var(--font);
  color: var(--text);
  line-height: 1.5;

  background:
    var(--bg)
    url("../img/futuristic-city.png") center / cover no-repeat fixed;
}

/* optional: global readability overlay */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  background: rgba(7,17,31,0.55);
  pointer-events: none;
  z-index: 0;
}
body > *{ position: relative; z-index: 1; }
body.inner-page{
  background:
    var(--bg)
    url("../img/futuristic-city.png") center / cover no-repeat fixed;
}
body.inner-page::before{
  content:"";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  pointer-events: none;
  z-index: 0;
}
/* Put page content above the overlay */
body.inner-page > *{
  position: relative;
  z-index: 1;
}
a{ color: var(--brand); text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{ max-width: var(--max); margin: 0 auto; padding: 0 18px; }

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

.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 0;
  gap: 14px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 220px;
}
.brand .dot{
  width: 12px; height:12px; border-radius: 99px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 0 0 4px rgba(30,167,255,.12);
}
.brand strong{ letter-spacing:.2px; }
.brand span{ color: var(--muted); font-size: 12px; display:block; margin-top:-2px; }

nav a{
  color: var(--text);
  opacity:.9;
  padding: 8px 10px;
  border-radius: 10px;
  display:inline-block;
}
nav a.active, nav a:hover{
  background: rgba(255,255,255,.08);
  text-decoration:none;
}

/* HERO: show the entire image without scrolling */
.hero{
  margin-top: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  background: transparent;

  /* hero should not exceed the visible screen */
  height: calc(100vh - 90px);
  max-height: calc(100vh - 90px);

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img{
  width: 100%;
  height: 100%;
  object-fit: contain; /* show full image, no cropping */
  display: block;
}

.section{
  margin: 24px 0 34px;
}
.grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
}
@media (max-width: 900px){
  .grid{ grid-template-columns: 1fr; }
  .brand{ min-width: unset; }
  nav{ display:flex; flex-wrap:wrap; justify-content:flex-end; }
}

/*.card{
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}*/
.card{
  background: transparent;     /* no box, same image behind */
  border: none;                /* remove outline */
  box-shadow: none;            /* remove separation */
  border-radius: 0;            /* optional: remove rounded corners */
  padding: 22px 24px;          /* rely on spacing instead */
}
/*
.card{
  background: rgba(7,17,31,0.78);   *//* was too transparent */
/* border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
  backdrop-filter: blur(10px);
}
*/
/*.card{*/
  /*background: rgba(10, 25, 45, 0.60);*/   /* lighter, more transparent */
  /*background: transparent;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius);
  padding: 18px;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow:
    0 8px 24px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.06);
}*/


/**.card h2{ margin: 0 0 10px; font-size: 20px; }
.card p{ margin: 0 0 10px; color: var(--muted); }
.badges{
  display:flex; flex-wrap:wrap; gap: 8px; margin-top: 10px;
}*/
.card h2,
.card p,
.list li{
  text-shadow: 0 1px 1px rgba(0,0,0,0.65);
}

.badge{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.06);
  color: var(--text);
}
.badge .accent{ color: var(--accent); font-weight:700; }

.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 12px;
}
.btn{
  appearance:none;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.08);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 12px;
  cursor:pointer;
  font-weight: 650;
}
.btn.primary{
  background: linear-gradient(135deg, rgba(30,167,255,.95), rgba(30,167,255,.55));
  border-color: rgba(30,167,255,.55);
}
.btn.alt{
  background: rgba(255,176,0,.12);
  border-color: rgba(255,176,0,.25);
}
.btn:hover{ filter: brightness(1.05); }

.list{
  margin: 12px 0 0;
  padding-left: 16px;
}
.list li{ margin: 8px 0; color: var(--muted); }

footer{
  margin-top: 34px;
  padding: 26px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
}
.footer-grid{
  display:flex;
  flex-wrap:wrap;
  gap: 14px;
  justify-content: space-between;
  align-items:center;
}
.small{ font-size: 12px; color: var(--muted); }

/* Cookie banner */
.cookie-banner{
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  max-width: var(--max);
  margin: 0 auto;
  display:none;
}
.cookie-inner{
  display:flex;
  gap: 14px;
  align-items:flex-start;
  justify-content: space-between;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(5,12,22,.92);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.cookie-text{
  max-width: 780px;
}
.cookie-text strong{ display:block; margin-bottom: 4px; }
.cookie-text p{ margin:0; color: var(--muted); font-size: 14px; }
.cookie-actions{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.cookie-actions .btn{ padding: 9px 12px; border-radius: 12px; }
.contact-form{
  max-width: 520px;
}

.contact-form label{
  display: block;
  margin-top: 16px;
  margin-bottom: 0px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea{
  width: 100%;
  padding: 10px;
  margin-top: 4px;
}

.contact-form button{
  padding: 12px 20px;
  font-weight: bold;
}

.success{
  color: green;
  margin-bottom: 16px;
}

.form-status{
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  transition: opacity .35s ease;
  backdrop-filter: blur(6px);
}
