:root {
  --navy: #1a2b4a;
  --navy-deep: #111d33;
  --navy-mid: #1e3a5f;
  --teal: #1a9baa;
  --teal-light: #22b8ca;
  --teal-pale: #e6f7f9;
  --teal-mid: #b3e8ee;
  --white: #ffffff;
  --warm: #f7f8fa;
  --border: #e5e7eb;
  --text: #1e1e2e;
  --text-mid: #4b5563;
  --text-muted: #9ca3af;
  --green: #10b981;
  --fh: "Plus Jakarta Sans", sans-serif;
  --fb: "DM Sans", sans-serif;
  --r: 14px;
  --rs: 8px;
  --sh: 0 2px 12px rgba(26, 43, 74, 0.09);
  --shm: 0 8px 32px rgba(26, 43, 74, 0.13);
  --shl: 0 20px 60px rgba(26, 43, 74, 0.18);
  --ease: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--fb);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  max-width: 100%;
}
a {
  text-decoration: none;
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3,
h4 {
  font-family: var(--fh);
  line-height: 1.15;
}
h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}
h3 {
  font-size: 1.15rem;
  font-weight: 700;
}
p {
  color: var(--text-mid);
  line-height: 1.75;
}
em {
  font-style: normal;
  color: var(--teal-light);
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.22);
}
.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.nav-bottom {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 40px;
  height: 40px;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.audience-toggle {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50px;
  padding: 4px;
  gap: 3px;
}
.aud-btn {
  padding: 7px 18px;
  border-radius: 50px;
  font-family: var(--fh);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: var(--ease);
  border: none;
  background: transparent;
  white-space: nowrap;
}
.aud-btn.active {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 2px 12px rgba(26, 155, 170, 0.4);
}
.aud-btn:hover:not(.active) {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.nav-cta {
  font-family: var(--fh);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 8px 18px;
  border-radius: 50px;
  background: var(--teal);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: var(--ease);
}
.nav-cta:hover {
  background: var(--teal-light);
  transform: translateY(-1px);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 100%;
}
.nav-link {
  font-family: var(--fh);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  padding: 0 14px;
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: var(--ease);
  border-bottom: 2px solid transparent;
  text-decoration: none;
  border: none;
  background: transparent;
}
.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.nav-link.teal {
  color: var(--teal-light);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--fh);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 11px 24px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--ease);
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-lg {
  font-size: 1rem;
  padding: 13px 30px;
}
.btn-teal {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.btn-teal:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26, 155, 170, 0.4);
}
.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-ghost:hover {
  border-color: var(--teal-light);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: #fff;
}
.btn-navy {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-navy:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ── LAYOUT ── */
section {
  padding: 80px 40px;
}
.container {
  max-width: 1060px;
  margin: 0 auto;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--fh);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-label::before {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
.section-label-w {
  color: rgba(255, 255, 255, 0.6);
}
.section-label-w::before {
  background: rgba(255, 255, 255, 0.4);
}
.section-center {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.section-center .section-label {
  justify-content: center;
}
.section-center .section-label::before {
  display: none;
}
.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.page-view {
  display: none;
}
.page-view.active {
  display: block;
}

/* ── BADGES ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--green);
  color: #fff;
  font-family: var(--fh);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.badge-teal {
  background: var(--teal);
}

/* ── HERO ── */
.hero {
  background: linear-gradient(
    140deg,
    var(--navy) 0%,
    var(--navy-mid) 65%,
    #163050 100%
  );
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -140px;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(26, 155, 170, 0.16) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(26, 155, 170, 0.09) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 {
  color: #fff;
  margin-bottom: 16px;
}
.hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  margin-bottom: 28px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── POSTER MOCKUP ── */
.poster-wrap {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  justify-content: center;
}
.poster {
  background: #fff;
  border-radius: 14px;
  padding: 22px 18px;
  box-shadow: var(--shl);
  max-width: 200px;
  width: 100%;
}
.poster-clinic {
  font-family: var(--fh);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 5px;
}
.poster-hl {
  font-family: var(--fh);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 7px;
}
.poster-sub {
  font-size: 0.72rem;
  color: var(--text-mid);
  margin-bottom: 12px;
  line-height: 1.5;
}
.poster-goals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 12px;
}
.poster-goal {
  background: var(--teal-pale);
  border: 1.5px solid var(--teal-mid);
  border-radius: 8px;
  padding: 8px 6px;
  text-align: center;
}
.pg-icon {
  font-size: 1.2rem;
  margin-bottom: 3px;
}
.pg-label {
  font-family: var(--fh);
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--navy);
}
.poster-qr {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--warm);
  border-radius: 8px;
  padding: 8px 10px;
}
.poster-qr-text {
  font-size: 0.65rem;
  color: var(--text-mid);
  line-height: 1.4;
}
.poster-qr-text strong {
  color: var(--navy);
  font-family: var(--fh);
}
.poster-powered {
  margin-top: 9px;
  text-align: center;
  font-size: 0.6rem;
  color: var(--text-muted);
}
.poster-powered span {
  color: var(--teal);
  font-weight: 700;
}

/* ── PHONE MOCKUP ── */
.phone {
  background: #fff;
  border: 7px solid var(--navy);
  border-radius: 20px;
  padding: 14px 12px;
  max-width: 170px;
  width: 100%;
  box-shadow: var(--shl);
}
.phone-notch {
  width: 44px;
  height: 4px;
  background: var(--border);
  border-radius: 4px;
  margin: 0 auto 10px;
}
.clinic-pill {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-family: var(--fh);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 50px;
  margin-bottom: 4px;
}
.phone-head {
  text-align: center;
  margin-bottom: 10px;
}
.phone-head h4 {
  font-size: 0.82rem;
  color: var(--navy);
}
.phone-head p {
  font-size: 0.65rem;
  color: var(--text-muted);
}
.res-label {
  font-family: var(--fh);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 7px;
}
.res-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 8px;
}
.res-item {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--warm);
  border-radius: 7px;
  padding: 6px 8px;
  border: 0.5px solid var(--border);
}
.res-ic {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.res-ic.blue {
  background: #eff6ff;
}
.res-ic.green {
  background: #f0fdf4;
}
.res-ic.orange {
  background: #fff7ed;
}
.res-name {
  font-family: var(--fh);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--navy);
}
.res-tag {
  font-size: 0.57rem;
  color: var(--teal);
  font-weight: 600;
}
.res-more {
  text-align: center;
  font-size: 0.65rem;
  color: var(--teal);
  font-weight: 600;
  padding-top: 6px;
  border-top: 0.5px solid var(--border);
}

