:root {
  --navy: #0f2b5b;
  --navy-deep: #0a1f42;
  --navy-soft: #1a3d73;
  --accent: #3b82f6;
  --accent-soft: #dbeafe;
  --text: #0f172a;
  --text-muted: #475569;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --border: #e2e8f0;
  --radius: 16px;
  --shadow: 0 20px 50px rgba(15, 43, 91, 0.12);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-fa: "Vazirmatn", "Plus Jakarta Sans", system-ui, sans-serif;
  --space-section-y: clamp(2.5rem, 4.5vw, 3.5rem);
  --space-section-cta: clamp(3rem, 5vw, 4rem);
  --space-head-bottom: clamp(1.15rem, 2.2vw, 1.65rem);
  --space-stack: 1rem;
  --line-height-body: 1.7;
  --line-height-copy: 1.65;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--surface-2);
  line-height: var(--line-height-body);
}

html[dir="rtl"] body,
body.is-rtl {
  font-family: var(--font-fa);
}

button,
input,
textarea,
select {
  font: inherit;
}

html.i18n-pending:not(.i18n-ready) body {
  visibility: hidden;
}

.skip-link {
  position: absolute;
  top: 0.75rem;
  inset-inline-start: 0.75rem;
  z-index: 100;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.15s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1120px, calc(100% - 3rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 72px;
}

.site-header__brand-group {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.site-header__brand-group > .site-nav {
  margin-inline-start: clamp(0.75rem, 1.6vw, 1.1rem);
  padding-inline-start: clamp(0.75rem, 1.6vw, 1.1rem);
  border-inline-start: 1px solid #e2e8f0;
}

.site-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  flex-shrink: 0;
}

.site-nav__toggle-bar {
  display: block;
  width: 1rem;
  height: 2px;
  margin-inline: auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav__toggle[aria-expanded="true"] .site-nav__toggle-bar:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.site-nav__toggle[aria-expanded="true"] .site-nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-nav__toggle[aria-expanded="true"] .site-nav__toggle-bar:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.site-nav {
  display: flex;
  justify-content: flex-start;
}

.site-nav__list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(1.35rem, 3vw, 2.5rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.48rem 0.9rem;
  border-radius: 10px;
  color: var(--navy-soft);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  transition:
    color 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease;
}

.site-nav__link:hover {
  background: #f1f5f9;
  color: var(--navy);
}

.site-nav__link.is-active {
  background: #eff6ff;
  color: var(--accent);
  box-shadow: inset 0 0 0 1px #dbeafe;
}

.site-nav__chevron {
  flex-shrink: 0;
  width: 0.72rem;
  height: 0.72rem;
  opacity: 0.55;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

[dir="rtl"] .site-nav__chevron {
  transform: scaleX(-1);
}

.site-nav__link:hover .site-nav__chevron,
.site-nav__link.is-active .site-nav__chevron {
  opacity: 0.9;
}

.site-nav__link:hover .site-nav__chevron {
  transform: translateX(2px);
}

[dir="rtl"] .site-nav__link:hover .site-nav__chevron {
  transform: scaleX(-1) translateX(2px);
}

.site-nav__item--dropdown {
  position: relative;
}

.site-nav__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.48rem 0.9rem;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--navy-soft);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition:
    color 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease;
}

.site-nav__trigger:hover,
.site-nav__trigger.is-active {
  background: #f1f5f9;
  color: var(--navy);
}

.site-nav__trigger.is-active {
  background: #eff6ff;
  color: var(--accent);
  box-shadow: inset 0 0 0 1px #dbeafe;
}

.site-nav__item--dropdown.is-open .site-nav__trigger {
  background: #eff6ff;
  color: var(--accent);
  box-shadow: inset 0 0 0 1px #dbeafe;
}

.site-nav__item--dropdown.is-open .site-nav__chevron {
  transform: rotate(180deg);
  opacity: 0.9;
}

[dir="rtl"] .site-nav__item--dropdown.is-open .site-nav__chevron {
  transform: scaleX(-1) rotate(180deg);
}

.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 0.55rem);
  inset-inline-start: 0;
  z-index: 30;
  min-width: min(52rem, calc(100vw - 2rem));
  padding: 1rem 1.05rem;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(15, 43, 91, 0.12);
}

.site-nav__dropdown[hidden] {
  display: none;
}

.site-nav__dropdown-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.1rem 1rem;
}

