:root {
  --sky-blue: #0A68C4;
  --snow-white: #FFFFFF;
  --high-altitude-gray: #F2F4F6;
  --grassland-green: #2E7D32;
  --sunset-orange: #FF6D00;
  --electric-teal: #00B5AD;
  --violet-hint: #7C3AED;
  --ink-blue: #101828;
  --boundary-gray: #CBD2D9;
  --ice-blue-wash: #E3F0FB;

  --font-heading: "Noto Sans SC", "Source Han Sans CN", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-body: "Source Sans SC", "Source Han Sans CN", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", "Consolas", "Liberation Mono", monospace;

  --header-h: 72px;
  --nav-w: 176px;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.04);
  --shadow-md: 0 2px 4px rgba(16, 24, 40, 0.05), 0 8px 24px rgba(16, 24, 40, 0.06);
  --shadow-lg: 0 4px 8px rgba(16, 24, 40, 0.06), 0 16px 40px rgba(16, 24, 40, 0.08);

  --container-max: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-blue);
  background: var(--snow-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink-blue);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(31px, 5vw, 39px); }
h2 { font-size: clamp(25px, 4vw, 31px); }
h3 { font-size: clamp(20px, 3vw, 25px); }
h4 { font-size: 20px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }

p {
  margin: 0 0 16px;
}

a {
  color: var(--electric-teal);
  text-decoration: none;
  transition: color 0.2s ease-out;
}

a:hover {
  color: var(--sky-blue);
}

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

ul, ol {
  margin: 0;
  padding-left: 1.4em;
}

::selection {
  background: rgba(10, 104, 196, 0.18);
}

:focus-visible {
  outline: 3px solid var(--electric-teal);
  outline-offset: 2px;
  border-radius: 4px;
}

#main-content {
  display: block;
  outline: none;
  margin-left: 0;
}

#main-content:focus {
  outline: none;
}

@media (min-width: 1024px) {
  #main-content,
  .site-footer {
    margin-left: var(--nav-w);
  }
}

.skip-link {
  position: fixed;
  top: -56px;
  left: 16px;
  z-index: 300;
  background: var(--ink-blue);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: top 0.2s ease-out;
}

.skip-link:focus {
  top: 0;
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: var(--snow-white);
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky-blue) 0%, var(--electric-teal) 45%, var(--sunset-orange) 100%);
  z-index: 1;
}

.header__bar {
  background: var(--snow-white);
  border-bottom: 1px solid var(--boundary-gray);
}

.header__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: calc(var(--container-max) + 96px);
  margin-inline: auto;
  padding-inline: 24px;
}

@media (max-width: 767.98px) {
  .header__bar-inner {
    padding-inline: 16px;
  }
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 220;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink-blue);
}

.brand:hover {
  color: var(--ink-blue);
}

.brand__mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--sky-blue) 0%, #2E8BD7 55%, var(--electric-teal) 130%);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: #fff;
  overflow: hidden;
}

.brand__mark::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30%;
  background: linear-gradient(160deg, transparent 40%, rgba(255, 255, 255, 0.22) 41%, rgba(255, 255, 255, 0.22) 55%, transparent 56%, transparent 72%, rgba(255, 255, 255, 0.18) 73%);
  z-index: 0;
}

.brand__mark-glyph {
  position: relative;
  z-index: 1;
}

.brand__type {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
}

.brand__name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 18px;
  color: var(--ink-blue);
  letter-spacing: 0.02em;
}

.brand__sub {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--sky-blue);
  text-transform: uppercase;
  margin-top: 2px;
}

@media (max-width: 480px) {
  .brand__sub {
    display: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease-out, color 0.2s ease-out, border-color 0.2s ease-out, box-shadow 0.2s ease-out, transform 0.2s ease-out;
}

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

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--sky-blue);
  color: #fff;
}

.btn--primary:hover {
  background: #084F96;
  color: #fff;
}

.btn--accent {
  background: var(--sunset-orange);
  color: #fff;
}

.btn--accent:hover {
  background: #D85A00;
  color: #fff;
}

