:root {
  color-scheme: light;

  --brand-azure: #2ca7ff;
  --brand-blue: #0067ff;
  --brand-blue-2: #0058e6;
  --brand-blue-3: #004bd1;
  --brand-navy: #031048;
  --brand-navy-2: #06183a;
  --brand-dark: #00142d;
  --brand-black: #0a0e14;
  --brand-white: #ffffff;

  --body-bg: #ffffff;
  --body-bg-soft: #f6f9ff;
  --body-bg-muted: #eef5ff;
  --body-bg-blue: #f2f7ff;

  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --surface-muted: #f1f6ff;
  --surface-blue: #edf5ff;
  --surface-glass: rgba(255, 255, 255, 0.82);

  --text-heading: #07143a;
  --text-body: #24314f;
  --text-soft: #52607c;
  --text-muted: #7a86a3;
  --text-white: #ffffff;

  --border: #dce7f7;
  --border-soft: #e8effa;
  --border-strong: #c8d8ee;
  --border-blue: rgba(0, 103, 255, 0.28);

  --primary: #0067ff;
  --primary-hover: #0055dc;
  --primary-soft: #eaf3ff;
  --primary-soft-2: #dcecff;

  --success: #16a765;
  --success-soft: #e9fff5;
  --warning: #f59e0b;
  --warning-soft: #fff7e6;
  --danger: #ef4444;
  --danger-soft: #fff0f0;
  --purple: #7c3aed;
  --purple-soft: #f2ecff;
  --orange: #f97316;
  --orange-soft: #fff2e9;

  --font-heading: "Anta", "Inter", system-ui, sans-serif;
  --font-body: "Inter", "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --fs-xs: 0.75rem;
  --fs-sm: 0.825rem;
  --fs-md: 0.95rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.35rem;
  --fs-2xl: 1.7rem;
  --fs-3xl: 2.1rem;
  --fs-4xl: 2.75rem;
  --fs-5xl: 3.5rem;
  --fs-6xl: 4.6rem;

  --lh-tight: 1.08;
  --lh-heading: 1.14;
  --lh-body: 1.65;

  --container: 1200px;
  --container-wide: 1320px;
  --container-narrow: 920px;

  --section-y: clamp(56px, 7vw, 104px);
  --section-y-sm: clamp(40px, 5vw, 72px);
  --section-y-xs: clamp(28px, 4vw, 48px);

  --header-height: 92px;
  --topbar-height: 36px;

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --radius-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(3, 16, 72, 0.05);
  --shadow-sm: 0 8px 24px rgba(3, 16, 72, 0.07);
  --shadow-md: 0 16px 44px rgba(3, 16, 72, 0.1);
  --shadow-lg: 0 24px 80px rgba(3, 16, 72, 0.14);
  --shadow-blue: 0 16px 38px rgba(0, 103, 255, 0.22);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 160ms var(--ease);
  --transition: 240ms var(--ease);
  --transition-slow: 420ms var(--ease);

  --z-header: 100;
  --z-dropdown: 110;
  --z-modal: 200;
}

[data-theme="dark"] {
  color-scheme: dark;

  --body-bg: #00142d;
  --body-bg-soft: #041b39;
  --body-bg-muted: #06244a;
  --body-bg-blue: #031a38;

  --surface: #061d3a;
  --surface-soft: #082447;
  --surface-muted: #0b2b54;
  --surface-blue: #0d315e;
  --surface-glass: rgba(4, 20, 45, 0.82);

  --text-heading: #ffffff;
  --text-body: #e8f1ff;
  --text-soft: #bdcbe2;
  --text-muted: #8fa4c6;

  --border: rgba(255, 255, 255, 0.12);
  --border-soft: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.2);
  --border-blue: rgba(44, 167, 255, 0.36);

  --primary: #2ca7ff;
  --primary-hover: #62bdff;
  --primary-soft: rgba(44, 167, 255, 0.14);
  --primary-soft-2: rgba(44, 167, 255, 0.22);

  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 16px 44px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.42);
  --shadow-blue: 0 16px 38px rgba(44, 167, 255, 0.2);
}

/* Reset */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--body-bg);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: clamp(15px, 0.95vw, 16px);
  line-height: var(--lh-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

main {
  overflow: clip;
}

img,
svg,
video,
canvas,
picture {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--primary) 55%, transparent);
  outline-offset: 3px;
}

::selection {
  background: var(--primary);
  color: #ffffff;
}

/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.55em;
  color: var(--text-heading);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--lh-heading);
  letter-spacing: -0.035em;
}

