/* Brand/marketing starter theme: modern, clean, easy to tweak */

:root{
  --bg: #0b1020;
  --bg2:#0f1730;
  --card:#0f1833cc;
  --text:#eaf0ff;
  --muted:#b8c3e6;
  --muted2:#93a2d0;
  --line: rgba(255,255,255,.10);

  --accent:#6aa7ff;
  --accent2:#7cf0ff;
  --shadow: 0 20px 60px rgba(0,0,0,.35);

  --radius: 18px;
  --radius2: 26px;

  --container: 1100px;
  --pad: 20px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{ box-sizing: border-box; }
html, body{ height:100%; }
html { background: var(--bg2); } /* prevents bottom/edge flash */

body{
  isolation: isolate;
  margin:0;
  font-family: var(--font);
  color: var(--text);
  position: relative;
  min-height: 100vh;

  /* Solid “rest of page” background (color-match this if needed) */
  background: var(--bg2);
}



body::before{
  content:"";
  position: absolute; /* IMPORTANT: not fixed */
  left: 0;
  right: 0;
  top: 0;
  height: 950px; /* adjust this to control where the glow fades out */
  pointer-events: none;
  z-index: 0;

  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(106,167,255,.35), transparent 60%),
    radial-gradient(1000px 600px at 80% 10%, rgba(124,240,255,.25), transparent 55%),
    linear-gradient(180deg,
      var(--bg) 0%,
      var(--bg2) 70%,
      rgba(15,23,48,0) 100%
    );
}

body > *{
  position: relative;
  z-index: 1;
}


a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  width: min(var(--container), calc(100% - 2*var(--pad)));
  margin: 0 auto;
}

/* NAV */
.nav{
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(11,16,32,.75);
  border-bottom: 1px solid var(--line);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight: 700;
  letter-spacing: .2px;
}
.brand-logo{
  width: 32px;
  height: 32px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.brand-name{ font-size: 16px; }
.nav-links{
  display:flex;
  gap: 18px;
  align-items:center;
  color: var(--muted);
}
.nav-links a{ padding: 8px 10px; border-radius: 10px; }
.nav-links a:hover{ background: rgba(255,255,255,.06); text-decoration:none; color: var(--text); }

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(106,167,255,1), rgba(124,240,255,1));
  color: #081024;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.btn:hover{ filter: brightness(1.03); text-decoration: none; }
.btn:active{ transform: translateY(1px); }
.btn-ghost{
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn-ghost:hover{ background: rgba(255,255,255,.06); }
.btn-small{ padding: 9px 12px; border-radius: 12px; font-weight: 700; }
.btn-wide{ width:100%; }

/* HERO */
.hero{
  position: relative;
  padding: 54px 0 26px;
  overflow: hidden;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .85fr;
  gap: 22px;
  align-items: start;
}
.hero-copy{
  padding: 10px 0;
}
.eyebrow{
  display:inline-flex;
  gap:10px;
  align-items:center;
  font-weight: 700;
  color: var(--accent2);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  margin: 0 0 12px;
}
.hero h1{
  margin:0 0 12px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.02;
}
.lead{
  margin:0 0 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  max-width: 60ch;
}
.cta-row{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0 14px;
}
.trust-row{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.trust-pill{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}
.hero-divider{
  height: 1px;
  margin: 18px 0 16px;
  width: min(550px, 100%);
  background: linear-gradient(
    90deg,
    rgba(255,255,255,.22),
    rgba(255,255,255,.10),
    rgba(255,255,255,0)
  );
}


.hero-card{
  border-radius: var(--radius2);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-card--offset{
  margin-top: clamp(18px, 5vw, 70px);
}

@media (max-width: 920px){
  .hero-card--offset{ margin-top: 16px; }
}

.hero-card-inner{ padding: 18px; }
.card-title{
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: .2px;
}
.specs{ margin: 0 0 14px; }
.spec{
  display:flex;
  justify-content:space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.spec:last-child{ border-bottom:0; }
.spec dt{ color: var(--muted2); font-weight: 700; }
.spec dd{ margin:0; font-weight: 700; color: var(--text); text-align:right; }

.hero-bg{
  position:absolute;
  inset:-200px -200px auto -200px;
  height: 520px;
  background: radial-gradient(600px 220px at 20% 70%, rgba(106,167,255,.18), transparent 65%),
              radial-gradient(600px 220px at 80% 20%, rgba(124,240,255,.16), transparent 60%);
  pointer-events:none;
}

/* SECTIONS */
.section{ padding: 54px 0; }
.section-alt{
  background: rgba(255,255,255,.03);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-title{
  margin:0 0 10px;
  font-size: 28px;
}
.section-subtitle{
  margin:0 0 22px;
  color: var(--muted);
  max-width: 70ch;
  line-height: 1.6;
}

/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
}
.card h3{ margin:0 0 8px; }
.card p{ margin:0; color: var(--muted); line-height: 1.6; }

/* Split */
.split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items:center;
}
.bullets{
  margin: 0 0 18px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

/* Media */
.media{
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.media-placeholder{
  padding: 22px;
  min-height: 260px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: 10px;
}
.media-badge{
  display:inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--muted2);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.media-text{ color: var(--muted); }

/* Banner */
.banner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 18px;
  padding: 22px;
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(106,167,255,.14), rgba(124,240,255,.10));
}

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 18px 0;
}
.contact-item{
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
}
.contact-label{
  color: var(--muted2);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 4px;
}
.contact-value{ font-weight: 700; }

.form{
  padding: 18px;
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow);
}
label{ display:block; margin: 12px 0; }
label span{ display:block; font-weight: 700; color: var(--muted2); margin-bottom: 6px; font-size: 13px; }
input, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(11,16,32,.55);
  color: var(--text);
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(124,240,255,.55);
  box-shadow: 0 0 0 3px rgba(124,240,255,.10);
}

.footer{
  padding: 26px 0 42px;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.footer-right{ display:flex; gap: 14px; color: var(--muted); }
.brand-footer .brand-logo{ width: 28px; height: 28px; }

.muted{ color: var(--muted); }
.tiny{ font-size: 12px; }

/* Responsive */
@media (max-width: 920px){
  .hero-grid{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .nav-links{ gap: 8px; }
}

.hero-grid { position: relative; z-index: 1; }
.hero-bg   { z-index: 0; }

.hero-media{
  margin-top: 16px;
  width: 100%;                 /* fill the left column */
  max-width: 550px;            /* never exceed this */
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media img{
  display:block;
  width:100%;
  height: clamp(160px, 22vw, 260px);  /* responsive height */
  object-fit: cover;
  object-position: center;
}