.btn--ghost {
  background: transparent;
  border-color: var(--boundary-gray);
  color: var(--ink-blue);
}

.btn--ghost:hover {
  border-color: var(--sky-blue);
  color: var(--sky-blue);
}

.btn--light {
  background: #fff;
  color: var(--ink-blue);
}

.btn--light:hover {
  background: var(--high-altitude-gray);
  color: var(--ink-blue);
}

.btn--large {
  min-height: 52px;
  padding: 0 28px;
  font-size: 16px;
}

.btn--block {
  display: flex;
  width: 100%;
}

.btn__label {
  line-height: 1.4;
}

.header__member {
  min-height: 40px;
  padding: 0 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
}

@media (max-width: 600px) {
  .header__member {
    padding: 0 12px;
    font-size: 12px;
  }
}

.nav-toggle {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  margin-left: 4px;
  background: transparent;
  border: 1px solid var(--boundary-gray);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink-blue);
  transition: background 0.2s ease-out, border-color 0.2s ease-out;
}

.nav-toggle:hover {
  background: var(--high-altitude-gray);
}

.nav-toggle__box {
  position: relative;
  width: 18px;
  height: 14px;
  flex-shrink: 0;
}

.nav-toggle__line {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.28s ease-out, opacity 0.2s ease-out;
}

.nav-toggle__line:nth-child(1) { top: 0; }
.nav-toggle__line:nth-child(2) { top: 6px; }
.nav-toggle__line:nth-child(3) { top: 12px; }

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
  opacity: 0;
  transform: translateX(-5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-toggle__text {
  font-size: 13px;
}

@media (max-width: 600px) {
  .nav-toggle__text {
    display: none;
  }
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }
}

.side-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 210;
  width: min(320px, 86vw);
  background: var(--ink-blue);
  padding: calc(var(--header-h) + 28px) 20px 40px;
  overflow-y: auto;
  transform: translateX(-105%);
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.32s ease-out;
}

.side-nav[data-open="true"] {
  transform: translateX(0);
  box-shadow: 0 0 56px rgba(16, 24, 40, 0.45);
}

.side-nav__track {
  position: absolute;
  top: calc(var(--header-h) + 32px);
  bottom: 40px;
  left: 37px;
  width: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
  z-index: 0;
}

.side-nav__track::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(180deg, var(--electric-teal) 0%, var(--sky-blue) 100%);
  transform: scaleY(var(--progress, 0));
  transform-origin: top center;
  will-change: transform;
}

.side-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.side-nav__item {
  margin-bottom: 6px;
}

.side-nav__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px 8px 0;
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  text-decoration: none;
  transition: background 0.2s ease-out, color 0.2s ease-out;
}

.side-nav__link:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.side-nav__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: border-color 0.2s ease-out, background 0.2s ease-out, color 0.2s ease-out, box-shadow 0.2s ease-out;
}

.side-nav__link:hover .side-nav__index {
  border-color: var(--electric-teal);
  color: #fff;
}

.side-nav__link[aria-current="page"] {
  color: var(--electric-teal);
}

.side-nav__link[aria-current="page"] .side-nav__index {
  border-color: var(--electric-teal);
  background: var(--electric-teal);
  color: var(--ink-blue);
  box-shadow: 0 0 0 4px rgba(0, 181, 173, 0.18);
}