h1,
.h1 {
  font-size: clamp(2.55rem, 6vw, 5.35rem);
  line-height: 1.04;
}

h2,
.h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

h3,
.h3 {
  font-size: clamp(1.55rem, 2.7vw, 2.45rem);
}

h4,
.h4 {
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
}

h5,
.h5 {
  font-size: clamp(1.05rem, 1.25vw, 1.25rem);
}

h6,
.h6 {
  font-size: 0.95rem;
  letter-spacing: 0;
}

p {
  margin: 0 0 1rem;
  color: var(--text-soft);
}

p:last-child {
  margin-bottom: 0;
}

strong,
b {
  color: var(--text-heading);
  font-weight: 800;
}

small {
  color: var(--text-muted);
  font-size: var(--fs-sm);
}

.text-blue,
.text-primary {
  color: var(--primary);
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--text-muted);
}

.text-soft {
  color: var(--text-soft);
}

.text-white {
  color: #ffffff;
}

/* Layout */

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.container-wide {
  width: min(100% - 32px, var(--container-wide));
  margin-inline: auto;
}

.container-narrow {
  width: min(100% - 32px, var(--container-narrow));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-y);
}

.section-sm {
  padding-block: var(--section-y-sm);
}

.section-xs {
  padding-block: var(--section-y-xs);
}

.section-light {
  background: var(--body-bg);
}

.section-soft {
  background:
    radial-gradient(circle at 80% 12%, rgba(44, 167, 255, 0.08), transparent 32%),
    var(--body-bg-soft);
}

.section-blue-soft {
  background: linear-gradient(180deg, var(--body-bg-blue), var(--body-bg));
}

.section-dark {
  background:
    radial-gradient(circle at 80% 15%, rgba(44, 167, 255, 0.22), transparent 34%),
    radial-gradient(circle at 15% 90%, rgba(0, 103, 255, 0.12), transparent 34%),
    linear-gradient(135deg, #00142d, #031048);
  color: #ffffff;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6,
.section-dark strong {
  color: #ffffff;
}

.section-dark p,
.section-dark li,
.section-dark small {
  color: rgba(255, 255, 255, 0.76);
}

.section-head {
  max-width: 760px;
  margin: 0 auto clamp(26px, 4vw, 52px);
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: var(--fs-xs);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-title {
  margin-bottom: 12px;
}

.section-intro {
  max-width: 680px;
  margin-inline: auto;
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
}

/* Grid */

.grid {
  display: grid;
  gap: clamp(18px, 2vw, 28px);
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.auto-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 245px), 1fr));
}

.two-col-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(36px, 5vw, 78px);
  align-items: center;
}

/* Flex */

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-start {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.flex-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.flex-align-start {
  display: flex;
  align-items: flex-start;
}

.flex-align-end {
  display: flex;
  align-items: flex-end;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-column-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.items-stretch {
  align-items: stretch;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.gap-0 {
  gap: 0;
}

.gap-4 {
  gap: 4px;
}

.gap-6 {
  gap: 6px;
}

.gap-8 {
  gap: 8px;
}

.gap-10 {
  gap: 10px;
}

.gap-12 {
  gap: 12px;
}

.gap-14 {
  gap: 14px;
}

.gap-16 {
  gap: 16px;
}

.gap-18 {
  gap: 18px;
}

.gap-20 {
  gap: 20px;
}

.gap-24 {
  gap: 24px;
}

.gap-28 {
  gap: 28px;
}

.gap-32 {
  gap: 32px;
}

.gap-40 {
  gap: 40px;
}

.gap-section {
  gap: clamp(24px, 4vw, 56px);
}

.gap-card {
  gap: clamp(18px, 2vw, 28px);
}

.flex-1 {
  flex: 1 1 0;
}

.flex-auto {
  flex: 1 1 auto;
}

.flex-none {
  flex: none;
}

.shrink-0 {
  flex-shrink: 0;
}

.grow {
  flex-grow: 1;
}

.no-grow {
  flex-grow: 0;
}

.order-first {
  order: -1;
}

.order-last {
  order: 999;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius-xs);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--brand-blue-2));
  color: #ffffff;
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-hover), var(--brand-blue-3));
}

.btn-outline {
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text-heading);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-white {
  background: #ffffff;
  color: var(--primary);
}

.btn-white:hover {
  color: var(--brand-blue-3);
}

.btn-ghost {
  color: var(--primary);
}

.btn-ghost:hover {
  background: var(--primary-soft);
}

