/* Agile Business Intelligence — simple static site
   Keep it minimal, fast, and easy to edit. */

:root{
  --bg: #f4f8fc;
  --panel: #ffffff;
  --card: #ffffff;
  --text: #0b1f33;
  --muted: #2f4a63;
  --line: rgba(255,255,255,.10);
  --accent: #6aa6ff;
  --accent2: #7ef0c1;
  --shadow: 0 12px 28px rgba(0,0,0,.35);
  --radius: 16px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1200px 600px at 10% 5%, rgba(106,166,255,.18), transparent 55%),
              radial-gradient(1000px 550px at 80% 0%, rgba(126,240,193,.12), transparent 55%),
              var(--bg);
  line-height:1.6;
}

a{color:inherit; text-decoration-color: rgba(255,255,255,.35)}
a:hover{text-decoration-color: rgba(255,255,255,.8)}

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

.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{left:16px; top:16px; width:auto; height:auto; padding:10px 12px; background:#000; border-radius:10px; z-index:999}

.header{
  position: sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: linear-gradient(90deg,#e8f1ff,#f7fbff);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{display:flex; align-items:center; gap:12px; min-width: 240px}
.brand__mark{
  width:44px; height:44px; display:grid; place-items:center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(106,166,255,.35), rgba(126,240,193,.22));
  border:1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  font-weight:800;
}
.brand__name{font-weight:800; letter-spacing:.2px}
.brand__tag{font-size:.85rem; color: var(--muted); margin-top:2px}

.nav{display:flex; align-items:center; gap:12px}
.nav__menu{display:flex; gap:18px; align-items:center}
.nav a{font-weight:600; font-size:.95rem; opacity:.95}
.nav a:hover{opacity:1}

.nav__toggle{
  display:none;
  width:42px; height:42px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  color: var(--text);
}

.hero{padding:64px 0 24px}
.hero__inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:24px;
  align-items: start;
}
.hero h1{font-size: clamp(2rem, 4vw, 3rem); line-height:1.1; margin:0 0 14px}
.lead{font-size:1.1rem; color:#0b1f33; margin:0 0 20px}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin-bottom:18px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight:700;
  text-decoration:none;
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
}
.btn--primary{
  background: linear-gradient(135deg, rgba(106,166,255,.35), rgba(126,240,193,.18));
  border-color: rgba(255,255,255,.18);
}
.btn--ghost{background: rgba(255,255,255,.03)}
.btn:hover{transform: translateY(-1px); transition: transform .12s ease}

.hero__badges{display:flex; gap:10px; flex-wrap:wrap}
.badge{
  padding:10px 12px;
  border-radius: 14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  min-width: 160px;
}
.badge__kpi{font-weight:900; display:block}
.badge__txt{color: var(--muted); font-size:.9rem}

.panel{
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  padding:18px 18px 16px;
}
.panel__title{font-weight:800; margin-bottom:10px}
.panel__list{margin:0; padding-left:18px; color: #0b1f33;}
.panel__note{margin-top:12px; color: var(--muted); font-size:.95rem}

.section{padding:56px 0}
.section--alt{background: rgba(255,255,255,.02); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
.section__head{margin-bottom:18px}
.section__head h2{margin:0 0 6px; font-size:1.8rem}
.section__head p{margin:0; color: var(--muted)}

.grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:16px;
}
.card{
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  padding:18px;
  box-shadow: 0 10px 22px rgba(0,0,0,.25);
}
.card h3{margin:0 0 8px}
.card p{margin:0 0 10px; color: #0b1f33}
.card ul{margin:0; padding-left:18px; color: var(--muted)}

.steps{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:12px;
}
.step{
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  padding:16px;
  display:flex; gap:12px;
}
.step__num{
  width:34px; height:34px; border-radius: 12px;
  display:grid; place-items:center;
  background: rgba(106,166,255,.18);
  border:1px solid rgba(255,255,255,.14);
  font-weight:900;
}
.step__body h3{margin:0 0 4px}
.step__body p{margin:0; color: var(--muted)}

.callout{
  margin-top:18px;
  padding:18px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.16);
  background: linear-gradient(135deg, rgba(106,166,255,.18), rgba(126,240,193,.08));
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}
.callout__title{font-weight:900}

.tabs{
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  overflow:hidden;
}
.tabs__list{
  display:flex;
  gap:0;
  border-bottom:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.tabs__tab{
  flex: 1 1 auto;
  padding:12px 14px;
  background: transparent;
  border:0;
  color: var(--text);
  font-weight:800;
  cursor:pointer;
  opacity:.85;
}
.tabs__tab[aria-selected="true"]{
  opacity:1;
  background: rgba(255,255,255,.06);
}
.tabs__panel{padding:16px 16px 18px}
.muted{color: var(--muted)}

.checklist{margin:0; padding-left:18px}
.checklist li{margin:6px 0}

.placeholder{display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap:10px; margin-top:12px}
.placeholder__box{
  height:80px;
  border-radius: 14px;
  border:1px dashed rgba(255,255,255,.25);
  background: rgba(255,255,255,.02);
  display:grid; place-items:center;
  color: rgba(233,238,247,.75);
  font-weight:700;
}

.about__footer{
  margin-top:16px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:16px;
}
.mini{
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  padding:16px;
}
.mini__title{font-weight:900; margin-bottom:6px}
.mini__body{color: rgba(233,238,247,.9)}

.contact{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:16px;
}
.footnote{margin-top:14px}

.footer{
  border-top:1px solid var(--line);
  background: rgba(0,0,0,.22);
  padding:18px 0;
}
.footer__inner{
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}
.footer__links{display:flex; gap:14px}
.sr-only{position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0}

@media (max-width: 920px){
  .hero__inner{grid-template-columns: 1fr}
  .steps{grid-template-columns: 1fr 1fr}
  .grid{grid-template-columns: 1fr}
  .contact{grid-template-columns: 1fr}
  .about__footer{grid-template-columns: 1fr}
  .nav__toggle{display:inline-flex; align-items:center; justify-content:center}
  .nav__menu{
    display:none;
    position:absolute;
    right:20px;
    top:70px;
    background: rgba(11,15,23,.92);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding:10px;
    box-shadow: var(--shadow);
    flex-direction:column;
    gap:10px;
    min-width: 190px;
  }
  .nav__menu.is-open{display:flex}
}

/* Brand logo */
.brand__logo{
  width:44px;
  height:44px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow);
  object-fit: contain;
  padding:6px;
}

.section--logos .section__head{margin-bottom:14px}

.logo-strip{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}

.logo-tile{
  padding:10px 12px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.16);
  background: linear-gradient(135deg, rgba(106,166,255,.14), rgba(126,240,193,.08));
  box-shadow: 0 10px 18px rgba(0,0,0,.18);
}

.logo-tile__text{
  font-weight: 800;
  letter-spacing: .2px;
  font-size: .95rem;
}

.note code{
  padding:2px 6px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
}


/* Platform logos */
.platform-logo{
  height:44px;
  margin:10px 14px;
  object-fit:contain;
  filter: none;
}
.platform-logo--wide{
  height:40px;
  max-width: 180px;
}
.logo-strip{
  display:flex;
  flex-wrap:wrap;
  gap:8px 6px;
  align-items:center;
}


/* Contact modal + form */
.contact-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin: 8px 0 16px;
}