.site-nav__group--strategy { --menu-group-color: #2563eb; }
.site-nav__group--justify { --menu-group-color: #0891b2; }
.site-nav__group--design { --menu-group-color: #7c3aed; }
.site-nav__group--build { --menu-group-color: #ca8a04; }
.site-nav__group--protect { --menu-group-color: #047857; }

.site-nav__group {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: start;
}

.site-nav__group-title {
  margin: 0 0 0.55rem;
  padding: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--menu-group-color, var(--accent));
}

.site-nav__group-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.1rem;
}

.site-nav__dropdown-link {
  display: block;
  padding-block: 0.38rem;
  padding-inline: 0;
  border-radius: 8px;
  color: var(--navy-soft);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
  text-align: start;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.site-nav__dropdown-link:hover {
  background: #f1f5f9;
  color: var(--navy);
}

.btn--nav-cta {
  padding-inline: 1.1rem 0.95rem;
}

.btn__arrow {
  flex-shrink: 0;
}

[dir="rtl"] .btn__arrow {
  transform: scaleX(-1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand__logo {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  border-radius: 12px;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--navy), var(--navy-soft));
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand__text strong {
  font-size: 1rem;
}

.brand__text span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-inline-start: auto;
  flex-shrink: 0;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-weight: 700;
  font-size: 0.78rem;
  text-decoration: none;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.65rem 1.2rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

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

.btn--primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 10px 24px rgba(15, 43, 91, 0.22);
}

.btn--primary:hover {
  background: var(--navy-soft);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}

.btn--inverse {
  background: #fff;
  color: var(--navy);
}

.btn--lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 9vw, 6.5rem) 0 clamp(4rem, 7vw, 5.5rem);
  background:
    radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.14), transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}

.hero__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

.hero__content {
  max-width: 640px;
}

.idea-strip {
  max-width: 820px;
  margin: clamp(2rem, 4vw, 2.75rem) auto 0;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: calc(var(--radius) + 4px);
  background:
    radial-gradient(circle at 12% 0%, rgba(59, 130, 246, 0.08), transparent 45%),
    #f8fafc;
  border: 1px solid var(--border);
}

.idea-strip__label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
}

.idea-strip__row {
  display: flex;
  gap: 0.85rem;
  align-items: stretch;
}

.idea-strip__input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.85rem 1.1rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.idea-strip__input:focus {
  outline: 2px solid rgba(59, 130, 246, 0.35);
  border-color: #93c5fd;
}

.hero__preview {
  justify-self: stretch;
}

.hero-preview {
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 6px);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-preview__chrome {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.85rem;
  background: linear-gradient(180deg, #f8fafc, #f1f5f9);
  border-bottom: 1px solid var(--border);
}

.hero-preview__chrome-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #cbd5e1;
}

.hero-preview__chrome-dot:nth-child(1) {
  background: #fca5a5;
}

.hero-preview__chrome-dot:nth-child(2) {
  background: #fcd34d;
}

.hero-preview__chrome-dot:nth-child(3) {
  background: #86efac;
}

.hero-preview__body {
  padding: 1.1rem 1.2rem 1.25rem;
}

.hero-preview__head {
  margin-bottom: 0.95rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.hero-preview__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--navy);
}

.hero-preview__heading {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--navy-soft);
  letter-spacing: 0.02em;
}

.hero-preview__section + .hero-preview__section {
  margin-top: 0.9rem;
}

.hero-preview__para {
  display: grid;
  gap: 0.4rem;
}

.hero-preview__bar {
  height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #e2e8f0, #f1f5f9);
}

.hero-preview__bar--medium {
  width: 82%;
}

.hero-preview__bar--short {
  width: 58%;
}

.hero-preview__process {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0.75rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.hero-preview__process-block {
  position: relative;
  flex: 1;
  min-width: 0;
  height: 1.5rem;
  border-radius: 7px;
  border: 1px solid #bfdbfe;
  background: linear-gradient(180deg, #eff6ff, #dbeafe);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.hero-preview__process-block::before {
  content: "";
  position: absolute;
  top: 0.28rem;
  inset-inline: 0.35rem;
  height: 0.32rem;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.55);
}

.hero-preview__process-block--accent {
  border-color: #3b82f6;
  background: linear-gradient(180deg, #60a5fa, #2563eb);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.hero-preview__process-block--accent::before {
  background: rgba(255, 255, 255, 0.28);
}

.hero-preview__process-arrow {
  display: flex;
  flex: 0 0 1.15rem;
  align-items: center;
  justify-content: center;
  color: #64748b;
}

.hero-preview__process-arrow-icon {
  display: block;
  width: 1.1rem;
  height: auto;
}

[dir="rtl"] .hero-preview__process-arrow-icon {
  transform: scaleX(-1);
}

.hero-preview__table-wrap {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.hero-preview__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 0.72rem;
}

.hero-preview__table th,
.hero-preview__table td {
  padding: 0.45rem 0.55rem;
  border: 1px solid #e2e8f0;
  vertical-align: middle;
}

.hero-preview__table thead th {
  background: #f1f5f9;
  border-bottom-width: 2px;
  border-bottom-color: #cbd5e1;
}

.hero-preview__table tbody tr:nth-child(even) td {
  background: #f8fafc;
}

.hero-preview__table-skel {
  display: block;
  height: 0.4rem;
  border-radius: 3px;
  background: #cbd5e1;
}

.hero-preview__table-skel--wide {
  width: 88%;
}

.hero-preview__table-skel--short {
  width: 62%;
  margin-inline: auto;
}

.hero__glow {
  position: absolute;
  inset: auto -10% -40% auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(15, 43, 91, 0.12), transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  max-width: 760px;
}

@media (max-width: 900px) {
  .hero__layout {
    grid-template-columns: 1fr;
  }

  .hero__preview {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .idea-strip__row {
    flex-direction: column;
  }

  .idea-strip__row .btn {
    width: 100%;
  }
}

.hero__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-soft);
}

.hero__title {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero__title-line {
  display: block;
  color: var(--navy);
}

.hero__title-highlight {
  color: var(--accent);
}

.hero__title-navy {
  color: var(--navy);
}

.hero__title-line--minor {
  font-size: 0.72em;
  margin-top: 0.15em;
}

body.is-rtl .hero__title {
  line-height: 1.15;
  letter-spacing: 0;
}

.hero__subtitle {
  margin: 1.25rem 0 0;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 700;
  color: var(--navy);
}

.hero__lead {
  margin: 1.35rem 0 0;
  max-width: 58ch;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: var(--line-height-copy);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.value-props {
  padding: var(--space-section-y) 0;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--border);
}

.value-props__head {
  margin-bottom: 0;
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 920px;
  margin: 0 auto;
}

.value-strip__item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.35rem 1.35rem;
}

.value-strip__item:not(:last-child) {
  border-inline-end: 1px solid var(--border);
}

.value-strip__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
}