/* ── PROBLEM CARDS ── */
.problem-section {
  background: var(--warm);
}
.prob-card {
  background: #fff;
  border-radius: var(--r);
  padding: 26px 22px;
  box-shadow: var(--sh);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.prob-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
}
.prob-icon {
  width: 42px;
  height: 42px;
  background: var(--teal-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.prob-card h3 {
  color: var(--navy);
  margin-bottom: 7px;
}
.prob-card p {
  font-size: 0.88rem;
}

/* ── HOW IT WORKS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 44px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-mid), var(--teal));
  z-index: 0;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 14px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-family: var(--fh);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 4px 16px rgba(26, 155, 170, 0.35);
}
.step h3 {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.step p {
  font-size: 0.82rem;
}

/* ── PLATFORM SECTION ── */
.platform-section {
  background: linear-gradient(
    155deg,
    var(--navy) 0%,
    var(--navy-mid) 100%
  );
}
.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.platform-section h2 {
  color: #fff;
  margin-bottom: 14px;
}
.platform-section p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 22px;
}
.feat-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.feat-check {
  width: 20px;
  height: 20px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.65rem;
  color: #fff;
}
.feat-item p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  margin: 0;
}
.screen {
  background: #0f1929;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.screen-bar {
  background: var(--navy-deep);
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.screen-url {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  padding: 2px 9px;
  font-size: 0.63rem;
  color: rgba(255, 255, 255, 0.35);
  margin-left: 7px;
  font-family: monospace;
}
.screen-body {
  padding: 14px;
}
.screen-tabs {
  display: flex;
  gap: 14px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 8px;
}
.stab {
  font-family: var(--fh);
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.38);
}
.stab.active {
  color: var(--teal-light);
  border-bottom: 2px solid var(--teal);
  padding-bottom: 6px;
  margin-bottom: -9px;
}
.topics-lbl {
  font-family: var(--fh);
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.topic {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  padding: 9px 7px;
}
.topic.hl {
  background: rgba(26, 155, 170, 0.15);
  border-color: var(--teal);
}
.topic-name {
  font-family: var(--fh);
  font-size: 0.67rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.topic-count {
  font-size: 0.6rem;
  color: var(--teal-light);
}

/* ── GET STARTED ── */
.get-started {
  background: var(--teal-pale);
}
.started-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.started-card {
  background: #fff;
  border-radius: var(--r);
  padding: 26px 22px;
  box-shadow: var(--sh);
}
.started-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--fh);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.started-card {
  text-align: center;
}
.started-card h3 {
  color: var(--navy);
  margin-bottom: 7px;
}
.started-card p {
  font-size: 0.88rem;
}
.free-callout {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--r);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.free-callout h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 5px;
}
.free-callout p {
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* ── FAQ ── */
.faq-section {
  background: #fff;
}
.faq-list {
  max-width: 780px;
  margin: 44px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--rs);
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  font-family: var(--fh);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
  background: #fff;
  transition: var(--ease);
  gap: 10px;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-q:hover {
  background: var(--warm);
}
.faq-chev {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
  font-size: 0.68rem;
  color: var(--teal);
}
.faq-item.open .faq-chev {
  transform: rotate(180deg);
  background: var(--teal);
  color: #fff;
}
.faq-a {
  display: none;
  padding: 14px 20px 16px;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-a {
  display: block;
}

/* ── HUBSPOT FORM ── */
.signup-section {
  background: linear-gradient(155deg, var(--navy) 0%, #163050 100%);
  text-align: center;
}
.signup-section h2 {
  color: #fff;
  margin-bottom: 12px;
}
.signup-section > div > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin-bottom: 36px;
}
.hs-wrap {
  max-width: 500px;
  margin: 0 auto;
}
/* Form card wrapper */
#hs-form-clinician .hsfc-Step__Content,
#hs-form-clinician .hs-form-private,
#hs-form-clinician form {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.13) !important;
  border-radius: var(--r) !important;
  padding: 30px !important;
  text-align: left !important;
}
/* Rich-text description */
#hs-form-clinician .hsfc-RichText,
#hs-form-clinician .hsfc-RichText p,
#hs-form-clinician .hs-richtext,
#hs-form-clinician .hs-richtext p {
  color: rgba(255, 255, 255, 0.75) !important;
  font-family: var(--fb) !important;
  font-size: 0.9rem !important;
  margin-bottom: 16px !important;
}
/* Labels */
#hs-form-clinician .hsfc-FieldLabel,
#hs-form-clinician .hsfc-FieldLabel span,
#hs-form-clinician label {
  color: rgba(255, 255, 255, 0.85) !important;
  font-family: var(--fh) !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  margin-bottom: 5px !important;
  display: block !important;
}
/* Required asterisk */
#hs-form-clinician .hsfc-FieldLabel__RequiredIndicator {
  color: var(--teal-light) !important;
}
/* Inputs */
#hs-form-clinician .hsfc-TextInput,
#hs-form-clinician .hs-input {
  background: rgba(255, 255, 255, 0.09) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: var(--rs) !important;
  color: #fff !important;
  font-family: var(--fb) !important;
  font-size: 0.92rem !important;
  padding: 10px 14px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
