:root{
  --bg: #0f1621;

  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.74);
  --faint: rgba(255,255,255,0.58);
  --border: rgba(255,255,255,0.12);

  --radius: 16px;
  --shadow: 0 18px 45px rgba(0,0,0,0.36);

  --good: #86efac;

  --max: 1120px;
  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;

  --header-pad-y: 12px;
  --mobile-nav-w: 400px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }

body{
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  line-height: 1.55;

  /* No gradients. Period. */
  background: var(--bg);
}

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

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

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

/* Header: normal flow */
.site-header{
  position: static;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: var(--header-pad-y) 0;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}

.logo{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f2b705, #f7cc38);
  color: #0a0a0a;
  font-weight: 900;
  letter-spacing: 0.6px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.28);
}

.brand-name{ font-weight: 900; letter-spacing: 0.2px; }
.brand-sub{ font-size: 12px; color: var(--muted); margin-top: 2px; }

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

.nav-contact{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font-weight: 900;
}
.nav-contact:hover{ background: rgba(255,255,255,0.05); }

/* Hero / Sections */
.hero{ padding: 36px 0 30px; }
.section{ padding: 54px 0; }
.footer{ padding: 26px 0; border-top: 1px solid rgba(255,255,255,0.08); }

.hero-grid{
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
  align-items: start;
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  font-weight: 850;
  font-size: 12px;
  letter-spacing: 0.2px;
  margin: 0 0 14px;
}

h1{
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.08;
  margin: 0 0 14px;
  letter-spacing: -0.6px;
}

.lead{
  margin: 0 0 18px;
  color: rgba(255,255,255,0.86);
  font-size: 16px;
  max-width: 66ch;
}

.section-head{
  max-width: 82ch;
  margin-bottom: 18px;
}

h2{
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: -0.4px;
}
.sub{
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.signals{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.signal{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius);
  padding: 12px 12px;
}
.signal-title{
  font-size: 12px;
  color: var(--muted);
  font-weight: 900;
  margin-bottom: 2px;
}
.signal-text{
  font-weight: 850;
  color: rgba(255,255,255,0.90);
  font-size: 13px;
}

.pill-row{
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.84);
  font-weight: 850;
  font-size: 12px;
}

.grid{ display: grid; gap: 14px; }
.cards-3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards-2{ grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  padding: 18px;
}
.card h3{
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -0.2px;
}
.card p{ margin: 0 0 12px; color: rgba(255,255,255,0.86); }

.bullets{
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,0.84);
}
.bullets li{ margin: 7px 0; }

.note{
  margin-top: 16px;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  padding: 16px 18px;
  color: rgba(255,255,255,0.86);
}

.hero-card{
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card-head{
  padding: 18px 18px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-card .card-title{
  margin: 0 0 4px;
  font-size: 16px;
  letter-spacing: -0.2px;
}
.card-sub{
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  font-size: 13px;
}

.checklist{
  margin: 0;
  padding: 10px 18px 10px;
  list-style: none;
}
.checklist li{
  padding: 10px 0 10px 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.88);
  position: relative;
}
.checklist li:first-child{ border-top: 0; }
.checklist li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 9px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(134,239,172,0.10);
  border: 1px solid rgba(134,239,172,0.22);
  color: var(--good);
  font-weight: 900;
  font-size: 12px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(135deg, rgba(96,165,250,0.95), rgba(147,197,253,0.86));
  color: rgba(0,0,0,0.82);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(0,0,0,0.30);
}
.btn:hover{ text-decoration: none; filter: brightness(1.02); }
.btn:active{ transform: translateY(1px); }

.btn-full{
  width: min(100%, 420px);
  margin-inline: auto;
}

.card-foot{
  padding: 14px 18px 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: grid;
  gap: 12px;
  justify-items: start;
}
.card-foot .btn-full{ justify-self: center; }

.steps{
  display: grid;
  gap: 12px;
  margin-top: 16px;
}
.step{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
}
.step-num{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: rgba(0,0,0,0.78);
  background: linear-gradient(135deg, rgba(96,165,250,0.95), rgba(147,197,253,0.86));
}

.quote{
  margin-top: 16px;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  padding: 18px;
}
.quote-text{
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-weight: 700;
}

.about{
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  align-items: start;
}

.about-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 10px;
}
.badge{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.86);
  font-weight: 850;
  font-size: 12px;
}

.panel{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  padding: 18px;
  margin-bottom: 14px;
}

.contact-simple{
  display: flex;
  justify-content: center;
}
.contact-simple-card{
  width: 100%;
  max-width: 860px;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  padding: 26px;
  box-shadow: var(--shadow);
}

.direct-contact{ margin: 18px 0 10px; }

.direct-block{
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
}
.direct-label{
  font-weight: 900;
  color: var(--muted);
  font-size: 13px;
}
.direct-value{
  font-size: 15px;
  font-weight: 850;
}

.contact-guidance{
  margin: 18px 0 16px;
  padding-top: 4px;
}
.contact-guidance h3{
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: -0.2px;
}

.contact-footnote{
  margin-top: 14px;
  font-size: 13px;
  color: var(--faint);
}

.micro{ font-size: 13px; color: rgba(255,255,255,0.82); }
.muted{ color: var(--faint); }

.foot{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.foot-right a{ color: rgba(255,255,255,0.78); font-weight: 800; }
.sep{ color: rgba(255,255,255,0.35); margin: 0 8px; }

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .cards-3{ grid-template-columns: 1fr; }
  .cards-2{ grid-template-columns: 1fr; }
  .about{ grid-template-columns: 1fr; }
  .direct-block{ grid-template-columns: 1fr; }
}

/* Mobile: nav as centered stacked buttons */
@media (max-width: 820px){
  .nav{
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 0 14px;
  }

  .brand{
    min-width: 0;
    justify-content: center;
  }
  .brand-text{ text-align: center; }

  .links{
    width: min(100%, var(--mobile-nav-w));
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    margin-top: 12px;
  }

  .links a{
    width: 100%;
    text-align: center;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.03);
    color: rgba(255,255,255,0.90);
    font-weight: 900;
  }

  .nav-contact{
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: none;
  }

  .signals{ grid-template-columns: 1fr; }
}
