:root {
  --ink: #07111d;
  --ink-soft: #0d1b2b;
  --panel: #f4f7f8;
  --paper: #edf2f4;
  --white: #ffffff;
  --muted: #9ba9b5;
  --line: rgba(255, 255, 255, 0.14);
  --blue: #0799d4;
  --cyan: #36c7e7;
  --lime: #a9d447;
  --font-display: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 10% 55%, rgba(4, 144, 202, 0.18), transparent 28rem),
    var(--ink);
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  opacity: 0.22;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  height: 104px;
  padding: 0 clamp(24px, 5vw, 84px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(3, 10, 17, 0.72), rgba(3, 10, 17, 0));
  animation: fade-down 0.8s 0.05s both;
}

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

.brand-symbol {
  width: 52px;
  height: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

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

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.045em;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.62);
  transition: color 180ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -12px;
  height: 2px;
  background: var(--cyan);
  transition: right 220ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  right: 0;
}

.support-link {
  min-height: 40px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(6, 14, 23, 0.22);
  backdrop-filter: blur(12px);
  transition: border-color 180ms ease, background 180ms ease;
}

.support-link:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(169, 212, 71, 0.12);
}

.hero {
  position: relative;
  min-height: clamp(650px, 80vh, 870px);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-72%);
  background: linear-gradient(
    105deg,
    transparent 25%,
    rgba(255, 202, 132, 0.06) 38%,
    rgba(255, 224, 180, 0.34) 49%,
    rgba(255, 171, 92, 0.13) 59%,
    transparent 73%
  );
  mask-image: linear-gradient(180deg, transparent 25%, black 43%, black 91%, transparent 100%);
  mix-blend-mode: screen;
}

.hero:hover::before {
  opacity: 0.88;
  animation: facade-light-sweep 5.2s ease-in-out forwards;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.96) translateY(12px);
  background:
    radial-gradient(ellipse 13% 20% at 52% 63%, rgba(255, 210, 142, 0.38), transparent 70%),
    radial-gradient(ellipse 25% 25% at 52% 66%, rgba(255, 151, 66, 0.18), transparent 74%);
  mix-blend-mode: screen;
  transition:
    opacity 900ms ease,
    transform 1200ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero:hover::after {
  opacity: 1;
  transform: scale(1.03) translateY(-4px);
}

.hero-photo,
.hero-shade,
.hero-grid,
.window-light {
  position: absolute;
  inset: 0;
}

.window-light {
  z-index: -1;
  pointer-events: none;
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    transparent 43%,
    black 47%,
    black 55%,
    transparent 58%,
    black 61%,
    black 70%,
    transparent 75%,
    transparent 100%
  );
}

.window-light::before,
.window-light::after {
  content: "";
  position: absolute;
  inset: 0;
  mix-blend-mode: screen;
}

.window-light::before {
  opacity: 0;
  transform: translateX(-72%);
  background: linear-gradient(
    105deg,
    transparent 24%,
    rgba(255, 182, 93, 0.1) 37%,
    rgba(255, 231, 188, 0.62) 49%,
    rgba(255, 174, 79, 0.2) 60%,
    transparent 74%
  );
}

.window-light::after {
  opacity: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 160, 68, 0.08),
    rgba(255, 222, 166, 0.42) 48%,
    rgba(255, 174, 81, 0.14)
  );
  transition: opacity 1300ms ease;
}

.hero:hover .window-light::before {
  opacity: 0.94;
  animation: facade-light-sweep 5.2s ease-in-out forwards;
}

.hero.windows-lit .window-light::after {
  opacity: 0.56;
}

.hero-photo {
  z-index: -4;
  background-color: #3f4650;
  background-image: url("./assets/cico.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  filter: saturate(1.06) contrast(1.02);
  transform: none;
  transform-origin: 52% 63%;
  transition:
    filter 900ms ease,
    transform 1200ms cubic-bezier(0.2, 0.8, 0.2, 1);
  animation: image-in 1.8s cubic-bezier(0.18, 0.86, 0.24, 1) both;
}

.hero:hover .hero-photo {
  filter: saturate(1.12) brightness(1.05) contrast(1.03);
  transform: scale(1.008);
}

.hero-shade {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(3, 10, 18, 0.7) 0%, rgba(4, 11, 18, 0.46) 28%, rgba(4, 10, 17, 0.08) 49%, rgba(4, 10, 17, 0) 76%),
    linear-gradient(180deg, rgba(4, 10, 17, 0.14) 0%, rgba(4, 10, 17, 0) 58%, rgba(7, 17, 29, 0.32) 86%, #07111d 100%);
}

.hero-grid {
  z-index: -2;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, black, transparent 58%);
}

