:root {
  --navy-980: #071524;
  --navy-950: #0a1d33;
  --navy-900: #102946;
  --navy-820: #1a4573;
  --navy-760: #255a93;
  --cyan-500: #25b7ff;
  --cyan-420: #73d9ff;
  --teal-420: #4fd6c8;
  --green-420: #56d486;
  --ice-100: #f7fbfe;
  --ice-200: #e8f1f9;
  --white: #ffffff;
  --ink: #112236;
  --muted: #61748b;
  --line: rgba(17, 34, 54, 0.1);
  --line-strong: rgba(17, 34, 54, 0.14);
  --line-light: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 28px 72px rgba(8, 24, 43, 0.12);
  --shadow-deep: 0 44px 96px rgba(6, 18, 32, 0.32);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --content-max: 2140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(37, 183, 255, 0.15), transparent 26rem),
    radial-gradient(circle at 90% 10%, rgba(37, 86, 143, 0.14), transparent 30rem),
    linear-gradient(180deg, #f8fbfe 0%, #eef4fa 100%);
  animation: page-in 260ms ease-out both;
}

@keyframes page-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bahnschrift", "Aptos Display", "Segoe UI Variable Display", sans-serif;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

svg {
  width: 100%;
  height: auto;
}

.page-shell {
  width: min(calc(100% - clamp(24px, 2.8vw, 88px)), var(--content-max));
  margin: 0 auto;
  padding: 24px 0 64px;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  padding: 16px 22px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 44px rgba(8, 24, 43, 0.08);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  padding: 8px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(231, 240, 248, 0.88), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(37, 86, 143, 0.16);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1.12rem;
  color: var(--navy-950);
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.nav a,
.nav summary,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav a,
.nav summary {
  color: var(--navy-820);
  background: rgba(37, 86, 143, 0.1);
}

.nav a:hover,
.nav summary:hover,
.button:hover,
.realization-card:hover,
.back-link:hover {
  transform: translateY(-1px);
}

.nav-dropdown {
  position: relative;
}

.nav summary {
  list-style: none;
  cursor: pointer;
}

.nav summary::-webkit-details-marker {
  display: none;
}

.nav summary::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.nav-dropdown[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 60;
  display: grid;
  width: min(520px, calc(100vw - 32px));
  max-height: min(70vh, 620px);
  overflow: auto;
  padding: 12px;
  border-radius: 26px;
  text-align: left;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(37, 86, 143, 0.12);
  box-shadow: var(--shadow-soft);
  transform: translateX(-50%);
}

.nav-dropdown:not([open]) .nav-dropdown-panel {
  display: none;
}

.nav .nav-dropdown-link {
  justify-content: flex-start;
  gap: 12px;
  min-height: auto;
  padding: 12px;
  border-radius: 18px;
  background: transparent;
  text-align: left;
}

.nav .nav-dropdown-link:hover {
  background: rgba(37, 86, 143, 0.08);
}

.nav-dropdown-link strong,
.nav-dropdown-link small {
  display: block;
}

.nav-dropdown-link strong {
  color: var(--navy-950);
  font-size: 0.95rem;
}

.nav-dropdown-link small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.nav-dropdown-icon {
  width: 38px;
  height: 38px;
  flex-basis: 38px;
  border-radius: 14px;
}

.nav-dropdown-icon svg {
  width: 18px;
  height: 18px;
}

.button {
  border: 1px solid transparent;
  color: var(--white);
  background: linear-gradient(135deg, #0f3155 0%, #1e5f9c 52%, #25b7ff 100%);
  box-shadow: 0 18px 30px rgba(20, 54, 93, 0.18);
}

.button.secondary,
.button.ghost {
  color: var(--navy-820);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(37, 86, 143, 0.18);
  box-shadow: none;
}

.button.is-placeholder {
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
  cursor: default;
  pointer-events: none;
}

.demo-hero-copy .button.is-placeholder {
  color: var(--navy-820);
  background: rgba(37, 86, 143, 0.08);
  border-color: rgba(37, 86, 143, 0.14);
}

.desktop-only {
  display: inline-flex;
}

.eyebrow,
.card-label,
.panel-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow,
.card-label {
  color: var(--navy-820);
  background: rgba(37, 183, 255, 0.1);
}

.panel-tag {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
}

.hero,
.journey-section,
.dashboard-section,
.audience-section,
.contact-section,
.demo-page {
  margin-top: 32px;
  scroll-margin-top: 120px;
}

.hero-intro-card,
.journey-card,
.dashboard-panel,
.realization-card,
.contact-card,
.demo-hero-copy,
.demo-preview-card,
.demo-info-card,
.demo-pages-card,
.demo-cta-card {
  border-radius: var(--radius-xl);
}

.hero-intro-card {
  position: relative;
  overflow: hidden;
  padding: 48px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.97), rgba(243, 249, 252, 0.9)),
    radial-gradient(circle at bottom right, rgba(37, 183, 255, 0.12), transparent 18rem);
  border: 1px solid rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.hero-intro-card::after {
  content: "";
  position: absolute;
  right: -96px;
  bottom: -96px;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 183, 255, 0.22), transparent 70%);
  pointer-events: none;
}

