/* Rehabilitasyon Yönetimi — marketing design system (2026 upgrade) */
/* marketing-upgrade-20260908 */
/* mkt-logo-balance-20260908 */
/* mkt-desire-polish-20260908 */
/* mkt-visual-strength-20260908 */
:root {
  --mkt-navy-950: #0B1220;
  --mkt-navy-900: #111827;
  --mkt-navy-800: #172554;
  --mkt-blue: #2563EB;
  --mkt-blue-bright: #3B82F6;
  --mkt-blue-soft: rgba(37, 99, 235, 0.08);
  --mkt-blue-ring: rgba(37, 99, 235, 0.16);
  --mkt-teal-soft: rgba(13, 148, 136, 0.07);
  --mkt-mint: #0D9488;
  --mkt-bg: #FFFFFF;
  --mkt-bg-soft: #F7FAFC;
  --mkt-bg-tint: #F0F7FA;
  --mkt-bg-mute: #F1F5F9;
  --mkt-ink: #0F172A;
  --mkt-ink-2: #334155;
  --mkt-muted: #64748B;
  --mkt-line: #E2E8F0;
  --mkt-success: #059669;
  --mkt-radius: 12px;
  --mkt-radius-lg: 16px;
  --mkt-radius-dash: 16px;
  --mkt-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 12px 32px rgba(15, 23, 42, 0.06);
  --mkt-shadow-lg: 0 8px 24px rgba(15, 23, 42, 0.08), 0 32px 64px rgba(15, 23, 42, 0.1);
  --mkt-max: 1240px;
  --mkt-header-h: 68px;
  --mkt-font: "Manrope", "Segoe UI", sans-serif;
  --mkt-display: "Source Serif 4", Georgia, "Times New Roman", serif;
}

.mkt-body {
  background: var(--mkt-bg);
  color: var(--mkt-ink);
  font-family: var(--mkt-font);
  font-size: 17px;
  overflow-x: hidden;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
.mkt-body h1,
.mkt-body h2 {
  font-family: var(--mkt-display);
  letter-spacing: -0.02em;
  color: var(--mkt-ink);
  font-weight: 600;
}
.mkt-body h3,
.mkt-body strong {
  font-family: var(--mkt-font);
  letter-spacing: -0.02em;
  color: var(--mkt-ink);
  font-weight: 650;
}
.mkt-body a { color: inherit; text-decoration: none; }
.mkt-body img:not(.mkt-logo) { max-width: 100%; height: auto; }

.mkt-body .btn {
  min-height: 44px;
  border-radius: 9px;
  padding: 0.65rem 1.2rem;
  font-weight: 600;
  font-size: 0.925rem;
  box-shadow: none;
  transform: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.mkt-body .btn:hover { transform: translateY(-1px); }
.mkt-body .btn--primary {
  background: var(--mkt-blue);
  color: #fff;
  box-shadow: 0 1px 2px rgba(37, 99, 235, 0.22);
}
.mkt-body .btn--primary:hover { background: #1D4ED8; color: #fff; }
.mkt-body .btn--ghost,
.mkt-body .btn--secondary {
  background: #fff;
  border-color: var(--mkt-line);
  color: var(--mkt-ink);
}
.mkt-body .btn--ghost:hover,
.mkt-body .btn--secondary:hover {
  border-color: #CBD5E1;
  background: var(--mkt-bg-soft);
}
.mkt-body .btn--block { width: 100%; }
.mkt-btn { min-width: 9.5rem; }

/* Header */
.mkt-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--mkt-header-h);
  padding: 0 clamp(1rem, 3vw, 2rem);
  background: #fff;
  border-bottom: 1px solid var(--mkt-line);
}
.mkt-header.is-scrolled {
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}
.mkt-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  flex-shrink: 0;
}
.mkt-body img.mkt-logo {
  /* Wide wordmark (~3:1); beat .mkt-body img resets via higher specificity */
  width: auto;
  height: 34px;
  max-width: 180px;
  border-radius: 0;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.mkt-brand__name {
  /* Logo PNG already includes wordmark — hide adjacent text */
  display: none !important;
}
.mkt-brand .brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  flex-shrink: 0;
  background: linear-gradient(145deg, var(--mkt-navy-800), var(--mkt-blue));
}
.mkt-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem 1.5rem;
  flex: 1;
  margin: 0 0.5rem;
}
.mkt-nav a {
  font-size: 0.875rem;
  color: var(--mkt-ink-2);
  font-weight: 500;
  padding: 0.35rem 0;
  white-space: nowrap;
}
.mkt-nav a:hover { color: var(--mkt-ink); }
.mkt-header__end {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  margin-left: auto;
}
.mkt-login {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--mkt-ink-2);
  padding: 0.45rem 0.7rem;
  border-radius: 9px;
}
.mkt-login:hover { color: var(--mkt-ink); background: var(--mkt-bg-soft); }
.mkt-header__cta {
  min-height: 40px !important;
  padding: 0.45rem 0.95rem !important;
  font-size: 0.875rem !important;
}
.mkt-header__demo {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--mkt-muted);
  padding: 0.4rem 0.55rem;
}
.mkt-header__demo:hover { color: var(--mkt-ink); }
.mkt-menu { display: none; position: relative; }
.mkt-menu > summary { list-style: none; }
.mkt-menu > summary::-webkit-details-marker { display: none; }
.mkt-burger {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 5px;
  cursor: pointer;
  border: 1px solid var(--mkt-line);
  border-radius: 9px;
  background: #fff;
}
.mkt-burger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--mkt-ink);
  border-radius: 2px;
}
.mkt-sheet {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: min(300px, 88vw);
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: 14px;
  box-shadow: var(--mkt-shadow-lg);
  padding: 0.55rem;
  display: grid;
  gap: 0.1rem;
}
.mkt-sheet a {
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--mkt-ink);
  font-weight: 500;
}
.mkt-sheet a:hover { background: var(--mkt-bg-soft); }
.mkt-sheet__cta {
  background: var(--mkt-blue) !important;
  color: #fff !important;
  text-align: center;
  font-weight: 600;
  margin-top: 0.35rem;
}

/* Shared type */
.mkt-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--mkt-blue);
  margin: 0 0 0.75rem;
}
.mkt-eyebrow::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2px;
  margin-top: 0.55rem;
  background: var(--mkt-mint);
  border-radius: 2px;
}
.home-hero .mkt-eyebrow::after,
.home-hero__copy .mkt-eyebrow::after {
  margin-left: auto;
  margin-right: auto;
}
.mkt-lead {
  color: var(--mkt-ink-2);
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 40rem;
  margin: 0;
}
.mkt-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.1rem;
  margin-top: 1.5rem;
}
.mkt-cta--center { justify-content: center; }

/* ——— Hero ——— */
.home-hero {
  position: relative;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(37, 99, 235, 0.07), transparent 70%),
    linear-gradient(180deg, #fff 0%, var(--mkt-bg-soft) 100%);
  overflow: hidden;
}
.home-hero__inner {
  max-width: var(--mkt-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 1.5rem);
  text-align: center;
}
.home-hero__copy {
  max-width: 760px;
  margin: 0 auto 2.5rem;
}
.home-hero h1 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.08;
  margin: 0 0 1rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--mkt-navy-950);
}
.home-hero .mkt-lead {
  margin: 0 auto;
  max-width: 34rem;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}
.home-hero .mkt-cta { justify-content: center; margin-top: 1.75rem; }
.home-hero__link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--mkt-ink-2);
  border-bottom: 1px solid transparent;
  padding: 0.25rem 0;
}
.home-hero__link:hover {
  color: var(--mkt-blue);
  border-bottom-color: var(--mkt-blue-ring);
}
.home-hero__micro {
  margin: 1.15rem 0 0;
  font-size: 0.875rem;
  color: var(--mkt-muted);
  font-weight: 500;
}

.home-hero__dash-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(0.75rem, 2vw, 1.5rem);
  position: relative;
}
.home-hero__dash-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28%;
  background: linear-gradient(180deg, transparent, var(--mkt-bg-soft) 85%);
  pointer-events: none;
  z-index: 2;
}

/* Dense dashboard mock */
.home-dash {
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius-dash);
  box-shadow: var(--mkt-shadow-lg);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.home-dash__chrome {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.9rem;
  background: #F8FAFC;
  border-bottom: 1px solid var(--mkt-line);
}
.home-dash__dots {
  display: flex;
  gap: 5px;
}
.home-dash__dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #CBD5E1;
  display: block;
}
.home-dash__dots i:nth-child(1) { background: #F87171; }
.home-dash__dots i:nth-child(2) { background: #FBBF24; }
.home-dash__dots i:nth-child(3) { background: #34D399; }
.home-dash__url {
  flex: 1;
  text-align: center;
  font-size: 0.72rem;
  color: var(--mkt-muted);
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: 6px;
  padding: 0.3rem 0.6rem;
  max-width: 280px;
  margin: 0 auto;
}
.home-dash__body {
  display: grid;
  grid-template-columns: 168px 1fr;
  min-height: 420px;
  background: #F1F5F9;
}
.home-dash__side {
  background: var(--mkt-navy-950);
  color: #94A3B8;
  padding: 1rem 0.7rem;
  font-size: 0.78rem;
}
.home-dash__brand {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #F8FAFC;
  font-weight: 650;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  padding: 0 0.35rem;
}
.home-dash__brand span {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--mkt-blue);
  display: inline-block;
}
.home-dash__side nav {
  display: grid;
  gap: 0.15rem;
}
.home-dash__side nav span {
  padding: 0.45rem 0.55rem;
  border-radius: 7px;
  cursor: default;
}
.home-dash__side nav span.is-active {
  background: rgba(37, 99, 235, 0.22);
  color: #E0E7FF;
  font-weight: 600;
}
.home-dash__main {
  padding: 0.85rem 0.95rem 1rem;
  min-width: 0;
}
.home-dash__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.85rem;
}
.home-dash__top strong {
  display: block;
  font-size: 0.95rem;
  color: var(--mkt-ink);
}
.home-dash__top em {
  font-style: normal;
  font-size: 0.72rem;
  color: var(--mkt-muted);
}
.home-dash__top-actions {
  display: flex;
  gap: 0.4rem;
}
.home-dash__top-actions span {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.35rem 0.6rem;
  border-radius: 7px;
  background: #fff;
  border: 1px solid var(--mkt-line);
  color: var(--mkt-ink-2);
}
.home-dash__top-actions span.is-pri {
  background: var(--mkt-blue);
  border-color: var(--mkt-blue);
  color: #fff;
}
.home-dash__metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.home-dash__metrics article {
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
  border-top: 2px solid rgba(37, 99, 235, 0.35);
}
.home-dash__metrics article:nth-child(2) {
  border-top-color: rgba(13, 148, 136, 0.45);
}
.home-dash__metrics article:nth-child(3) {
  border-top-color: rgba(37, 99, 235, 0.28);
}
.home-dash__metrics article:nth-child(4) {
  border-top-color: rgba(5, 150, 105, 0.4);
}
.home-dash__metrics small {
  display: block;
  font-size: 0.65rem;
  color: var(--mkt-muted);
  font-weight: 500;
}
.home-dash__metrics b {
  display: block;
  font-size: 1.05rem;
  margin: 0.15rem 0;
  color: var(--mkt-navy-950);
  letter-spacing: -0.02em;
}
.home-dash__metrics em {
  font-style: normal;
  font-size: 0.62rem;
  color: #0F766E;
  font-weight: 700;
  background: #CCFBF1;
  display: inline-block;
  padding: 0.12rem 0.4rem;
  border-radius: 999px;
  margin-top: 0.1rem;
}
.home-dash__grid {
  display: grid;
  grid-template-columns: 1.45fr 0.9fr;
  gap: 0.65rem;
  min-width: 0;
}
.home-dash__stack {
  display: grid;
  gap: 0.65rem;
  min-width: 0;
}
.home-dash__panel {
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: 12px;
  padding: 0.65rem 0.7rem;
  min-width: 0;
}
.home-dash__panel-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.home-dash__panel-h strong {
  font-size: 0.78rem;
  color: var(--mkt-ink);
}
.home-dash__panel-h span {
  font-size: 0.65rem;
  color: var(--mkt-muted);
}
.home-dash__panel--table {
  overflow: auto;
}
.home-dash__panel table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.68rem;
}
.home-dash__panel th {
  text-align: left;
  color: var(--mkt-muted);
  font-weight: 600;
  padding: 0.3rem 0.35rem;
  border-bottom: 1px solid var(--mkt-line);
  white-space: nowrap;
}
.home-dash__panel td {
  padding: 0.38rem 0.35rem;
  border-bottom: 1px solid #F1F5F9;
  color: var(--mkt-ink-2);
  white-space: nowrap;
}
.st {
  display: inline-block;
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 650;
  padding: 0.12rem 0.4rem;
  border-radius: 999px;
  background: var(--mkt-bg-mute);
  color: var(--mkt-ink-2);
}
.st--ok { background: #D1FAE5; color: #047857; }
.st--wait { background: #DBEAFE; color: #1D4ED8; }

.home-dash__cal {
  display: grid;
  gap: 0.25rem;
  font-size: 0.62rem;
}
.home-dash__cal-h,
.home-dash__cal-r {
  display: grid;
  grid-template-columns: 22px repeat(5, 1fr);
  gap: 0.2rem;
  align-items: stretch;
}
.home-dash__cal-h span {
  text-align: center;
  color: var(--mkt-muted);
  font-weight: 600;
}
.home-dash__cal-r span {
  color: var(--mkt-muted);
  font-size: 0.58rem;
  align-self: center;
}
.home-dash__cal-r b,
.home-dash__cal-r i {
  display: block;
  min-height: 22px;
  border-radius: 4px;
  font-weight: 650;
  font-style: normal;
  text-align: center;
  line-height: 22px;
  font-size: 0.55rem;
}
.home-dash__cal-r b {
  background: rgba(37, 99, 235, 0.12);
  color: #1E40AF;
}
.home-dash__cal-r i { background: #F8FAFC; border: 1px dashed #E2E8F0; }

.home-dash__feed {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}
.home-dash__feed li {
  font-size: 0.68rem;
  color: var(--mkt-ink-2);
  padding: 0.4rem 0.45rem;
  background: var(--mkt-bg-soft);
  border-radius: 7px;
}
.home-dash__feed b { color: var(--mkt-ink); font-weight: 650; }

/* Trust band */
.home-trust {
  background: var(--mkt-bg-tint);
  border-bottom: 1px solid var(--mkt-line);
  padding: 1.75rem clamp(1rem, 3vw, 1.5rem);
}
.home-trust__inner {
  max-width: var(--mkt-max);
  margin: 0 auto;
  text-align: center;
}
.home-trust__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 1.35rem;
  margin-bottom: 0.75rem;
}
.home-trust__items span {
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--mkt-ink-2);
  letter-spacing: 0.02em;
  position: relative;
  padding-left: 0.85rem;
}
.home-trust__items span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--mkt-mint);
}
.home-trust p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--mkt-muted);
}

