@font-face {
  font-family: "Tajawal";
  src: url("fonts/Tajawal-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tajawal";
  src: url("fonts/Tajawal-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tajawal";
  src: url("fonts/Tajawal-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f5f8fb;
  --paper: #ffffff;
  --ink: #17212b;
  --muted: #637181;
  --line: rgba(23, 33, 43, 0.12);
  --blue: #0d7fc5;
  --blue-deep: #145ca8;
  --orange: #d87b34;
  --orange-soft: #fff4eb;
  --shadow: 0 18px 52px rgba(15, 54, 92, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 12%, rgba(13, 127, 197, 0.18), transparent 32rem),
    radial-gradient(circle at 82% 4%, rgba(216, 123, 52, 0.14), transparent 30rem),
    linear-gradient(135deg, #f8fbff 0%, #edf5fb 48%, #fff8f1 100%);
  color: var(--ink);
  font-family: "Tajawal", Arial, sans-serif;
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.language-toggle {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  border: 1px solid rgba(13, 127, 197, 0.3);
  border-radius: 999px;
  padding: 10px 16px;
  color: #ffffff;
  font-family: inherit;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  box-shadow: 0 16px 34px rgba(13, 127, 197, 0.22);
  cursor: pointer;
}

html[dir="rtl"] body {
  text-align: right;
}

html[dir="rtl"] .language-toggle {
  right: auto;
  left: 18px;
}

.inline-language-slot {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

html[dir="rtl"] .inline-language-slot {
  justify-content: flex-start;
}

.login-card .inline-language-slot {
  width: 100%;
  text-align: right;
  display: block;
  margin-bottom: 6px;
}

html[dir="rtl"] .login-card .inline-language-slot {
  text-align: left;
}

.inline-language-slot .language-toggle {
  position: static;
  right: auto;
  left: auto;
  bottom: auto;
  z-index: auto;
  box-shadow: 0 10px 22px rgba(13, 127, 197, 0.2);
}

html[dir="rtl"] .nav-actions,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .feature-actions,
html[dir="rtl"] .journey-actions {
  flex-direction: row-reverse;
}

html[dir="rtl"] .role-panel,
html[dir="rtl"] .journey-user {
  border-left: 1px solid rgba(216, 123, 52, 0.28);
  border-right: 5px solid var(--orange);
}

html[dir="rtl"] .journey-nav button,
html[dir="rtl"] .journey-switch,
html[dir="rtl"] .card-step-flow button,
html[dir="rtl"] .module-card {
  text-align: right;
}

html[dir="rtl"] .journey-nav button span,
html[dir="rtl"] .card-step-flow button span {
  margin-right: 0;
  margin-left: 8px;
}

html[dir="rtl"] .journey-nav button small {
  margin-right: 38px;
  margin-left: 0;
}

html[dir="rtl"] .eyebrow,
html[dir="rtl"] .nav-section > p,
html[dir="rtl"] .journey-user span,
html[dir="rtl"] .journey-score span,
html[dir="rtl"] .step-kicker span,
html[dir="rtl"] .snapshot-list span,
html[dir="rtl"] .journey-nav small,
html[dir="rtl"] .verification-item small,
html[dir="rtl"] .journey-form label span,
html[dir="rtl"] .feature-form label span,
html[dir="rtl"] .banking-app-grid span,
html[dir="rtl"] .transaction-summary span {
  letter-spacing: 0;
}

html[dir="rtl"] input.force-ltr,
html[dir="rtl"] textarea.force-ltr {
  direction: ltr !important;
  text-align: left !important;
  unicode-bidi: plaintext;
}

.page-shell {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 18px 0 32px;
  display: grid;
  gap: 18px;
}

.hero-card,
.content-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: auto;
  padding: 26px 30px 30px;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, #f8c86c, var(--orange), var(--blue), var(--blue-deep));
}

.topbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.brand-logo {
  width: 220px;
  height: auto;
  display: block;
}

.nav-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-actions a,
.primary-action,
.secondary-action {
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
}

.nav-actions a,
.secondary-action {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 700px;
  margin-bottom: 14px;
  color: #163b5e;
  font-size: clamp(2.7rem, 6.4vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 0;
  color: #17385a;
  font-size: clamp(1.55rem, 2.8vw, 2.45rem);
  line-height: 1.12;
}

h3 {
  margin-bottom: 8px;
  color: #17385a;
  font-size: 1.22rem;
}

.lead {
  max-width: 730px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.primary-action {
  background: linear-gradient(135deg, var(--orange), var(--blue));
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(13, 127, 197, 0.22);
}

.executive-panel {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  background: linear-gradient(180deg, #ffffff, #f5fbff);
}

.executive-panel span,
.insight-grid span,
.roadmap span,
.module-card span {
  display: block;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.executive-panel strong {
  display: block;
  margin: 8px 0;
  color: #17385a;
  font-size: 1.32rem;
  line-height: 1.12;
}

.executive-panel p,
.insight-grid p,
.roadmap p,
.module-preview p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.content-card {
  padding: 26px 30px;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.insight-grid,
.module-grid,
.roadmap {
  display: grid;
  gap: 16px;
}

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

.insight-grid article,
.roadmap article,
.module-preview,
.module-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
}

.insight-grid article,
.roadmap article,
.module-preview {
  padding: 18px;
}

.module-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.module-card {
  cursor: pointer;
  padding: 16px;
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.module-card strong {
  display: block;
  margin-top: 8px;
  color: #17385a;
  font-size: 1rem;
  line-height: 1.2;
}

.module-card:hover,
.module-card.active {
  border-color: rgba(216, 123, 52, 0.6);
  background: var(--orange-soft);
  transform: translateY(-2px);
}

.module-preview {
  margin-top: 14px;
  background:
    linear-gradient(135deg, rgba(13, 127, 197, 0.08), rgba(216, 123, 52, 0.08)),
    #ffffff;
}

.module-preview h3 {
  font-size: 1.38rem;
}

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

@media (max-width: 880px) {
  .page-shell {
    width: min(100% - 28px, 760px);
    padding: 14px 0 24px;
  }

  .hero-card,
  .content-card {
    border-radius: 18px;
  }

  .hero-card,
  .content-card {
    padding: 20px;
  }

  .brand-logo {
    width: 190px;
  }

  .topbar,
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-layout,
  .insight-grid,
  .module-grid,
  .roadmap {
    grid-template-columns: 1fr;
  }

  .nav-actions {
    justify-content: flex-start;
  }
}

.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 16px;
  overflow-x: hidden;
}

.login-shell {
  width: min(1040px, 100%);
  min-height: min(640px, calc(100vh - 32px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 16px;
  align-items: stretch;
}

.login-brand-panel,
.login-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.login-brand-panel {
  position: relative;
  overflow: hidden;
  min-height: auto;
  padding: 34px 30px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(135deg, rgba(12, 81, 136, 0.9), rgba(11, 120, 183, 0.78)),
    url("brand/logo-mark-black.png") center 48% / min(420px, 58%) no-repeat,
    #082c47;
  color: #ffffff;
}

.login-brand-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 8%, rgba(248, 200, 108, 0.25), transparent 28rem);
  pointer-events: none;
}

.login-brand-panel > * {
  position: relative;
  z-index: 1;
}

.login-logo {
  width: min(300px, 58%);
  height: auto;
  display: block;
}

.login-brand-panel h1,
.login-panel-title {
  max-width: 310px;
  color: #ffffff;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.012em;
  margin-bottom: 10px;
}

.login-panel-title {
  max-width: none;
  font-size: clamp(1.45rem, 2vw, 2.2rem);
  line-height: 1.12;
}

.login-panel-title span {
  display: block;
  white-space: nowrap;
}

.login-brand-panel .lead {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
}

.login-footnote {
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.1);
}

.login-footnote span,
.demo-credentials span {
  display: block;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.login-footnote strong {
  display: block;
  margin-top: 4px;
  color: #ffffff;
}

.login-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 30px;
  background: rgba(255, 255, 255, 0.94);
}

.login-mark {
  width: 112px;
  height: auto;
  display: block;
  margin: 0 auto 22px;
}

.login-card h2 {
  color: #5f6f82;
  font-size: clamp(1.3rem, 1.95vw, 1.7rem);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

#login-title {
  white-space: nowrap;
  width: 100%;
  text-align: start;
  margin: 0 0 8px;
}

.form-note {
  margin-bottom: 20px;
  color: var(--muted);
  text-align: start;
}

.login-form {
  display: grid;
  gap: 12px;
}

.existing-login-fields {
  display: grid;
  gap: 8px;
  margin-top: -2px;
}

.user-type-selector {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0 0 4px;
  padding: 0;
  border: 0;
}

.user-type-selector legend {
  margin-bottom: 4px;
  color: #17385a;
  font-weight: 700;
}

.user-type-card {
  position: relative;
  display: block;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 10px 12px 10px 40px;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.user-type-card:hover,
.user-type-card.active {
  border-color: rgba(216, 123, 52, 0.62);
  background: var(--orange-soft);
  transform: translateY(-1px);
}

.user-type-card input {
  position: absolute;
  top: 14px;
  left: 14px;
  accent-color: var(--orange);
}

.user-type-card span {
  display: block;
  color: #17385a;
  font-weight: 700;
}

.user-type-card strong {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 500;
}

.login-form label {
  color: #17385a;
  font-weight: 700;
}

.login-form label[for] {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 4px 10px;
  border: 1px solid rgba(13, 127, 197, 0.26);
  border-radius: 999px;
  background: #f3f9ff;
  color: #134a77;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.login-form input[type="email"],
.login-form input[type="password"],
.login-form input[type="text"] {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.login-form input:focus {
  border-color: rgba(13, 127, 197, 0.7);
  box-shadow: 0 0 0 4px rgba(13, 127, 197, 0.1);
}

.password-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.password-row button {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 16px;
  color: var(--blue-deep);
  font-weight: 700;
  background: #f8fbff;
  cursor: pointer;
}

.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 4px 0 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted) !important;
  font-weight: 500 !important;
}

.login-error {
  display: none;
  margin: 0;
  border: 1px solid rgba(184, 41, 41, 0.24);
  border-radius: 14px;
  padding: 10px 12px;
  color: #9d2626;
  background: #fff0f0;
}

.login-error.visible {
  display: block;
}

.login-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
  font-size: 1rem;
}

.demo-credentials {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  border-radius: 18px;
  padding: 16px;
  background: var(--orange-soft);
}

.demo-credentials strong,
.demo-credentials small {
  display: block;
}

.demo-credentials strong {
  margin-top: 6px;
  color: #17385a;
}

.demo-credentials small {
  margin-top: 4px;
  color: var(--muted);
}

@media (max-width: 920px) {
  .login-shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .login-brand-panel {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .login-page {
    padding: 14px;
  }

  .form-options,
  .password-row {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .form-options {
    flex-direction: column;
    align-items: flex-start;
  }
}

.app-page {
  min-height: 100vh;
  padding: 18px;
}

.app-shell {
  width: min(1360px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 18px;
}

.app-sidebar,
.app-workspace,
.workspace-header,
.journey-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.app-sidebar {
  position: sticky;
  top: 18px;
  min-height: calc(100vh - 36px);
  border-radius: 24px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.app-logo {
  width: 170px;
  height: auto;
  margin: 0 auto;
}

.role-panel {
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  border-radius: 18px;
  padding: 16px;
  background: var(--orange-soft);
}

.role-panel span,
.workspace-status span,
.overview-grid span {
  display: block;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.role-panel strong,
.role-panel small {
  display: block;
}

.role-panel strong {
  margin-top: 6px;
  color: #17385a;
  font-size: 1.18rem;
}

.role-panel small {
  margin-top: 4px;
  color: var(--muted);
}

.side-nav {
  display: grid;
  gap: 8px;
}

.side-nav a {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 11px 12px;
  color: var(--muted);
  font-weight: 700;
  background: #ffffff;
}

.side-nav a.active,
.side-nav a:hover {
  border-color: rgba(13, 127, 197, 0.34);
  color: #17385a;
  background: #f4fbff;
}

.app-workspace {
  border-radius: 24px;
  padding: 22px;
}

.workspace-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 18px;
  align-items: center;
  border-radius: 22px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(13, 127, 197, 0.1), rgba(216, 123, 52, 0.08)),
    #ffffff;
}

.workspace-header h1 {
  max-width: none;
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.workspace-header p {
  max-width: 860px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.workspace-status {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: #ffffff;
}

.workspace-status strong {
  display: block;
  margin-top: 6px;
  color: #17385a;
  font-size: 1.24rem;
}

.overview-grid,
.journey-steps,
.control-grid {
  display: grid;
  gap: 14px;
}

.overview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 18px 0;
}

.overview-grid article,
.step-card,
.control-grid article {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: #ffffff;
}

.overview-grid strong {
  display: block;
  margin: 7px 0;
  color: #17385a;
  font-size: 1.16rem;
}

.overview-grid p,
.step-card p,
.control-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
}

.journey-card {
  border-radius: 22px;
  padding: 24px;
  margin-top: 18px;
}

.journey-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin-bottom: 12px;
  color: #ffffff;
  font-weight: 700;
  background: linear-gradient(135deg, var(--orange), var(--blue));
}

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

@media (max-width: 980px) {
  .app-shell,
  .workspace-header,
  .overview-grid,
  .journey-steps,
  .control-grid {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    position: static;
    min-height: auto;
  }
}

.journey-page {
  min-height: 100vh;
  padding: 10px;
  background:
    radial-gradient(circle at 0 0, rgba(13, 127, 197, 0.16), transparent 34%),
    linear-gradient(135deg, #f7fbff 0%, #fffaf5 100%);
}

.journey-shell {
  width: min(1480px, 100%);
  min-height: calc(100vh - 20px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 12px;
}

.journey-side,
.journey-main,
.journey-card,
.journey-inspector {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(16, 39, 66, 0.08);
}

.journey-side {
  position: sticky;
  top: 10px;
  height: calc(100vh - 20px);
  overflow: auto;
  border-radius: 20px;
  padding: 16px;
}

.journey-logo {
  display: block;
  width: 112px;
  height: auto;
  margin: 0 auto 16px;
}

.journey-user {
  border: 1px solid rgba(216, 123, 52, 0.28);
  border-radius: 16px;
  padding: 13px;
  background: var(--orange-soft);
}

.journey-user span,
.journey-score span,
.step-kicker span,
.snapshot-list span,
.journey-nav small,
.verification-item small,
.journey-form label span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-user strong,
.journey-user small {
  display: block;
}

.journey-user strong {
  margin-top: 6px;
  color: #17385a;
  font-size: 1.05rem;
}

.journey-user small {
  margin-top: 4px;
  color: var(--muted);
}

.journey-nav {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.nav-section {
  display: grid;
  gap: 8px;
}

.nav-section > p {
  margin: 4px 0 0;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journey-nav button,
.journey-switch {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  text-align: left;
  font-family: inherit;
  background: #ffffff;
}

.journey-nav button {
  cursor: pointer;
}

.journey-nav button:disabled,
.card-step-flow button:disabled,
.primary-action:disabled {
  cursor: not-allowed;
  opacity: 0.46;
  filter: grayscale(0.4);
}

.journey-nav button span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 8px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  background: #8aa1b5;
}

.journey-nav button strong {
  display: inline;
  color: #17385a;
  font-size: 0.92rem;
}

.journey-nav button small {
  margin: 5px 0 0 38px;
}

.journey-nav button.active {
  border-color: rgba(13, 127, 197, 0.45);
  background: #f4fbff;
}

.journey-nav button.active span {
  background: linear-gradient(135deg, var(--orange), var(--blue));
}

.journey-nav .nav-main {
  border-color: rgba(216, 123, 52, 0.34);
  background: linear-gradient(135deg, rgba(216, 123, 52, 0.12), rgba(13, 127, 197, 0.07));
}

.journey-nav .feature-nav {
  min-height: 72px;
}

.journey-nav .feature-nav.is-preview {
  background: #f7f8fa;
}

.journey-nav .feature-nav.is-preview small {
  color: #b06a32;
}

.journey-switch {
  display: block;
  margin-top: 14px;
  color: #17385a;
  font-weight: 700;
}

.journey-main {
  border-radius: 20px;
  padding: 14px;
  overflow: hidden;
}

.journey-topbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(13, 127, 197, 0.1), rgba(216, 123, 52, 0.08)),
    #ffffff;
}

.journey-topbar h1 {
  max-width: none;
  margin: 0 0 7px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.journey-topbar p {
  max-width: 920px;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.journey-score {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px;
  background: #ffffff;
}

.journey-score strong {
  display: block;
  margin-top: 4px;
  color: #17385a;
  font-size: 2rem;
  line-height: 1;
}

.journey-score small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}

.journey-layout {
  display: block;
  margin-top: 12px;
}

.journey-layout[hidden],
.retail-banking-suite[hidden] {
  display: none !important;
}

.journey-card,
.journey-inspector {
  border-radius: 18px;
  padding: 18px;
}

.active-step-card {
  min-height: calc(100vh - 184px);
}

.step-kicker {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.step-kicker strong {
  border-radius: 999px;
  padding: 7px 10px;
  color: #ffffff;
  font-size: 0.78rem;
  background: linear-gradient(135deg, var(--orange), var(--blue));
}

.journey-card h2 {
  margin-bottom: 7px;
  color: #17385a;
  font-size: clamp(1.6rem, 2.3vw, 2.5rem);
  letter-spacing: -0.025em;
}

.journey-card p {
  max-width: 780px;
  color: var(--muted);
  line-height: 1.5;
}

.card-step-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.card-step-flow button {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  text-align: left;
  font-family: inherit;
  background: #ffffff;
  cursor: pointer;
}

.card-step-flow button span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 8px;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  background: #8aa1b5;
}

.card-step-flow button strong {
  color: #17385a;
  font-size: 0.9rem;
}

.card-step-flow button.active {
  border-color: rgba(13, 127, 197, 0.45);
  background: #f4fbff;
}

.card-step-flow button.active span {
  background: linear-gradient(135deg, var(--orange), var(--blue));
}

.card-step-flow button.complete span {
  background: #23845b;
}

.card-step-flow button.is-locked {
  background: #f7f8fa;
}

.journey-form {
  margin-top: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.journey-form label {
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 11px;
  background: #fbfdff;
}

.journey-form input:not([type="checkbox"]) {
  width: 100%;
  border: 0;
  outline: 0;
  margin-top: 7px;
  color: #17385a;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  background: transparent;
}

.journey-form input[type="checkbox"] {
  width: auto;
  margin-top: 0;
  flex: 0 0 auto;
}

.journey-form label.check-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
}

.journey-form label.check-row span {
  display: block;
  margin: 0;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
  overflow-wrap: anywhere;
}

html[dir="rtl"] .journey-form label.check-row {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.journey-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 18px;
}

.ghost-action,
.secondary-action {
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 800;
}

.ghost-action {
  border: 1px solid var(--line);
  color: #17385a;
  background: #ffffff;
}

.secondary-action {
  border: 1px solid rgba(13, 127, 197, 0.32);
  color: #17385a;
  background: #f4fbff;
}

.ghost-action:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.journey-inspector {
  display: grid;
  gap: 14px;
  align-content: start;
}

.journey-inspector h3 {
  margin: 4px 0 12px;
  color: #17385a;
}

.verification-stack,
.snapshot-list {
  display: grid;
  gap: 9px;
}

.verification-item,
.snapshot-list div {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 11px;
  background: #ffffff;
}

.verification-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
}

.verification-item > span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  font-weight: 700;
  background: #8aa1b5;
}

.verification-item strong,
.snapshot-list strong {
  color: #17385a;
  font-size: 0.94rem;
}

.verification-item.passed > span {
  background: #23845b;
}

.verification-item.passed small {
  color: #23845b;
}

.snapshot-list strong {
  display: block;
  margin-top: 4px;
}

.retail-banking-suite {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(16, 39, 66, 0.08);
}

.feature-workspace {
  margin-top: 12px;
  margin-bottom: 0;
}

.retail-banking-suite .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 4px;
  margin-bottom: 14px;
}

.retail-banking-suite h2 {
  margin: 0;
  color: #17385a;
  font-size: clamp(1.45rem, 2.1vw, 2.25rem);
  letter-spacing: -0.025em;
}

.retail-banking-suite .section-heading p:not(.eyebrow) {
  max-width: 900px;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.retail-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.retail-feature-grid article {
  position: relative;
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(13, 127, 197, 0.06), rgba(216, 123, 52, 0.05)),
    #ffffff;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.retail-feature-grid article::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -32px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(13, 127, 197, 0.08);
}

.retail-feature-grid article:hover,
.retail-feature-grid article.active {
  transform: translateY(-2px);
  border-color: rgba(13, 127, 197, 0.42);
  box-shadow: 0 16px 34px rgba(16, 39, 66, 0.1);
}

.retail-feature-grid span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange), var(--blue));
}

.retail-feature-grid h3 {
  margin: 11px 0 7px;
  color: #17385a;
  font-size: 1rem;
  line-height: 1.15;
}

.retail-feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.42;
}

.feature-live-panel {
  margin-top: 14px;
  border: 1px solid rgba(13, 127, 197, 0.22);
  border-radius: 18px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(13, 127, 197, 0.07), rgba(216, 123, 52, 0.06)),
    #ffffff;
}

.feature-live-header {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.feature-live-header h3 {
  margin: 2px 0 0;
  color: #17385a;
  font-size: 1.45rem;
}

.feature-live-header strong {
  border-radius: 999px;
  padding: 8px 12px;
  color: #ffffff;
  font-size: 0.78rem;
  background: linear-gradient(135deg, var(--orange), var(--blue));
}

.banking-app-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.banking-app-grid article,
.balance-card,
.virtual-card,
.map-demo,
.qr-demo,
.savings-pocket,
.referral-card {
  border: 1px solid #c8d9ea;
  border-radius: 16px;
  padding: 14px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(22, 56, 90, 0.06);
}

.banking-app-grid span,
.balance-card span,
.virtual-card span,
.qr-demo span,
.savings-pocket span,
.referral-card span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.banking-app-grid strong,
.balance-card strong,
.virtual-card strong,
.qr-demo strong,
.savings-pocket strong,
.referral-card strong {
  display: block;
  margin-top: 6px;
  color: #17385a;
  font-size: 1.22rem;
}

.balance-card {
  color: #17385a;
  background: linear-gradient(135deg, #eaf4ff, #d7ebff);
  border-color: #c4def7;
}

.virtual-card.business-card {
  background:
    radial-gradient(circle at 85% 12%, rgba(255, 255, 255, 0.22), transparent 26%),
    linear-gradient(135deg, #0f2f4d, #0d7fc5 58%, #d87b34);
}

.balance-card span,
.balance-card strong,
.balance-card small {
  color: #17385a;
  text-shadow: none;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.quick-actions button,
.feature-actions button {
  font-family: inherit;
}

.quick-actions button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 10px;
  color: #17385a;
  font-weight: 800;
  background: #f4fbff;
  cursor: pointer;
}

.mini-ledger {
  margin-top: 12px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
}

.mini-ledger table {
  width: 100%;
  border-collapse: collapse;
}

.mini-ledger td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  color: #17385a;
  font-size: 0.93rem;
}

.mini-ledger tr:last-child td {
  border-bottom: 0;
}

.feature-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.feature-form.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-form label {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 11px;
  background: #ffffff;
}

.feature-form label span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-form input {
  width: 100%;
  border: 0;
  outline: 0;
  margin-top: 7px;
  color: #17385a;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 800;
  background: transparent;
}

.feature-form select {
  width: 100%;
  border: 0;
  outline: 0;
  margin-top: 7px;
  color: #17385a;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 800;
  background: transparent;
}

.customer-status-select {
  width: 100%;
  border: 1px solid #bfd2e6;
  border-radius: 16px;
  padding: 13px 14px;
  color: #17385a;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  background: #ffffff;
}

#email,
#password {
  margin-top: -2px;
}

.new-customer-panel,
.backoffice-panel {
  border: 1px solid rgba(216, 123, 52, 0.28);
  border-radius: 16px;
  padding: 14px;
  background: var(--orange-soft);
}

.new-customer-panel span,
.backoffice-panel span {
  display: block;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.new-customer-panel strong,
.backoffice-panel strong {
  display: block;
  margin-top: 6px;
  color: #17385a;
  font-size: 1rem;
}

.new-customer-panel small,
.backoffice-panel small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.transfer-workflow {
  display: grid;
  gap: 12px;
}

.transfer-panel,
.beneficiary-preview {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  background: #ffffff;
}

.transfer-panel h4 {
  margin: 4px 0 12px;
  color: #17385a;
  font-size: 1.2rem;
}

.transfer-type-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin-bottom: 12px;
}

.transfer-type-card {
  display: flex;
  gap: 9px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 11px;
  color: #17385a;
  font-weight: 800;
  background: #fbfdff;
  cursor: pointer;
}

.transfer-type-card input {
  accent-color: var(--blue);
}

.beneficiary-preview span,
.transaction-summary span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.beneficiary-preview strong {
  display: block;
  margin-top: 6px;
  color: #17385a;
  font-size: 1.16rem;
}

.beneficiary-preview small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}

.feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: flex-end;
  margin-top: 12px;
}

.card-module-layout {
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(220px, 1fr);
  gap: 14px;
  align-items: stretch;
}

.virtual-card {
  position: relative;
  aspect-ratio: 1.58 / 1;
  max-width: 420px;
  min-height: 230px;
  color: #ffffff;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.22), transparent 25%),
    radial-gradient(circle at 18% 92%, rgba(216, 123, 52, 0.72), transparent 34%),
    linear-gradient(135deg, #102742, #0d7fc5 56%, #d87b34);
}

.virtual-card.frozen {
  filter: grayscale(0.85);
}

.virtual-card span,
.virtual-card strong,
.virtual-card small {
  color: #ffffff;
}

.virtual-card strong {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 66px;
  margin-top: 0;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  letter-spacing: 0.12em;
}

.card-topline,
.card-footerline {
  position: absolute;
  left: 22px;
  right: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-topline {
  top: 18px;
}

.card-topline img {
  width: 48px;
  height: auto;
}

.card-topline b {
  color: #ffffff;
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.card-chip {
  position: absolute;
  left: 24px;
  top: 86px;
  width: 48px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 9px;
  background:
    linear-gradient(90deg, transparent 47%, rgba(128, 85, 28, 0.45) 47%, rgba(128, 85, 28, 0.45) 53%, transparent 53%),
    linear-gradient(0deg, transparent 46%, rgba(128, 85, 28, 0.45) 46%, rgba(128, 85, 28, 0.45) 54%, transparent 54%),
    linear-gradient(135deg, #ffe09c, #b8732a);
}

.card-footerline {
  bottom: 22px;
}

.card-footerline span,
.card-footerline small {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card-footerline small {
  text-align: right;
  opacity: 0.88;
}

.card-status-panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: #ffffff;
}

.card-status-panel span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-status-panel strong {
  display: block;
  margin-top: 8px;
  color: #17385a;
  font-size: 1.7rem;
}

.card-status-panel small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.settings-list {
  display: grid;
  gap: 8px;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  color: #17385a;
  font-weight: 800;
  background: #ffffff;
}

.toggle-row input {
  width: 20px;
  height: 20px;
  accent-color: var(--blue);
}

.map-demo {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(13, 127, 197, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(13, 127, 197, 0.08) 1px, transparent 1px),
    #f7fbff;
  background-size: 32px 32px;
}

.map-demo strong,
.map-demo small {
  position: relative;
  z-index: 2;
  display: block;
  color: #17385a;
}

.map-demo small {
  margin-top: 6px;
  color: var(--muted);
}

.map-pin {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  padding: 8px 10px;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 900;
  background: var(--blue);
}

.map-pin.atm {
  right: 18%;
  top: 24%;
}

.map-pin.branch {
  left: 16%;
  top: 48%;
  background: var(--orange);
}

.map-pin.home {
  right: 34%;
  bottom: 20%;
  background: #23845b;
}

.qr-demo {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.qr-box {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border: 10px solid #17385a;
  color: #17385a;
  font-size: 1.6rem;
  font-weight: 900;
  background:
    linear-gradient(45deg, #ffffff 25%, #eef6fb 25%, #eef6fb 50%, #ffffff 50%, #ffffff 75%, #eef6fb 75%);
  background-size: 18px 18px;
}

.savings-pocket div {
  height: 12px;
  margin: 12px 0 7px;
  border-radius: 999px;
  background: #e5edf4;
}

.savings-pocket i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--orange), var(--blue));
}

.referral-card {
  background: linear-gradient(135deg, rgba(216, 123, 52, 0.11), rgba(13, 127, 197, 0.09)), #ffffff;
}

.feature-feedback {
  display: none;
  margin: 12px 0 0;
  border: 1px solid rgba(35, 132, 91, 0.24);
  border-radius: 14px;
  padding: 11px 12px;
  color: #1f6a4b;
  font-weight: 800;
  background: rgba(35, 132, 91, 0.08);
}

.feature-feedback.visible {
  display: block;
}

.onboarding-note {
  margin: 10px 0 0;
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 700;
  font-size: 0.92rem;
}

.onboarding-note-neutral {
  border: 1px solid rgba(13, 127, 197, 0.24);
  color: #16598f;
  background: rgba(13, 127, 197, 0.08);
}

.onboarding-note-success {
  border: 1px solid rgba(35, 132, 91, 0.24);
  color: #1f6a4b;
  background: rgba(35, 132, 91, 0.09);
}

.onboarding-note-warning {
  border: 1px solid rgba(216, 123, 52, 0.32);
  color: #8a4b1b;
  background: rgba(216, 123, 52, 0.1);
}

.transaction-modal[hidden] {
  display: none !important;
}

.transaction-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 39, 66, 0.55);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  width: min(760px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 22px;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(16, 39, 66, 0.32);
}

.modal-header {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.modal-header h3 {
  margin: 4px 0 0;
  color: #17385a;
  font-size: 1.65rem;
}

.modal-header button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  color: #17385a;
  font-family: inherit;
  font-weight: 800;
  background: #ffffff;
  cursor: pointer;
}

.transaction-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 12px;
}

.transaction-summary div {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 11px;
  background: #fbfdff;
}

.transaction-summary strong {
  display: block;
  margin-top: 5px;
  color: #17385a;
  font-size: 0.98rem;
}

.receipt-success {
  border-radius: 18px;
  padding: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, #23845b, #0d7fc5);
}

.receipt-success span,
.receipt-success strong,
.receipt-success small {
  display: block;
  color: #ffffff;
}

.receipt-success span {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.receipt-success strong {
  margin-top: 6px;
  font-size: 1.4rem;
}

.receipt-success small {
  margin-top: 4px;
  opacity: 0.9;
}

.share-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  margin-top: 14px;
}

.share-grid button {
  border: 1px solid rgba(13, 127, 197, 0.25);
  border-radius: 999px;
  padding: 11px 12px;
  color: #17385a;
  font-family: inherit;
  font-weight: 800;
  background: #f4fbff;
  cursor: pointer;
}

@media (max-width: 1120px) {
  .journey-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "side";
  }

  .journey-side {
    grid-area: side;
  }

  .journey-main {
    grid-area: main;
  }

  .journey-layout,
  .journey-topbar,
  .card-step-flow,
  .form-grid,
  .retail-feature-grid,
  .banking-app-grid,
  .card-module-layout,
  .transfer-type-grid,
  .transaction-summary,
  .share-grid,
  .feature-form,
  .feature-form.compact {
    grid-template-columns: 1fr;
  }

  .journey-side {
    position: static;
    height: auto;
  }

  .active-step-card {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .journey-page {
    padding: 6px;
  }

  .journey-main,
  .journey-card,
  .journey-inspector {
    padding: 12px;
  }

  .journey-actions {
    display: grid;
  }
}