.modal{
  position: fixed;
  inset: 0;
  display:none;
  z-index: 200;
}

.modal.is-open{display:block}

.modal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(11, 31, 51, .55);
  backdrop-filter: blur(2px);
}

.modal__dialog{
  position: relative;
  width: min(640px, calc(100% - 32px));
  margin: 8vh auto 0;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(11,31,51,.12);
  box-shadow: 0 22px 60px rgba(0,0,0,.22);
  padding: 16px;
  color: var(--text);
}

.modal__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(11,31,51,.10);
  margin-bottom: 12px;
}

.modal__close{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(11,31,51,.14);
  background: #f2f6ff;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  color: #0b1f33;
}

.form{margin-top: 6px}
.form__row{display:flex; flex-direction:column; gap:6px; margin-bottom:12px}
.form__label{font-weight:800; color:#0b1f33}
.form__input, .form__textarea{
  border-radius: 14px;
  border: 1px solid rgba(11,31,51,.16);
  background: #f7fbff;
  padding: 10px 12px;
  font: inherit;
  color: #0b1f33;
}
.form__input:focus, .form__textarea:focus{
  outline: none;
  border-color: rgba(106,166,255,.65);
  box-shadow: 0 0 0 4px rgba(106,166,255,.18);
}
.form__actions{display:flex; gap:10px; flex-wrap:wrap; margin-top: 8px}
.form__note{margin: 10px 0 0}

.contact-hint{ margin: 6px 0 0; }



/* Email reveal buttons */
.reveal-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius: 12px;
  border:1px solid rgba(11,31,51,.16);
  background: #e8f1ff;
  font: inherit;
  font-weight: 800;
  color: #0b1f33;
  cursor: pointer;
  margin-right: 8px;
}
.reveal-btn:hover{filter: brightness(.98)}
.reveal-email{
  font-weight: 700;
  color: #0b1f33;
}
.reveal-email a{
  color: #0b1f33;
  text-decoration: underline;
  text-decoration-color: rgba(11,31,51,.35);
}
.inline-reveal{
  margin-top: 10px;
}
