:root {
  --ee-navy: #2c3947;
  --ee-red: #ae153c;
  --ee-blue: #8d9fb0;
  --ee-bg: #f6f8fa;
  --ee-soft: #f2f4f7;
  --ee-line: rgba(27, 36, 48, .12);
  --ee-text: #1b2430;
  --ee-muted: #6b7280;
  --ee-card: rgba(255, 255, 255, .92);
  --ee-shadow: 0 18px 48px rgba(44, 57, 71, .10);
  --ee-radius: 24px;
}

.ee-app,
.ee-app *,
.ee-public-topbar,
.ee-public-topbar *,
.ee-public-drawer,
.ee-public-drawer * {
  box-sizing: border-box;
}

body.ee-public-shell,
body.app-ui {
  background:
    linear-gradient(180deg, #f6f8fa 0%, #ffffff 42%, #eef3f7 100%);
  overflow-x: hidden;
}

.ee-public-topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(44, 57, 71, .10);
  backdrop-filter: blur(14px);
}

.ee-public-brand,
.ee-public-brand:visited {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ee-navy);
  text-decoration: none;
}

.ee-public-brand img {
  height: 25px;
  width: auto;
}

.ee-public-brand strong,
.ee-public-brand small {
  display: block;
  line-height: 1.1;
}

.ee-public-brand small {
  margin-top: 2px;
  color: var(--ee-muted);
  font-size: .78rem;
}

.ee-public-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.ee-public-nav a,
.ee-public-nav a:visited {
  color: rgba(44, 57, 71, .84);
  font-weight: 650;
  text-decoration: none;
}

.ee-public-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ee-login-pill,
.ee-login-pill:visited {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(44, 57, 71, .12);
  border-radius: 999px;
  background: #fff;
  color: var(--ee-navy);
  font-weight: 700;
  text-decoration: none;
}

.ee-icon-button {
  display: inline-grid;
  place-items: center;
  gap: 4px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.ee-icon-button span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ee-navy);
}

.ee-public-drawer {
  position: fixed;
  top: 0;
  right: -370px;
  z-index: 90;
  width: min(360px, calc(100vw - 24px));
  height: 100vh;
  padding: 0 22px 28px;
  background: #fff;
  box-shadow: -20px 0 48px rgba(27, 36, 48, .18);
  transition: right .24s ease;
}

.ee-public-drawer.is-open {
  right: 0;
}

.ee-public-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--ee-line);
}

.ee-public-drawer-head span {
  display: block;
  margin-top: 3px;
  color: var(--ee-muted);
}

.ee-public-drawer-head button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--ee-line);
  background: #fff;
  font-size: 1.35rem;
}

.ee-public-drawer a,
.ee-public-drawer a:visited {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(44, 57, 71, .08);
  color: var(--ee-navy);
  font-weight: 700;
  text-decoration: none;
}

.ee-public-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  background: rgba(0, 0, 0, .24);
}

.ee-public-overlay.is-open {
  display: block;
}

.ee-app {
  width: calc(100% - 32px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 0 42px;
  color: var(--ee-text);
}

.ee-loading {
  min-height: 360px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  color: var(--ee-muted);
}

.ee-loading-mark {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 24px;
  color: #fff;
  font-weight: 900;
  letter-spacing: .06em;
  background: linear-gradient(135deg, var(--ee-navy), var(--ee-blue));
  box-shadow: var(--ee-shadow);
}

.ee-hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  margin-top: 16px;
  padding: clamp(24px, 4vw, 34px);
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 22%, rgba(255, 255, 255, .22), transparent 14rem),
    radial-gradient(circle at 12% 92%, rgba(174, 21, 60, .25), transparent 13rem),
    linear-gradient(135deg, #2c3947 0%, rgba(44, 57, 71, .94) 56%, rgba(141, 159, 176, .86) 100%);
  box-shadow: 0 28px 74px rgba(44, 57, 71, .18);
}

.ee-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 18px;
  align-items: start;
}

.ee-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .88);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.ee-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.35rem, 5vw, 4.35rem);
  line-height: .98;
  letter-spacing: 0;
  overflow-wrap: normal;
  hyphens: manual;
}

.ee-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.ee-hero-metrics {
  display: grid;
  gap: 10px;
}

.ee-metric {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .09);
}

.ee-metric strong {
  display: block;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

.ee-metric span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, .76);
  font-size: .82rem;
}

.ee-hero-actions,
.ee-pill-row,
.ee-signal-grid,
.ee-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.ee-pill-row {
  margin-top: 24px;
}

.ee-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  color: #fff;
  font-size: .82rem;
  font-weight: 750;
}

.ee-hero-actions {
  margin-top: 24px;
}

.ee-button,
.ee-button:visited,
button.ee-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--ee-navy), var(--ee-blue));
  color: #fff;
  box-shadow: 0 12px 28px rgba(44, 57, 71, .18);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
}