.value-strip__icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.value-strip__item--speed .value-strip__icon {
  background: #ecfeff;
  color: #0891b2;
}

.value-strip__item--coverage .value-strip__icon {
  background: #eff6ff;
  color: #2563eb;
}

.value-strip__item--quality .value-strip__icon {
  background: #ecfdf5;
  color: #047857;
}

.value-strip__title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: var(--navy);
}

.value-strip__desc {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: var(--line-height-copy);
}

@media (max-width: 820px) {
  .value-strip {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .value-strip__item {
    padding: 0;
    border-inline-end: none !important;
  }
}

.how-it-works {
  padding: var(--space-section-y) 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.how-it-works__head {
  margin-bottom: 0;
}

.how-flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 980px;
  margin: 0 auto;
}

.how-flow__step {
  flex: 1;
  min-width: 0;
  text-align: center;
  padding: 0 0.65rem;
}

.how-flow__num,
.act-card__phase-num,
.act-card__stage-num,
.uc-report__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
  font-family: var(--font);
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum", "tnum";
}

.how-flow__num {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
  box-shadow: 0 8px 18px rgba(15, 43, 91, 0.14);
}

.how-flow__title {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
  color: var(--navy);
}

.how-flow__desc {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: var(--line-height-copy);
}

.how-flow__arrow {
  display: flex;
  flex: 0 0 1.75rem;
  align-items: center;
  justify-content: center;
  align-self: center;
  color: #94a3b8;
  padding-top: 1.5rem;
}

.how-flow__arrow-icon {
  display: block;
  width: 1.15rem;
  height: auto;
}

[dir="rtl"] .how-flow__arrow-icon {
  transform: scaleX(-1);
}

@media (max-width: 800px) {
  .how-flow {
    flex-direction: column;
    gap: 0;
    max-width: 28rem;
  }

  .how-flow__arrow {
    display: none;
  }

  .how-flow__step {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 0.85rem;
    row-gap: 0.2rem;
    text-align: start;
    padding: 0 0 1.35rem 0;
  }

  .how-flow__step:not(:last-child)::after {
    content: "";
    position: absolute;
    inset-inline-start: 1.15rem;
    bottom: 0.35rem;
    width: 2px;
    height: 0.85rem;
    background: #dbeafe;
    border-radius: 2px;
  }

  .how-flow__num {
    grid-row: 1 / span 2;
    margin: 0;
    align-self: start;
    width: 2.15rem;
    height: 2.15rem;
    font-size: 0.82rem;
  }

  .how-flow__title {
    align-self: end;
  }
}

.roadmap {
  padding: var(--space-section-y) 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(59, 130, 246, 0.06), transparent 38%),
    linear-gradient(180deg, #f8fafc 0%, #fff 50%, #f8fafc 100%);
  border-top: 1px solid var(--border);
}

.roadmap .section-head {
  margin-bottom: var(--space-head-bottom);
}

.roadmap__board {
  position: relative;
  padding: 0.5rem 0;
}

.roadmap__columns {
  display: none;
}

.acts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