.btn-sm {
  min-height: 40px;
  padding-inline: 16px;
  font-size: var(--fs-sm);
}

.btn-lg {
  min-height: 56px;
  padding-inline: 30px;
}

.btn-block {
  width: 100%;
}

/* Cards */

.card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-blue);
  box-shadow: var(--shadow-md);
}

.card-pad {
  padding: clamp(20px, 2.4vw, 32px);
}

.card-title {
  margin: 0 0 8px;
  color: var(--text-heading);
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.card-text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.58;
}

.service-card {
  min-height: 188px;
  padding: clamp(20px, 2vw, 28px);
}

.service-card .icon {
  margin-bottom: 18px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--primary);
  font-size: var(--fs-sm);
  font-weight: 900;
}

.metric-card {
  padding: 22px;
  text-align: center;
}

.metric-value {
  margin: 0;
  color: var(--text-heading);
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.metric-label {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: var(--fs-sm);
  font-weight: 700;
}

/* Icons */

.icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary);
}

.icon svg {
  width: 22px;
  height: 22px;
}

.icon-sm {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.icon-sm svg {
  width: 17px;
  height: 17px;
}

.icon-lg {
  width: 64px;
  height: 64px;
  border-radius: 20px;
}

.icon-lg svg {
  width: 30px;
  height: 30px;
}

.icon-circle {
  border-radius: 50%;
}

/* Badges, Pills, Tabs */

.badge,
.pill,
.tab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  background: var(--surface);
  color: var(--text-heading);
  font-size: var(--fs-sm);
  font-weight: 900;
  line-height: 1;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.badge-primary,
.pill-active,
.tab-btn.is-active {
  border-color: var(--primary);
  background: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow-blue);
}

.badge-soft {
  border-color: var(--border-blue);
  background: var(--primary-soft);
  color: var(--primary);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* KPI Strip */

.kpi-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.kpi-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 110px;
  padding: 22px clamp(18px, 2vw, 28px);
  border-right: 1px solid var(--border);
}

.kpi-item:last-child {
  border-right: 0;
}

.kpi-value {
  margin: 0;
  color: var(--text-heading);
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2vw, 2.1rem);
  line-height: 1;
}

.kpi-label {
  margin: 6px 0 0;
  color: var(--text-soft);
  font-size: var(--fs-sm);
  font-weight: 700;
  line-height: 1.35;
}

/* Forms */

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(22px, 2.6vw, 34px);
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-label {
  color: var(--text-heading);
  font-size: var(--fs-sm);
  font-weight: 900;
}

.form-control,
.form-select,
.form-textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  background: var(--surface);
  color: var(--text-body);
  box-shadow: none;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.form-textarea {
  min-height: 126px;
  resize: vertical;
}

.form-control::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-control:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary) 14%, transparent);
  outline: 0;
}

/* Lists */

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.check-list,
.icon-list {
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #ffffff 0 28%, transparent 30%),
    var(--primary);
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-soft);
}

.bullet-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.bullet-row li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-heading);
  font-size: var(--fs-sm);
  font-weight: 800;
}

.bullet-row li::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #ffffff 0 28%, transparent 30%),
    var(--primary);
}

/* Breadcrumb */

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: clamp(28px, 4vw, 54px);
  color: var(--text-muted);
  font-size: var(--fs-sm);
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb-sep {
  color: var(--text-muted);
}

/* Page Hero */

.page-hero {
  position: relative;
  padding-block: clamp(42px, 6vw, 88px);
  background:
    radial-gradient(circle at 78% 28%, rgba(44, 167, 255, 0.13), transparent 34%),
    linear-gradient(180deg, var(--body-bg-soft), var(--body-bg));
  border-bottom: 1px solid var(--border-soft);
}

.hero-title {
  margin-bottom: 18px;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-media {
  position: relative;
}

.hero-media-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

/* Process */

.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
  gap: 24px;
  align-items: start;
}

.process-step {
  position: relative;
  text-align: center;
}

.process-number {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  border: 1px solid var(--border-blue);
  border-radius: 50%;
  background: var(--surface);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  box-shadow: var(--shadow-xs);
}

.process-title {
  margin: 0 0 6px;
  color: var(--text-heading);
  font-size: var(--fs-sm);
  font-weight: 900;
}

.process-text {
  margin: 0;
  font-size: var(--fs-xs);
  line-height: 1.55;
}

/* FAQ */

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  background: var(--surface);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 50px;
  padding: 14px 18px;
  color: var(--text-heading);
  font-size: var(--fs-sm);
  font-weight: 900;
  text-align: left;
}