.ee-button.light {
  background: #fff;
  color: var(--ee-navy);
  box-shadow: none;
}

.ee-button.ghost {
  border: 1px solid rgba(44, 57, 71, .12);
  background: #fff;
  color: var(--ee-navy);
  box-shadow: none;
}

.ee-button.on-dark {
  background: rgba(255, 255, 255, .10);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: none;
}

.ee-button.dark {
  background: var(--ee-navy);
  color: #fff;
  box-shadow: 0 14px 30px rgba(44, 57, 71, .16);
}

.ee-button:disabled {
  opacity: .55;
  cursor: default;
}

.ee-signal-grid {
  margin-top: 24px;
}

.ee-signal {
  flex: 1 1 260px;
  min-height: 96px;
  padding: 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .09);
}

.ee-signal strong {
  display: block;
  color: #fff;
}

.ee-signal span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.4;
}

.ee-section {
  padding-top: 26px;
  scroll-margin-top: 90px;
}

.ee-section-head {
  margin-bottom: 14px;
}

.ee-section-head h2 {
  margin: 0;
  color: var(--ee-navy);
  font-size: clamp(1.55rem, 3vw, 2rem);
  letter-spacing: 0;
}

.ee-rule {
  width: 56px;
  height: 3px;
  margin-top: 8px;
  border-radius: 999px;
  background: rgba(174, 21, 60, .68);
}

.ee-card,
.ee-path-card,
.ee-panel {
  border: 1px solid rgba(44, 57, 71, .08);
  border-radius: var(--ee-radius);
  background: var(--ee-card);
  box-shadow: var(--ee-shadow);
}

.ee-card,
.ee-panel {
  padding: clamp(18px, 3vw, 24px);
}

.ee-path-list,
.ee-module-list {
  display: grid;
  gap: 14px;
}

.ee-path-card {
  display: block;
  padding: 20px;
  color: inherit;
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease;
}

.ee-path-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(44, 57, 71, .14);
}

.ee-path-top {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 18px;
  gap: 14px;
  align-items: start;
}

.ee-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(44, 57, 71, .10);
  color: var(--ee-navy);
  font-weight: 900;
}

.ee-accent-red .ee-icon { background: rgba(174, 21, 60, .11); color: var(--ee-red); }
.ee-accent-blue .ee-icon { background: rgba(141, 159, 176, .20); color: #5f7486; }

.ee-card h3,
.ee-path-card h3,
.ee-panel h3 {
  margin: 8px 0;
  color: var(--ee-navy);
  font-size: 1.22rem;
  letter-spacing: 0;
}

.ee-muted {
  color: var(--ee-muted);
  line-height: 1.55;
}

.ee-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.ee-tag {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(44, 57, 71, .10);
  color: var(--ee-navy);
  font-size: .76rem;
  font-weight: 800;
}

.ee-tag.fill {
  background: var(--ee-navy);
  color: #fff;
}

.ee-tag.danger {
  background: var(--ee-red);
  color: #fff;
}

.ee-tag.success {
  background: #17824a;
  color: #fff;
}

.ee-tag.soft-success {
  background: rgba(23, 130, 74, .12);
  color: #176c43;
}

.ee-path-rail {
  width: 16px;
  height: 56px;
  border-radius: 999px;
  background: rgba(44, 57, 71, .14);
}

.ee-module-card {
  position: relative;
}

.ee-module-wrap {
  display: grid;
  gap: 8px;
}

.ee-module-retake {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(23, 130, 74, .24);
  border-radius: 999px;
  background: rgba(23, 130, 74, .08);
  color: #176c43;
  font-size: .88rem;
  font-weight: 850;
  text-decoration: none;
}

.ee-module-retake:hover {
  background: rgba(23, 130, 74, .14);
}

.ee-module-next {
  border-color: rgba(174, 21, 60, .22);
  box-shadow: 0 22px 60px rgba(44, 57, 71, .13);
}

.ee-module-next .ee-icon {
  background: rgba(174, 21, 60, .11);
  color: var(--ee-red);
}

.ee-module-completed {
  background: rgba(255, 255, 255, .72);
}

.ee-module-latest {
  border-color: rgba(23, 130, 74, .24);
  background: linear-gradient(0deg, rgba(23, 130, 74, .075), rgba(23, 130, 74, .075)), var(--ee-card);
}

.ee-module-latest .ee-icon {
  background: rgba(23, 130, 74, .13);
  color: #176c43;
}

.ee-module-list-completed .ee-path-card {
  box-shadow: 0 16px 42px rgba(44, 57, 71, .08);
}

.ee-certificate-list {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.ee-certificate-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(23, 130, 74, .20);
  border-radius: var(--ee-radius);
  background: linear-gradient(90deg, rgba(23, 130, 74, .08), rgba(255, 255, 255, .94) 42%);
  box-shadow: 0 18px 45px rgba(44, 57, 71, .09);
}

.ee-certificate-mark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: #17824a;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 950;
}