/* Product tabs */
.home-product {
  max-width: var(--mkt-max);
  margin: 0 auto;
  padding: clamp(3.5rem, 6vw, 5rem) clamp(1rem, 3vw, 1.5rem);
}
.home-product__head {
  max-width: 640px;
  margin-bottom: 2rem;
}
.home-product h2,
.home-outcomes h2,
.home-cgh h2,
.home-ai h2,
.home-pricing h2,
.home-faq h2,
.home-final h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  line-height: 1.15;
  margin: 0 0 0.85rem;
  max-width: 18ch;
  font-weight: 700;
}
.home-tabs__nav {
  display: flex;
  gap: 0.35rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  margin-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.home-tabs__nav button {
  flex: 0 0 auto;
  border: 1px solid var(--mkt-line);
  background: #fff;
  color: var(--mkt-ink-2);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.65rem 1.05rem;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
}
.home-tabs__nav button[aria-selected="true"] {
  background: var(--mkt-navy-950);
  border-color: var(--mkt-navy-950);
  color: #fff;
}
.home-tabs__stage {
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: 16px;
  box-shadow: var(--mkt-shadow);
  overflow: hidden;
  min-height: 340px;
}
.home-screen__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: var(--mkt-bg-soft);
  border-bottom: 1px solid var(--mkt-line);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--mkt-ink);
}
.home-screen__bar em {
  font-style: normal;
  color: var(--mkt-muted);
  font-weight: 500;
}
.home-screen { padding: 1rem; }
.home-screen[hidden] { display: none !important; }

.home-crm {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.home-crm__col {
  background: var(--mkt-bg-soft);
  border-radius: 12px;
  padding: 0.75rem;
  display: grid;
  gap: 0.5rem;
  align-content: start;
}
.home-crm__col em {
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--mkt-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.home-crm__col article {
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: 10px;
  padding: 0.7rem 0.75rem;
}
.home-crm__col b { display: block; font-size: 0.9rem; }
.home-crm__col small { color: var(--mkt-muted); font-size: 0.78rem; }

.home-week { display: grid; gap: 0.35rem; font-size: 0.78rem; }
.home-week__h,
.home-week__r {
  display: grid;
  grid-template-columns: 52px repeat(5, 1fr);
  gap: 0.35rem;
}
.home-week__h span {
  text-align: center;
  color: var(--mkt-muted);
  font-weight: 650;
  font-size: 0.75rem;
}
.home-week__r span {
  align-self: center;
  color: var(--mkt-muted);
  font-size: 0.72rem;
}
.home-week__r b,
.home-week__r i {
  display: block;
  min-height: 42px;
  border-radius: 8px;
  font-style: normal;
  font-weight: 650;
  font-size: 0.72rem;
  text-align: center;
  line-height: 42px;
}
.home-week__r b {
  background: rgba(37, 99, 235, 0.1);
  color: #1E3A8A;
}
.home-week__r i {
  background: #F8FAFC;
  border: 1px dashed #E2E8F0;
}

.home-student {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1rem;
}
.home-student aside {
  background: var(--mkt-bg-soft);
  border-radius: 12px;
  padding: 1rem;
}
.home-student__avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--mkt-navy-800);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 0.65rem;
}
.home-student aside strong { display: block; font-size: 1rem; }
.home-student aside > small { color: var(--mkt-muted); }
.home-student aside ul {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: var(--mkt-ink-2);
}
.home-student__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}
.home-student__cards article {
  border: 1px solid var(--mkt-line);
  border-radius: 10px;
  padding: 0.7rem;
}
.home-student__cards small { display: block; color: var(--mkt-muted); font-size: 0.72rem; }
.home-student__cards b { font-size: 1.1rem; }
.home-student__notes {
  border: 1px solid var(--mkt-line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
}
.home-student__notes h4 { margin: 0 0 0.5rem; font-size: 0.88rem; }
.home-student__notes p {
  margin: 0 0 0.45rem;
  font-size: 0.88rem;
  color: var(--mkt-ink-2);
}

.home-fin__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}
.home-fin__metrics article {
  border: 1px solid var(--mkt-line);
  border-radius: 10px;
  padding: 0.75rem;
}
.home-fin__metrics small { display: block; color: var(--mkt-muted); font-size: 0.72rem; }
.home-fin__metrics b { font-size: 1.2rem; }
.home-fin__chart {
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  height: 96px;
  margin-bottom: 0.85rem;
  padding: 0.5rem 0.25rem;
}
.home-fin__chart span {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--mkt-blue-bright), var(--mkt-blue));
  border-radius: 6px 6px 2px 2px;
  opacity: 0.85;
}
.home-fin table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.home-fin th,
.home-fin td {
  text-align: left;
  padding: 0.55rem 0.4rem;
  border-bottom: 1px solid var(--mkt-line);
}
.home-fin th { color: var(--mkt-muted); font-weight: 600; font-size: 0.75rem; }

.home-mgmt {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.home-mgmt article {
  border: 1px solid var(--mkt-line);
  border-radius: 12px;
  padding: 1rem;
}
.home-mgmt header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.55rem;
}
.home-mgmt header span { font-weight: 700; color: var(--mkt-blue); }
.home-mgmt .bar {
  height: 8px;
  background: var(--mkt-bg-mute);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.65rem;
}
.home-mgmt .bar i {
  display: block;
  height: 100%;
  background: var(--mkt-blue);
  border-radius: inherit;
}
.home-mgmt p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--mkt-muted);
}

/* Outcomes */
.home-outcomes {
  background: var(--mkt-bg-soft);
  border-top: 1px solid var(--mkt-line);
  border-bottom: 1px solid var(--mkt-line);
  padding: clamp(3.5rem, 6vw, 5rem) clamp(1rem, 3vw, 1.5rem);
}
.home-outcomes__inner {
  max-width: var(--mkt-max);
  margin: 0 auto;
}
.home-outcomes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.home-outcomes__grid article {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.home-outcomes__grid h3 {
  font-size: 1.15rem;
  margin: 0 0 0.55rem;
}
.home-outcomes__grid p {
  margin: 0;
  color: var(--mkt-ink-2);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 28ch;
}

/* CGH thin band */
.home-cgh {
  padding: 2.5rem clamp(1rem, 3vw, 1.5rem);
  background: #fff;
  border-bottom: 1px solid var(--mkt-line);
}
.home-cgh__inner {
  max-width: var(--mkt-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}
.home-cgh h2 { max-width: 22ch; font-size: clamp(1.45rem, 2.4vw, 1.85rem); }
.home-cgh .mkt-lead { font-size: 1rem; }
.home-cgh__flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}
.home-cgh__flow span {
  background: var(--mkt-bg-soft);
  border: 1px solid var(--mkt-line);
  border-radius: 10px;
  padding: 0.65rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mkt-ink);
}
.home-cgh__flow i {
  width: 18px;
  height: 1px;
  background: #CBD5E1;
  display: inline-block;
}

