:root {
  --ink: #0f172a;
  --muted: #64748b;
  --paper: #ffffff;
  --line: #e2e8f0;
  --brand: #0ea5e9;
  --brand-ink: #0369a1;
  --soft: #ecfeff;
  --r: 16px;
  --sh: 0 10px 30px rgba(15, 23, 42, .05);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  line-height: 1.8;
  -webkit-text-size-adjust: 100%;
}
img { max-width: 100%; height: auto; display: block; border-radius: 14px; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

/* NAV TOP */
header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}
.topnav {
  width: min(1140px, 94%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: .6rem;
  align-items: center;
  padding: .8rem 0;
  flex-wrap: wrap;
}
.topnav nav a {
  margin-left: .5rem;
  padding: .45rem .85rem;
  border-radius: 999px;
}
.topnav nav a:hover {
  background: rgba(14, 165, 233, .1);
  text-decoration: none;
}

/* HERO */
.c05346c776b {
  background: linear-gradient(160deg, var(--soft), #fff 55%);
  border-bottom: 1px solid var(--line);
}
.hero-wrap {
  width: min(1140px, 94%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1.2rem;
  align-items: center;
  padding: 1.6rem 0;
}
.c05346c776b h1 {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  margin-bottom: .4rem;
}
.c05346c776b p.lead {
  color: var(--muted);
  max-width: 600px;
}

/* MAIN LAYOUT */
.page {
  width: min(1140px, 94%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 1.4rem;
  padding: 1.4rem 0;
}
.section {
  margin-bottom: 1.4rem;
}
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  box-shadow: var(--sh);
}
h2 {
  font-size: clamp(1.2rem, 2.3vw, 1.6rem);
  margin: 0 0 .5rem;
}
.subtle {
  color: var(--muted);
  font-size: .9rem;
}

/* SIDE INFO */
.sidebox {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--sh);
  position: sticky;
  top: 4.8rem;
}
.metric {
  background: rgba(14, 165, 233, .08);
  border-radius: 12px;
  padding: .7rem .85rem;
  margin-bottom: .65rem;
}
.metric .label { font-size: .75rem; color: var(--muted); }
.metric .value { font-size: 1.1rem; font-weight: 600; }

/* CARDS ROW */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.c077f0d69aa {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: var(--sh);
}

/* TIMELINE */
.timeline { list-style: none; padding: 0; margin: .3rem 0 0; }
.timeline li {
  position: relative;
  padding-left: 1.3rem;
  margin: .45rem 0;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: .25rem;
  top: .6rem;
  width: .48rem;
  height: .48rem;
  border-radius: 999px;
  background: var(--brand);
}

/* CONTACT FORM (shared) */
button, input, textarea, select { font: inherit; }
.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 800px;
}
.contact-form .row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  min-height: 44px;
  background: #fff;
}
.contact-form textarea { resize: vertical; }
.contact-form button {
  width: auto;
  justify-self: start;
  padding: .9rem 1.4rem;
  background: var(--brand);
  color: #fff;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
}
.contact-form button:hover { background: var(--brand-ink); }

/* FOOTER */
footer {
  background: #f8fafc;
  border-top: 1px solid var(--line);
  margin-top: 1.2rem;
}
.footer-wrap {
  width: min(1140px,94%);
  margin: 0 auto;
  padding: 1.1rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.footer-col .small { color: var(--muted); }
.footer-col a { color: var(--ink); }
.footer-col a:hover { color: var(--brand-ink); }

/* RESPONSIVE */
@media (max-width: 980px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .page {
    grid-template-columns: 1fr;
  }
  .sidebox { position: static; }
}
@media (max-width: 640px) {
  .topnav { justify-content: center; }
  .contact-form .row-2 { grid-template-columns: 1fr; }
  .hero-wrap { padding: 1.2rem 0; }
}
