:root{
  /* lighter, less depressing */
  --bg0:#0a1224;
  --bg1:#0b1630;
  --txt: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --line: rgba(255,255,255,.14);

  --brand:#0b66c3;
  --brand2:#0ea5ff;

  --shadow: 0 18px 60px rgba(0,0,0,.32);
  --radius: 18px;
  --radius2: 24px;
  --max: 1120px;
}

/* Reset: avoid “weird alignment” */
*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
img{ max-width:100%; display:block; }
a{ color: rgba(255,255,255,.92); text-decoration:none; }
a:hover{ text-decoration: underline; }

body{
  color: var(--txt);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans";
  line-height: 1.45;

  /* base gradient (lighter than before) */
  background:
    radial-gradient(900px 520px at 18% 12%, rgba(14,165,255,.22), transparent 60%),
    radial-gradient(900px 520px at 82% 16%, rgba(11,102,195,.20), transparent 60%),
    linear-gradient(180deg, rgba(10,18,36,1), rgba(9,16,32,1));
}

/* layout */
.container{
  max-width: var(--max);
  margin:0 auto;
  padding: 0 20px;
}

/* ---------- NAV ---------- */
.nav{
  position: sticky;
  top:0;
  z-index:10;
  backdrop-filter: blur(10px);
  background: rgba(10,18,36,.62);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 18px 0;
}

.brand{ display:flex; align-items:center; gap:10px; }

.brand-logo{
  height: 46px; /* bigger logo */
  width:auto;
}

/* nav links + button */
.nav-actions{ display:flex; align-items:center; gap:18px; }
.nav-link{
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
}
.nav-link:hover{ color: var(--txt); text-decoration:none; }

/* buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,.14);
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{ transform: translateY(-1px); text-decoration:none; }

.btn-primary{
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  border-color: rgba(255,255,255,.18);
  color:#fff;
  box-shadow: 0 14px 34px rgba(14,165,255,.18);
}
.btn-ghost{
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.92);
}

/* ---------- HERO (with background images + numeric texture) ---------- */
.hero{
  position: relative;
  padding: 56px 0 28px;
  overflow: hidden;
}

/* Building background image (soft, not stealing text)
   Put a photo named bg-building.jpg in the same folder. */
.hero::before{
  content:"";
  position:absolute;
  inset:-10%;
  background-image: url("bg-building.jpg");
  background-size: cover;
  background-position: center;
  opacity: .14;              /* key: low impact */
  filter: blur(1px) saturate(.9) contrast(1.05);
  transform: scale(1.02);
  pointer-events:none;
}

/* Static “numbers/ledger” texture – not moving, just fashion vibe */
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  opacity:.20;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='260'%3E%3Crect width='100%25' height='100%25' fill='none'/%3E%3Cg fill='%23ffffff' fill-opacity='0.14' font-family='ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace' font-size='14'%3E%3Ctext x='22' y='40'%3E101001  448.25  03/01%3C/text%3E%3Ctext x='60' y='78'%3EINV  001284  1290.00%3C/text%3E%3Ctext x='26' y='116'%3ECR  320.50  DR  320.50%3C/text%3E%3Ctext x='110' y='154'%3EReconcile  OK  0.00%3C/text%3E%3Ctext x='20' y='192'%3EGL  2-1100  4-2100%3C/text%3E%3Ctext x='160' y='230'%3EBatch  #A-19  Posted%3C/text%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 520px 320px;
  mix-blend-mode: screen;
  pointer-events:none;
}

.hero-grid{
  position: relative; /* keep content above backgrounds */
  z-index: 1;
  display:grid;
  gap: 26px;
  grid-template-columns: 1.15fr .85fr;
  align-items: stretch;
}

/* pill + headings */
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 900;
  font-size: 12px;
}

h1{
  margin: 14px 0 10px;
  font-size: 44px;
  letter-spacing: -0.6px;
  line-height: 1.08;
  text-shadow: 0 12px 50px rgba(0,0,0,.22); /* helps read over image */
}

.lead{
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 16px;
}

.hero-badges{
  display:flex;
  gap:10px;
  flex-wrap: wrap;
  margin: 10px 0 18px;
}
.badge{
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.86);
  font-weight: 900;
  font-size: 12px;
}