.faq-icon {
  flex: 0 0 auto;
  color: var(--primary);
  font-size: 1.1rem;
}

.faq-answer {
  display: none;
  padding: 0 18px 18px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* CTA */

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 88% 18%, rgba(44, 167, 255, 0.28), transparent 30%),
    linear-gradient(135deg, #00142d, #003b93);
  color: #ffffff;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.18;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.cta-band h2,
.cta-band h3,
.cta-band p {
  color: #ffffff;
}

.cta-band p {
  opacity: 0.78;
}

/* Footer Helpers */

.footer-dark {
  background:
    radial-gradient(circle at 85% 8%, rgba(44, 167, 255, 0.16), transparent 34%),
    linear-gradient(135deg, #00142d, #031048);
  color: #ffffff;
}

.footer-dark a,
.footer-dark p,
.footer-dark li,
.footer-dark small {
  color: rgba(255, 255, 255, 0.76);
}

.footer-dark a:hover {
  color: #ffffff;
}

.footer-title {
  margin: 0 0 16px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 900;
  letter-spacing: 0;
}

.footer-list {
  display: grid;
  gap: 9px;
}

.footer-list a {
  font-size: var(--fs-sm);
}

/* Media Ratios */

.ratio {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.ratio::before {
  content: "";
  display: block;
}

.ratio-16x9::before {
  padding-top: 56.25%;
}

.ratio-4x3::before {
  padding-top: 75%;
}

.ratio-1x1::before {
  padding-top: 100%;
}

.ratio > img,
.ratio > picture,
.ratio > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ratio img,
.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contain-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Utilities */

.bg-body {
  background: var(--body-bg);
}

.bg-soft {
  background: var(--body-bg-soft);
}

.bg-surface {
  background: var(--surface);
}

.border {
  border: 1px solid var(--border);
}

.border-top {
  border-top: 1px solid var(--border);
}

.border-bottom {
  border-bottom: 1px solid var(--border);
}

.border-left {
  border-left: 1px solid var(--border);
}

.border-right {
  border-right: 1px solid var(--border);
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}

.radius-sm {
  border-radius: var(--radius-sm);
}

.radius-md {
  border-radius: var(--radius-md);
}

.radius-lg {
  border-radius: var(--radius-lg);
}

.radius-xl {
  border-radius: var(--radius-xl);
}

.shadow-sm {
  box-shadow: var(--shadow-sm);
}

.shadow-md {
  box-shadow: var(--shadow-md);
}

.shadow-lg {
  box-shadow: var(--shadow-lg);
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.hidden {
  display: none !important;
}

.overflow-hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.z-1 {
  position: relative;
  z-index: 1;
}

/* Responsive */

@media (max-width: 1199px) {
  .grid-6,
  .grid-5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .two-col-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  :root {
    --header-height: 76px;
  }

  .grid-4,
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-6,
  .grid-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-inner {
    grid-template-columns: 1fr;
  }

  .kpi-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kpi-item {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .lg-flex-column {
    flex-direction: column;
  }

  .lg-items-start {
    align-items: flex-start;
  }

  .lg-items-center {
    align-items: center;
  }

  .lg-justify-start {
    justify-content: flex-start;
  }

  .lg-w-full {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .container,
  .container-wide,
  .container-narrow {
    width: min(100% - 24px, var(--container));
  }

  .grid-6,
  .grid-5,
  .grid-4,
  .grid-3,
  .grid-2,
  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .section-head {
    text-align: left;
  }

  .section-intro {
    margin-inline: 0;
  }

  .hero-actions,
  .tabs {
    width: 100%;
  }

  .hero-actions .btn,
  .tabs .tab-btn {
    width: 100%;
  }

  .kpi-strip {
    grid-template-columns: 1fr;
  }

  .kpi-item {
    min-height: auto;
  }

  .cta-band {
    padding: 26px 20px;
  }

  .btn {
    width: 100%;
  }

  .btn.btn-inline {
    width: auto;
  }

  .sm-flex-column {
    flex-direction: column;
  }

  .sm-items-start {
    align-items: flex-start;
  }

  .sm-items-center {
    align-items: center;
  }

  .sm-justify-start {
    justify-content: flex-start;
  }

  .sm-w-full {
    width: 100%;
  }
}

/* Motion Safety */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Print */

@media print {
  body {
    background: #ffffff;
    color: #000000;
  }

  .btn,
  .site-header,
  .footer-dark,
  .cta-band {
    display: none !important;
  }

  a {
    color: #000000;
    text-decoration: underline;
  }
}