
:root{
  --bg: #0b0f1a;
  --card: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.12);
  --text: #e9edf5;
  --muted: #a7b0c3;
  --brand: #60a5fa;
  --brand-2: #34d399;
  --accent: #f59e0b;
  --shadow: 0 10px 30px rgba(0,0,0,0.25);
  --radius: 18px;
}

* { box-sizing: border-box; }
html, body { height: 100%; scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container{
  width: min(1120px, 92vw);
  margin: 0 auto;
}

/* Header */
.site-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: transparent; /* no gradient block */
  z-index: 5;
}
.brand{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.2px;
}
.brand img{ height: 66px; width: auto; border-radius: 10px; }
.nav{
  display: flex; gap: 18px; align-items: center;
}
.nav a{
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}
.nav a:hover{ color: var(--text); }
.btn{
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 12px 18px;
  border-radius: 999px; border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  color: var(--text); text-decoration: none; font-weight: 700;
  box-shadow: var(--shadow);
}
.btn-sm{ padding: 8px 14px; font-size: 14px; }
.btn-lg{ padding: 14px 22px; font-size: 18px; }
.btn:hover{ transform: translateY(-1px); }
.btn-ghost{ background: transparent; border-color: rgba(255,255,255,0.2); box-shadow: none; }

/* Hero */
.hero{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
  padding: 40px 0 24px;
}
.hero h1{
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.lede{ font-size: 18px; color: var(--muted); }
.goals{ display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 14px; }
.goal-chip{
  padding: 8px 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}
.cta-row{ display: flex; gap: 12px; margin-top: 12px; }

.hero-media.card{
  padding: 16px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.status-row{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.status{
  display: flex; gap: 10px; align-items: center;
  padding: 12px; border-radius: 14px; background: rgba(0,0,0,0.25); border: 1px solid var(--border);
}
.status img{ width: 28px; height: 28px; border-radius: 8px; }
.status .label{ font-size: 12px; color: var(--muted); }
.status .value{ font-weight: 700; }

.panel{
  margin-top: 16px; padding: 16px;
  border-radius: 14px; background: rgba(0,0,0,0.2); border: 1px solid var(--border);
}
.panel-title{ font-weight: 800; margin-bottom: 10px; }
.bars{ display: grid; gap: 10px; }
.bar{
  position: relative; padding: 10px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.bar span{
  position: absolute; inset: 0 0 0 auto; width: 0;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  opacity: 0.2;
}
.bar em{ position: relative; font-style: normal; color: var(--muted); }
.bar strong{ position: absolute; right: 12px; top: 9px; font-size: 14px; }

/* Sections */
section{ padding: 56px 0; }
h2{ font-size: clamp(26px, 3vw, 36px); margin: 0 0 12px; }
.why p{ color: var(--muted); max-width: 80ch; }
.pill-row{ display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.pill{ padding: 8px 12px; background: rgba(255,255,255,0.06); border: 1px solid var(--border); border-radius: 999px; font-weight: 600; }

.challenges .grid{
  display: grid; gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card{
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px; box-shadow: var(--shadow);
}
.card p{ margin: 0; color: var(--text); }

.solution{
  display: grid; gap: 20px; grid-template-columns: 0.8fr 1.2fr; align-items: start;
}
.sticky-col{ position: sticky; top: 86px; align-self: start; }
.ticks{ list-style: none; padding: 0; margin: 10px 0 16px; }
.ticks li{ margin: 8px 0; padding-left: 24px; position: relative; color: var(--muted); }
.ticks li::before{
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--brand-2); font-weight: 800;
}
.steps{ display: grid; gap: 16px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.step h3{ margin-top: 6px; margin-bottom: 8px; }
.step-num{
  display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border); background: rgba(255,255,255,0.06); font-weight: 800;
}

.about .about-wrap{
  display: grid; grid-template-columns: 120px 1fr; gap: 18px; align-items: center;
}
.about-logo{ width: 100%; border-radius: 16px; border: 1px solid var(--border); background: rgba(255,255,255,0.08); padding: 10px; }

.contact .contact-cta{ display: flex; gap: 12px; margin-top: 12px; }
.note{ color: var(--muted); display: block; margin-top: 12px; }

/* Footer */
.site-footer{
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 22px 0 48px; border-top: 1px solid var(--border); margin-top: 24px;
}
.site-footer img{ height: 48px; width: auto; border-radius: 8px; margin-right: 10px; }
.foot-left{ display: inline-flex; align-items: center; gap: 10px; }
.foot-right{ display: flex; gap: 16px; }
.foot-right a{ color: var(--muted); text-decoration: none; }
.foot-right a:hover{ color: var(--text); }

/* Responsive */
@media (max-width: 900px){
  .hero{ grid-template-columns: 1fr; }
  .solution{ grid-template-columns: 1fr; }
  .sticky-col{ position: static; }
  .challenges .grid{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .about .about-wrap{ grid-template-columns: 1fr; }
  .nav a:not(.btn){ display:none; }
  .status-row{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px){
  .status-row{ grid-template-columns: 1fr; }
}

img{max-width:100%;height:auto;}


/* Prevent overflow in status cards */
.status{ align-items: flex-start; overflow: hidden; }
.status > img{ flex: 0 0 auto; }
.status > div{ flex: 1 1 auto; min-width: 0; }
.status .label, .status .value{ white-space: normal; overflow-wrap: anywhere; word-break: break-word; line-height: 1.3; }