@media (min-width: 821px) {
  .roadmap__columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }

  .roadmap__column-line {
    margin: 0.5rem 1.35rem;
    border-inline-start: 2px dashed #dbeafe;
    border-radius: 2px;
  }

  .act-card--protect {
    grid-column: 1 / -1;
    max-width: 38rem;
    justify-self: center;
    width: 100%;
  }

  .act-card--protect .act-card__stages-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .act-card--protect .act-card__stage:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 820px) {
  .acts {
    grid-template-columns: minmax(0, 1fr);
  }

  .act-card__head {
    grid-template-columns: 1fr;
  }

  .act-card__phase-mark {
    display: none;
  }

  .act-card__stages {
    padding-inline-start: 0;
  }
}

.act-card {
  scroll-margin-top: 5.5rem;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 10px 30px rgba(15, 43, 91, 0.06);
  overflow: hidden;
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.act-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 16px 36px rgba(15, 43, 91, 0.09);
}

.act-card--highlight {
  border-color: #93c5fd;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12), 0 16px 36px rgba(15, 43, 91, 0.09);
}

.act-card--collapsed .act-card__stages-list {
  display: none;
}

.act-card--strategy {
  --act-color: #2563eb;
  --act-soft: #eff6ff;
}

.act-card--justify {
  --act-color: #0891b2;
  --act-soft: #ecfeff;
}

.act-card--design {
  --act-color: #7c3aed;
  --act-soft: #f5f3ff;
}

.act-card--build {
  --act-color: #ca8a04;
  --act-soft: #fefce8;
}

.act-card--protect {
  --act-color: #047857;
  --act-soft: #ecfdf5;
}

.act-card__phase-mark {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 2.75rem;
  padding: 1rem 0 0;
  background: var(--act-soft);
  border-inline-end: 1px solid #e2e8f0;
}

.act-card__phase-num {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  background: var(--act-color);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 0 0 4px #fff;
}

.act-card__head {
  display: grid;
  grid-template-columns: auto 1fr;
  margin: 0;
}

.act-card--collapsed .act-card__head {
  grid-template-columns: 1fr;
}

.act-card--collapsed .act-card__phase-mark {
  display: none;
}

.act-card__head-main {
  padding: 0.95rem 1rem 0.85rem;
  background: linear-gradient(180deg, var(--act-soft) 0%, #fff 100%);
  border-bottom: 1px solid #eef2f7;
  cursor: pointer;
  transition: background 0.15s ease;
}

.act-card__head-main:hover {
  background: linear-gradient(180deg, var(--act-soft) 0%, #f8fafc 100%);
}

.act-card--collapsed .act-card__head-main {
  border-bottom: none;
  padding-bottom: 0.95rem;
}

.act-card__head-top {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.act-card__toggle {
  margin-inline-start: auto;
  width: 1.55rem;
  height: 1.55rem;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #fff;
  position: relative;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.act-card__toggle::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0.4rem;
  height: 0.4rem;
  border-right: 2px solid var(--navy-soft);
  border-bottom: 2px solid var(--navy-soft);
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform 0.15s ease;
}

.act-card--collapsed .act-card__toggle::after {
  transform: rotate(-135deg) translate(-1px, -1px);
}

.act-card__icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: var(--act-color);
  color: #fff;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.act-card__icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.act-card__meta {
  min-width: 0;
  flex: 1;
}

.act-card__act {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--act-color);
  text-transform: uppercase;
}

.act-card__title {
  margin: 0.1rem 0 0;
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--navy);
}

.act-card__stages {
  margin: 0.45rem 0 0;
  padding-inline-start: 3.25rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.act-card--collapsed .act-card__stages {
  padding-inline-start: 0;
  margin-top: 0.35rem;
}

.act-card__stages-list {
  margin: 0;
  padding: 0.7rem 1rem 0.95rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #fff;
}

.act-card__stage {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 0.35rem;
  border-radius: 10px;
}

.act-card__stage:not(:last-child)::after {
  content: "";
  position: absolute;
  inset-inline-start: 1.18rem;
  top: 2.15rem;
  bottom: -0.15rem;
  width: 2px;
  background: #e2e8f0;
  z-index: 0;
}

.act-card__stage-num {
  position: relative;
  z-index: 1;
  min-width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  background: var(--act-color);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px #fff;
}

.act-card__stage-label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  min-width: 0;
}

.act-card__stage-text {
  font-weight: 600;
  line-height: 1.35;
}

.act-card__stage--interactive {
  cursor: pointer;
  transition: background 0.15s ease;
}

.act-card__stage--interactive:hover,
.act-card__stage--interactive:focus-visible {
  background: #f8fafc;
  outline: none;
}

.act-card__stage--active {
  background: #eff6ff;
  outline: none;
}

.act-card__stage--active .act-card__stage-num {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.audience-strip {
  padding: var(--space-section-y) 0;
  background: #fff;
  border-top: 1px solid var(--border);
}

.audience-strip__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-head-bottom);
}

.audience-strip__head {
  margin-bottom: 0;
}