.ee-certificate-card h3 {
  margin: 10px 0 6px;
  color: var(--ee-navy);
  font-size: 1.2rem;
  letter-spacing: 0;
}

.ee-certificate-actions {
  display: flex;
  justify-content: flex-end;
}

.ee-info-band {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 16px;
  padding: 13px 14px;
  border-radius: 14px;
  background: var(--ee-soft);
  color: var(--ee-text);
}

.ee-info-band::before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: .45em;
  border-radius: 50%;
  background: var(--ee-navy);
}

.ee-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  color: #607080;
  font-size: .9rem;
  font-weight: 700;
}

.ee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.ee-quick-card {
  min-height: 136px;
  padding: 16px;
  border-radius: 14px;
  background: var(--ee-soft);
}

.ee-quick-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ee-navy);
  font-size: 1.08rem;
}

.ee-empty,
.ee-error {
  padding: 22px;
  border-radius: var(--ee-radius);
  background: var(--ee-card);
  border: 1px solid rgba(44, 57, 71, .08);
  box-shadow: var(--ee-shadow);
}

.ee-error {
  border-color: rgba(174, 21, 60, .22);
}

.ee-learning-shell {
  display: grid;
  gap: 18px;
}

.ee-learning-header {
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--ee-shadow);
}

.ee-progress {
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(107, 114, 128, .14);
}

.ee-progress > span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--ee-blue), var(--ee-navy));
}

.ee-page-dots {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.ee-page-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(44, 57, 71, .20);
}

.ee-page-dots span.active {
  width: 24px;
  background: var(--ee-navy);
}

.ee-blocks {
  display: grid;
  gap: 16px;
}

.ee-block {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(44, 57, 71, .10);
}

.ee-block:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.ee-block h3 {
  margin-top: 0;
}

.ee-block p,
.ee-block li {
  font-size: 1.08rem;
  line-height: 1.65;
}

.ee-hint {
  padding: 16px;
  border-radius: 14px;
  background: rgba(141, 159, 176, .13);
  border: 1px solid rgba(141, 159, 176, .22);
}

.ee-media-link {
  margin-top: 10px;
}

.ee-checkpoint {
  display: grid;
  gap: 10px;
}

.ee-choice {
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(44, 57, 71, .12);
  border-radius: 16px;
  background: #fff;
  color: var(--ee-navy);
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.ee-choice::before {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(44, 57, 71, .14);
}

.ee-choice.active {
  background: rgba(44, 57, 71, .07);
  border-color: rgba(44, 57, 71, .24);
}

.ee-choice.active::before {
  background: radial-gradient(circle at center, #fff 0 24%, var(--ee-navy) 27% 100%);
}

.ee-bottom-bar {
  position: sticky;
  bottom: 0;
  z-index: 30;
  display: grid;
  gap: 12px;
  margin: 20px -16px -42px;
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(44, 57, 71, .10);
  background: rgba(246, 248, 250, .94);
  backdrop-filter: blur(14px);
}

.ee-bottom-status {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--ee-muted);
  font-size: .88rem;
  font-weight: 700;
}

.ee-bottom-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ee-scorm-frame {
  width: 100%;
  min-height: min(760px, calc(100vh - 190px));
  border: 0;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--ee-shadow);
}

.ee-public-footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  width: calc(100% - 32px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 0 34px;
  color: var(--ee-muted);
}

.ee-public-footer a {
  color: var(--ee-navy);
}

.ee-landing {
  color: var(--ee-text);
}

.ee-landing-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(760px, calc(100vh - 58px));
  padding: clamp(28px, 7vw, 76px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(27, 36, 48, .88) 0%, rgba(27, 36, 48, .64) 48%, rgba(27, 36, 48, .16) 100%),
    url("store-training.jpg") center / cover no-repeat;
}

.ee-landing-hero-copy {
  width: min(760px, 100%);
}

.ee-landing-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.35rem, 6vw, 5.2rem);
  line-height: .96;
  letter-spacing: 0;
}

.ee-landing-hero p {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.55;
}

.ee-landing-actions,
.ee-store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}

.ee-landing-band,
.ee-landing-split,
.ee-app-download,
.ee-landing-cta {
  width: calc(100% - 32px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 86px) 0;
}

.ee-landing-band {
  scroll-margin-top: 86px;
}

.ee-section-head p,
.ee-landing-split p,
.ee-app-download p,
.ee-landing-cta p {
  max-width: 760px;
  color: var(--ee-muted);
  font-size: 1.06rem;
  line-height: 1.62;
}

