/* assets/styles.css */
:root{
  --bg: #0b1220;
  --panel: rgba(255,255,255,0.06);
  --panel2: rgba(255,255,255,0.10);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.72);
  --border: rgba(255,255,255,0.14);
  --shadow: 0 18px 45px rgba(0,0,0,0.35);
  --radius: 18px;
  --radius2: 24px;
  --max: 1120px;

  /* pulled from logo “feel” */
  --blue: #0b5aa7;
  --green: #2f9b3a;
  --gold: #f2b203;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background:
    radial-gradient(1100px 700px at 20% 8%, rgba(11,90,167,0.35), transparent 60%),
    radial-gradient(900px 600px at 90% 10%, rgba(242,178,3,0.28), transparent 55%),
    radial-gradient(900px 600px at 60% 85%, rgba(47,155,58,0.22), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a{ color: inherit; text-decoration: none; }
.container{ width:min(var(--max), calc(100% - 40px)); margin:0 auto; }

.topbar{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(11,18,32,0.55);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.brand__logo{
  height: 54px;
  width: auto;
  display:block;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.35));
  border-radius:15px;
}
.topbar__cta{
  display:flex;
  gap: 10px;
  align-items:center;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: transform .08s ease, background .2s ease, border-color .2s ease;
  user-select: none;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.22); }
.btn:active{ transform: translateY(0px); }
.btn--primary{
  border-color: rgba(11,90,167,0.55);
  background: linear-gradient(135deg, rgba(11,90,167,0.85), rgba(47,155,58,0.70));
  box-shadow: 0 14px 30px rgba(11,90,167,0.18);
}
.btn--primary:hover{ border-color: rgba(242,178,3,0.55); }
.btn--ghost{ background: rgba(255,255,255,0.04); }
.btn--block{ width: 100%; border-radius: 14px; padding: 12px 14px; }

.hero{ padding: 54px 0 24px; }
.hero__grid{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: start;
}
.eyebrow{
  display:inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(242,178,3,0.30);
  background: rgba(242,178,3,0.12);
  color: rgba(255,255,255,0.92);
  font-weight: 800;
  letter-spacing: .4px;
  margin: 0 0 10px;
}
h1{
  margin: 0 0 12px;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.08;
}
.lead{
  margin: 0 0 18px;
  font-size: 1.05rem;
  color: var(--muted);
}
.hero__bullets{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 18px;
}
.chip{
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 700;
  color: rgba(255,255,255,0.86);
}
.hero__actions{ display:flex; gap: 10px; flex-wrap: wrap; }

.mini-meta{
  margin-top: 14px;
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items:center;
  color: rgba(255,255,255,0.82);
}
.dot{ opacity: .7; }

.section{ padding: 34px 0; }
.section--alt{
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}
h2{ margin: 0; font-size: clamp(22px, 2.2vw, 30px); }
h3{ margin: 0 0 10px; font-size: 1.05rem; }

.card{
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius2);
  padding: 18px;
  box-shadow: var(--shadow);
}
.divider{
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 16px 0;
}
.muted{ color: var(--muted); }
.small{ font-size: .92rem; }

.list{ margin: 0; padding-left: 18px; color: rgba(255,255,255,0.86); }
.list li{ margin: 8px 0; }

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

.section--contact{ padding: 42px 0 26px; }

.contact-cards{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 14px 0 18px;
}
.contact-card{
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255,255,255,0.05);
  transition: transform .08s ease, background .2s ease, border-color .2s ease;
}
.contact-card:hover{ transform: translateY(-1px); background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.22); }
.contact-card__label{ color: rgba(255,255,255,0.70); font-weight: 800; font-size: .88rem; }
.contact-card__value{ margin-top: 4px; font-weight: 900; letter-spacing: .2px; }

.field{ display:flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
label{ font-weight: 800; color: rgba(255,255,255,0.90); }
input, textarea{
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(5,10,18,0.45);
  padding: 12px 12px;
  color: var(--text);
  outline: none;
}
input:focus, textarea:focus{
  border-color: rgba(242,178,3,0.45);
  box-shadow: 0 0 0 3px rgba(242,178,3,0.12);
}

.linklike{
  margin-top: 8px;
  background: transparent;
  border: none;
  padding: 0;
  color: rgba(255,255,255,0.78);
  text-decoration: underline;
  cursor: pointer;
  width: fit-content;
}
.linklike:hover{ color: rgba(255,255,255,0.95); }

.toast{
  display:none;
  margin-top: 12px;
  border-radius: 14px;
  padding: 12px 12px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
}
.toast.toast--ok{
  border-color: rgba(47,155,58,0.40);
  background: rgba(47,155,58,0.14);
}
.toast.toast--err{
  border-color: rgba(242,178,3,0.45);
  background: rgba(242,178,3,0.14);
}

.footer{
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer__inner{
  display:flex;
  gap: 12px;
  justify-content: space-between;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.75);
}
.footer__right{ display:flex; gap: 10px; align-items:center; }

@media (max-width: 920px){
  .hero__grid{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .grid2{ grid-template-columns: 1fr; }
  .grid2--tight{ grid-template-columns: 1fr; }
  .contact-cards{ grid-template-columns: 1fr; }
  .brand__logo{ height: 46px; }
}


.hero__grid {
  display: flex; /* Default for desktop (row layout) */
  flex-direction: row;
}

.item1 { order: 1; }
.item2 { order: 2; }
.item3 { order: 3; }

/* Media query for mobile screens (max-width: 768px) */
@media screen and (max-width: 768px) {
  .hero__grid {
    flex-direction: column; /* Stacks items vertically on mobile */
  }

  /* Reorder for mobile view: Box 2, then Box 1, then Box 3 */
  .item1 { order: 2; }
  .item2 { order: 1; }
  .item3 { order: 3; }
}

@media (max-width: 768px) {
  .topbar__inner {
    flex-direction: column;
    align-items: stretch; /* allow full width rows */
    gap: 8px;
  }

  /* Row 1: logo aligned left */
  .brand {
    width: 100%;
    display: flex;
    justify-content: flex-start;
  }

  .brand__logo {
    max-height: 44px;
  }

  /* Row 2: buttons inline */
  .topbar__cta {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
  }

  .topbar__cta .btn {
    padding: 8px 12px;
    font-size: 0.9rem;
    white-space: nowrap;
  }
}