.audience-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1.75rem;
  max-width: 820px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .audience-strip__grid {
    grid-template-columns: 1fr;
  }
}

.audience-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.7rem 0.2rem;
  border-radius: calc(var(--radius) - 2px);
  text-decoration: none;
  color: inherit;
  transition:
    background-color 0.15s ease,
    transform 0.15s ease;
}

.audience-row:hover {
  background: #f8fafc;
  transform: translateX(-2px);
}

[dir="ltr"] .audience-row:hover {
  transform: translateX(2px);
}

.audience-row:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.audience-row__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
}

.audience-row__icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.audience-row--consultation .audience-row__icon {
  background: #ecfeff;
  color: #0891b2;
}

.audience-row--products .audience-row__icon {
  background: #f3e8ff;
  color: #7c3aed;
}

.audience-row--markets .audience-row__icon {
  background: #eff6ff;
  color: #2563eb;
}

.audience-row--risks .audience-row__icon {
  background: #ecfdf5;
  color: #047857;
}

.audience-row__body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}

.audience-row__title {
  font-size: 1rem;
  line-height: 1.4;
  color: var(--navy);
}

.audience-row__summary {
  font-size: 0.9rem;
  line-height: var(--line-height-copy);
  color: var(--text-muted);
  font-weight: 500;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-head-bottom);
}

.section-head__title {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  color: var(--navy);
  line-height: 1.25;
}

.section-head__desc {
  margin: 0.65rem 0 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: var(--line-height-copy);
}

.stage-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  pointer-events: none;
}

.stage-modal.is-open {
  pointer-events: auto;
}

.stage-modal[hidden] {
  display: none;
}

body.stage-modal-open {
  overflow: hidden;
}

.stage-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 31, 66, 0.55);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.stage-modal.is-open .stage-modal__backdrop {
  opacity: 1;
}

.stage-modal__dialog {
  --modal-accent: var(--accent);
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(100%, 540px);
  max-height: min(88vh, 680px);
  border-radius: calc(var(--radius) + 4px);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow:
    0 32px 64px rgba(15, 43, 91, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  transition:
    opacity 0.24s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.stage-modal.is-open .stage-modal__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.stage-modal__dialog--strategy {
  --modal-accent: #2563eb;
}

.stage-modal__dialog--justify {
  --modal-accent: #0891b2;
}

.stage-modal__dialog--design {
  --modal-accent: #7c3aed;
}

.stage-modal__dialog--build {
  --modal-accent: #ca8a04;
}

.stage-modal__dialog--protect {
  --modal-accent: #047857;
}

.stage-modal__accent {
  height: 5px;
  background: linear-gradient(90deg, var(--modal-accent), color-mix(in srgb, var(--modal-accent) 55%, white));
  flex-shrink: 0;
}

.stage-modal__close {
  position: absolute;
  top: 1rem;
  inset-inline-end: 1rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.stage-modal__close svg {
  width: 1rem;
  height: 1rem;
}

.stage-modal__close:hover {
  background: #fff;
  border-color: #cbd5e1;
  transform: scale(1.04);
}

.stage-modal__close:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.stage-modal__header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.35rem 1.5rem 0;
  padding-inline-end: 3.5rem;
}

.stage-modal__badge {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  background: color-mix(in srgb, var(--modal-accent) 12%, white);
  border: 1px solid color-mix(in srgb, var(--modal-accent) 22%, white);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--modal-accent) 18%, transparent);
}

.stage-modal__num {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--modal-accent);
  line-height: 1;
}

.stage-modal__meta {
  min-width: 0;
  padding-top: 0.15rem;
}

.stage-modal__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
}

body.is-rtl .stage-modal__eyebrow {
  letter-spacing: 0;
  text-transform: none;
}

.stage-modal__title {
  margin: 0.3rem 0 0;
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  line-height: 1.25;
  color: var(--navy);
}

.stage-modal__body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem 0.25rem;
}

.stage-modal__intro {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.55;
}

.stage-modal__points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.stage-modal__points li {
  position: relative;
  padding-inline-start: 1.4rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.96rem;
}

.stage-modal__points li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--modal-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--modal-accent) 16%, transparent);
}

.stage-modal__footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 1.5rem 1.35rem;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0), var(--surface-2));
}

.stage-modal__footer--split {
  justify-content: space-between;
}

.stage-modal__demo {
  flex-shrink: 0;
}

.stage-modal__cta {
  min-width: 9.5rem;
}

.demos {
  padding: var(--space-section-y) 0;
  background:
    radial-gradient(circle at 88% 0%, rgba(59, 130, 246, 0.1), transparent 40%),
    radial-gradient(circle at 12% 100%, rgba(59, 130, 246, 0.06), transparent 38%),
    linear-gradient(180deg, #eef2ff 0%, #fff 48%, #f8fafc 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.demos-showcase[hidden],
.demos-empty[hidden] {
  display: none !important;
}

.demos-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  max-width: 1120px;
  margin: 0 auto;
}

.demos-carousel__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  background: #fff;
  color: var(--navy-soft);
  box-shadow: 0 8px 20px rgba(15, 43, 91, 0.08);
  cursor: pointer;
  transition:
    border-color 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease,
    opacity 0.15s ease;
}