#hs-form-clinician .hsfc-TextInput::placeholder,
#hs-form-clinician .hs-input::placeholder {
  color: rgba(255, 255, 255, 0.35) !important;
}
#hs-form-clinician .hsfc-TextInput:focus,
#hs-form-clinician .hs-input:focus {
  outline: none !important;
  border-color: var(--teal-light) !important;
}
/* Row spacing */
#hs-form-clinician .hsfc-Row {
  margin-bottom: 14px !important;
}
/* Submit button */
#hs-form-clinician .hsfc-Button,
#hs-form-clinician .hs-button {
  background: var(--teal) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 13px 32px !important;
  font-family: var(--fh) !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  cursor: pointer !important;
  width: 100% !important;
  transition: background 0.2s !important;
}
#hs-form-clinician .hsfc-Button:hover,
#hs-form-clinician .hs-button:hover {
  background: var(--teal-light) !important;
}
/* Error messages */
#hs-form-clinician .hs-error-msgs {
  color: #fca5a5 !important;
  font-size: 0.75rem !important;
}
/* Legal / GDPR */
#hs-form-clinician .legal-consent-container,
#hs-form-clinician .legal-consent-container p,
#hs-form-clinician .legal-consent-container a {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 0.75rem !important;
}

/* ── ACO VALUE PANELS ── */
.aco-panel {
  background: #fff;
  border-radius: var(--r);
  padding: 28px 24px;
  border: 1px solid var(--border);
}
.aco-panel-icon {
  width: 46px;
  height: 46px;
  background: var(--teal-pale);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.aco-panel h3 {
  color: var(--navy);
  margin-bottom: 9px;
}
.aco-panel p {
  font-size: 0.88rem;
  margin-bottom: 14px;
}
.aco-panel ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.aco-panel ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-mid);
}
.aco-panel ul li::before {
  content: "✓";
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.curated {
  background: var(--teal-pale);
  border: 1px solid var(--teal-mid);
  border-radius: var(--r);
  padding: 20px 26px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 20px;
}
.curated h4 {
  color: var(--navy);
  margin-bottom: 5px;
}
.curated p {
  font-size: 0.88rem;
}

/* ── METRICS ── */
.metric-card {
  background: var(--navy);
  border-radius: var(--r);
  padding: 22px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.metric-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
}
.metric-val {
  font-family: var(--fh);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--teal-light);
  margin-bottom: 6px;
}
.metric-lbl {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

/* ── DASHBOARD ── */
.dashboard-section {
  background: var(--warm);
}
.dash-mockup {
  background: #0f1929;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 44px;
}
.dash-header {
  background: var(--navy);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.dash-title {
  font-family: var(--fh);
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
}
.live-pill {
  background: var(--teal);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  font-family: var(--fh);
}
.dash-body {
  padding: 18px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 14px;
}
.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}
.ds {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 9px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.dsv {
  font-family: var(--fh);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--teal-light);
}
.dsl {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}
.dash-chart {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 9px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.chart-lbl {
  font-family: var(--fh);
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}
.bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 54px;
}
.bar {
  flex: 1;
  background: var(--teal);
  border-radius: 3px 3px 0 0;
  transition: opacity 0.2s;
}
.bar:hover {
  opacity: 1 !important;
}
.dash-sidebar {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.side-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 9px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.side-title {
  font-family: var(--fh);
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.side-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.side-row:last-child {
  margin-bottom: 0;
}
.side-name {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.65);
}
.side-pill {
  background: rgba(26, 155, 170, 0.2);
  color: var(--teal-light);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 50px;
  font-family: var(--fh);
}

/* ── ABOUT ── */
.about-section {
  background: var(--warm);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
  margin-top: 44px;
}
.founder-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.founder-card {
  background: #fff;
  border-radius: var(--r);
  padding: 22px 20px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--teal);
}
.fpill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--teal-pale);
  color: #0f6e80;
  font-family: var(--fh);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
}
.founder-card h3 {
  color: var(--navy);
  margin-bottom: 6px;
}
.founder-card p {
  font-size: 0.86rem;
}
.values-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.val-lbl {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.val-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.val-dot {
  width: 34px;
  height: 34px;
  background: var(--navy);
  border-radius: 9px;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}
.val-h {
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--fh);
  color: var(--navy);
  margin-bottom: 3px;
}
.val-p {
  font-size: 0.84rem;
  color: var(--text-mid);
  margin: 0;
}
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fh);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal);
  border: 1.5px solid var(--teal);
  background: transparent;
  padding: 9px 18px;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  margin-top: 20px;
  transition: var(--ease);
}
.contact-btn:hover {
  background: var(--teal);
  color: #fff;
}

