@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Book.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --blue: #15416f;
  --mag: #a72141;
  --cyan: #0ea5e9;
  --green: #10b981;
  --amber: #f59e0b;
  --slate: #343b43;
  --bg: #f6f7fb;
  --ink: #0f172a;
  --ink-soft: #334155;
  --muted: #64748b;
  --shadow-sm: 0 8px 24px rgba(21, 65, 111, 0.08);
  --shadow-lg: 0 18px 42px rgba(21, 65, 111, 0.16);
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.08), transparent 24%),
    linear-gradient(180deg, #f9fbfd 0%, var(--bg) 100%);
  color: var(--ink);
  font-family: "Gotham", system-ui, sans-serif;
}

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

button,
input {
  font: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.shell--wide {
  width: min(1320px, calc(100% - 32px));
}

.page-section {
  padding: 32px 0 56px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.hero--marketing {
  margin-top: 8px;
}

.hero-panel,
.hero-side,
.card,
.login-card,
.logo-band-card,
.value-item,
.story-card,
.audience-card,
.process-step,
.highlight-card,
.showcase-card,
.implementation-card,
.contact-card,
.contact-copy {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.hero-panel {
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.hero-panel--marketing {
  background:
    radial-gradient(circle at top left, rgba(14, 165, 233, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.98));
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -80px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167, 33, 65, 0.16), transparent 68%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(21, 65, 111, 0.08);
  color: var(--blue);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow--light {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.hero-title {
  margin: 18px 0 12px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
}

.hero-copy {
  margin: 0;
  max-width: 58ch;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}

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

.hero-strip {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(21, 65, 111, 0.08);
  color: var(--blue);
  font-weight: 700;
  font-size: 0.9rem;
}

.hero-side {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
}

.hero-side--marketing {
  background: linear-gradient(180deg, rgba(52, 59, 67, 0.98), rgba(21, 65, 111, 0.96));
  color: white;
}

.hero-visual {
  position: relative;
  min-height: 280px;
}

.hero-device {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

.hero-device--primary {
  transform: rotate(-2deg);
}

.hero-device-top {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-device-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
}

.hero-device-body {
  min-height: 210px;
  display: grid;
  place-items: center;
  gap: 14px;
  padding: 24px;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(14, 165, 233, 0.18), transparent 32%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
}

.hero-device-body img {
  width: min(220px, 100%);
  object-fit: contain;
}

.hero-device-copy strong,
.hero-device-copy p,
.hero-floating-card strong,
.hero-floating-card p,
.logo-band-card strong,
.logo-band-card p,
.value-item strong,
.value-item p,
.story-card h2,
.story-card h3,
.story-card p,
.audience-card h3,
.audience-card p,
.showcase-card h3,
.showcase-card p,
.showcase-card strong,
.implementation-card h3,
.implementation-card p,
.highlight-card h3,
.highlight-card p,
.contact-copy h2,
.contact-copy p,
.contact-note,
.contact-success {
  margin: 0;
}

.hero-device-copy p,
.hero-floating-card p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.hero-floating-card {
  position: absolute;
  max-width: 220px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-floating-card--one {
  right: -10px;
  top: 18px;
}

.hero-floating-card--two {
  left: -6px;
  bottom: 12px;
}

.metric-list {
  display: grid;
  gap: 14px;
}

.metric-list--compact {
  margin-top: 10px;
}

.metric {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.metric--spotlight {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(14, 165, 233, 0.18));
}

.metric-label {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.metric-value {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 700;
}

.logo-band,
.value-band,
.story-grid,
.audience-grid,
.module-grid,
.showcase-grid,
.process-grid,
.highlight-grid,
.implementation-grid,
.contact-section {
  margin-top: 30px;
}

.logo-band-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 26px 28px;
}

.logo-band-card img {
  width: 100%;
  max-width: 180px;
  object-fit: contain;
}

.logo-band-card p,
.value-item p,
.story-card p,
.feature-list,
.audience-card p,
.showcase-card p,
.implementation-card p,
.process-step p,
.highlight-card p,
.contact-copy p,
.contact-points p,
.contact-note,
.contact-success {
  color: var(--ink-soft);
  line-height: 1.7;
}

.logo-band-card p,
.value-item p,
.audience-card p,
.showcase-card p,
.implementation-card p {
  margin-top: 10px;
}

.value-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.value-item,
.story-card,
.audience-card,
.process-step,
.showcase-card,
.highlight-card,
.implementation-card,
.contact-copy,
.contact-card {
  padding: 24px;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
}

.story-card--dark {
  background: linear-gradient(135deg, #163455, #203a5e 62%, #0b7fb4);
  color: white;
}

.story-card--dark p {
  color: rgba(255, 255, 255, 0.84);
}

.feature-list {
  margin: 18px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.audience-tag {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(21, 65, 111, 0.08);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.audience-card h3,
.showcase-card h3,
.implementation-card h3,
.process-step h3,
.contact-copy h2 {
  margin-top: 18px;
}

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

.card {
  padding: 22px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.module-media {
  margin: -22px -22px 18px;
  overflow: hidden;
  border-radius: 22px 22px 18px 18px;
  background: linear-gradient(180deg, rgba(21, 65, 111, 0.08), rgba(14, 165, 233, 0.03));
}

.module-media img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.module-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-grid;
  place-items: center;
  font-weight: 700;
  color: white;
}

.module-badge--blue { background: linear-gradient(135deg, #15416f, #2563eb); }
.module-badge--mag { background: linear-gradient(135deg, #a72141, #e11d48); }
.module-badge--cyan { background: linear-gradient(135deg, #0ea5e9, #06b6d4); }
.module-badge--green { background: linear-gradient(135deg, #10b981, #22c55e); }
.module-badge--amber { background: linear-gradient(135deg, #f59e0b, #f97316); }

.card h3 {
  margin: 18px 0 10px;
  font-size: 1.18rem;
}

.card p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 16px;
}

.showcase-card--wide {
  background: linear-gradient(135deg, rgba(21, 65, 111, 0.98), rgba(10, 127, 180, 0.94));
  color: white;
}

.showcase-card--wide p {
  color: rgba(255, 255, 255, 0.82);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-step span,
.implementation-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  color: white;
  font-weight: 700;
}

.process-step span {
  background: linear-gradient(135deg, var(--blue), #2563eb);
}

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

.highlight-card h3 {
  margin: 16px 0 10px;
}

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

.implementation-card span {
  background: linear-gradient(135deg, var(--mag), #e11d48);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 20px;
  align-items: start;
}

.contact-points {
  margin-top: 22px;
  display: grid;
  gap: 16px;
}

.contact-points strong {
  display: block;
  margin-bottom: 4px;
}

.contact-card {
  display: grid;
  gap: 14px;
}

.contact-note {
  font-size: 0.92rem;
}

.contact-success {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(16, 185, 129, 0.08);
  color: #047857;
}

.btn {
  appearance: none;
  border: 0;
  border-radius: 14px;
  padding: 13px 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), #2563eb);
  color: white;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.22);
}

.btn-secondary {
  background: rgba(21, 65, 111, 0.08);
  color: var(--blue);
}

.btn-top {
  background: rgba(255, 255, 255, 0.09);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn-top--ghost {
  background: transparent;
}

.app-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(135deg, var(--slate), #20262c);
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.topbar-row {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-wrap {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-copy {
  min-width: 0;
}

.logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px;
}

.title,
.subtitle {
  margin: 0;
}

.title {
  font-size: 1.04rem;
  font-weight: 700;
}

.subtitle {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.divider {
  padding: 0 8px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.18);
}

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

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 32px 0 16px;
}

.section-heading h2,
.section-heading p {
  margin: 0;
}

.section-heading p {
  color: var(--muted);
  max-width: 56ch;
}

.app-footer {
  padding: 24px 0 34px;
  color: var(--muted);
  text-align: center;
  font-size: 0.92rem;
}

.login-page {
  display: grid;
  place-items: center;
  padding: 40px 16px;
}

.login-layout {
  width: min(1040px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 420px);
  gap: 24px;
}

.login-showcase {
  padding: 34px;
  background: linear-gradient(145deg, rgba(21, 65, 111, 0.96), rgba(14, 165, 233, 0.78));
  border-radius: 28px;
  color: white;
  position: relative;
  overflow: hidden;
}

.login-showcase::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -60px;
  bottom: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
}

.login-card {
  padding: 32px;
}

.login-card h1 {
  margin: 12px 0 10px;
  font-size: 1.9rem;
}

.login-card p {
  color: var(--muted);
  line-height: 1.65;
}

.form-stack {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.94rem;
  font-weight: 700;
}

.field input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(21, 65, 111, 0.12);
  background: white;
  color: var(--ink);
}

.field input:focus {
  outline: 2px solid rgba(37, 99, 235, 0.18);
  border-color: rgba(37, 99, 235, 0.42);
}

.alert {
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 0.95rem;
}

.alert-error {
  background: rgba(225, 29, 72, 0.08);
  color: #be123c;
}

.helper-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.helper-item {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.helper-item strong,
.helper-item p {
  margin: 0;
}

.helper-item p {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.84);
}

@media (max-width: 1040px) {
  .hero,
  .login-layout,
  .value-band,
  .audience-grid,
  .showcase-grid,
  .highlight-grid,
  .implementation-grid {
    grid-template-columns: 1fr 1fr;
  }

  .module-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-grid,
  .contact-section,
  .logo-band-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .hero,
  .login-layout,
  .value-band,
  .story-grid,
  .audience-grid,
  .module-grid,
  .showcase-grid,
  .process-grid,
  .highlight-grid,
  .implementation-grid,
  .contact-section,
  .logo-band-card {
    grid-template-columns: 1fr;
  }

  .topbar-row,
  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .topbar-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .topbar-actions .btn {
    width: 100%;
  }

  .hero-floating-card {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .subtitle {
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .hero-panel,
  .hero-side,
  .card,
  .login-card,
  .login-showcase,
  .logo-band-card,
  .value-item,
  .story-card,
  .audience-card,
  .process-step,
  .showcase-card,
  .highlight-card,
  .implementation-card,
  .contact-copy,
  .contact-card {
    padding: 22px;
    border-radius: 20px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-device-body img {
    width: min(170px, 100%);
  }
}@font-face {
  font-family: "Gotham";
  src: url("../fonts/Gotham-Book.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --blue: #15416f;
  --mag: #a72141;
  --cyan: #0ea5e9;
  --green: #10b981;
  --amber: #f59e0b;
  --slate: #343b43;
  --bg: #f6f7fb;
  --bg-strong: #edf1f7;
  --card: #ffffff;
  --ink: #0f172a;
  --ink-soft: #334155;
  --muted: #64748b;
  --line: rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 8px 24px rgba(21, 65, 111, 0.08);
  --shadow-lg: 0 18px 42px rgba(21, 65, 111, 0.16);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.08), transparent 24%),
    linear-gradient(180deg, #f9fbfd 0%, var(--bg) 100%);
  color: var(--ink);
  font-family: "Gotham", system-ui, sans-serif;
}

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

button,
input {
  font: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.shell--wide {
  width: min(1320px, calc(100% - 32px));
}

.page-section {
  padding: 32px 0 56px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.hero--marketing {
  margin-top: 8px;
}

.hero-panel,
.hero-side,
.card,
.login-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.hero-panel {
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.hero-panel--marketing {
  background:
    radial-gradient(circle at top left, rgba(14, 165, 233, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.98));
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -80px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167, 33, 65, 0.16), transparent 68%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(21, 65, 111, 0.08);
  color: var(--blue);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-title {
  margin: 18px 0 12px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
}

.hero-copy {
  margin: 0;
  max-width: 58ch;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}

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

.hero-side {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.hero-side--marketing {
  background: linear-gradient(180deg, rgba(52, 59, 67, 0.98), rgba(21, 65, 111, 0.96));
  color: white;
}

.hero-side--marketing .metric {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-side--marketing .metric-label {
  color: rgba(255, 255, 255, 0.72);
}

.metric--spotlight {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(14, 165, 233, 0.18));
}

.hero-proof {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-proof strong,
.hero-proof p {
  display: block;
  margin: 0;
}

.hero-proof p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.hero-strip {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(21, 65, 111, 0.08);
  color: var(--blue);
  font-weight: 700;
  font-size: 0.9rem;
}

.metric-list {
  display: grid;
  gap: 14px;
}

.metric {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: var(--bg);
  border: 1px solid rgba(21, 65, 111, 0.08);
}

.metric-label {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.metric-value {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 700;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.value-band,
.story-grid,
.process-grid,
.highlight-grid,
.contact-section {
  margin-top: 30px;
}

.value-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.value-item,
.story-card,
.process-step,
.highlight-card,
.contact-card,
.contact-copy {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-lg);
}

.value-item {
  padding: 22px;
}

.value-item strong,
.value-item p,
.story-card h2,
.story-card h3,
.story-card p,
.highlight-card h3,
.highlight-card p,
.contact-copy h2,
.contact-copy p,
.contact-note,
.contact-success {
  margin: 0;
}

.value-item p {
  margin-top: 10px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
}

.story-card {
  padding: 28px;
}

.story-card--dark {
  background: linear-gradient(135deg, #163455, #203a5e 62%, #0b7fb4);
  color: white;
}

.story-card--dark p {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.75;
}

.eyebrow--light {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.feature-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
  display: grid;
  gap: 10px;
  line-height: 1.65;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-step {
  padding: 22px;
}

.process-step span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  background: rgba(21, 65, 111, 0.08);
  color: var(--blue);
  font-weight: 700;
}

.process-step h3,
.contact-copy h2 {
  margin-top: 18px;
}

.process-step p,
.highlight-card p,
.contact-copy p,
.contact-points p,
.contact-note,
.contact-success {
  color: var(--ink-soft);
  line-height: 1.7;
}

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

.highlight-card {
  padding: 24px;
}

.highlight-card h3 {
  margin: 16px 0 10px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 20px;
  align-items: start;
}

.contact-copy {
  padding: 30px;
}

.contact-points {
  margin-top: 22px;
  display: grid;
  gap: 16px;
}

.contact-points strong {
  display: block;
  margin-bottom: 4px;
}

.contact-card {
  padding: 28px;
  display: grid;
  gap: 14px;
}

.contact-note {
  font-size: 0.92rem;
}

.contact-success {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(16, 185, 129, 0.08);
  color: #047857;
}

.card {
  padding: 22px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.module-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-grid;
  place-items: center;
  font-weight: 700;
  color: white;
}

.module-badge--blue { background: linear-gradient(135deg, #15416f, #2563eb); }
.module-badge--mag { background: linear-gradient(135deg, #a72141, #e11d48); }
.module-badge--cyan { background: linear-gradient(135deg, #0ea5e9, #06b6d4); }
.module-badge--green { background: linear-gradient(135deg, #10b981, #22c55e); }
.module-badge--amber { background: linear-gradient(135deg, #f59e0b, #f97316); }

.card h3 {
  margin: 18px 0 10px;
  font-size: 1.18rem;
}

.card p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.btn {
  appearance: none;
  border: 0;
  border-radius: 14px;
  padding: 13px 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), #2563eb);
  color: white;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.22);
}

.btn-secondary {
  background: rgba(21, 65, 111, 0.08);
  color: var(--blue);
}

.btn-top {
  background: rgba(255, 255, 255, 0.09);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn-top--ghost {
  background: transparent;
}

.app-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(135deg, var(--slate), #20262c);
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.topbar-row {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-wrap {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-copy {
  min-width: 0;
}

.logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px;
}

.title,
.subtitle {
  margin: 0;
}

.title {
  font-size: 1.04rem;
  font-weight: 700;
}

.subtitle {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.divider {
  padding: 0 8px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.18);
}

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

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 32px 0 16px;
}

.section-heading h2,
.section-heading p {
  margin: 0;
}

.section-heading p {
  color: var(--muted);
  max-width: 56ch;
}

.app-footer {
  padding: 24px 0 34px;
  color: var(--muted);
  text-align: center;
  font-size: 0.92rem;
}

.login-page {
  display: grid;
  place-items: center;
  padding: 40px 16px;
}

.login-layout {
  width: min(1040px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 420px);
  gap: 24px;
}

.login-showcase {
  padding: 34px;
  background: linear-gradient(145deg, rgba(21, 65, 111, 0.96), rgba(14, 165, 233, 0.78));
  border-radius: 28px;
  color: white;
  position: relative;
  overflow: hidden;
}

.login-showcase::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -60px;
  bottom: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
}

.login-card {
  padding: 32px;
}

.login-card h1 {
  margin: 12px 0 10px;
  font-size: 1.9rem;
}

.login-card p {
  color: var(--muted);
  line-height: 1.65;
}

.form-stack {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.94rem;
  font-weight: 700;
}

.field input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(21, 65, 111, 0.12);
  background: white;
  color: var(--ink);
}

.field input:focus {
  outline: 2px solid rgba(37, 99, 235, 0.18);
  border-color: rgba(37, 99, 235, 0.42);
}

.alert {
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 0.95rem;
}

.alert-error {
  background: rgba(225, 29, 72, 0.08);
  color: #be123c;
}

.helper-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.helper-item {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.helper-item strong,
.helper-item p {
  margin: 0;
}

.helper-item p {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.84);
}

@media (max-width: 1040px) {
  .hero,
  .login-layout,
  .module-grid {
    grid-template-columns: 1fr 1fr;
  }

  .value-band,
  .process-grid,
  .highlight-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .hero,
  .login-layout,
  .module-grid {
    grid-template-columns: 1fr;
  }

  .value-band,
  .story-grid,
  .process-grid,
  .highlight-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .topbar-row,
  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .topbar-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .topbar-actions .btn {
    width: 100%;
  }

  .subtitle {
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .hero-panel,
  .hero-side,
  .card,
  .login-card,
  .login-showcase,
  .value-item,
  .story-card,
  .process-step,
  .highlight-card,
  .contact-copy,
  .contact-card {
    padding: 22px;
    border-radius: 20px;
  }

  .hero-title {
    font-size: 1.8rem;
  }
}