.side-nav__text {
  font-size: 14px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .side-nav {
    top: calc(var(--header-h) + 1px);
    bottom: auto;
    width: var(--nav-w);
    padding: 36px 20px 24px;
    background: var(--snow-white);
    border-right: 1px solid var(--boundary-gray);
    transform: none;
    transition: none;
    z-index: 90;
  }

  .side-nav[data-open="true"] {
    transform: none;
    box-shadow: none;
  }

  .side-nav__track {
    top: 36px;
    bottom: 24px;
    background: var(--boundary-gray);
  }

  .side-nav__track::after {
    background: linear-gradient(180deg, var(--sky-blue), var(--electric-teal) 80%);
  }

  .side-nav__link {
    color: var(--ink-blue);
  }

  .side-nav__link:hover {
    background: var(--high-altitude-gray);
    color: var(--ink-blue);
  }

  .side-nav__link:hover .side-nav__index {
    border-color: var(--electric-teal);
    color: var(--electric-teal);
  }

  .side-nav__index {
    border-color: var(--boundary-gray);
    background: var(--snow-white);
    color: var(--sky-blue);
  }

  .side-nav__link[aria-current="page"] {
    color: var(--sky-blue);
  }

  .side-nav__link[aria-current="page"] .side-nav__index {
    border-color: var(--sky-blue);
    background: var(--sky-blue);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(10, 104, 196, 0.15);
  }
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(16, 24, 40, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}

.nav-overlay[data-open="true"] {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 1024px) {
  .nav-overlay {
    display: none;
  }
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 24px;
}

@media (max-width: 768px) {
  .container {
    padding-inline: 18px;
  }
}

.section {
  padding-block: var(--space-7);
}

@media (max-width: 1023.98px) {
  .section {
    padding-block: var(--space-6);
  }
}

@media (max-width: 768px) {
  .section {
    padding-block: var(--space-5);
  }
}

.grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

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

.band {
  padding-block: var(--space-6);
  background: var(--high-altitude-gray);
  border-block: 1px solid var(--boundary-gray);
}

.band--ice {
  background: var(--ice-blue-wash);
  border-block-color: rgba(10, 104, 196, 0.12);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0 0 var(--space-3);
  padding: 0;
  font-size: 13px;
}

.breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb__item + .breadcrumb__item::before {
  content: "/";
  color: var(--boundary-gray);
  font-family: var(--font-mono);
  font-size: 12px;
}

.breadcrumb__link {
  color: var(--electric-teal);
  text-decoration: none;
}

.breadcrumb__link:hover {
  color: var(--sky-blue);
  text-decoration: underline;
}

.breadcrumb__current {
  color: var(--ink-blue);
  font-weight: 600;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky-blue);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: var(--electric-teal);
  flex-shrink: 0;
}

.eyebrow--violet {
  color: var(--violet-hint);
}

.eyebrow--violet::before {
  background: var(--violet-hint);
}

.eyebrow--orange {
  color: var(--sunset-orange);
}

.eyebrow--orange::before {
  background: var(--sunset-orange);
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink-blue);
  margin: 0 0 var(--space-3);
}

.section-lead {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(16, 24, 40, 0.78);
  max-width: 56em;
  margin-bottom: var(--space-4);
}

.image-frame {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--high-altitude-gray);
  border: 1px solid var(--boundary-gray);
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 9;
}

.image-frame > img,
.image-frame > picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease-out;
}

.image-frame:hover > img {
  transform: scale(1.02);
}

.image-frame--hero {
  aspect-ratio: 16 / 10;
  border-radius: 24px;
}

.image-frame--wide {
  aspect-ratio: 21 / 9;
}

.image-frame--portrait {
  aspect-ratio: 3 / 4;
}

.image-frame--square {
  aspect-ratio: 1 / 1;
}

.image-frame--offset::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 2px solid rgba(10, 104, 196, 0.55);
  border-radius: calc(var(--radius-lg) - 6px);
  z-index: 2;
  pointer-events: none;
}

.image-frame--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: rgba(10, 104, 196, 0.6);
  background: linear-gradient(135deg, var(--ice-blue-wash), var(--high-altitude-gray));
  border-style: dashed;
}

.frame {
  position: relative;
  background: var(--snow-white);
  border: 1px solid var(--boundary-gray);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: clamp(24px, 4vw, 48px);
}

.frame--tick::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 14px;
  height: 14px;
  border-top: 3px solid var(--sky-blue);
  border-left: 3px solid var(--sky-blue);
  border-top-left-radius: var(--radius-lg);
}

.frame--tick::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 14px;
  height: 14px;
  border-bottom: 3px solid var(--electric-teal);
  border-right: 3px solid var(--electric-teal);
  border-bottom-right-radius: var(--radius-lg);
}

