
:root {
  --navy: #0B1A2B;
  --gold: #D7A34C;
  --white: #FFFFFF;
  --slate: #94A3B8;
  --ink: #0F172A;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,.25);
}
* { box-sizing: border-box; }
html, body { margin:0; padding:0; background: var(--navy); color: var(--white); font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(1120px, 92%); margin: 0 auto; }
.nav { position: sticky; top:0; backdrop-filter: saturate(140%) blur(8px); background: rgba(11,26,43,.7); border-bottom: 1px solid rgba(255,255,255,.06); z-index: 50; }
.nav-inner { display:flex; align-items:center; justify-content:space-between; padding: 14px 0; }
.brand { display:flex; align-items:center; gap:14px; }
.brand img { width:42px; height:42px; }
.brand .wordmark { font-weight: 800; letter-spacing:.2px; }
.brand .wordmark span { color: var(--gold); }
.nav a.button { background: var(--gold); color: var(--ink); padding:10px 16px; border-radius: 10px; font-weight: 700; }
.hero { padding: 72px 0 40px; }
.hero .wrap { display:grid; gap: 28px; grid-template-columns: 1.2fr .9fr; align-items:center; }
.hero h1 { font-size: clamp(36px, 6vw, 56px); line-height: 1.05; margin:0; }
.hero p.lead { font-size: clamp(16px, 2.5vw, 20px); color: #E5E7EB; margin: 14px 0 0; }
.hero .card { background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px; }
.pills { display:flex; flex-wrap:wrap; gap:10px; margin-top: 16px; }
.pill { border: 1px solid rgba(255,255,255,.18); border-radius: 999px; padding:8px 12px; font-size: 13px; color:#E2E8F0; }
.cta-row { display:flex; gap:12px; margin-top: 20px; flex-wrap:wrap; }
.button { display:inline-flex; align-items:center; gap:10px; padding:14px 18px; border-radius: 12px; font-weight:800; border:1px solid transparent; }
.button.primary { background: var(--gold); color: var(--ink); }
.button.secondary { background: transparent; border-color: rgba(255,255,255,.2); color: var(--white); }
.subtle { color: var(--slate); font-size: 14px; }
/* Feature grid */
.section { padding: 60px 0; }
.section h2 { font-size: clamp(28px, 4.5vw, 40px); margin:0 0 16px; }
.grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 18px; }
.card h3 { margin: 8px 0 8px; font-size: 18px; }
.kpi { display:flex; gap:18px; align-items:center; }
.kpi .num { font-weight: 900; font-size: 36px; }
.badges { display:flex; gap:12px; flex-wrap:wrap; margin-top:10px; }
.badge { background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); padding:8px 10px; border-radius: 999px; font-size:12px; color:#E2E8F0;}
/* Showcase */
.showcase { background: linear-gradient(180deg, rgba(215,163,76,.08), rgba(255,255,255,0)); }
.mock { width:100%; aspect-ratio: 16/10; background: radial-gradient(1200px 600px at 20% 10%, rgba(215,163,76,.18), transparent), #0F2136; border:1px solid rgba(255,255,255,.1); border-radius: 16px; display:flex; align-items:center; justify-content:center; }
.mock .logo { width:120px; opacity:.85; }
/* Solutions */
.solutions .grid { grid-template-columns: repeat(2, 1fr); }
.sol-card h3 { display:flex; align-items:center; gap:10px; }
.sol-card svg { opacity:.9; }
/* CTA */
.cta { background: radial-gradient(600px 240px at 10% 10%, rgba(215,163,76,.12), rgba(255,255,255,0)); padding: 60px 0; }
.cta .wrap { display:grid; gap:20px; grid-template-columns: 1fr auto; align-items:center; }
/* Footer */
.footer { border-top:1px solid rgba(255,255,255,.08); padding: 30px 0; }
.footer .cols { display:grid; grid-template-columns: 2fr 1fr 1fr; gap: 20px; }
.footer h4 { margin: 0 0 8px; }
.footer a { color:#E2E8F0; }
.small { font-size: 12px; color:#94A3B8; }
/* Forms */
form { display:grid; gap:12px; }
input, textarea { width:100%; padding:14px 14px; border-radius:10px; border:1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06); color: var(--white); }
input::placeholder, textarea::placeholder { color:#C7D2FE; opacity:.7; }
button[type=submit] { cursor:pointer; }
.container.wrap.box_wrapper { grid-template-columns: 1fr 500px;}
.cta-row { margin-bottom: 10px;}
form#demoForm button.button.primary {justify-content: center;}
/* Responsive */
@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .cta .wrap { grid-template-columns: 1fr; }
  .footer .cols { grid-template-columns: 1fr 1fr; }
}


/* responsive css start here */
@media(max-width:767px){
  .container.nav-inner {
    flex-direction: column;
    gap: 10px;
}
.nav-inner a.button {
    padding: 8px 8px;
    font-size: 12px;
}
.cta-row {
    margin-bottom: 10px;
}
section#solutions .grid {
    grid-template-columns: 1fr;
}
footer.footer .container.cols {
    grid-template-columns: 1fr;
}
.card .kpi {
    flex-direction: column;
    margin-bottom: 20px;
}
.kpi .num {
    font-weight: 900;
    font-size: 30px;
}
header.hero h1 {
    font-size: 30px;
}
.cta-row a.button {
    font-size: 14px;
}
.footer_grid a {
    font-weight: 100;
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
}
.footer_grid h4 {
    font-size: 18px;
    margin-bottom: 10px;
}
.cta .container.wrap.box_wrapper {
    grid-template-columns: 1fr;
}
}

@media(min-width:768px) and (max-width:991px){
  .cta-row {
    margin-bottom: 10px;
}
form#demoForm button.button.primary {
    justify-content: center;
}
.cta .container.wrap.box_wrapper {
    grid-template-columns: 1fr;
}
.mock {
    margin-top: 20px;
}
}



/* responsive css end here */