.hero-intro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.84fr);
  gap: 34px;
  align-items: center;
}

.hero-copy {
  display: grid;
  align-content: start;
  gap: 0;
}

.hero-copy .eyebrow,
.hero-area-heading .eyebrow,
.section-heading .eyebrow,
.contact-copy .eyebrow,
.demo-info-card .eyebrow,
.demo-pages-card .eyebrow,
.demo-cta-card .eyebrow,
.demo-hero-copy .eyebrow,
.back-link,
.footer small {
  width: fit-content;
}

.hero h1,
.demo-hero h1 {
  color: var(--navy-950);
}

.hero h1 {
  max-width: 14.6ch;
  font-size: clamp(3.2rem, 4vw, 5.6rem);
}

.hero-lead {
  margin-top: 22px;
  max-width: 44ch;
  font-size: 1.1rem;
}

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

.hero-area-panel {
  display: grid;
  gap: 18px;
}

.hero-area-heading h2 {
  margin-top: 12px;
  color: var(--navy-950);
  font-size: clamp(1.7rem, 2vw, 2.4rem);
}

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

.hero-area-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 104px;
  padding: 18px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(231, 240, 248, 0.88), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(37, 86, 143, 0.12);
  box-shadow: 0 12px 28px rgba(17, 34, 54, 0.05);
}

.hero-area-card strong,
.journey-point-card strong,
.status-card strong,
.realization-copy strong,
.demo-info-card h2,
.demo-pages-card h2,
.demo-cta-card h2,
.footer strong {
  display: block;
  color: var(--navy-950);
}

.hero-area-card strong {
  margin-bottom: 6px;
  font-size: 1.04rem;
}

.icon-bubble {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 18px;
}

.icon-bubble svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-cyan {
  color: #0d3d66;
  background: linear-gradient(180deg, rgba(114, 215, 255, 0.9), rgba(37, 183, 255, 0.42));
}

.icon-blue,
.icon-indigo {
  color: #dff6ff;
  background: linear-gradient(180deg, rgba(37, 86, 143, 0.94), rgba(16, 41, 70, 0.94));
}

.icon-ice,
.icon-medical {
  color: #184c7e;
  background: linear-gradient(180deg, rgba(231, 241, 249, 0.96), rgba(212, 228, 240, 0.94));
}

.icon-navy,
.icon-cnc,
.icon-slate {
  color: #dff6ff;
  background: linear-gradient(180deg, rgba(10, 29, 51, 0.98), rgba(16, 41, 70, 0.96));
}