.ee-section-head span,
.ee-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--ee-red);
  font-size: .8rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ee-landing-grid {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.ee-landing-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ee-info-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(44, 57, 71, .10);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(44, 57, 71, .08);
}

.ee-info-card span {
  color: var(--ee-red);
  font-weight: 900;
}

.ee-info-card h3 {
  margin: 28px 0 10px;
  color: var(--ee-navy);
  font-size: 1.25rem;
  letter-spacing: 0;
}

.ee-info-card p {
  margin: 0;
  color: var(--ee-muted);
  line-height: 1.58;
}

.ee-landing-split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .72fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  border-top: 1px solid rgba(44, 57, 71, .10);
}

.ee-landing-split h2,
.ee-app-download h2,
.ee-landing-cta h2 {
  max-width: 760px;
  margin: 0;
  color: var(--ee-navy);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.ee-check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.ee-check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ee-text);
  font-weight: 700;
  line-height: 1.45;
}

.ee-check-list li::before {
  content: "";
  position: absolute;
  top: .35em;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--ee-red);
  box-shadow: inset 0 0 0 4px #fff, 0 0 0 1px rgba(174, 21, 60, .25);
}

.ee-photo-panel {
  margin: 0;
}

.ee-photo-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 22px 56px rgba(44, 57, 71, .14);
}

.ee-app-download {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 34px;
  align-items: center;
  border-top: 1px solid rgba(44, 57, 71, .10);
}

.ee-store-badges {
  justify-content: flex-start;
  margin-top: 0;
}

.ee-store-badges a {
  display: inline-flex;
  align-items: center;
  height: 48px;
}

.ee-store-badges img {
  display: block;
  height: 48px;
  width: auto;
}

.ee-landing-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid rgba(44, 57, 71, .10);
}

@media (max-width: 860px) {
  .ee-public-nav {
    display: none;
  }

  .ee-hero-grid {
    grid-template-columns: 1fr;
  }

  .ee-hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ee-path-top {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .ee-path-rail {
    display: none;
  }

  .ee-certificate-card {
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: start;
  }

  .ee-certificate-mark {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    font-size: 1.45rem;
  }

  .ee-certificate-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .ee-landing-grid.three,
  .ee-landing-split,
  .ee-app-download {
    grid-template-columns: 1fr;
  }

  .ee-landing-cta {
    display: grid;
  }
}

@media (max-width: 560px) {
  .ee-app {
    width: calc(100% - 24px);
    padding-top: 12px;
  }

  .ee-public-brand small,
  .ee-login-pill {
    display: none;
  }

  .ee-landing-shell .ee-login-pill {
    display: inline-flex;
    min-height: 36px;
    padding: 0 12px;
  }

  .ee-hero {
    min-height: 0;
    border-radius: 26px;
  }

  .ee-hero h1 {
    max-width: 300px;
    font-size: clamp(1.7rem, 7.5vw, 1.95rem);
    line-height: 1.08;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
  }

  .ee-hero p {
    max-width: 300px;
    font-size: .98rem;
    overflow-wrap: break-word;
  }

  .ee-hero-metrics,
  .ee-bottom-actions {
    grid-template-columns: 1fr;
  }

  .ee-public-footer {
    display: grid;
  }

  .ee-landing-hero {
    min-height: 610px;
    padding: 26px 18px;
    background:
      linear-gradient(180deg, rgba(27, 36, 48, .32) 0%, rgba(27, 36, 48, .88) 58%, rgba(27, 36, 48, .94) 100%),
      url("store-training.jpg") center / cover no-repeat;
  }

  .ee-landing-hero h1 {
    max-width: calc(100vw - 36px);
    font-size: clamp(1.85rem, 9.2vw, 2.45rem);
    line-height: 1.04;
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
    hyphens: auto;
  }

  .ee-landing-hero p {
    max-width: calc(100vw - 36px);
    font-size: 1rem;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .ee-landing-actions {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    max-width: calc(100vw - 36px);
  }

  .ee-landing-actions .ee-button {
    width: 100%;
  }

  .ee-landing-band,
  .ee-landing-split,
  .ee-app-download,
  .ee-landing-cta {
    width: calc(100% - 24px);
    padding: 42px 0;
  }

  .ee-info-card {
    min-height: 0;
  }

  .ee-section-head h2,
  .ee-landing-split h2,
  .ee-app-download h2,
  .ee-landing-cta h2 {
    max-width: calc(100vw - 24px);
    font-size: clamp(1.55rem, 8vw, 2.05rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
  }

  .ee-section-head p,
  .ee-landing-split p,
  .ee-app-download p,
  .ee-landing-cta p,
  .ee-check-list li {
    overflow-wrap: anywhere;
  }

  .ee-store-badges a,
  .ee-store-badges img {
    height: 44px;
  }
}