.hero-content {
  width: min(720px, 86vw);
  margin: 70px 0 0 clamp(24px, 5vw, 96px);
}

.eyebrow {
  margin: 0 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  animation: reveal-up 0.8s 0.25s both;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: var(--font-display);
  font-size: clamp(48px, 4.5vw, 82px);
  font-weight: 650;
  letter-spacing: -0.052em;
  line-height: 0.94;
  text-wrap: balance;
  animation: reveal-up 0.9s 0.36s both;
}

.hero h1 em {
  display: inline-block;
  color: #a9e8f8;
  font-style: normal;
  font-weight: 480;
  white-space: nowrap;
}

.hero-description {
  max-width: 500px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.75;
  animation: reveal-up 0.85s 0.48s both;
}

.hero-cta {
  width: fit-content;
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  animation: reveal-up 0.85s 0.58s both;
}

.hero-cta svg {
  width: 42px;
  height: 42px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.hero-cta:hover svg {
  color: var(--ink);
  background: var(--white);
  transform: translateX(5px);
}

.apps-section {
  position: relative;
  z-index: 2;
  padding: 40px clamp(24px, 6.4vw, 122px) 90px;
  background:
    radial-gradient(circle at 95% 8%, rgba(35, 151, 194, 0.13), transparent 25rem),
    var(--ink);
}

.apps-heading {
  width: min(1430px, 100%);
  margin: 0 auto 42px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.apps-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 3.8vw, 64px);
  font-weight: 550;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.apps-intro {
  width: min(420px, 100%);
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.apps-grid {
  width: min(1430px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.app-card {
  --accent: var(--blue);
  position: relative;
  min-height: 420px;
  padding: clamp(24px, 2.5vw, 38px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.025) 68%),
    rgba(12, 26, 41, 0.78);
  backdrop-filter: blur(20px);
  transition: transform 420ms cubic-bezier(0.2, 0.75, 0.2, 1), border-color 260ms ease, background 260ms ease;
}

.app-card:nth-child(1) {
  animation: reveal-up 0.75s 0.1s both;
}

.app-card:nth-child(2) {
  animation: reveal-up 0.75s 0.22s both;
}

.app-card:nth-child(3) {
  animation: reveal-up 0.75s 0.34s both;
}

.app-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform 420ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.app-card:hover {
  z-index: 2;
  transform: translateY(-10px);
  border-color: color-mix(in srgb, var(--accent), transparent 48%);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035) 68%),
    rgba(12, 26, 41, 0.92);
}

.app-card:hover::after {
  transform: scaleX(1);
}

.analytics-card {
  --accent: var(--cyan);
}

.cicoflow-card {
  --accent: var(--lime);
}

.card-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  top: -125px;
  left: -80px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(85px);
  opacity: 0.13;
  transition: opacity 300ms ease, transform 420ms ease;
}

.app-card:hover .card-glow {
  opacity: 0.28;
  transform: translate(24px, 18px);
}

.app-card-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.app-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--accent), transparent 50%);
  background: color-mix(in srgb, var(--accent), transparent 88%);
  color: var(--accent);
}

.app-wordmark {
  position: relative;
  width: min(270px, calc(100% - 42px));
  height: 108px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border: 0;
  background: transparent;
}

.app-wordmark img {
  display: block;
  max-width: 100%;
  filter: contrast(1.02) saturate(1.02);
}

.dbcr-wordmark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 500ms cubic-bezier(0.2, 0.75, 0.2, 1), filter 300ms ease;
}

.dbcr-wordmark,
.analytics-wordmark {
  overflow: visible;
}

.analytics-wordmark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 500ms cubic-bezier(0.2, 0.75, 0.2, 1), filter 300ms ease;
}

.cicoflow-wordmark {
  overflow: visible;
}

.cicoflow-wordmark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 500ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.app-card:hover .app-wordmark img {
  transform: scale(1.035);
}

.app-card:hover .analytics-wordmark img {
  transform: scale(1.035);
}

.app-card:hover .dbcr-wordmark img {
  transform: scale(1.035);
}

.app-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.app-number {
  color: rgba(255, 255, 255, 0.22);
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.04em;
}

.app-meta {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 10px;
}

.app-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: color-mix(in srgb, var(--accent), white 20%);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.app-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent), transparent 85%);
}

.app-copy {
  margin-top: 56px;
}

.app-type {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.app-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 3.4vw, 58px);
  font-weight: 600;
  letter-spacing: -0.06em;
}

.app-title-link {
  position: relative;
  color: inherit;
}

.app-title-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.app-title-link:hover::after,
.app-title-link:focus-visible::after {
  transform: scaleX(1);
}

.app-title-link:focus-visible,
.dbcr-wordmark:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}