.icon-teal {
  color: #083b49;
  background: linear-gradient(180deg, rgba(132, 239, 229, 0.9), rgba(79, 214, 200, 0.42));
}

.icon-green {
  color: #0b4730;
  background: linear-gradient(180deg, rgba(139, 243, 177, 0.88), rgba(86, 212, 134, 0.44));
}

.section-heading {
  max-width: 960px;
  margin-bottom: 24px;
}

.compact-heading {
  max-width: 760px;
}

.section-heading h1,
.section-heading h2,
.demo-pages-card h2,
.demo-cta-card h2 {
  color: var(--navy-950);
  font-size: clamp(2.2rem, 3.2vw, 4rem);
}

.section-heading p,
.demo-pages-card p {
  margin-top: 14px;
  font-size: 1.04rem;
}

.journey-grid,
.demo-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.journey-card,
.realization-card,
.demo-info-card,
.demo-pages-card,
.demo-cta-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 250, 254, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.journey-card {
  display: grid;
  gap: 18px;
  padding: 30px;
}

.journey-card h3 {
  color: var(--navy-950);
  font-size: clamp(1.8rem, 2.6vw, 2.8rem);
}

.journey-copy {
  font-size: 1rem;
}

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

.journey-point-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(37, 86, 143, 0.05);
  border: 1px solid rgba(37, 86, 143, 0.08);
}

.journey-point-card strong {
  margin-bottom: 8px;
  font-size: 1rem;
}

.journey-summary {
  padding: 18px 20px;
  border-radius: 22px;
  font-weight: 700;
  color: var(--navy-820);
  background: rgba(37, 183, 255, 0.08);
}

.before-card .journey-summary {
  color: #7b4513;
  background: rgba(255, 177, 110, 0.18);
}

.dashboard-panel {
  display: grid;
  gap: 20px;
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(37, 183, 255, 0.12), transparent 16rem),
    linear-gradient(180deg, rgba(8, 24, 43, 0.98), rgba(11, 33, 57, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-deep);
}

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

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

.status-card {
  min-height: 114px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.status-card strong,
.chart-legend strong {
  color: var(--white);
}

.status-card strong {
  margin-bottom: 10px;
  font-size: 1.04rem;
}

.status-card small,
.chart-legend small {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.5;
}

.chart-card {
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(7, 22, 38, 0.68), rgba(10, 28, 48, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.chart-legend {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.chart-legend strong {
  font-size: 1.08rem;
}

.chart-legend small {
  max-width: 18rem;
  font-size: 0.94rem;
}

.hero-chart {
  display: block;
  width: 100%;
  height: auto;
}

.realization-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.realization-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.94);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.realization-card:hover {
  border-color: rgba(37, 86, 143, 0.16);
}

.realization-copy {
  display: grid;
  gap: 10px;
}

.realization-copy strong {
  font-size: 1.24rem;
}

.realization-subtitle {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--navy-820);
  background: rgba(37, 86, 143, 0.08);
}

.realization-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-820);
  font-size: 0.94rem;
  font-weight: 800;
}

.realization-link::after {
  content: "→";
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(8, 24, 43, 0.98), rgba(15, 49, 85, 0.96)),
    radial-gradient(circle at top right, rgba(37, 183, 255, 0.2), transparent 16rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-deep);
}

.contact-card .eyebrow,
.demo-cta-card .eyebrow {
  color: #8fe4ff;
  background: rgba(37, 183, 255, 0.12);
}

.contact-card h2,
.contact-card p,
.contact-meta a,
.contact-meta span,
.demo-cta-card h2,
.demo-cta-card p {
  color: var(--white);
}

.contact-card h2,
.demo-cta-card h2 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.contact-meta {
  display: grid;
  gap: 10px;
  justify-items: end;
  text-align: right;
}

.contact-meta a,
.contact-meta span {
  font-size: 1rem;
  font-weight: 700;
}

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  padding: 24px 6px 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.footer-brand div {
  display: grid;
  gap: 2px;
}