.hero-cta{ display:flex; gap:12px; margin: 10px 0 10px; }

/* hero contact */
.hero-contact{
  display:flex;
  gap:18px;
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  flex-wrap: wrap;
}
.hero-contact a{ color: rgba(255,255,255,0.88); font-weight: 700; }
.hero-contact a:hover{ color: #0ea5ff; text-decoration:none; }

.subnote{ color: rgba(255,255,255,.58); font-size: 12px; margin-top: 10px; }
.muted{ color: var(--muted); }

/* ---------- GLASS ---------- */
.glass{
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
  border-radius: var(--radius2);
  padding: 18px;
}

/* right panel */
.hero-card{
  border-radius: var(--radius2);
  overflow:hidden;
  box-shadow: var(--shadow);
}

/* Support panel: optional second image (ledger/finance)
   Put bg-ledger.jpg if you want, otherwise it just won't show. */
.support-panel{
  position: relative;
  overflow: hidden;
}
.support-panel::before{
  content:"";
  position:absolute;
  inset:-20%;
  background:
    radial-gradient(60% 40% at 70% 20%, rgba(14,165,255,.18), transparent 60%),
    radial-gradient(50% 35% at 25% 70%, rgba(11,102,195,.16), transparent 60%),
    url("bg-ledger.jpg");
  background-size: cover;
  background-position: center;
  opacity: .20;
  filter: blur(0.8px) saturate(.9);
  pointer-events:none;
}
.support-panel > *{ position: relative; z-index: 1; }

.cards{
  display:grid;
  gap: 12px;
  margin-top: 14px;
}

/* cards */
.card{
  display:flex;
  gap: 12px;
  align-items:center;
  padding: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.card:hover{
  transform: translateY(-2px);
  border-color: rgba(14,165,255,.35);
  background: rgba(255,255,255,.10);
}

.icon{
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg, rgba(14,165,255,.48), rgba(11,102,195,.36));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
  font-weight: 900;
  font-size: 18px;
  flex: 0 0 auto;
}

.card-text{ min-width: 0; }
.card-title{ font-weight: 900; }
.card-desc{
  font-size: 12px;
  color: rgba(255,255,255,.72);
  margin-top: 2px;
}

.support-note{
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255,255,255,.68);
}

/* ---------- SECTIONS ---------- */
.section{ padding: 44px 0; }
.section-head{ margin-bottom: 18px; }
.section-head h2{
  margin:0 0 8px;
  font-size: 28px;
  letter-spacing: -0.4px;
}

/* process */
.process{
  display:grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: center;
}
.step{
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.step-dot{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  font-weight: 900;
  margin-bottom: 10px;
}
.step-title{ font-weight: 900; margin-bottom: 4px; }
.step-desc{ color: rgba(255,255,255,.70); font-size: 12px; }
.arrow{ color: rgba(255,255,255,.36); font-weight: 900; font-size: 22px; }

/* contact */
.contact-grid{
  display:grid;
  gap: 18px;
  grid-template-columns: 0.9fr 1.1fr;
}
.contact-list{
  display:grid;
  gap: 12px;
  margin-top: 12px;
  color: rgba(255,255,255,.88);
}

/* form */
.form label{
  display:block;
  font-size: 12px;
  font-weight: 900;
  color: rgba(255,255,255,.80);
  margin-bottom: 10px;
}
.form input, .form textarea, .form select{
  width:100%;
  margin-top: 6px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.20);
  color: rgba(255,255,255,.92);
  outline: none;
}
.form input:focus, .form textarea:focus, .form select:focus{
  border-color: rgba(14,165,255,.55);
  box-shadow: 0 0 0 4px rgba(14,165,255,.12);
}

/* footer */
.footer{
  padding: 18px 0 30px;
  border-top: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.66);
  background: rgba(10,18,36,.35);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap: 14px;
  font-size: 12px;
}

.br-desktop{ display:inline; }

/* responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  h1{ font-size: 36px; }
  .process{ grid-template-columns: 1fr; }
  .arrow{ display:none; }
  .contact-grid{ grid-template-columns: 1fr; }
  .nav-link{ display:none; }
  .br-desktop{ display:none; }
}