.demos-carousel__btn:hover:not(:disabled) {
  border-color: #93c5fd;
  color: var(--navy);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.14);
}

.demos-carousel__btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.demos-carousel__btn[hidden] {
  display: none;
}

[dir="rtl"] .demos-carousel__btn--prev svg,
[dir="rtl"] .demos-carousel__btn--next svg {
  transform: scaleX(-1);
}

.demos-carousel__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  direction: ltr;
}

.demos-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.demos-track {
  display: flex;
  width: 100%;
  gap: 1.35rem;
  padding: 0.15rem 0.2rem 0.35rem;
}

.demos-track .demo-card {
  flex: 0 0 calc((100% - 2 * 1.35rem) / 3);
  scroll-snap-align: start;
  min-width: 0;
}

@media (max-width: 820px) {
  .demos-track .demo-card {
    flex-basis: calc((100% - 1.35rem) / 2);
  }
}

@media (max-width: 640px) {
  .demos-carousel {
    gap: 0.45rem;
  }

  .demos-carousel__btn {
    width: 2.2rem;
    height: 2.2rem;
  }

  .demos-track .demo-card {
    flex-basis: 100%;
  }
}

.demo-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid #dbeafe;
  border-radius: calc(var(--radius) + 6px);
  background: #fff;
  box-shadow:
    0 12px 32px rgba(15, 43, 91, 0.08),
    0 2px 0 rgba(255, 255, 255, 0.8) inset;
  overflow: hidden;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.demo-card:hover {
  border-color: #93c5fd;
  transform: translateY(-4px);
  box-shadow:
    0 18px 42px rgba(37, 99, 235, 0.14),
    0 2px 0 rgba(255, 255, 255, 0.8) inset;
}

.demo-card__preview {
  display: grid;
  gap: 0.65rem;
  padding: 1.1rem 1.15rem 1rem;
  min-height: 6.5rem;
  background:
    linear-gradient(135deg, rgba(59, 130, 246, 0.12), transparent 58%),
    linear-gradient(180deg, #eff6ff, #fff);
  border-bottom: 1px solid #dbeafe;
}

.demo-card__preview-head {
  display: grid;
  gap: 0.38rem;
}

.demo-card__mini-table {
  display: grid;
  gap: 0.32rem;
  padding: 0.55rem 0.45rem;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.demo-card__mini-row {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 0.28rem;
}

.demo-card__mini-cell {
  display: block;
  height: 0.38rem;
  border-radius: 4px;
  background: linear-gradient(90deg, #dbeafe, #e2e8f0);
}

.demo-card__mini-cell--wide {
  background: linear-gradient(90deg, #bfdbfe, #dbeafe);
}

.demo-card__skel {
  display: block;
  height: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #dbeafe, #e2e8f0);
}

.demo-card__skel--medium {
  width: 78%;
}

.demo-card__skel--short {
  width: 52%;
}

.demo-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.35rem 1.4rem 1.5rem;
}

.demo-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.demo-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.demo-card__stage {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--accent);
}

.demo-card__title {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.45;
  color: var(--navy);
}

.demo-card__type {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-muted);
}

.demo-card__link {
  margin-top: auto;
  align-self: stretch;
  justify-content: center;
  text-align: center;
}

[dir="rtl"] .demos-track .demo-card,
body.is-rtl .demos-track .demo-card {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .demo-card__body,
body.is-rtl .demo-card__body {
  align-items: stretch;
}

[dir="rtl"] .demo-card__head,
body.is-rtl .demo-card__head {
  direction: ltr;
}

[dir="rtl"] .demo-card__title,
body.is-rtl .demo-card__title {
  text-align: start;
}

[dir="rtl"] .demo-card__stage,
body.is-rtl .demo-card__stage {
  text-align: start;
}

[dir="rtl"] .demo-card__preview,
body.is-rtl .demo-card__preview {
  direction: rtl;
}

[dir="rtl"] .demo-card__mini-row,
body.is-rtl .demo-card__mini-row {
  direction: rtl;
}

.demos-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 36rem;
  margin: 0 auto;
  padding: 2rem 1.75rem;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  background: #fff;
  box-shadow: var(--shadow);
}

.demos-empty p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
  .stage-modal__backdrop,
  .stage-modal__dialog {
    transition: none;
  }

  .stage-modal__dialog {
    transform: none;
  }
}

.cta-band {
  padding: var(--space-section-cta) 0;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-soft));
  color: #fff;
}