.footer-brand small {
  color: var(--muted);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.footer-contact a,
.footer small {
  color: var(--muted);
  font-size: 0.92rem;
}

.demo-page {
  display: grid;
  gap: 24px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-820);
  font-size: 0.92rem;
  font-weight: 800;
}

.back-link::before {
  content: "←";
}

.demo-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 24px;
  align-items: stretch;
}

.demo-hero-copy,
.demo-preview-card,
.demo-info-card,
.demo-pages-card {
  padding: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(243, 249, 252, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.demo-hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 4vw, 4.8rem);
}

.demo-lead {
  margin-top: 18px;
  font-size: 1.04rem;
}

.demo-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tag-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--navy-820);
  font-size: 0.84rem;
  font-weight: 800;
  background: rgba(37, 183, 255, 0.1);
}

.demo-preview-card {
  display: grid;
  gap: 16px;
}

.demo-preview-frame {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(37, 86, 143, 0.12);
  background: linear-gradient(180deg, #f5fbff, #edf5fb);
}

.demo-visual-shell {
  display: grid;
  gap: 18px;
  min-height: 430px;
  padding: 22px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 8%, rgba(37, 183, 255, 0.24), transparent 18rem),
    linear-gradient(155deg, rgba(7, 21, 36, 0.98), rgba(13, 40, 69, 0.96));
}

.demo-visual-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.demo-visual-top strong,
.demo-visual-top small,
.demo-visual-metric strong,
.demo-visual-metric span,
.demo-visual-list strong,
.demo-visual-list span,
.demo-visual-footer span {
  display: block;
}

.demo-visual-top strong {
  color: var(--white);
  font-size: 1.08rem;
}

.demo-visual-top small,
.demo-visual-metric span,
.demo-visual-list span,
.demo-visual-footer span {
  color: rgba(255, 255, 255, 0.68);
}

.demo-visual-icon {
  width: 50px;
  height: 50px;
  flex-basis: 50px;
}