.hero-window {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) + 4px);
  border: 1px solid var(--boundary-gray);
  background: var(--ice-blue-wash);
  box-shadow: var(--shadow-md);
  min-height: clamp(360px, 60vh, 640px);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  border-bottom: 1px solid var(--boundary-gray);
  margin-bottom: var(--space-4);
  padding-inline: 4px;
}

.tabs__btn {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  padding: 12px 20px;
  min-height: 44px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-blue);
  cursor: pointer;
  transition: color 0.2s ease-out, border-color 0.2s ease-out;
}

.tabs__btn:hover {
  color: var(--sky-blue);
}

.tabs__btn[aria-selected="true"] {
  color: var(--sky-blue);
  border-bottom-color: var(--sky-blue);
}

.tabs__panel:not(.is-active) {
  display: none;
}

.tabs__panel.is-active {
  display: block;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.6;
  background: var(--ice-blue-wash);
  color: var(--sky-blue);
}

.chip--green {
  background: rgba(46, 125, 50, 0.12);
  color: var(--grassland-green);
}

.chip--orange {
  background: rgba(255, 109, 0, 0.12);
  color: var(--sunset-orange);
}

.chip--violet {
  background: rgba(124, 58, 237, 0.12);
  color: var(--violet-hint);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--snow-white);
  border: 1px solid var(--boundary-gray);
  border-radius: var(--radius-md);
  overflow: hidden;
  font-size: 14px;
}

.data-table th {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink-blue);
  text-align: left;
  padding: 14px 18px;
  background: var(--high-altitude-gray);
  border-bottom: 1px solid var(--boundary-gray);
}

.data-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--boundary-gray);
  color: var(--ink-blue);
  font-variant-numeric: tabular-nums;
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tbody tr:hover {
  background: var(--ice-blue-wash);
}

.data-table__num {
  font-family: var(--font-mono);
  font-weight: 500;
}

.data-table__positive {
  color: var(--grassland-green);
  font-family: var(--font-mono);
  font-weight: 500;
}

.num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.text-sm {
  font-size: 13px;
}

.text-muted {
  color: rgba(16, 24, 40, 0.65);
}

.site-footer {
  background: var(--ink-blue);
  color: var(--boundary-gray);
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky-blue), var(--electric-teal) 35%, var(--grassland-green) 70%, var(--sunset-orange) 100%);
  z-index: 1;
}

.footer__inner {
  max-width: calc(var(--container-max) + 64px);
  margin-inline: auto;
  padding: 72px 32px 32px;
}

@media (max-width: 767.98px) {
  .footer__inner {
    padding: 56px 20px 28px;
  }
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 48px;
    column-gap: 32px;
  }

  .footer__brand-col {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
  }
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer__brand:hover {
  color: #fff;
}

.footer__brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--sky-blue), var(--electric-teal));
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 14px;
  color: #fff;
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 18px;
  color: #fff;
}

.footer__story {
  font-size: 14px;
  line-height: 1.8;
  color: var(--boundary-gray);
  margin: 0;
  max-width: 34em;
}

.footer__col {
  min-width: 0;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
  margin: 0 0 18px;
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__item {
  margin-bottom: 4px;
}

.footer__link {
  display: inline-block;
  padding: 6px 0;
  color: var(--boundary-gray);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease-out, padding-left 0.2s ease-out;
}

.footer__link:hover {
  color: var(--electric-teal);
  padding-left: 4px;
}

.footer__bottom {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(203, 210, 217, 0.2);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(203, 210, 217, 0.75);
}

@media (max-width: 767.98px) {
  .footer__bottom {
    flex-direction: column;
    gap: 10px;
  }
}

.footer__meta {
  margin: 0;
}

html.reveal-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease-out, transform 0.45s ease-out;
  transition-delay: var(--reveal-delay, 0ms);
}

html.reveal-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  html {
    scroll-behavior: auto;
  }

  html.reveal-enabled [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover,
  .image-frame:hover > img {
    transform: none;
  }
}