.cta-band__inner {
  text-align: center;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.cta-band p {
  margin: 0.75rem auto 1.65rem;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.82);
  line-height: var(--line-height-copy);
}

.site-footer {
  padding: 1.5rem 0 2rem;
  background: #fff;
  border-top: 1px solid var(--border);
}

.site-footer__inner {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

#how-it-works,
#demos,
#audience {
  scroll-margin-top: 5.5rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body[data-page="use-cases"] {
  background: #f4f6fa;
}

.uc-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 7.5rem) 0 clamp(4.5rem, 8vw, 6rem);
  margin-top: -72px;
  padding-top: calc(clamp(5rem, 10vw, 7.5rem) + 72px);
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(59, 130, 246, 0.22), transparent 55%),
    linear-gradient(165deg, #0a1628 0%, #0f2744 42%, #0a1f42 100%);
  color: #fff;
  text-align: center;
}

.uc-hero__glow {
  position: absolute;
  inset: auto -20% -50% -20%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.15), transparent 68%);
  pointer-events: none;
}

.uc-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.uc-hero__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #60a5fa;
}

.uc-hero__title {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.uc-hero__lead {
  margin: 1.35rem auto 0;
  max-width: 58ch;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: var(--line-height-copy);
  color: rgba(255, 255, 255, 0.72);
}

.uc-journey {
  padding: var(--space-section-y) 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(59, 130, 246, 0.05), transparent 38%),
    linear-gradient(180deg, #f8fafc 0%, #fff 40%, #f8fafc 100%);
  border-top: 1px solid var(--border);
}

.uc-journey__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-head-bottom);
}

.uc-journey__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.uc-journey__title {
  margin: 0;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.uc-journey__desc {
  margin: 0.65rem 0 0;
  font-size: 1.02rem;
  line-height: var(--line-height-copy);
  color: var(--text-muted);
}

.uc-domain-nav {
  position: sticky;
  top: 72px;
  z-index: 12;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  padding: 0.65rem 0;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.98) 70%, rgba(248, 250, 252, 0));
  backdrop-filter: blur(8px);
}

.uc-domain-nav__link {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.9rem;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #fff;
  color: var(--navy-soft);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition:
    border-color 0.15s ease,
    color 0.15s ease,
    box-shadow 0.15s ease;
}