/* ── FOOTER ── */
footer {
  background: var(--navy-deep);
  padding: 36px 40px;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 18px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.footer-links a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--teal-light);
}
.footer-copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.2);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-up {
  animation: fadeUp 0.6s ease both;
}
.fade-up-2 {
  animation: fadeUp 0.6s 0.1s ease both;
}
.fade-up-3 {
  animation: fadeUp 0.6s 0.2s ease both;
}

/* ── MOBILE ── */
@media (max-width: 860px) {
  .hero-grid,
  .platform-grid,
  .about-grid,
  .grid2 {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .steps::before {
    display: none;
  }
  .grid3,
  .grid4,
  .started-grid,
  .dash-stats {
    grid-template-columns: 1fr 1fr;
  }
  .dash-body {
    grid-template-columns: 1fr;
  }
  .poster-wrap {
    justify-content: center;
  }
  .nav-top {
    padding: 0 20px;
  }
  .nav-bottom {
    padding: 0 20px;
    overflow-x: auto;
  }
  section {
    padding: 56px 20px;
  }
  .audience-toggle {
    display: none;
  }
  .mobile-toggle {
    display: flex !important;
  }
  .hero-grid > div:last-child {
    display: none;
  }
}
.mobile-toggle {
  display: none;
  gap: 8px;
  justify-content: center;
  padding: 12px 20px;
  background: var(--navy);
}
.mob-btn {
  padding: 9px 18px;
  border-radius: 50px;
  font-family: var(--fh);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--ease);
  white-space: nowrap;
}
.mob-btn:hover:not(.active) {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.mob-btn.active {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 2px 12px rgba(26, 155, 170, 0.4);
}