.app-copy > p:last-child {
  max-width: 360px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.app-action {
  width: 100%;
  margin-top: auto;
  padding: 18px 0 3px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: left;
}

.app-action svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 240ms ease;
}

.app-action:hover svg {
  transform: translateX(6px);
}

.app-action--soon {
  color: color-mix(in srgb, var(--accent), white 16%);
  cursor: not-allowed;
}

.app-action--soon svg {
  opacity: 0.74;
  stroke-width: 1.7;
}

.app-action--soon:hover svg {
  transform: none;
}

.portal-note {
  width: min(1430px, 100%);
  margin: 24px auto 0;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 17px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.portal-note-icon {
  flex: 0 0 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(54, 199, 231, 0.1);
  color: var(--cyan);
}

.portal-note-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.portal-note strong {
  font-size: 12px;
}

.portal-note p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.site-footer {
  padding: 28px clamp(24px, 6.4vw, 122px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #050d16;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer a span {
  margin-left: 6px;
  color: var(--cyan);
}

.toast {
  position: fixed;
  z-index: 20;
  right: 24px;
  bottom: 24px;
  width: min(390px, calc(100vw - 48px));
  padding: 18px;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(9, 21, 34, 0.94);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(20px);
  transform: translateY(calc(100% + 50px));
  opacity: 0;
  transition: transform 360ms cubic-bezier(0.2, 0.75, 0.2, 1), opacity 300ms ease;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(54, 199, 231, 0.12);
  color: var(--cyan);
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 700;
}

.toast strong {
  font-size: 11px;
}

.toast p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.toast-close {
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  font-size: 23px;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-down {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes image-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes entrance-pulse {
  from {
    opacity: 0.18;
    transform: scale(0.98) translateY(6px);
  }
  to {
    opacity: 0.72;
    transform: scale(1.02) translateY(-2px);
  }
}

@keyframes facade-light-sweep {
  from {
    transform: translateX(-72%);
  }
  to {
    transform: translateX(72%);
  }
}

@media (max-width: 900px) {
  .main-nav .nav-link {
    display: none;
  }

  .hero {
    min-height: 700px;
  }

  .hero-photo {
    background-size: cover;
    background-position: 54% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 10, 18, 0.72), rgba(3, 10, 18, 0.18) 70%),
      linear-gradient(180deg, rgba(4, 10, 17, 0.08) 0%, rgba(4, 10, 17, 0.02) 48%, #07111d 96%);
  }

  .hero-content {
    margin-left: clamp(24px, 8vw, 70px);
  }

  .apps-grid {
    grid-template-columns: 1fr;
  }

  .app-card {
    min-height: 370px;
  }

  .apps-heading {
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .site-header {
    height: 82px;
    padding-inline: 20px;
  }

  .brand {
    gap: 9px;
  }

  .brand-symbol {
    width: 44px;
  }

  .brand-copy strong {
    font-size: 19px;
  }

  .brand-copy small {
    display: none;
  }

  .main-nav {
    gap: 0;
  }

  .support-link {
    min-height: 36px;
    padding-inline: 13px;
    font-size: 10px;
  }

  .hero {
    min-height: 670px;
    align-items: end;
    padding-bottom: 95px;
  }

  .hero-photo {
    background-size: cover;
    background-position: 55% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 10, 18, 0.5), rgba(3, 10, 18, 0.08)),
      linear-gradient(180deg, rgba(4, 10, 17, 0.03) 0%, rgba(4, 10, 17, 0.06) 38%, #07111d 92%);
  }

  .hero-content {
    width: calc(100% - 40px);
    margin: 0 20px;
  }

  .eyebrow {
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: clamp(34px, 11vw, 48px);
    line-height: 0.96;
    letter-spacing: -0.045em;
  }

  .hero-description {
    margin-top: 22px;
    font-size: 13px;
    line-height: 1.65;
  }

  .hero-cta {
    margin-top: 24px;
  }

  .apps-section {
    padding: 28px 16px 64px;
  }

  .apps-heading {
    margin-bottom: 28px;
    padding: 0 8px;
  }

  .apps-heading h2 {
    font-size: 42px;
  }

  .app-card {
    min-height: 380px;
    padding: 26px;
  }

  .app-copy {
    margin-top: 44px;
  }

  .portal-note {
    align-items: flex-start;
    padding: 18px;
  }

  .site-footer {
    padding: 26px 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .site-footer p {
    margin: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero::after {
    opacity: 0;
    transform: none;
  }

  .hero::before {
    opacity: 0;
    transform: none;
  }

  .window-light::before {
    opacity: 0;
    transform: none;
  }

  .window-light::after {
    opacity: 0;
  }

  .hero:hover .hero-photo {
    transform: none;
  }
}