/* AI */
.home-ai {
  background: var(--mkt-navy-950);
  color: #E2E8F0;
  padding: clamp(3.5rem, 6vw, 5rem) clamp(1rem, 3vw, 1.5rem);
}
.home-ai__inner {
  max-width: var(--mkt-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
}
.home-ai .mkt-eyebrow { color: #93C5FD; }
.home-ai h2 { color: #F8FAFC; max-width: 14ch; }
.home-ai .mkt-lead { color: #94A3B8; }
.home-ai__qs {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.home-ai__qs li {
  display: inline-flex;
  width: fit-content;
  font-size: 0.88rem;
  color: #CBD5E1;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  background: rgba(255, 255, 255, 0.03);
}
.home-ai__trust {
  margin: 1.25rem 0 0;
  font-size: 0.88rem;
  color: #64748B;
  font-weight: 500;
}
.home-ai__chat {
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 16px;
  padding: 1.15rem;
  display: grid;
  gap: 0.75rem;
}
.home-ai__msg {
  max-width: 92%;
  padding: 0.8rem 0.95rem;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
}
.home-ai__msg--user {
  margin-left: auto;
  background: var(--mkt-blue);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.home-ai__msg--bot {
  background: #1E293B;
  color: #E2E8F0;
  border-bottom-left-radius: 4px;
}

/* Pricing */
.home-pricing {
  max-width: var(--mkt-max);
  margin: 0 auto;
  padding: clamp(3.5rem, 6vw, 5rem) clamp(1rem, 3vw, 1.5rem);
}
.home-pricing__head { margin-bottom: 2rem; max-width: 36rem; }
.home-pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.home-pricing__empty {
  grid-column: 1 / -1;
  color: var(--mkt-muted);
}
.home-price {
  position: relative;
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: 16px;
  padding: 1.5rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  box-shadow: var(--mkt-shadow);
}
.home-price.is-popular {
  border-color: var(--mkt-blue);
  box-shadow: 0 0 0 1px var(--mkt-blue), var(--mkt-shadow);
}
.home-price__badge {
  position: absolute;
  top: 0.95rem;
  right: 0.95rem;
  background: var(--mkt-blue);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}
.home-price h3 {
  margin: 0;
  font-size: 1.15rem;
}
.home-price__amount {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--mkt-ink);
}
.home-price__amount small {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mkt-muted);
}
.home-price__desc {
  margin: 0;
  font-size: 0.9rem;
  color: var(--mkt-ink-2);
}
.home-price__trial {
  margin: 0;
  font-size: 0.82rem;
  color: var(--mkt-muted);
}
.home-price ul {
  list-style: none;
  margin: 0.35rem 0 0.75rem;
  padding: 0;
  display: grid;
  gap: 0.4rem;
  flex: 1;
}
.home-price li {
  font-size: 0.9rem;
  color: var(--mkt-ink-2);
  padding-left: 1.1rem;
  position: relative;
}
.home-price li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mkt-blue);
}
.home-price .btn { width: 100%; margin-top: auto; }

/* FAQ */
.home-faq {
  background: var(--mkt-bg-soft);
  border-top: 1px solid var(--mkt-line);
  padding: clamp(3.5rem, 6vw, 5rem) clamp(1rem, 3vw, 1.5rem);
}
.home-faq__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.home-faq h2 { margin-left: auto; margin-right: auto; }
.home-faq__list {
  margin-top: 1.75rem;
  text-align: left;
  display: grid;
  gap: 0.55rem;
}
.home-faq__item {
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
}
.home-faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.15rem;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--mkt-ink);
}
.home-faq__item summary::-webkit-details-marker { display: none; }
.home-faq__item p {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  color: var(--mkt-ink-2);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Final CTA */
.home-final {
  padding: clamp(3.5rem, 6vw, 5rem) clamp(1rem, 3vw, 1.5rem);
}
.home-final__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: var(--mkt-navy-950);
  color: #E2E8F0;
  border-radius: 18px;
  padding: clamp(2.5rem, 5vw, 3.5rem) 1.5rem;
}
.home-final h2 {
  color: #F8FAFC;
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}
.home-final p {
  margin: 0.75rem auto 0;
  color: #94A3B8;
  max-width: 28rem;
}
.home-final .home-hero__link { color: #CBD5E1; }
.home-final .home-hero__link:hover { color: #fff; }

/* Footer */
.mkt-footer {
  background: #fff;
  border-top: 1px solid var(--mkt-line);
  padding: 3rem clamp(1rem, 3vw, 1.5rem) 1.5rem;
}
.mkt-footer__grid {
  max-width: var(--mkt-max);
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}
.mkt-footer strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.mkt-footer p {
  margin: 0;
  color: var(--mkt-muted);
  font-size: 0.88rem;
  max-width: 28ch;
  line-height: 1.5;
}
.mkt-footer__col-title {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mkt-muted);
  margin-bottom: 0.75rem;
}
.mkt-footer a {
  display: block;
  font-size: 0.9rem;
  color: var(--mkt-ink-2);
  padding: 0.28rem 0;
}
.mkt-footer a:hover { color: var(--mkt-blue); }
.mkt-footer__bottom {
  max-width: var(--mkt-max);
  margin: 0 auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--mkt-line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: #64748B;
}

/* Forms — demo / trial / login */
.mkt-form-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.35rem 3.5rem;
}
.mkt-form-page h1 {
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  margin: 0 0 0.65rem;
  font-weight: 700;
}
.mkt-form-card {
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: 16px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  box-shadow: var(--mkt-shadow);
}
.mkt-form-section {
  margin-bottom: 1.5rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--mkt-line);
}
.mkt-form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0.5rem;
  padding-bottom: 0;
}
.mkt-form-section h2 {
  font-size: 0.95rem;
  margin: 0 0 1rem;
  color: var(--mkt-ink);
  max-width: none;
}
.mkt-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
}
.mkt-form-grid .field--full { grid-column: 1 / -1; }
.mkt-body .field {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--mkt-ink-2);
}
.mkt-body .field input,
.mkt-body .field textarea,
.mkt-body .field select {
  min-height: 44px;
  border: 1px solid var(--mkt-line);
  border-radius: 9px;
  padding: 0.55rem 0.75rem;
  font: inherit;
  color: var(--mkt-ink);
  background: #fff;
  width: 100%;
  box-sizing: border-box;
}
.mkt-body .field textarea { min-height: 110px; resize: vertical; }
.mkt-body .field input:focus,
.mkt-body .field textarea:focus {
  outline: none;
  border-color: var(--mkt-blue);
  box-shadow: 0 0 0 3px var(--mkt-blue-soft);
}
.mkt-body .form-actions { margin-top: 1.15rem; }
.mkt-body .alert {
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin: 1rem 0;
  font-size: 0.9rem;
}
.mkt-body .alert--error {
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
}
.mkt-body .alert--success {
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
}
.hp-field {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}
.mkt-legal-body {
  background: #fff;
  border-radius: 12px;
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--mkt-line);
  line-height: 1.65;
}
.mkt-legal-disclaimer {
  font-size: 0.82rem;
  color: var(--mkt-muted);
  margin-bottom: 0.75rem;
}
.mkt-section {
  max-width: var(--mkt-max);
  margin: 0 auto;
  padding: 3rem 1.35rem;
}

/* Login */
.mkt-login-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--mkt-header-h) - 1px);
  max-width: none;
}
.mkt-login-visual {
  background: var(--mkt-navy-950);
  color: #E2E8F0;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}
.mkt-login-visual h2 {
  color: #F8FAFC;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0;
  max-width: 14ch;
}
.mkt-login-visual p {
  margin: 0;
  color: #94A3B8;
  max-width: 36ch;
  font-size: 1rem;
}
.mkt-login-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  background: var(--mkt-bg-soft);
}
.mkt-login-card {
  width: min(400px, 100%);
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: 16px;
  padding: 1.75rem 1.6rem;
  box-shadow: var(--mkt-shadow);
}
.mkt-login-card h1 {
  font-size: 1.45rem;
  margin: 0 0 0.35rem;
}
.mkt-login-card .sub {
  color: var(--mkt-muted);
  font-size: 0.9rem;
  margin: 0 0 1.25rem;
}
.mkt-login-card .auth-form {
  display: grid;
  gap: 0.9rem;
}
.mkt-login-card .checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--mkt-ink-2);
}
.mkt-login-links {
  margin-top: 1.15rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--mkt-muted);
}
.mkt-login-links a {
  color: var(--mkt-blue);
  font-weight: 600;
}

/* Minimal login visual mock pieces used by login.php */
.mkt-only-desktop { display: block; }
.mkt-only-mobile { display: none; }
.pv-browser {
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 12px;
  overflow: hidden;
}
.pv-browser__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.55rem 0.75rem;
  background: #F1F5F9;
  border-bottom: 1px solid #E2E8F0;
  font-size: 0.7rem;
  color: #64748B;
}
.pv-browser__bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #CBD5E1;
  display: inline-block;
}
.pv-main { padding: 0.75rem; }
.pv-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}
.pv-stats article {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 0.55rem;
}
.pv-stats small { display: block; font-size: 0.65rem; color: #64748B; }
.pv-stats b { font-size: 1rem; color: #0F172A; }

/* Motion: scroll reveal (activated via .is-inview in JS) */
.mkt-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.mkt-reveal.is-inview {
  opacity: 1;
  transform: none;
}
.mkt-reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.mkt-reveal.is-inview .mkt-reveal-stagger > * {
  opacity: 1;
  transform: none;
}
.mkt-reveal.is-inview .mkt-reveal-stagger > *:nth-child(1) { transition-delay: 0.04s; }
.mkt-reveal.is-inview .mkt-reveal-stagger > *:nth-child(2) { transition-delay: 0.10s; }
.mkt-reveal.is-inview .mkt-reveal-stagger > *:nth-child(3) { transition-delay: 0.16s; }
.mkt-reveal.is-inview .mkt-reveal-stagger > *:nth-child(4) { transition-delay: 0.22s; }
.mkt-reveal.is-inview .mkt-reveal-stagger > *:nth-child(5) { transition-delay: 0.28s; }
.mkt-reveal.is-inview .mkt-reveal-stagger > *:nth-child(6) { transition-delay: 0.34s; }

.home-hero.mkt-reveal { transform: translateY(14px); }
@keyframes mktHeroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.home-hero__float {
  animation: mktHeroFloat 5.5s ease-in-out infinite;
}

.home-problem__card,
.home-pillar,
.home-price {
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}
.home-problem__card:hover,
.home-pillar:hover,
.home-price:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}
.home-price.is-popular:hover {
  box-shadow: 0 18px 44px rgba(61, 90, 254, 0.22);
}
.mkt-body .btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease !important;
}
.mkt-body .btn:hover {
  transform: translateY(-1px);
}
.mkt-body .btn--primary:hover {
  box-shadow: 0 10px 24px rgba(61, 90, 254, 0.28);
}

