:root {
  --teal: #00b4ae;
  --teal-dark: #008e89;
  --purple: #a853e8;
  --navy: #183058;
  --muted: #686868;
  --bg: #f3f3f3;
  --white: #fff;
  --yellow: #ffc709;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: var(--muted);
  background: var(--bg);
  line-height: 1.5;
}
h1, h2, h3, h4 {
  font-family: Dosis, Roboto, sans-serif;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
}
a { color: var(--purple); text-decoration: none; }
a:hover { color: #885ea8; }
img { max-width: 100%; height: auto; display: block; }
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }

.site-header {
  background: var(--white);
  box-shadow: 0 0.15em 2em rgba(0,0,0,.12);
  position: sticky; top: 0; z-index: 40;
}
.site-header .inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 5.5rem;
}
.logo { width: 120px; }
.nav { display: flex; gap: 1.5rem; align-items: center; }
.nav a {
  font-size: 0.75rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: #7e7e7e; font-weight: 400;
}
.nav a:hover, .nav a.active { color: #3c3c3c; }
.menu-btn {
  display: none; background: var(--white); border: 0; border-radius: 100em;
  width: 2.75em; height: 2.75em; box-shadow: 0 .15em .65em rgba(0,0,0,.25);
  color: var(--teal); font-size: 1.25rem; cursor: pointer;
}
.nav-drawer { display: none; }
@media (max-width: 767px) {
  .nav { display: none; }
  .menu-btn { display: inline-flex; align-items: center; justify-content: center; }
  .nav-drawer.open {
    display: flex; flex-direction: column; gap: 0.75rem;
    padding: 1rem 1.25rem 1.25rem; background: #fff;
  }
}

.hero {
  background: #e8f7f6 center / cover no-repeat;
  text-align: center; padding: 2rem 1rem 2.5rem;
}
.hero img.hero-art { max-width: 920px; margin: 0 auto 1rem; }
.hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); margin: 0.3rem 0; color: var(--teal); }
.hero p { max-width: 40rem; margin: 0.5rem auto 1.25rem; }

.btn, .x-btn {
  display: inline-block; background: var(--teal); color: #fff !important;
  border-radius: 100em; padding: 0.7em 1.4em; font-weight: 700;
  box-shadow: 0 .25em 0 0 #009c97, 0 4px 9px rgba(0,0,0,.2);
}
.btn:hover { background: var(--teal-dark); }

.section { padding: 2.5rem 0; }
.section.white { background: #fff; }
.section.tint { background: #eefafa; }
.section h2 { text-align: center; font-size: 2rem; color: var(--teal); margin: 0 0 1.5rem; }

.grid { display: flex; flex-wrap: wrap; gap: 1.25rem; justify-content: center; }
.card {
  background: #fff; border-radius: 20px; padding: 1rem; width: 240px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08); text-align: center;
}
.card img { border-radius: 12px; margin: 0 auto 0.75rem; width: 100%; object-fit: cover; }
.card h3 { margin: 0.25rem 0; color: var(--teal); font-size: 1.25rem; }
.card p { margin: 0; font-size: 0.9rem; }

.video-wrap {
  position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
  max-width: 720px; margin: 1rem auto; border-radius: 12px;
}
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.features { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.features img { width: 220px; border-radius: 12px; }

.press-list { max-width: 720px; margin: 0 auto; }
.press-item { background: #fff; border-radius: 16px; padding: 1.25rem 1.5rem; margin: 0 0 1rem; }
.press-item h3 { margin: 0 0 0.4rem; font-size: 1.15rem; }
.press-item .meta { font-size: 0.85rem; color: #888; }

.site-footer {
  background: #fff; padding: 2.5rem 1rem 2rem; text-align: center;
  box-shadow: 0 -.2em 1em rgba(109,109,109,.2);
}
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.1rem; margin-bottom: 1rem; }
.footer-nav a { color: rgba(140,140,140,.85); font-weight: 700; }
.footer-nav a:hover { color: #333; }
.legal { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--yellow); }
.legal a { color: inherit; }

.classy-error, .classy-loading { padding: 1rem; text-align: center; }