.demo-visual-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.demo-visual-metric {
  min-height: 92px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.demo-visual-metric span {
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.demo-visual-metric strong {
  color: var(--white);
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  line-height: 1.08;
}

.demo-visual-body {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 1fr);
  gap: 14px;
  align-items: stretch;
}

.demo-visual-chart,
.demo-visual-list {
  min-height: 210px;
  border-radius: 22px;
  background: rgba(4, 15, 27, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.demo-visual-chart {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  padding: 22px;
}

.demo-visual-chart span {
  position: relative;
  display: block;
  width: 100%;
  height: var(--bar-height);
  min-height: 42px;
  border-radius: 16px 16px 8px 8px;
  background: linear-gradient(180deg, var(--cyan-420), #2470b7);
  box-shadow: 0 14px 26px rgba(37, 183, 255, 0.16);
}

.demo-visual-chart i {
  position: absolute;
  left: 50%;
  bottom: -24px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  transform: translateX(-50%);
}

.demo-visual-list {
  display: grid;
  gap: 10px;
  align-content: center;
  margin: 0;
  padding: 16px;
  list-style: none;
}

.demo-visual-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.demo-visual-list span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #082238;
  font-size: 0.74rem;
  font-weight: 900;
  background: linear-gradient(180deg, #dff7ff, #73d9ff);
}

.demo-visual-list strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.28;
}

.demo-visual-footer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.demo-visual-footer span {
  min-height: 38px;
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.demo-preview-note {
  font-size: 0.92rem;
}

.demo-info-card h2 {
  font-size: clamp(1.6rem, 2.3vw, 2.4rem);
}

.demo-info-card p {
  margin-top: 12px;
}

.demo-pages-card,
.demo-cta-card {
  padding: 30px;
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.question-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(37, 86, 143, 0.05);
  border: 1px solid rgba(37, 86, 143, 0.08);
}

.question-index {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  color: var(--navy-820);
  font-size: 0.78rem;
  font-weight: 800;
  background: rgba(37, 183, 255, 0.12);
}

.question-card p {
  color: var(--navy-950);
  font-weight: 700;
}

.demo-cta-card {
  display: grid;
  gap: 0;
  background:
    linear-gradient(135deg, rgba(8, 24, 43, 0.98), rgba(15, 49, 85, 0.96)),
    radial-gradient(circle at top right, rgba(37, 183, 255, 0.2), transparent 16rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-deep);
}

.demo-cta-card .demo-actions {
  margin-top: 24px;
}

.demo-cta-card .button.secondary {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

@media (max-width: 1360px) {
  .hero-intro-grid,
  .demo-hero {
    grid-template-columns: 1fr;
  }

  .journey-grid,
  .demo-info-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-strip-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .demo-visual-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1080px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--content-max));
    padding-top: 14px;
  }

  .topbar {
    position: static;
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px;
    border-radius: 28px;
  }

  .brand {
    justify-content: center;
  }

  .desktop-only {
    display: none;
  }

  .hero-intro-card,
  .journey-card,
  .dashboard-panel,
  .realization-card,
  .contact-card,
  .demo-hero-copy,
  .demo-preview-card,
  .demo-info-card,
  .demo-pages-card,
  .demo-cta-card {
    padding: 24px;
  }

  .dashboard-strip,
  .dashboard-strip-wide,
  .question-grid,
  .journey-points-grid {
    grid-template-columns: 1fr;
  }

  .chart-legend,
  .contact-card {
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .contact-meta {
    justify-items: start;
    text-align: left;
  }

  .nav-dropdown-panel {
    left: auto;
    right: 0;
    transform: none;
  }
}

@media (max-width: 720px) {
  .nav {
    justify-content: center;
  }

  .nav a,
  .nav summary,
  .nav-dropdown,
  .button {
    width: 100%;
  }

  .nav-dropdown-panel {
    position: static;
    width: 100%;
    max-height: none;
    margin-top: 8px;
    transform: none;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(2.6rem, 11vw, 4.4rem);
  }

  .hero-lead,
  .section-heading p,
  .journey-copy,
  .journey-summary,
  .status-card small,
  .realization-copy p,
  .contact-card p,
  .demo-lead,
  .demo-info-card p,
  .demo-pages-card p,
  .demo-preview-note,
  .question-card p {
    font-size: 0.97rem;
  }

  .hero-area-card,
  .realization-card {
    gap: 14px;
  }

  .hero-area-card,
  .contact-card,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero-area-card {
    align-items: start;
  }

  .footer {
    justify-items: start;
  }

  .footer-contact {
    justify-content: flex-start;
  }

  .demo-visual-metrics,
  .demo-visual-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .demo-visual-shell {
    min-height: auto;
    padding: 18px;
  }
}

@media (min-width: 1500px) {
  .dashboard-section .section-heading {
    max-width: 780px;
  }

  .dashboard-section .section-heading h2 {
    font-size: clamp(2.4rem, 2.4vw, 3.35rem);
  }

  .dashboard-panel {
    grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
    align-items: start;
    gap: 24px;
    padding: 28px;
  }

  .dashboard-strip-wide {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .status-card {
    min-height: 108px;
    padding: 16px;
  }

  .chart-card {
    display: grid;
    justify-self: center;
    width: min(100%, 1120px);
    min-height: 500px;
  }

  .hero-chart {
    max-height: 460px;
  }
}

@media (min-width: 1800px) {
  :root {
    --content-max: 2200px;
  }

  .hero-intro-grid {
    grid-template-columns: minmax(0, 1.16fr) minmax(540px, 0.84fr);
  }

  .hero h1 {
    max-width: 15.6ch;
    font-size: clamp(3.8rem, 3.7vw, 6.2rem);
  }
}

@media (min-width: 2200px) {
  :root {
    --content-max: 2300px;
  }
}