@media (prefers-reduced-motion: reduce) {
  .mkt-reveal,
  .mkt-reveal-stagger > *,
  .home-hero__float {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
  .home-problem__card:hover,
  .home-pillar:hover,
  .home-price:hover,
  .mkt-body .btn:hover {
    transform: none;
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .home-dash__metrics { grid-template-columns: repeat(3, 1fr); }
  .home-dash__metrics article:nth-child(n+4) { display: none; }
}

@media (max-width: 1024px) {
  .home-dash__body { grid-template-columns: 1fr; }
  .home-dash__side { display: none; }
  .home-dash__grid { grid-template-columns: 1fr; }
  .home-cgh__inner,
  .home-ai__inner { grid-template-columns: 1fr; }
  .home-outcomes__grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .home-outcomes__grid p { max-width: none; }
  .mkt-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .mkt-nav,
  .mkt-header__demo { display: none; }
  .mkt-menu { display: block; }
  .mkt-burger { display: grid; }
  .home-crm,
  .home-mgmt,
  .home-student,
  .home-student__cards,
  .home-fin__metrics,
  .mkt-login-page {
    grid-template-columns: 1fr;
  }
  .mkt-login-visual { display: none; }
  .mkt-login-panel { min-height: calc(100vh - var(--mkt-header-h)); }
  .mkt-form-grid { grid-template-columns: 1fr; }
  .home-week__h,
  .home-week__r {
    grid-template-columns: 44px repeat(5, minmax(56px, 1fr));
  }
  .home-week { overflow-x: auto; }
  .home-product h2,
  .home-outcomes h2,
  .home-pricing h2,
  .home-faq h2,
  .home-ai h2 { max-width: none; }
}

@media (max-width: 768px) {
  .home-hero h1 { font-size: clamp(2rem, 8vw, 2.75rem); }
  .home-dash__metrics { grid-template-columns: repeat(2, 1fr); }
  .home-dash__top { flex-direction: column; }
  .home-dash__panel--table { font-size: 0.9em; }
  .home-trust__items { gap: 0.45rem 0.9rem; }
}

@media (max-width: 560px) {
  .mkt-header { padding: 0 0.9rem; min-height: 64px; }
  :root { --mkt-header-h: 64px; }
  .mkt-body img.mkt-logo { height: 30px; max-width: min(160px, 42vw); }
  .mkt-brand .brand-mark { width: 30px; height: 30px; }
  .mkt-header__cta { display: none; }
  .mkt-footer__grid { grid-template-columns: 1fr; gap: 1.35rem; }
  .home-price__amount { font-size: 1.65rem; }
  .home-final__inner { border-radius: 14px; }
  .home-cgh__flow i { display: none; }
}

@media (max-width: 430px) {
  .home-dash__metrics { grid-template-columns: 1fr 1fr; }
  .home-hero__micro { font-size: 0.8rem; }
}


/* === premium-home-2026 === */
.mkt-header {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(1.15) blur(10px);
  -webkit-backdrop-filter: saturate(1.15) blur(10px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}
.mkt-header.is-scrolled {
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.04);
}
.home-hero {
  background:
    radial-gradient(ellipse 85% 55% at 50% -8%, rgba(37, 99, 235, 0.11), transparent 58%),
    radial-gradient(ellipse 55% 40% at 92% 18%, rgba(13, 148, 136, 0.07), transparent 55%),
    linear-gradient(180deg, #F5F9FC 0%, #FFFFFF 42%, var(--mkt-bg-soft) 100%);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 0;
}
.home-hero h1 { font-size: clamp(48px, 5vw, 68px); letter-spacing: -0.038em; }
.home-hero__dash-wrap { max-width: 1380px; }
.home-hero__dash-wrap::after {
  background: linear-gradient(180deg, transparent, var(--mkt-bg-tint) 88%);
}
.home-dash {
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 18px 48px rgba(15, 23, 42, 0.08);
  border-color: rgba(37, 99, 235, 0.14);
}
.home-dash__metrics { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.home-dash__body { min-height: 460px; background: #EEF4F8; }
.home-product, .home-outcomes, .home-ai, .home-pricing, .home-faq, .home-final {
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}
.home-product { background: #fff; }
.home-outcomes { background: var(--mkt-bg-tint); }
.home-cgh { background: #fff; }
.home-pricing {
  background: var(--mkt-bg-soft);
  max-width: none;
  padding-left: clamp(1rem, 3vw, 1.5rem);
  padding-right: clamp(1rem, 3vw, 1.5rem);
}
.home-pricing__head, .home-pricing__grid {
  max-width: var(--mkt-max);
  margin-left: auto;
  margin-right: auto;
}
.home-faq { background: var(--mkt-bg-tint); }
.home-final__inner {
  background: linear-gradient(160deg, var(--mkt-navy-950) 0%, #1e3a8a 100%);
}
.home-outcomes__num {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--mkt-blue);
  margin-bottom: 0.65rem;
}
.home-tabs__nav button { border-radius: 10px; transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease; }
.home-tabs__stage { min-height: 380px; }
.home-screen { animation: homeTabIn 0.2s ease; }
@keyframes homeTabIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) { .home-screen { animation: none; } }
.home-price { border-radius: 14px; }
@media (max-width: 900px) {
  .home-dash__metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-dash__side { display: none; }
  .home-dash__body { grid-template-columns: 1fr; }
  .home-dash__grid { grid-template-columns: 1fr; }
  .home-product, .home-outcomes, .home-ai, .home-pricing, .home-faq, .home-final {
    padding-top: clamp(3.5rem, 10vw, 5rem);
    padding-bottom: clamp(3.5rem, 10vw, 5rem);
  }
}
@media (max-width: 560px) {
  .home-hero h1 { font-size: clamp(2rem, 9vw, 2.75rem); }
}

/* === SEO landing pages === */
.mkt-landing-hero {
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 3vw, 1.5rem) clamp(2rem, 4vw, 3rem);
  background: #fff;
}
.mkt-landing-hero__inner,
.mkt-landing-section__inner,
.mkt-landing-cta__inner,
.home-solutions__inner {
  max-width: var(--mkt-max, 1120px);
  margin: 0 auto;
}
.mkt-landing-hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  letter-spacing: -0.03em;
  margin: 0.75rem 0 1rem;
  line-height: 1.15;
}
.mkt-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  font-size: 0.875rem;
  color: var(--mkt-muted, #64748b);
}
.mkt-breadcrumb a { color: var(--mkt-blue, #2563eb); text-decoration: none; }
.mkt-landing-section {
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1rem, 3vw, 1.5rem);
  background: #fff;
}
.mkt-landing-section--soft { background: var(--mkt-bg-soft, #f8fafc); }
.mkt-landing-section h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  margin: 0 0 1rem;
}
.mkt-landing-section p { color: var(--mkt-text-soft, #475569); line-height: 1.65; max-width: 68ch; }
.mkt-landing-benefits {
  display: grid;
  gap: 0.65rem 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}
.mkt-landing-benefits li {
  padding-left: 1.35rem;
  position: relative;
  line-height: 1.5;
}
.mkt-landing-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--mkt-blue, #2563eb);
}
.mkt-landing-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 1.25rem;
}
.mkt-landing-grid--compact { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.mkt-landing-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.1rem 1.15rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 12px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.mkt-landing-card:hover {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}
.mkt-landing-card span { font-size: 0.875rem; color: var(--mkt-blue, #2563eb); }
.mkt-landing-card--sm { font-size: 0.95rem; font-weight: 500; }
.mkt-landing-cta {
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1rem, 3vw, 1.5rem);
  background: var(--mkt-bg-soft, #f8fafc);
}
.mkt-landing-cta__inner {
  text-align: center;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 16px;
  background: linear-gradient(160deg, var(--mkt-navy-950, #0f172a) 0%, #1e3a8a 100%);
  color: #fff;
}
.mkt-landing-cta h2 { margin: 0 0 0.75rem; font-size: clamp(1.5rem, 3vw, 2rem); }
.mkt-landing-cta p { margin: 0 auto 1.5rem; max-width: 52ch; opacity: 0.92; }
.home-solutions {
  padding: clamp(3.5rem, 7vw, 5rem) clamp(1rem, 3vw, 1.5rem);
  background: var(--mkt-bg-soft, #f8fafc);
}
.home-solutions h2 { margin: 0.5rem 0 0.75rem; font-size: clamp(1.5rem, 3vw, 2rem); }
.mkt-landing-faq .home-faq__list { max-width: 720px; }
/* === marketing-seo-overhaul-2026 === */
.mkt-dd { position: relative; }
.mkt-dd__btn {
  appearance: none; border: 0; background: transparent; cursor: pointer;
  font: inherit; font-size: 0.875rem; font-weight: 500; color: var(--mkt-ink-2);
  padding: 0.35rem 0; display: inline-flex; align-items: center; gap: 0.25rem;
}
.mkt-dd__btn::after { content: ""; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid currentColor; opacity: 0.55; }
.mkt-dd__btn:hover, .mkt-dd.is-open .mkt-dd__btn { color: var(--mkt-ink); }
.mkt-dd__panel {
  display: none; position: absolute; top: calc(100% + 0.65rem); left: 50%; transform: translateX(-50%);
  min-width: 240px; max-width: 320px; padding: 0.5rem; background: #fff; border: 1px solid var(--mkt-line);
  border-radius: 12px; box-shadow: var(--mkt-shadow-lg); z-index: 60;
}
.mkt-dd.is-open .mkt-dd__panel { display: grid; gap: 0.1rem; }
.mkt-dd__panel a {
  display: block; padding: 0.55rem 0.7rem; border-radius: 8px; font-size: 0.875rem; color: var(--mkt-ink-2); white-space: normal;
}
.mkt-dd__panel a:hover { background: var(--mkt-bg-soft); color: var(--mkt-ink); }
.mkt-sheet__label {
  margin: 0.85rem 0 0.25rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--mkt-muted);
}
.mkt-inline-links { margin-top: 1rem; font-size: 0.9rem; color: var(--mkt-muted); }
.mkt-inline-links a { color: var(--mkt-blue); font-weight: 600; }
.mkt-glossary-list { display: grid; gap: 0.65rem; }
.mkt-glossary-list a {
  display: grid; gap: 0.2rem; padding: 1rem 1.1rem; border: 1px solid var(--mkt-line);
  border-radius: 12px; background: #fff;
}
.mkt-glossary-list a:hover { border-color: rgba(37,99,235,.35); }
.mkt-glossary-list span { color: var(--mkt-muted); font-size: 0.92rem; }
.mkt-prose { max-width: 68ch; }
.mkt-prose p { color: var(--mkt-ink-2); line-height: 1.7; }
.mkt-landing-card em { font-style: normal; font-size: 0.8rem; color: var(--mkt-muted); }

.home-ba, .home-modules, .home-personas, .home-day, .home-security, .home-compare, .home-demo-cta {
  padding: clamp(3.25rem, 6vw, 5rem) clamp(1rem, 3vw, 1.5rem);
}
.home-ba__inner, .home-modules__head, .home-personas__inner, .home-day__inner,
.home-security__inner, .home-compare__inner, .home-demo-cta__inner {
  max-width: var(--mkt-max); margin: 0 auto;
}
.home-ba__grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; margin-top: 1.5rem; }
.home-ba__card { padding: 1.35rem 1.4rem; border-radius: 14px; border: 1px solid var(--mkt-line); background: #fff; }
.home-ba__card--before { background: #FFF7F7; border-color: #FECACA; }
.home-ba__card--after { background: #F0FDFA; border-color: #99F6E4; }
.home-ba__card h3 { margin: 0 0 0.75rem; }
.home-ba__card ul { margin: 0; padding-left: 1.1rem; color: var(--mkt-ink-2); }
.home-modules__grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 0.85rem; margin-top: 1.5rem; }
.home-mod {
  display: grid; gap: 0.55rem; padding: 1.1rem; border-radius: 14px; border: 1px solid var(--mkt-line);
  background: #fff; min-height: 100%;
}
.home-mod:hover { border-color: rgba(37,99,235,.35); box-shadow: var(--mkt-shadow); }
.home-mod h3 { margin: 0; font-size: 1.05rem; }
.home-mod p { margin: 0; font-size: 0.88rem; color: var(--mkt-ink-2); display: grid; gap: 0.15rem; }
.home-mod span { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--mkt-muted); }
.home-personas__grid { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 0.75rem; margin-top: 1.35rem; }
.home-personas__grid article { padding: 1rem; border-radius: 12px; background: var(--mkt-bg-soft); border: 1px solid var(--mkt-line); }
.home-personas__grid h3 { margin: 0 0 0.4rem; font-size: 0.98rem; }
.home-personas__grid p { margin: 0; font-size: 0.88rem; color: var(--mkt-ink-2); }
.home-day__timeline { margin: 1.25rem 0 0; padding: 0; list-style: none; display: grid; gap: 0.75rem; max-width: 720px; }
.home-day__timeline li {
  padding: 0.9rem 1rem 0.9rem 1.1rem; border-left: 3px solid var(--mkt-blue); background: #fff;
  border-radius: 0 12px 12px 0; border: 1px solid var(--mkt-line); border-left-width: 3px; border-left-color: var(--mkt-blue);
}
.home-day__timeline strong { color: var(--mkt-blue); margin-right: 0.35rem; }
.home-security {
  background: linear-gradient(180deg, #F7FAFC 0%, #E8F4F2 100%);
}
.home-security__list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.1rem 0 0; padding: 0; list-style: none; }
.home-security__list li {
  padding: 0.45rem 0.75rem; border-radius: 999px; background: #fff; border: 1px solid var(--mkt-line);
  font-size: 0.85rem; font-weight: 500;
}
.home-compare__table-wrap, .home-price-cmp__wrap { overflow-x: auto; margin-top: 1.25rem; border: 1px solid var(--mkt-line); border-radius: 14px; background: #fff; }
.home-compare table, .home-price-cmp table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.home-compare th, .home-compare td, .home-price-cmp th, .home-price-cmp td {
  padding: 0.75rem 0.9rem; border-bottom: 1px solid var(--mkt-line); text-align: left; vertical-align: top;
}
.home-compare thead th, .home-price-cmp thead th { background: var(--mkt-bg-soft); font-size: 0.82rem; }
.home-price-cmp { max-width: var(--mkt-max); margin: 2rem auto 0; }
.home-price-cmp h3 { margin: 0 0 0.75rem; font-size: 1.15rem; }
.home-demo-cta__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.25rem;
  padding: 1.75rem; border-radius: 16px; background: linear-gradient(135deg, var(--mkt-navy-950), #1e40af 55%, var(--mkt-mint));
  color: #fff;
}
.home-demo-cta .mkt-eyebrow { color: rgba(255,255,255,.75); }
.home-demo-cta h2 { margin: 0.35rem 0 0.5rem; color: #fff; }
.home-demo-cta .mkt-lead { color: rgba(255,255,255,.9); margin: 0; max-width: 42ch; }
.home-demo-cta .btn--ghost { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.35); color: #fff; }
.home-demo-cta .btn--primary { background: #fff; color: var(--mkt-navy-950); }

@media (max-width: 1100px) {
  .home-modules__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .home-personas__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .mkt-nav { display: none; }
  .mkt-menu { display: block; }
  .mkt-burger { display: grid; }
}
@media (max-width: 720px) {
  .home-ba__grid, .home-modules__grid, .home-personas__grid { grid-template-columns: 1fr; }
  .home-demo-cta__inner { display: grid; }
}

/* === 20260908 upgrade: brand, modules list, roles, sticky CTA, landings === */
.home-hero__brand {
  margin: 0 0 0.85rem;
  font-family: var(--mkt-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--mkt-navy-950);
}
.home-modules__list {
  max-width: var(--mkt-max);
  margin: 1.75rem auto 0;
  padding: 0 clamp(1rem, 3vw, 1.5rem);
  display: grid;
  gap: 0;
  border: 1px solid var(--mkt-line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.home-mod-row {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 1.2fr 1.1fr;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--mkt-line);
  text-decoration: none;
  color: inherit;
  align-items: start;
}
.home-mod-row:last-child { border-bottom: 0; }
.home-mod-row:hover { background: var(--mkt-bg-soft); }
.home-mod-row--head {
  background: var(--mkt-bg-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--mkt-muted);
}
.home-mod-row h3 { margin: 0; font-size: 1rem; font-family: var(--mkt-font); }
.home-mod-row p { margin: 0; font-size: 0.92rem; color: var(--mkt-ink-2); line-height: 1.45; }
.home-personas__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.home-personas__intro .mkt-lead { margin-top: 0.75rem; }
.home-roles {
  margin: 0;
  display: grid;
  gap: 0;
}
.home-roles > div {
  display: grid;
  grid-template-columns: minmax(8rem, 0.45fr) 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--mkt-line);
}
.home-roles > div:first-child { border-top: 1px solid var(--mkt-line); }
.home-roles dt {
  margin: 0;
  font-weight: 650;
  font-size: 0.98rem;
  color: var(--mkt-ink);
}
.home-roles dd {
  margin: 0;
  color: var(--mkt-ink-2);
  font-size: 0.95rem;
  line-height: 1.5;
}
.home-explore {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--mkt-line);
}
.home-explore li { border-bottom: 1px solid var(--mkt-line); }
.home-explore a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0.15rem;
  text-decoration: none;
  color: inherit;
}
.home-explore a:hover strong { color: var(--mkt-blue); }
.home-explore span { color: var(--mkt-muted); font-size: 0.9rem; }
.home-explore__more { margin: 1.25rem 0 0; }
.home-explore__more a { color: var(--mkt-blue); font-weight: 600; text-decoration: none; }
.home-price__for {
  margin: 0.35rem 0 0.5rem;
  color: var(--mkt-ink-2);
  font-size: 0.92rem;
  line-height: 1.45;
}
.mkt-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: flex;
  gap: 0.55rem;
  padding: 0.7rem 0.9rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.96);
  border-top: 1px solid var(--mkt-line);
  box-shadow: 0 -8px 24px rgba(15,23,42,0.06);
}
.mkt-sticky-cta .btn { flex: 1; }
.mkt-sticky-cta__demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--mkt-ink-2);
  border: 1px solid var(--mkt-line);
  border-radius: 9px;
  padding: 0 0.85rem;
  text-decoration: none;
}
body.has-mkt-sticky { padding-bottom: 4.5rem; }
.mkt-form-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  justify-content: center;
  color: var(--mkt-muted);
  font-size: 0.9rem;
}
.mkt-form-trust a { color: var(--mkt-blue); font-weight: 600; text-decoration: none; }
.mkt-form-trust li { position: relative; padding-left: 0.9rem; }
.mkt-form-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--mkt-mint);
}
.field em { font-style: normal; color: var(--mkt-muted); font-weight: 500; font-size: 0.85em; }
.mkt-landing-hero__grid {
  max-width: var(--mkt-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: 0 clamp(1rem, 3vw, 1.5rem);
}
.mkt-landing-hero { background: linear-gradient(180deg, #fff 0%, var(--mkt-bg-soft) 100%); }
.mkt-landing-hero__copy { max-width: 40rem; }
.mkt-landing-proof {
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: 14px;
  box-shadow: var(--mkt-shadow);
  overflow: hidden;
}
.mkt-landing-proof__chrome {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.85rem;
  background: var(--mkt-bg-soft);
  border-bottom: 1px solid var(--mkt-line);
}
.mkt-landing-proof__chrome span {
  width: 8px; height: 8px; border-radius: 50%; background: #CBD5E1; display: block;
}
.mkt-landing-proof__chrome span:nth-child(1) { background: #F87171; }
.mkt-landing-proof__chrome span:nth-child(2) { background: #FBBF24; }
.mkt-landing-proof__chrome span:nth-child(3) { background: #34D399; }
.mkt-landing-proof__chrome em {
  margin-left: auto;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--mkt-muted);
}
.mkt-landing-proof__body { padding: 1.15rem 1.2rem 1.25rem; }
.mkt-landing-proof__body strong { display: block; margin-bottom: 0.65rem; }
.mkt-landing-proof__body ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.45rem; }
.mkt-landing-proof__body li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.55rem 0.7rem; border-radius: 8px; background: var(--mkt-bg-soft); font-size: 0.92rem;
}
.mkt-landing-proof__body p { margin: 0.85rem 0 0; font-size: 0.78rem; color: var(--mkt-muted); }
.mkt-landing-section__inner--narrow { max-width: 720px; }
.mkt-landing-midcta {
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1rem, 3vw, 1.5rem);
}
.mkt-landing-midcta__inner {
  max-width: var(--mkt-max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--mkt-line);
  border-radius: 14px;
  background: #fff;
}
.mkt-landing-midcta h2 { margin: 0 0 0.35rem; font-size: 1.35rem; }
.mkt-landing-midcta p { margin: 0; color: var(--mkt-ink-2); }
.mkt-legal-disclaimer {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  background: #FFF7ED;
  color: #9A3412;
  font-size: 0.88rem;
}
.mkt-legal-body { max-width: 68ch; line-height: 1.7; color: var(--mkt-ink-2); }
.mkt-inline-links a { color: var(--mkt-blue); font-weight: 500; text-decoration: none; }
.mkt-inline-links a:hover { text-decoration: underline; }

@media (max-width: 960px) {
  .home-mod-row--head { display: none; }
  .home-mod-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding: 1.1rem 1rem;
  }
  .home-mod-row p {
    display: grid;
    gap: 0.15rem;
  }
  .home-mod-row p::before {
    content: attr(data-label);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--mkt-muted);
  }
  .home-personas__inner { grid-template-columns: 1fr; }
  .home-roles > div { grid-template-columns: 1fr; gap: 0.25rem; }
  .mkt-landing-hero__grid { grid-template-columns: 1fr; }
  .mkt-landing-proof { order: -1; max-width: 28rem; }
}
@media (max-width: 720px) {
  .home-modules__grid, .home-personas__grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .mkt-sticky-cta { transition: none; }
}

/* === mkt-logo-balance-20260908: balanced logo + compact header === */
@media (min-width: 961px) {
  .mkt-body img.mkt-logo { height: 36px; max-width: 200px; }
  .mkt-brand .brand-mark { width: 36px; height: 36px; }
  :root { --mkt-header-h: 72px; }
  .mkt-header { min-height: 72px; }
}
.home-ba { background: var(--mkt-bg-soft); }
.home-modules { background: #fff; }
.home-personas { background: var(--mkt-bg-tint); }
.home-day { background: #fff; }
.home-security {
  background: linear-gradient(180deg, #F7FAFC 0%, #E8F4F2 100%);
}
.home-compare { background: #fff; }
.home-solutions { background: var(--mkt-bg-tint); }
.home-ai { background: var(--mkt-navy-950); }
.mkt-sticky-cta {
  background: rgba(248, 250, 252, 0.97);
  border-top: 1px solid rgba(37, 99, 235, 0.12);
}
.mkt-sticky-cta .btn--primary {
  box-shadow: 0 1px 2px rgba(37, 99, 235, 0.28);
}
.mkt-sticky-cta__demo {
  background: #fff;
  color: var(--mkt-ink);
  border-color: #CBD5E1;
}
.home-hero__brand {
  color: var(--mkt-navy-800);
}
.home-trust p {
  color: var(--mkt-ink-2);
}
.home-dash__cal-r b {
  background: rgba(37, 99, 235, 0.16);
  color: #1E3A8A;
}
.mkt-landing-section--soft {
  background: var(--mkt-bg-tint, #F0F7FA);
}
.mkt-landing-hero {
  background:
    radial-gradient(ellipse 70% 50% at 20% 0%, rgba(37, 99, 235, 0.08), transparent 60%),
    linear-gradient(180deg, #F5F9FC 0%, var(--mkt-bg-soft) 100%);
}

/* === mkt-desire-polish-20260908: product-led desire, dense UI, split hero === */
.home-hero--split {
  padding: clamp(2.25rem, 5vw, 3.75rem) 0 clamp(2.5rem, 5vw, 4rem);
  background:
    radial-gradient(ellipse 55% 60% at 88% 18%, rgba(37, 99, 235, 0.12), transparent 58%),
    radial-gradient(ellipse 40% 45% at 8% 70%, rgba(13, 148, 136, 0.08), transparent 55%),
    linear-gradient(165deg, #F3F7FB 0%, #FFFFFF 48%, #EEF6F8 100%);
  overflow: hidden;
}
.home-hero__inner--split {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 1.75rem);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.18fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  text-align: left;
}
.home-hero--split .home-hero__copy {
  max-width: 34rem;
  margin: 0;
}
.home-hero--split .mkt-eyebrow::after {
  margin-left: 0;
  margin-right: 0;
}
.home-hero--split h1 {
  font-size: clamp(2.15rem, 3.8vw, 3.15rem);
  line-height: 1.1;
  max-width: 14ch;
  margin: 0 0 1rem;
}
.home-hero--split .mkt-lead {
  margin: 0;
  max-width: 34rem;
  font-size: clamp(1.02rem, 1.4vw, 1.125rem);
  color: var(--mkt-ink-2);
}
.home-hero--split .mkt-cta {
  justify-content: flex-start;
  margin-top: 1.5rem;
  gap: 0.75rem;
}
.mkt-btn--hero {
  min-width: 11rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  font-size: 0.975rem;
  box-shadow: 0 1px 2px rgba(37, 99, 235, 0.28), 0 8px 20px rgba(37, 99, 235, 0.18);
}
.home-hero__trust {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.1rem;
}
.home-hero__trust li {
  position: relative;
  padding-left: 0.95rem;
  font-size: 0.84rem;
  font-weight: 550;
  color: var(--mkt-ink-2);
}
.home-hero__trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--mkt-mint);
}
.home-hero--split .home-hero__dash-wrap {
  margin: 0;
  padding: 0;
  max-width: none;
}
.home-hero--split .home-hero__dash-wrap::after {
  display: none;
}
.home-dash--hero {
  transform: none;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.05),
    0 22px 56px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.18);
}
.home-dash__live {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 650;
  color: #047857;
  background: #D1FAE5;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  white-space: nowrap;
}
.home-dash--hero .home-dash__body {
  min-height: 420px;
  background: #E8F0F6;
}
.home-dash--hero .home-dash__metrics article.m--blue { border-top-color: #2563EB; background: linear-gradient(180deg, #EFF6FF, #fff); }
.home-dash--hero .home-dash__metrics article.m--teal { border-top-color: #0D9488; background: linear-gradient(180deg, #F0FDFA, #fff); }
.home-dash--hero .home-dash__metrics article.m--amber { border-top-color: #D97706; background: linear-gradient(180deg, #FFFBEB, #fff); }
.home-dash--hero .home-dash__metrics article.m--green { border-top-color: #059669; background: linear-gradient(180deg, #ECFDF5, #fff); }
.home-dash--hero .home-dash__metrics article.m--amber em {
  color: #B45309;
  background: #FEF3C7;
}
.st--warn { background: #FEF3C7; color: #B45309; }
.home-dash__pipe {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  margin-bottom: 0.55rem;
}
.home-dash__pipe > div {
  background: var(--mkt-bg-soft);
  border-radius: 8px;
  padding: 0.4rem 0.45rem;
  text-align: center;
}
.home-dash__pipe em {
  display: block;
  font-style: normal;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mkt-muted);
}
.home-dash__pipe b {
  font-size: 0.95rem;
  color: var(--mkt-navy-950);
}
.home-dash__feed li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.home-dash__feed li small {
  margin-left: auto;
  color: var(--mkt-muted);
  font-size: 0.62rem;
}
.home-dash__feed .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.home-dash__feed .d--new { background: #2563EB; }
.home-dash__feed .d--call { background: #D97706; }
.home-dash__feed .d--ok { background: #059669; }
.home-dash__cap {
  display: grid;
  grid-template-columns: 4.2rem 1fr 2.2rem;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.68rem;
  margin-top: 0.4rem;
}
.home-dash__cap span { color: var(--mkt-ink-2); font-weight: 600; }
.home-dash__cap b { text-align: right; color: var(--mkt-navy-950); }
.home-dash__cap .bar,
.home-mgmt .bar {
  height: 7px;
  background: #E2E8F0;
  border-radius: 999px;
  overflow: hidden;
}
.home-dash__cap .bar i,
.home-mgmt .bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--mkt-blue), var(--mkt-mint));
  border-radius: 999px;
}

/* Product showcase — denser live-software look */
.home-product {
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(37, 99, 235, 0.05), transparent 70%),
    #fff;
}
.home-product__head .mkt-lead {
  margin-top: 0.65rem;
  max-width: 40rem;
}
.home-tabs__stage {
  min-height: 420px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 18px 44px rgba(15, 23, 42, 0.08);
  border-color: rgba(37, 99, 235, 0.12);
  background: linear-gradient(180deg, #F8FBFD 0%, #fff 28%);
}
.home-screen__bar {
  background: linear-gradient(180deg, #F1F5F9, #F8FAFC);
}
.home-screen__meta {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.home-screen__meta em.is-soft {
  background: #DBEAFE;
  color: #1D4ED8;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 650;
}
.home-crm--rich {
  gap: 0.85rem;
  align-items: start;
}
.home-crm__col--new { background: #EFF6FF; border: 1px solid #BFDBFE; }
.home-crm__col--talk { background: #FFFBEB; border: 1px solid #FDE68A; }
.home-crm__col--win { background: #ECFDF5; border: 1px solid #A7F3D0; }
.home-crm__col header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.15rem;
}
.home-crm__col header em {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.home-crm__col header b {
  font-size: 0.78rem;
  color: var(--mkt-ink);
  background: rgba(255,255,255,0.85);
  border-radius: 999px;
  padding: 0.1rem 0.45rem;
}
.home-crm__card-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.25rem;
}
.home-crm__col article {
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.home-crm__col article footer {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.45rem;
  font-size: 0.72rem;
  color: var(--mkt-muted);
}
.tag {
  display: inline-block;
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.12rem 0.4rem;
  border-radius: 999px;
  white-space: nowrap;
}
.tag--blue { background: #DBEAFE; color: #1D4ED8; }
.tag--teal { background: #CCFBF1; color: #0F766E; }
.tag--navy { background: #E0E7FF; color: #3730A3; }
.tag--amber { background: #FEF3C7; color: #B45309; }
.tag--green { background: #D1FAE5; color: #047857; }
.av {
  display: inline-grid;
  place-items: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: var(--mkt-navy-800);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  flex-shrink: 0;
}

.home-week--rich { gap: 0.4rem; }
.home-week--rich .home-week__r b,
.home-week--rich .home-week__r i {
  min-height: 48px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.25rem;
  font-size: 0.68rem;
}
.home-week--rich .s--dil { background: rgba(37, 99, 235, 0.16); color: #1E3A8A; }
.home-week--rich .s--db { background: rgba(13, 148, 136, 0.16); color: #115E59; }
.home-week--rich .s--oe { background: rgba(99, 102, 241, 0.16); color: #3730A3; }
.home-week--rich .s--ergo { background: rgba(217, 119, 6, 0.16); color: #92400E; }
.home-week__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.85rem;
  margin-top: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--mkt-line);
}
.home-week__legend span {
  font-size: 0.72rem;
  font-weight: 650;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

.home-student--rich {
  grid-template-columns: 200px 1fr;
}
.home-student--rich aside ul {
  margin-top: 0.9rem;
}
.home-student--rich aside li {
  display: grid;
  gap: 0.05rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--mkt-line);
}
.home-student--rich aside li em {
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--mkt-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.home-student__cards article:nth-child(1) { border-top: 2px solid #2563EB; }
.home-student__cards article:nth-child(2) { border-top: 2px solid #0D9488; }
.home-student__cards article:nth-child(3) { border-top: 2px solid #D97706; }

.home-fin--rich .home-fin__metrics article.m--green {
  background: linear-gradient(180deg, #ECFDF5, #fff);
  border-color: #A7F3D0;
}
.home-fin--rich .home-fin__metrics article.m--amber {
  background: linear-gradient(180deg, #FFFBEB, #fff);
  border-color: #FDE68A;
}
.home-fin--rich .home-fin__metrics article.m--blue {
  background: linear-gradient(180deg, #EFF6FF, #fff);
  border-color: #BFDBFE;
}
.home-fin__row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  align-items: stretch;
}
.home-fin__chart {
  background: var(--mkt-bg-soft);
  border-radius: 12px;
  padding: 0.85rem 0.75rem 0.55rem;
  height: 140px;
  margin-bottom: 0;
}
.home-fin__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.home-fin__table th,
.home-fin__table td {
  text-align: left;
  padding: 0.55rem 0.45rem;
  border-bottom: 1px solid var(--mkt-line);
}
.home-fin__table th { color: var(--mkt-muted); font-size: 0.72rem; }
.home-fin__note {
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  color: var(--mkt-muted);
}

.home-mgmt--rich {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}
.home-mgmt--rich > .home-mgmt__caps,
.home-mgmt--rich > .home-mgmt__staff {
  min-width: 0;
}
.home-mgmt__caps {
  display: grid;
  gap: 0.75rem;
}
.home-mgmt__caps article {
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: 12px;
  padding: 0.9rem 1rem;
}
.home-mgmt__caps header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.55rem;
}
.home-mgmt__caps header span {
  font-weight: 700;
  color: var(--mkt-blue);
}
.home-mgmt__caps small {
  display: block;
  margin-top: 0.45rem;
  color: var(--mkt-muted);
  font-size: 0.78rem;
}
.home-mgmt__staff {
  background: var(--mkt-bg-soft);
  border: 1px solid var(--mkt-line);
  border-radius: 12px;
  padding: 0.9rem 1rem;
}
.home-mgmt__staff h4 {
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
}
.home-mgmt__staff ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.home-mgmt__staff li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--mkt-line);
  font-size: 0.85rem;
}
.home-mgmt__staff li em {
  margin-left: auto;
  font-style: normal;
  color: var(--mkt-muted);
  font-size: 0.78rem;
  font-weight: 600;
}

/* Soft section rhythm (not sterile white) */
.home-trust {
  background: linear-gradient(180deg, #E8F4F2 0%, #F0F7FA 100%);
}
.home-modules {
  background: linear-gradient(180deg, #fff 0%, #F7FAFC 100%);
}
.home-ba {
  background:
    radial-gradient(ellipse 40% 50% at 0% 50%, rgba(248, 113, 113, 0.06), transparent 60%),
    radial-gradient(ellipse 40% 50% at 100% 50%, rgba(45, 212, 191, 0.08), transparent 60%),
    var(--mkt-bg-soft);
}
.home-day {
  background: linear-gradient(180deg, #F7FAFC 0%, #fff 100%);
}
.home-pricing {
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(37, 99, 235, 0.06), transparent 65%),
    var(--mkt-bg-soft);
}
.home-price.is-popular {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 12px 36px rgba(37, 99, 235, 0.12);
}
.home-price .btn--primary {
  box-shadow: 0 1px 2px rgba(37, 99, 235, 0.25), 0 6px 16px rgba(37, 99, 235, 0.14);
}

@media (max-width: 1100px) {
  .home-hero__inner--split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .home-hero--split h1 { max-width: none; }
  .home-dash--hero {
    transform: none;
    max-width: 52rem;
    margin: 0 auto;
  }
  .home-hero--split .home-hero__copy { max-width: 40rem; }
}
@media (max-width: 900px) {
  .home-crm--rich { grid-template-columns: 1fr; }
  .home-fin__row,
  .home-mgmt--rich,
  .home-student--rich { grid-template-columns: 1fr; }
  .home-week--rich .home-week__r b,
  .home-week--rich .home-week__r i {
    min-height: 40px;
    font-size: 0.62rem;
  }
  .home-dash--hero .home-dash__pipe { display: none; }
  .home-dash--hero .home-dash__panel--cap { display: none; }
}
@media (max-width: 640px) {
  .home-hero--split {
    padding: 1.75rem 0 1.5rem;
  }
  .home-hero--split h1 {
    font-size: clamp(1.85rem, 8.5vw, 2.35rem);
  }
  .home-hero--split .mkt-cta {
    display: grid;
    width: 100%;
  }
  .home-hero--split .mkt-cta .btn { width: 100%; }
  .home-hero__trust { gap: 0.35rem 0.85rem; }
  .home-dash--hero .home-dash__metrics { grid-template-columns: 1fr 1fr; }
  .home-dash--hero .home-dash__grid { display: none; }
  .home-dash--hero .home-dash__body { min-height: 0; }
  .home-dash--hero .home-dash__main { padding-bottom: 0.85rem; }
  .home-tabs__stage { min-height: 0; }
  .home-screen { padding: 0.85rem; }
  .home-week--rich {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .home-week--rich .home-week__h,
  .home-week--rich .home-week__r {
    min-width: 520px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-dash--hero { transform: none; }
}

/* === mkt-visual-strength-20260908: icons, typography punch, shells === */
.mkt-body h1,
.mkt-body h2 {
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--mkt-navy-950);
}
.mkt-body h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  line-height: 1.18;
}
.mkt-body .btn--primary {
  font-weight: 650;
  letter-spacing: -0.01em;
}
.mkt-eyebrow {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: 750;
}
.mkt-eyebrow--icon {
  flex-direction: row;
  align-items: center;
  gap: 0.4rem;
}
.mkt-eyebrow--icon::after { display: none; }
.mkt-eyebrow--icon + .mkt-eyebrow--icon,
.mkt-eyebrow.mkt-eyebrow--icon {
  margin-bottom: 0.85rem;
}
.mkt-eyebrow--icon::before {
  content: "";
  display: none;
}
.mkt-eyebrow.mkt-eyebrow--icon::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2px;
  margin-top: 0.55rem;
  margin-left: 0;
  background: var(--mkt-mint);
  border-radius: 2px;
  position: absolute;
  left: 0;
  bottom: -0.55rem;
}
.mkt-eyebrow.mkt-eyebrow--icon {
  position: relative;
  padding-bottom: 0.55rem;
  margin-bottom: 1rem;
}

/* Icon system */
.mkt-ico {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--mkt-blue);
  display: block;
}
.mkt-ico--sm { width: 1rem; height: 1rem; }
.mkt-ico--xs { width: 0.85rem; height: 0.85rem; }
.mkt-ico--trust { width: 1.1rem; height: 1.1rem; color: var(--mkt-navy-800); }
.mkt-ico-wrap {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9px;
  background: var(--mkt-blue-soft);
  color: var(--mkt-blue);
  flex-shrink: 0;
}
.mkt-ico-wrap .mkt-ico { width: 1.05rem; height: 1.05rem; }
.mkt-ico-wrap--sm {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 7px;
}
.mkt-ico-wrap--sm .mkt-ico { width: 0.85rem; height: 0.85rem; }
.mkt-ico-wrap--ok { background: rgba(13, 148, 136, 0.12); color: #0F766E; }
.mkt-ico-wrap--ok .mkt-ico { color: #0F766E; }
.mkt-ico-wrap--warn { background: rgba(220, 38, 38, 0.08); color: #B91C1C; }
.mkt-ico-wrap--warn .mkt-ico { color: #B91C1C; }

/* Hero trust with icons */
.home-hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding-left: 0;
}
.home-hero__trust li::before { display: none; }
.home-hero__trust .mkt-ico { color: var(--mkt-mint); }

/* Trust band chips */
.home-trust__items {
  gap: 0.55rem 0.75rem;
}
.home-trust__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.7rem 0.4rem 0.5rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.14);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  font-size: 0.8rem;
  font-weight: 650;
  color: var(--mkt-ink);
  letter-spacing: 0;
  padding-left: 0.5rem !important;
}
.home-trust__chip::before { display: none !important; }
.home-trust__chip em {
  font-style: normal;
}

/* Before/after headings */
.home-ba__card h3 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--mkt-font);
  font-weight: 700;
  font-size: 1.05rem;
}

/* Module rows with icons */
.home-mod-row h3 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
}
.home-mod-row:hover .mkt-ico-wrap {
  background: rgba(37, 99, 235, 0.14);
}

/* Personas */
.home-roles dt {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

/* Day timeline with icons */
.home-day__timeline li {
  display: grid;
  grid-template-columns: 2.35rem 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.95rem 1rem;
  border: 1px solid var(--mkt-line);
  border-radius: 12px;
  background: #fff;
  border-left: 3px solid var(--mkt-blue);
}
.home-day__ico {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  background: var(--mkt-blue-soft);
}
.home-day__ico .mkt-ico { color: var(--mkt-blue); }
.home-day__timeline li strong {
  display: inline-block;
  margin-right: 0.35rem;
  font-weight: 750;
}

/* CGH flow */
.home-cgh__flow span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--mkt-line);
  font-weight: 650;
  font-size: 0.82rem;
}
.home-cgh__flow .mkt-ico { color: var(--mkt-mint); }

/* Security icons */
.home-security__list--icons {
  gap: 0.65rem;
}
.home-security__list--icons li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.8rem 0.55rem 0.55rem;
  background: #fff;
  border: 1px solid rgba(13, 148, 136, 0.2);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--mkt-ink);
}
.home-security__list--icons .mkt-ico-wrap {
  background: rgba(13, 148, 136, 0.1);
}
.home-security__list--icons .mkt-ico { color: #0F766E; }

/* Explore with icons */
.home-explore a {
  display: grid;
  grid-template-columns: 2rem 1fr auto;
  align-items: center;
  gap: 0.75rem;
}
.home-explore a strong { grid-column: 2; }
.home-explore a > span:last-child { grid-column: 3; }

/* FAQ with icons */
.home-faq__item summary {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 650;
  font-size: 1rem;
  color: var(--mkt-navy-950);
}
.home-faq__item[open] summary {
  color: var(--mkt-blue);
}

/* Footer icons */
.mkt-footer__brand {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.mkt-footer__trust {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.85rem;
}
.mkt-footer__trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #94A3B8;
}
.mkt-footer__trust .mkt-ico { color: #64748B; }
.mkt-footer__col-title {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.mkt-footer__col-title .mkt-ico { color: #64748B; }

/* Landing proof richer */
.mkt-landing-proof {
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
}
.mkt-landing-proof__body--rich { padding: 1rem 1.1rem 1.15rem; }
.mkt-landing-proof__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.85rem;
}
.mkt-landing-proof__head em {
  font-style: normal;
  font-size: 0.72rem;
  color: var(--mkt-muted);
}
.mkt-landing-proof__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}
.mkt-landing-proof__metrics article {
  border: 1px solid var(--mkt-line);
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
  background: #fff;
  border-top: 2px solid var(--mkt-blue);
}
.mkt-landing-proof__metrics article.m--teal { border-top-color: #0D9488; background: linear-gradient(180deg, #F0FDFA, #fff); }
.mkt-landing-proof__metrics article.m--amber { border-top-color: #D97706; background: linear-gradient(180deg, #FFFBEB, #fff); }
.mkt-landing-proof__metrics article.m--green { border-top-color: #059669; background: linear-gradient(180deg, #ECFDF5, #fff); }
.mkt-landing-proof__metrics article.m--blue { border-top-color: #2563EB; background: linear-gradient(180deg, #EFF6FF, #fff); }
.mkt-landing-proof__metrics small {
  display: block;
  font-size: 0.65rem;
  color: var(--mkt-muted);
  font-weight: 600;
}
.mkt-landing-proof__metrics b {
  display: block;
  font-size: 1.15rem;
  margin-top: 0.15rem;
  color: var(--mkt-navy-950);
  letter-spacing: -0.02em;
}
.mkt-landing-proof__feed {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}
.mkt-landing-proof__feed li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  background: var(--mkt-bg-soft);
  font-size: 0.82rem;
  justify-content: flex-start;
}
.mkt-landing-proof__feed small {
  margin-left: auto;
  color: var(--mkt-muted);
  font-size: 0.68rem;
}
.mkt-landing-proof__feed .dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}
.mkt-landing-benefits--icons {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.75rem;
}
.mkt-landing-benefits--icons li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--mkt-line);
  font-size: 0.95rem;
  color: var(--mkt-ink-2);
  line-height: 1.45;
}
.mkt-landing-benefits--icons li::before { display: none; }
.mkt-landing-midcta__inner {
  background:
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(37, 99, 235, 0.06), transparent 60%),
    #fff;
  border-color: rgba(37, 99, 235, 0.18);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
}

/* Form shells (demo / trial) */
.mkt-form-page--shell {
  max-width: 1100px;
  padding-top: 2rem;
  padding-bottom: 3.5rem;
}
.mkt-form-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.15fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
}
.mkt-form-aside {
  position: sticky;
  top: calc(var(--mkt-header-h) + 1rem);
  padding: 1.5rem 1.35rem;
  border-radius: 16px;
  background:
    radial-gradient(ellipse 70% 50% at 20% 0%, rgba(37, 99, 235, 0.12), transparent 55%),
    linear-gradient(165deg, #0B1220 0%, #172554 100%);
  color: #E2E8F0;
}
.mkt-form-aside .mkt-eyebrow { color: #93C5FD; }
.mkt-form-aside .mkt-eyebrow::after { background: #2DD4BF; }
.mkt-form-aside h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  color: #F8FAFC;
  font-family: var(--mkt-display);
  font-weight: 700;
}
.mkt-form-aside > p {
  margin: 0 0 1.15rem;
  color: #94A3B8;
  font-size: 0.95rem;
  line-height: 1.55;
}
.mkt-form-aside__points {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.mkt-form-aside__points li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #CBD5E1;
}
.mkt-form-aside__points .mkt-ico { color: #5EEAD4; }
.mkt-form-aside__mock {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  color: var(--mkt-ink);
}
.mkt-form-aside__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  padding: 0.85rem;
}
.mkt-form-aside__metrics article {
  background: var(--mkt-bg-soft);
  border-radius: 8px;
  padding: 0.5rem 0.55rem;
  border-top: 2px solid var(--mkt-blue);
}
.mkt-form-aside__metrics article:nth-child(2) { border-top-color: #0D9488; }
.mkt-form-aside__metrics article:nth-child(3) { border-top-color: #D97706; }
.mkt-form-aside__metrics article:nth-child(4) { border-top-color: #059669; }
.mkt-form-aside__metrics small {
  display: block;
  font-size: 0.62rem;
  color: var(--mkt-muted);
  font-weight: 600;
}
.mkt-form-aside__metrics b {
  display: block;
  font-size: 1rem;
  margin-top: 0.1rem;
  color: var(--mkt-navy-950);
}
.mkt-form-main .mkt-eyebrow {
  flex-direction: row;
  align-items: center;
  gap: 0.4rem;
}
.mkt-form-main .mkt-eyebrow::after {
  position: absolute;
  left: 0;
  bottom: -0.45rem;
}
.mkt-form-main .mkt-eyebrow {
  position: relative;
  padding-bottom: 0.5rem;
}
.mkt-form-trust {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
}
.mkt-form-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 550;
  color: var(--mkt-ink-2);
  position: relative;
  padding-left: 0 !important;
}
.mkt-form-trust li::before { display: none !important; content: none !important; }
.mkt-form-trust .mkt-ico { color: var(--mkt-mint); }
.mkt-form-trust a { color: var(--mkt-blue); font-weight: 650; }
.mkt-form-section h2 {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
}
.mkt-form-card {
  border-color: rgba(37, 99, 235, 0.14);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}
.mkt-form-foot {
  margin-top: 1.25rem;
  text-align: center;
  color: var(--mkt-muted);
  font-size: 0.9rem;
}
.mkt-form-foot a {
  color: var(--mkt-blue);
  font-weight: 600;
}

/* Login visual upgrade */
.mkt-login-visual {
  background:
    radial-gradient(ellipse 60% 50% at 30% 20%, rgba(37, 99, 235, 0.35), transparent 55%),
    linear-gradient(165deg, #0B1220 0%, #172554 70%, #0F766E 140%);
  padding: 2.5rem 2rem;
}
.mkt-login-visual .mkt-eyebrow {
  flex-direction: row;
  align-items: center;
  gap: 0.4rem;
  color: #93C5FD;
}
.mkt-login-visual .mkt-eyebrow::after { background: #2DD4BF; }
.mkt-login-visual__points {
  list-style: none;
  margin: 1.25rem 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.mkt-login-visual__points li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #CBD5E1;
  font-size: 0.9rem;
  font-weight: 600;
}
.mkt-login-visual__points .mkt-ico { color: #5EEAD4; }
.mkt-login-visual__mock {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  max-width: 420px;
  color: var(--mkt-ink);
}
.mkt-login-visual__mock .mkt-form-aside__metrics {
  grid-template-columns: 1fr 1fr;
}
.mkt-login-card .mkt-eyebrow {
  flex-direction: row;
  align-items: center;
  gap: 0.4rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.mkt-login-card .mkt-eyebrow::after {
  position: absolute;
  left: 0;
  bottom: -0.4rem;
}
.mkt-login-card h1 {
  font-weight: 750;
  letter-spacing: -0.03em;
}

/* Resource pages */
.mkt-resource-hero {
  text-align: left;
}
.mkt-landing-card--icon {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}
.mkt-landing-card--icon .mkt-ico-wrap { margin-bottom: 0.15rem; }
.mkt-glossary-list a {
  display: grid;
  grid-template-columns: 1.75rem 1fr;
  gap: 0.15rem 0.65rem;
  align-items: start;
  padding: 0.95rem 1rem;
  border: 1px solid var(--mkt-line);
  border-radius: 12px;
  background: #fff;
  text-decoration: none;
  color: inherit;
}
.mkt-glossary-list a .mkt-ico-wrap { grid-row: 1 / span 2; margin-top: 0.15rem; }
.mkt-glossary-list a strong { grid-column: 2; }
.mkt-glossary-list a > span:last-child { grid-column: 2; }

@media (max-width: 900px) {
  .mkt-form-shell { grid-template-columns: 1fr; }
  .mkt-form-aside { position: static; }
  .home-explore a {
    grid-template-columns: 2rem 1fr;
  }
  .home-explore a > span:last-child {
    grid-column: 2;
    justify-self: start;
  }
}
@media (max-width: 640px) {
  .home-trust__chip { font-size: 0.75rem; padding: 0.35rem 0.55rem 0.35rem 0.4rem; }
  .mkt-landing-benefits--icons { grid-template-columns: 1fr; }
  .home-day__timeline li { padding: 0.8rem; }
}

/* homepage-rebuild-20260914 */
.home-hero--center {
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(37, 99, 235, 0.08), transparent 55%),
    linear-gradient(180deg, #F8FBFF 0%, #fff 70%);
}
.home-hero__inner--center {
  max-width: 46rem;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  text-align: center;
}
.home-hero__copy--center h1 {
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}
.home-hero__copy--center .mkt-lead {
  max-width: 38ch;
  margin-left: auto;
  margin-right: auto;
}
.home-hero__trust--center {
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.mkt-cta--center {
  justify-content: center;
}

.home-problem {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: var(--mkt-bg-soft);
}
.home-problem__inner {
  max-width: var(--mkt-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}
.home-problem h2 {
  max-width: 22ch;
  margin: 0 0 1.5rem;
  font-size: clamp(1.55rem, 2.6vw, 2rem);
}
.home-problem__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.home-problem__card {
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius-lg);
  padding: 1.25rem 1.3rem;
}
.home-problem__card h3 {
  margin: 0.75rem 0 0.4rem;
  font-size: 1.05rem;
}
.home-problem__card p {
  margin: 0;
  color: var(--mkt-ink-2);
  font-size: 0.95rem;
  line-height: 1.5;
}

.home-pillars {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  background: #fff;
}
.home-pillars__inner {
  max-width: var(--mkt-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}
.home-pillars h2 {
  max-width: 18ch;
  margin: 0 0 0.65rem;
  font-size: clamp(1.55rem, 2.6vw, 2rem);
}
.home-pillars .mkt-lead {
  max-width: 42ch;
  margin-bottom: 1.75rem;
}
.home-pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.home-pillar {
  display: block;
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius-lg);
  background: var(--mkt-bg-soft);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.home-pillar:hover {
  border-color: #BFDBFE;
  background: #fff;
  box-shadow: var(--mkt-shadow);
}
.home-pillar h3 {
  margin: 0.7rem 0 0.4rem;
  font-size: 1.1rem;
}
.home-pillar p {
  margin: 0;
  color: var(--mkt-ink-2);
  font-size: 0.92rem;
  line-height: 1.5;
}

.home-cgh--band {
  background: linear-gradient(135deg, #0B1220 0%, #172554 55%, #1e3a5f 100%);
  color: #E2E8F0;
}
.home-cgh--band h2,
.home-cgh--band .mkt-eyebrow,
.home-cgh--band .mkt-lead {
  color: #F8FAFC;
}
.home-cgh--band .mkt-lead { color: #CBD5E1; }
.home-cgh--band .home-hero__link { color: #93C5FD; }
.home-cgh--band .home-hero__link:hover { color: #fff; }
.home-cgh--band .home-cgh__flow span {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #F1F5F9;
}
.home-cgh--band .home-cgh__flow i {
  background: rgba(148, 163, 184, 0.45);
}

.home-look {
  padding: clamp(2.75rem, 5vw, 4.5rem) 0;
  background: var(--mkt-bg-tint);
}
.home-look__inner {
  max-width: var(--mkt-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}
.home-look h2 {
  max-width: 14ch;
  margin: 0 0 0.65rem;
  font-size: clamp(1.55rem, 2.6vw, 2rem);
}
.home-look .mkt-lead { margin-bottom: 1rem; }
.home-look__bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}
.home-look__bullets li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--mkt-ink-2);
  font-size: 0.95rem;
}
.home-look__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--mkt-mint);
}
.home-dash--focus {
  border-radius: var(--mkt-radius-dash);
  overflow: hidden;
  box-shadow: var(--mkt-shadow-lg);
  border: 1px solid var(--mkt-line);
  background: #fff;
}
.home-dash__body--focus {
  display: block;
}
.home-dash__body--focus .home-dash__side { display: none; }
.home-dash__focus-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 0 1rem 1rem;
}
.home-look__sessions {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.home-look__sessions li {
  display: grid;
  grid-template-columns: 3.2rem 1fr auto;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.82rem;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  background: var(--mkt-bg-soft);
}
.home-look__sessions li span { color: var(--mkt-muted); font-variant-numeric: tabular-nums; }
.home-look__sessions li b { font-weight: 600; color: var(--mkt-ink); }

.home-final__ghost {
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  color: #F8FAFC !important;
}
.home-final__ghost:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
  color: #fff !important;
}

@media (max-width: 980px) {
  .home-problem__grid,
  .home-pillars__grid {
    grid-template-columns: 1fr 1fr;
  }
  .home-look__inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .home-problem__grid,
  .home-pillars__grid,
  .home-dash__focus-row {
    grid-template-columns: 1fr;
  }
  .home-hero__trust--center {
    gap: 0.45rem;
  }
}

/* homepage-color-20260914 — soft section tints, hero visual, calm teal/indigo */
:root {
  --mkt-tint-teal: #Eef7f6;
  --mkt-tint-indigo: #EEF2FF;
  --mkt-tint-cream: #FBF7F0;
  --mkt-tint-mint: #F0FDF8;
  --mkt-chip-teal-bg: rgba(13, 148, 136, 0.12);
  --mkt-chip-teal-fg: #0F766E;
  --mkt-chip-indigo-bg: rgba(79, 70, 229, 0.1);
  --mkt-chip-indigo-fg: #4338CA;
  --mkt-card-border-teal: rgba(13, 148, 136, 0.22);
  --mkt-card-border-indigo: rgba(79, 70, 229, 0.18);
  --mkt-card-shadow-soft: 0 1px 2px rgba(15, 23, 42, 0.04), 0 10px 28px rgba(15, 23, 42, 0.06);
}

.home-section--tint-teal { background: var(--mkt-tint-teal) !important; }
.home-section--tint-indigo { background: var(--mkt-tint-indigo) !important; }
.home-section--tint-cream { background: var(--mkt-tint-cream) !important; }
.home-section--tint-mint { background: var(--mkt-tint-mint) !important; }

.home-hero--with-visual {
  background:
    radial-gradient(ellipse 70% 55% at 70% 10%, rgba(37, 99, 235, 0.1), transparent 55%),
    radial-gradient(ellipse 45% 40% at 12% 85%, rgba(13, 148, 136, 0.1), transparent 50%),
    linear-gradient(165deg, #F0F7FA 0%, #F8FBFF 42%, #EEF6F4 100%) !important;
}
.home-hero__inner--with-visual {
  max-width: var(--mkt-max) !important;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
  text-align: left;
}
.home-hero__inner--with-visual .home-hero__copy--center {
  text-align: left;
  max-width: 34rem;
}
.home-hero__inner--with-visual .home-hero__copy--center h1,
.home-hero__inner--with-visual .home-hero__copy--center .mkt-lead {
  margin-left: 0;
  margin-right: 0;
}
.home-hero__inner--with-visual .mkt-cta--center,
.home-hero__inner--with-visual .home-hero__trust--center {
  justify-content: flex-start;
}
.home-hero__visual {
  margin: 0;
  border-radius: var(--mkt-radius-lg);
  overflow: hidden;
  box-shadow: var(--mkt-card-shadow-soft), 0 0 0 1px rgba(37, 99, 235, 0.1);
  background: #fff;
}
.home-hero__img,
.home-benefits__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.mkt-eyebrow--chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: var(--mkt-chip-teal-bg);
  color: var(--mkt-chip-teal-fg);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
}
.mkt-eyebrow--chip::after { display: none !important; }
.home-section--tint-indigo .mkt-eyebrow--chip,
.home-look .mkt-eyebrow--chip {
  background: var(--mkt-chip-indigo-bg);
  color: var(--mkt-chip-indigo-fg);
}
.home-cgh--band .mkt-eyebrow--chip {
  background: rgba(45, 212, 191, 0.16);
  color: #99F6E4;
}

.home-problem__inner--with-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: center;
}
.home-problem__visual {
  border-radius: var(--mkt-radius-lg);
  overflow: hidden;
  box-shadow: var(--mkt-card-shadow-soft);
  border: 1px solid var(--mkt-card-border-teal);
  background: #fff;
}

.home-problem__card,
.home-pillar,
.home-price {
  box-shadow: var(--mkt-card-shadow-soft);
}
.home-problem__card {
  border-color: var(--mkt-card-border-teal) !important;
  background: #fff;
}
.home-pillar {
  border-color: var(--mkt-card-border-indigo) !important;
  background: rgba(255, 255, 255, 0.85) !important;
}
.home-pillar:hover {
  border-color: rgba(79, 70, 229, 0.35) !important;
  background: #fff !important;
}
.home-price {
  border: 1px solid rgba(13, 148, 136, 0.18);
  background: #fff;
}
.home-price.is-popular {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 1px 2px rgba(37, 99, 235, 0.08), 0 16px 36px rgba(37, 99, 235, 0.12);
}
.home-faq__item {
  border: 1px solid rgba(13, 148, 136, 0.14);
  background: #fff;
  border-radius: var(--mkt-radius);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}
.home-security__list--icons li .mkt-ico-wrap {
  background: var(--mkt-chip-teal-bg);
}

@media (max-width: 900px) {
  .home-hero__inner--with-visual,
  .home-problem__inner--with-visual {
    grid-template-columns: 1fr;
  }
  .home-hero__inner--with-visual {
    text-align: center;
  }
  .home-hero__inner--with-visual .home-hero__copy--center {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto;
  }
  .home-hero__inner--with-visual .home-hero__copy--center h1,
  .home-hero__inner--with-visual .home-hero__copy--center .mkt-lead {
    margin-left: auto;
    margin-right: auto;
  }
  .home-hero__inner--with-visual .mkt-cta--center,
  .home-hero__inner--with-visual .home-hero__trust--center {
    justify-content: center;
  }
  .home-hero__visual,
  .home-problem__visual {
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
  }
  .home-problem__visual {
    order: -1;
  }
}

@media (max-width: 640px) {
  .home-hero__img,
  .home-benefits__img {
    max-width: 100%;
  }
}


/* === cgh-logo-band-20260914 === */
.home-cgh--band .home-cgh__brand {
  margin-bottom: 1rem;
}
.home-cgh__logo {
  display: block;
  height: 48px;
  width: auto;
  max-width: min(220px, 70vw);
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  padding: 0.55rem 0.85rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}
@media (max-width: 640px) {
  .home-cgh__logo { height: 40px; }
}


/* === footer-ugi-20260914 === */
.mkt-footer {
  background: linear-gradient(145deg, #0f766e 0%, #115e59 42%, #1e3a8a 100%);
  border-top: none;
  color: #e2e8f0;
  padding: 3rem clamp(1rem, 3vw, 1.5rem) 1.35rem;
}
.mkt-footer strong,
.mkt-footer__brand {
  color: #fff;
}
.mkt-footer p {
  color: rgba(226, 232, 240, 0.88);
}
.mkt-footer__col-title {
  color: rgba(204, 251, 241, 0.9);
}
.mkt-footer a {
  color: rgba(226, 232, 240, 0.92);
}
.mkt-footer a:hover {
  color: #fff;
}
.mkt-footer__trust li {
  color: rgba(226, 232, 240, 0.85);
}
.mkt-footer__trust .mkt-ico,
.mkt-footer__col-title .mkt-ico {
  color: #99f6e4;
}
.mkt-footer__bottom {
  border-top-color: rgba(255, 255, 255, 0.18);
  color: rgba(226, 232, 240, 0.85);
  align-items: flex-end;
}
.mkt-footer__bottom-left {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.mkt-footer__credit {
  font-size: 0.78rem;
  color: #ccfbf1;
  font-weight: 500;
}


/* === final-cta-contrast-20260914 === */
.home-final {
  padding-bottom: calc(clamp(3.5rem, 6vw, 5rem) + 1.25rem) !important;
}
.home-final__inner {
  background: linear-gradient(155deg, #0f766e 0%, #0e7490 45%, #1e3a8a 100%) !important;
  color: #F8FAFC !important;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.18);
}
.home-final__inner h2,
.home-final h2 {
  color: #FFFFFF !important;
  -webkit-text-fill-color: #FFFFFF !important;
  max-width: 18ch;
}
.home-final__inner p,
.home-final p {
  color: rgba(248, 250, 252, 0.88) !important;
}
.home-final .btn--primary {
  background: #fff !important;
  color: #0f766e !important;
  border-color: #fff !important;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
}
.home-final .btn--primary:hover {
  background: #f0fdfa !important;
  color: #115e59 !important;
}
.home-final__ghost {
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
  color: #fff !important;
}
.home-final__ghost:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
}

/* sticky bar shouldn't eat footer/CTA */
body.has-mkt-sticky {
  padding-bottom: calc(5.25rem + env(safe-area-inset-bottom)) !important;
}
body.has-mkt-sticky .mkt-footer {
  padding-bottom: calc(1.5rem + 5.25rem + env(safe-area-inset-bottom));
}
.mkt-sticky-cta {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.1);
}


/* === motion-20260914 === */
@keyframes mktPulseSoft {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.72; }
}
.home-cgh.is-inview .home-cgh__flow span:nth-child(odd) {
  animation: mktPulseSoft 2.8s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .home-cgh.is-inview .home-cgh__flow span:nth-child(odd) { animation: none; }
}