.uc-domain-nav__link--strategy { --domain-color: #2563eb; }
.uc-domain-nav__link--justify { --domain-color: #0891b2; }
.uc-domain-nav__link--design { --domain-color: #7c3aed; }
.uc-domain-nav__link--build { --domain-color: #ca8a04; }
.uc-domain-nav__link--protect { --domain-color: #047857; }

.uc-domain-nav__link:hover {
  border-color: color-mix(in srgb, var(--domain-color, var(--accent)) 35%, #e2e8f0);
  color: var(--domain-color, var(--navy));
  box-shadow: 0 4px 12px rgba(15, 43, 91, 0.06);
}

.uc-journey__body {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.75rem);
}

.uc-phase {
  --phase-color: var(--accent);
  scroll-margin-top: 6.5rem;
  padding: clamp(1.35rem, 3vw, 1.85rem);
  border: 1px solid #e2e8f0;
  border-radius: calc(var(--radius) + 6px);
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 43, 91, 0.05);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.uc-phase--highlight {
  border-color: color-mix(in srgb, var(--phase-color) 45%, #e2e8f0);
  box-shadow:
    0 0 0 3px color-mix(in srgb, var(--phase-color) 14%, transparent),
    0 16px 40px rgba(15, 43, 91, 0.08);
}

.uc-phase--strategy { --phase-color: #2563eb; }
.uc-phase--justify { --phase-color: #0891b2; }
.uc-phase--design { --phase-color: #7c3aed; }
.uc-phase--build { --phase-color: #ca8a04; }
.uc-phase--protect { --phase-color: #047857; }

.uc-phase__head {
  margin-bottom: clamp(1.15rem, 2.5vw, 1.65rem);
  padding-bottom: clamp(0.95rem, 2vw, 1.25rem);
  border-bottom: 1px solid #eef2f7;
}

.uc-phase__title {
  margin: 0 0 0.55rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--navy);
}

.uc-phase__outline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.uc-phase__outline-sep {
  color: #cbd5e1;
  font-weight: 700;
  user-select: none;
}

.uc-phase__outline-item {
  color: var(--phase-color);
  font-weight: 700;
}

.uc-domain {
  --domain-color: var(--accent);
  --domain-soft: #eff6ff;
  scroll-margin-top: 6.5rem;
  padding: clamp(1.35rem, 3vw, 1.85rem);
  border: 1px solid #e2e8f0;
  border-radius: calc(var(--radius) + 6px);
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 43, 91, 0.05);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.uc-domain--highlight {
  border-color: color-mix(in srgb, var(--domain-color) 45%, #e2e8f0);
  box-shadow:
    0 0 0 3px color-mix(in srgb, var(--domain-color) 14%, transparent),
    0 16px 40px rgba(15, 43, 91, 0.08);
}

.uc-domain--strategy {
  --domain-color: #2563eb;
  --domain-soft: #eff6ff;
}

.uc-domain--justify {
  --domain-color: #0891b2;
  --domain-soft: #ecfeff;
}

.uc-domain--design {
  --domain-color: #7c3aed;
  --domain-soft: #f5f3ff;
}

.uc-domain--build {
  --domain-color: #ca8a04;
  --domain-soft: #fff7ed;
}

.uc-domain--protect {
  --domain-color: #047857;
  --domain-soft: #ecfdf5;
}

.uc-domain__head {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
  padding-bottom: clamp(1rem, 2vw, 1.35rem);
  border-bottom: 1px solid #eef2f7;
}

.uc-domain__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 14px;
  background: var(--domain-soft);
  color: var(--domain-color);
}

.uc-domain__icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.uc-domain__copy {
  min-width: 0;
  flex: 1;
}

.uc-domain__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.85rem;
  margin-bottom: 0.35rem;
}

.uc-domain__meta {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
}

.uc-domain__phase {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--domain-color);
}

.uc-domain__title {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--navy);
}

.uc-domain__desc {
  margin: 0.55rem 0 0;
  max-width: 62ch;
  font-size: 0.98rem;
  line-height: var(--line-height-copy);
  color: var(--text-muted);
}

.uc-reports {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.uc-report {
  --report-accent: var(--domain-color);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.15rem 1.15rem 1rem;
  border: 1px solid #e8edf3;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(180deg, #fafbfd 0%, #fff 100%);
}

.uc-report--strategy { --report-accent: #2563eb; }
.uc-report--justify { --report-accent: #0891b2; }
.uc-report--design { --report-accent: #7c3aed; }
.uc-report--build { --report-accent: #ca8a04; }
.uc-report--protect { --report-accent: #047857; }

.uc-report__head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.uc-report__num {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: var(--report-accent);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--report-accent) 14%, transparent);
}

.uc-report__title-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.55rem;
  min-width: 0;
}

.uc-report__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--navy);
}

.uc-report__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.uc-report__intro {
  margin: 0;
  font-size: 0.9rem;
  line-height: var(--line-height-copy);
  color: var(--text);
}

.uc-report__points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.uc-report__points li {
  position: relative;
  padding-inline-start: 1.1rem;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.uc-report__points li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.55em;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--report-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--report-accent) 14%, transparent);
}

.uc-report__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid #eef2f7;
}

.uc-report__footer .btn {
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
}

.uc-report--highlight {
  border-color: color-mix(in srgb, var(--report-accent) 45%, #e8edf3);
  box-shadow:
    0 0 0 3px color-mix(in srgb, var(--report-accent) 14%, transparent),
    0 12px 28px rgba(15, 43, 91, 0.08);
}

#use-cases,
#roadmap {
  scroll-margin-top: 5.5rem;
}

@media (max-width: 820px) {
  .uc-reports {
    grid-template-columns: minmax(0, 1fr);
  }

  .uc-domain__head {
    flex-direction: column;
    gap: 0.85rem;
  }

  .uc-domain-nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-inline: 0.15rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .uc-domain-nav::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 1100px) {
  .site-nav__dropdown {
    min-width: min(46rem, calc(100vw - 2rem));
  }

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

@media (max-width: 900px) {
  .site-header__brand-group {
    flex: 1;
    gap: 0.75rem;
  }

  .site-nav__toggle {
    display: inline-flex;
  }

  .site-header__brand-group > .site-nav {
    margin-inline-start: 0;
    padding-inline-start: 0;
    border-inline-start: none;
  }

  .site-nav {
    position: absolute;
    inset-inline: 0;
    top: calc(100% + 1px);
    display: none;
    width: auto;
    padding: 0.85rem 1rem 1rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 32px rgba(15, 43, 91, 0.08);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
  }

  .site-nav__dropdown {
    position: static;
    min-width: 0;
    margin-top: 0.45rem;
    padding: 0.75rem;
    border: 0;
    border-radius: 12px;
    background: #f8fafc;
    box-shadow: none;
  }

  .site-nav__dropdown-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.95rem;
  }

  .site-nav__trigger {
    width: 100%;
    justify-content: space-between;
  }

  .site-nav:not(.is-open) .site-nav__dropdown {
    display: none !important;
  }

  .site-nav__link {
    display: block;
    padding: 0.7rem 0.55rem;
    border-radius: 10px;
  }

  .site-nav__link:hover,
  .site-nav__link.is-active {
    background: #f8fafc;
  }

  .btn--nav-cta span {
    display: none;
  }

  .btn--nav-cta {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
  }
}

@media (max-width: 640px) {
  .site-header__inner {
    min-height: 64px;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }
}
