:root {
  --bg: #0b1016;
  --bg-alt: #121922;
  --panel: rgba(17, 24, 33, 0.86);
  --panel-soft: rgba(255, 255, 255, 0.04);
  --line: rgba(173, 188, 204, 0.16);
  --line-strong: rgba(173, 188, 204, 0.26);
  --text: #edf3f8;
  --muted: #9cabba;
  --surface: #f7f9fb;
  --surface-alt: #eef3f7;
  --surface-line: rgba(15, 23, 34, 0.08);
  --text-dark: #15202c;
  --muted-dark: #617080;
  --accent: #9dc3dd;
  --accent-strong: #bfd7e8;
  --accent-soft: rgba(157, 195, 221, 0.12);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 18px 46px rgba(8, 12, 18, 0.12);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  color-scheme: dark light;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 13px;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(157, 195, 221, 0.09), transparent 26%),
    linear-gradient(180deg, #0a0f15 0%, #111822 54%, #0b1016 100%);
}

body,
body * {
  -webkit-user-select: text;
  user-select: text;
  -webkit-touch-callout: default;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.015), transparent 28%),
    radial-gradient(circle at bottom right, rgba(157, 195, 221, 0.05), transparent 28%);
}

img {
  display: block;
  max-width: 100%;
  -webkit-user-select: none;
  user-select: none;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

p,
li {
  font-size: 0.84rem;
  line-height: 1.56;
}

ul,
ol {
  margin: 14px 0 0;
  padding-left: 20px;
}

code {
  padding: 0.18rem 0.45rem;
  border-radius: 10px;
  background: rgba(21, 32, 44, 0.08);
  color: var(--text-dark);
}

.shell {
  position: relative;
  min-height: 100vh;
  padding: 24px 20px 48px;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  padding: 4px 0 18px;
  border-bottom: 1px solid rgba(173, 188, 204, 0.16);
}

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

.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(173, 188, 204, 0.18);
  transition:
    opacity 320ms ease,
    transform 320ms ease,
    box-shadow 320ms ease;
}

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

.brand-copy strong {
  font-size: 0.92rem;
  letter-spacing: -0.015em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.73rem;
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.topbar-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

body.theme-home.is-intro-active {
  overflow: hidden;
}

body.theme-home.is-intro-active .container {
  pointer-events: none;
}

body.theme-home.is-intro-active .brand-mark {
  opacity: 0;
  box-shadow: none;
}

.site-intro-frame {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 4;
  height: clamp(24px, 4.6vh, 40px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.74), transparent);
  opacity: 0.94;
  transition:
    opacity var(--intro-content-fade-duration) ease,
    transform var(--intro-content-exit-duration) ease;
}

.site-intro-frame--top {
  top: 0;
}

.site-intro-frame--bottom {
  bottom: 0;
  transform: rotate(180deg);
}

.site-intro {
  --intro-shift-x: 0px;
  --intro-shift-y: 0px;
  --intro-scale: 0.16;
  --intro-overlay-fade-duration: 420ms;
  --intro-overlay-fade-delay: 1680ms;
  --intro-logo-collapse-duration: 1880ms;
  --intro-content-exit-duration: 1560ms;
  --intro-content-fade-duration: 900ms;
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  contain: layout paint style;
  background:
    radial-gradient(circle at 20% 18%, rgba(103, 210, 255, 0.14), transparent 24%),
    radial-gradient(circle at 84% 22%, rgba(163, 182, 255, 0.12), transparent 22%),
    linear-gradient(180deg, #030508 0%, #07101a 44%, #030508 100%);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--intro-overlay-fade-duration) ease,
    visibility var(--intro-overlay-fade-duration) ease;
}

body.theme-home.is-intro-active .site-intro {
  opacity: 1;
  visibility: visible;
}

.site-intro::before,
.site-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.site-intro::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.16;
}

.site-intro::after {
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.03), transparent 34%),
    linear-gradient(180deg, rgba(4, 10, 18, 0.08), rgba(4, 10, 18, 0.56));
}

.site-intro-code-grid {
  position: absolute;
  inset: 10% 7%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: clamp(18px, 4vw, 52px);
  opacity: 0.58;
  pointer-events: none;
  transition:
    transform 760ms ease,
    opacity 520ms ease;
}

.site-intro-code-stream {
  width: min(34ch, 32%);
  max-width: 360px;
  display: grid;
  align-content: start;
  gap: 8px;
  margin: 0;
  will-change: transform;
  animation: intro-code-stream 24s linear infinite;
}

.site-intro-code-stream--secondary {
  align-self: flex-end;
  animation-direction: reverse;
  animation-duration: 29s;
  opacity: 0.68;
}

.site-intro-code-stream span {
  display: block;
  min-width: 0;
  padding: 6px 10px;
  border: 1px solid rgba(135, 208, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(201, 234, 255, 0.76);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: clamp(0.58rem, 0.82vw, 0.72rem);
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: 0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-intro-code-stream span.is-dim {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.44);
}

.site-intro-glow {
  position: absolute;
  width: 24vw;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.28;
  transition:
    opacity 520ms ease,
    transform 760ms ease;
}

.site-intro-glow--left {
  left: -8vw;
  bottom: -10vw;
  background: radial-gradient(circle, rgba(103, 210, 255, 0.18), transparent 62%);
}

.site-intro-glow--right {
  right: -8vw;
  top: -10vw;
  background: radial-gradient(circle, rgba(183, 195, 255, 0.16), transparent 62%);
}

.site-intro-copy {
  position: absolute;
  left: 50%;
  bottom: clamp(34px, 8vh, 62px);
  z-index: 4;
  display: grid;
  gap: 8px;
  justify-items: center;
  min-width: min(92vw, 440px);
  text-align: center;
  transform: translateX(-50%);
  animation: intro-copy-arrive 1780ms cubic-bezier(0.22, 1, 0.36, 1) both 320ms;
  transition:
    opacity var(--intro-content-fade-duration) ease,
    transform var(--intro-content-exit-duration) ease;
}

.site-intro-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border: 1px solid rgba(196, 210, 226, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(214, 230, 243, 0.78);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-intro-tag {
  color: rgba(245, 249, 252, 0.9);
  font-size: clamp(0.84rem, 1.26vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.16;
  text-transform: uppercase;
  text-wrap: balance;
}

.site-intro-logo-shell {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: clamp(230px, 30vw, 360px);
  aspect-ratio: 1;
  border-radius: 50%;
  will-change: transform, opacity;
  animation: intro-logo-arrive 1960ms cubic-bezier(0.19, 1, 0.22, 1) both;
  transition:
    transform var(--intro-logo-collapse-duration) cubic-bezier(0.19, 1, 0.22, 1),
    opacity var(--intro-content-fade-duration) ease;
}

.site-intro-logo-shell::before,
.site-intro-logo-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.site-intro-logo-shell::before {
  inset: -18px;
  border: 1px solid rgba(196, 210, 226, 0.18);
  opacity: 0.38;
}

.site-intro-logo-shell::after {
  inset: -42px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 62%);
  opacity: 0.72;
}

.site-intro-logo-sheen {
  position: absolute;
  inset: -18% 36%;
  z-index: 2;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.66), transparent);
  filter: blur(7px);
  mix-blend-mode: screen;
  pointer-events: none;
  opacity: 0;
  transform: rotate(14deg) translateY(120%);
  animation: intro-sheen-sweep 7.2s ease-in-out infinite 1180ms;
}

.site-intro-logo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(196, 210, 226, 0.16);
}

.site-intro.is-intro-collapsing {
  opacity: 0;
  visibility: hidden;
  transition-delay: var(--intro-overlay-fade-delay);
}

.site-intro.is-intro-collapsing .site-intro-code-grid {
  opacity: 0;
  transform: scale(1.04);
}

.site-intro.is-intro-collapsing .site-intro-copy,
.site-intro.is-intro-collapsing .site-intro-frame {
  opacity: 0;
}

.site-intro.is-intro-collapsing .site-intro-copy {
  transform: translate(-50%, 8px);
}

.site-intro.is-intro-collapsing .site-intro-glow {
  opacity: 0;
  transform: scale(1.08);
}

.site-intro.is-intro-collapsing .site-intro-logo-shell {
  transform: translate3d(var(--intro-shift-x), var(--intro-shift-y), 0) scale(var(--intro-scale));
}

@keyframes intro-code-stream {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-14%);
  }
}

@keyframes intro-logo-arrive {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes intro-copy-arrive {
  0% {
    opacity: 0;
    transform: translate(-50%, 14px);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes intro-sheen-sweep {
  0%,
  100% {
    opacity: 0;
    transform: rotate(14deg) translateY(120%);
  }

  22%,
  42% {
    opacity: 0.62;
    transform: rotate(14deg) translateY(-120%);
  }
}

@media (max-width: 720px) {
  .site-intro-copy {
    bottom: clamp(30px, 6.2vh, 48px);
    min-width: min(90vw, 360px);
  }

  .site-intro-tag {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
  }

  .site-intro-code-grid {
    inset: 12% 6%;
    justify-content: flex-start;
  }

  .site-intro-code-stream {
    width: min(42ch, 100%);
    max-width: none;
  }

  .site-intro-code-stream--secondary {
    display: none;
  }

  .site-intro-glow {
    width: 42vw;
  }

  .site-intro-logo-shell {
    width: min(68vw, 270px);
  }
}

@media (prefers-color-scheme: light) {
  .site-intro {
    background:
      radial-gradient(circle at 18% 18%, rgba(61, 179, 197, 0.14), transparent 24%),
      radial-gradient(circle at 84% 20%, rgba(136, 152, 197, 0.14), transparent 20%),
      linear-gradient(180deg, #fbfdff 0%, #eef4f9 44%, #f7fbff 100%);
  }

  .site-intro-frame {
    background: linear-gradient(180deg, rgba(236, 242, 247, 0.96), rgba(236, 242, 247, 0.84), transparent);
  }

  .site-intro::before {
    background:
      linear-gradient(rgba(21, 32, 44, 0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(21, 32, 44, 0.025) 1px, transparent 1px);
    background-size: 54px 54px;
  }

  .site-intro::after {
    background:
      radial-gradient(circle at center, rgba(61, 179, 197, 0.06), transparent 36%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(231, 239, 246, 0.62));
  }

  .site-intro-code-stream span {
    border-color: rgba(21, 32, 44, 0.1);
    background: rgba(255, 255, 255, 0.74);
    color: rgba(21, 32, 44, 0.72);
  }

  .site-intro-code-stream span.is-dim {
    border-color: rgba(21, 32, 44, 0.08);
    background: rgba(255, 255, 255, 0.56);
    color: rgba(21, 32, 44, 0.42);
  }

  .site-intro-kicker {
    border-color: rgba(21, 32, 44, 0.08);
    background: rgba(255, 255, 255, 0.68);
    color: rgba(21, 32, 44, 0.62);
  }

  .site-intro-tag {
    color: rgba(21, 32, 44, 0.8);
  }

  .site-intro-logo {
    box-shadow:
      0 22px 48px rgba(15, 36, 56, 0.16),
      0 0 0 1px rgba(21, 32, 44, 0.08);
  }

  .site-intro-logo-shell::before {
    border-color: rgba(21, 32, 44, 0.1);
  }

  .site-intro-logo-shell::after {
    background: radial-gradient(circle, rgba(61, 179, 197, 0.12), transparent 62%);
  }

  .site-intro-logo-sheen {
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.52), transparent);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-intro,
  .site-intro-code-grid,
  .site-intro-glow,
  .site-intro-logo-shell {
    transition-duration: 180ms !important;
    transition-delay: 0ms !important;
  }

  .site-intro-code-stream {
    animation: none !important;
  }

  .site-intro-logo-shell,
  .site-intro-copy,
  .site-intro-logo-sheen {
    animation: none !important;
  }
}

.topnav a {
  padding: 4px 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.topnav a:hover,
.topnav a:focus-visible {
  color: var(--text);
  border-bottom-color: rgba(191, 215, 232, 0.38);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(173, 188, 204, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 44px;
  min-height: 32px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  appearance: none;
  -webkit-appearance: none;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.lang-link::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14);
  flex-shrink: 0;
}

.lang-link[data-set-language="tr"]::before {
  background-image: url("./media/flag-tr.svg");
}

.lang-link[data-set-language="en"]::before {
  background-image: url("./media/flag-us.svg");
}

.lang-link:hover,
.lang-link:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.lang-link.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: inset 0 0 0 1px rgba(191, 215, 232, 0.14);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-home {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 20px;
  align-items: stretch;
}

.home-copy {
  padding: 10px 0 4px;
}

.home-title {
  max-width: 12ch;
  font-size: clamp(1.62rem, 3.1vw, 2.35rem);
}

.lead {
  max-width: 60ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(191, 215, 232, 0.4);
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #10202b;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.03);
}

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

.proof-item {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.proof-item strong {
  display: block;
  font-size: 0.82rem;
}

.proof-item span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.44;
}

.showcase {
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(18, 25, 34, 0.96), rgba(13, 18, 25, 0.98)),
    radial-gradient(circle at top right, rgba(157, 195, 221, 0.08), transparent 30%);
  box-shadow: var(--shadow);
}

.showcase-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.pill,
.status,
.resource-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 700;
}

.pill {
  background: rgba(157, 195, 221, 0.12);
  color: var(--accent-strong);
}

.status {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.showcase-copy {
  margin-top: 20px;
}

.showcase-copy h2 {
  max-width: 12ch;
  font-size: clamp(1.2rem, 1.9vw, 1.58rem);
}

.showcase-copy p {
  max-width: 54ch;
  margin: 14px 0 0;
  color: #c4d0db;
}

.showcase-matrix {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 16px;
  margin-top: 22px;
}

.summary-panel {
  padding: 18px;
  border: 1px solid rgba(173, 188, 204, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.summary-title {
  margin-top: 4px;
  font-size: 0.88rem;
}

.summary-copy {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.summary-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(173, 188, 204, 0.12);
}

.summary-row:last-child {
  border-bottom: 0;
}

.summary-row span {
  color: var(--muted);
  font-size: 0.7rem;
}

.summary-row strong {
  text-align: right;
  font-size: 0.75rem;
}

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

.screen-frame {
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(173, 188, 204, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
}

.screen-frame img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.24);
}

.screen-caption {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.69rem;
}

.section {
  margin-top: 24px;
}

.band {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.band span {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.7rem;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}

.section-head h2 {
  max-width: 14ch;
  font-size: clamp(1.08rem, 1.7vw, 1.38rem);
}

.section-copy {
  max-width: 44ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.case-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 16px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.surface {
  height: 100%;
  padding: 22px;
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-alt) 100%);
  color: var(--text-dark);
  box-shadow: var(--shadow-soft);
}

.card-index,
.step-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: #637283;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.surface h3 {
  font-size: 0.88rem;
  line-height: 1.18;
}

.surface p {
  margin: 12px 0 0;
  color: var(--muted-dark);
}

.surface .button {
  color: var(--text-dark);
  border-color: rgba(21, 32, 44, 0.12);
  background: rgba(21, 32, 44, 0.04);
}

.surface .button.primary {
  border-color: transparent;
  color: #10202b;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
}

.service-list,
.feature-list {
  margin-top: 14px;
  color: var(--muted-dark);
}

.service-list li + li,
.feature-list li + li {
  margin-top: 8px;
}

.delivery-list {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.delivery-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(21, 32, 44, 0.08);
}

.delivery-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.delivery-item strong {
  display: block;
  font-size: 0.8rem;
}

.delivery-item span {
  display: block;
  margin-top: 6px;
  color: var(--muted-dark);
  font-size: 0.73rem;
  line-height: 1.56;
}

.resource-list {
  padding: 10px 22px;
}

.resource-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(21, 32, 44, 0.08);
  text-decoration: none;
}

.resource-row:last-child {
  border-bottom: 0;
}

.resource-copy h3 {
  font-size: 0.84rem;
}

.resource-copy p {
  margin: 8px 0 0;
  color: var(--muted-dark);
  font-size: 0.77rem;
}

.resource-tag {
  border: 1px solid rgba(21, 32, 44, 0.12);
  background: rgba(21, 32, 44, 0.04);
  color: var(--text-dark);
  flex-shrink: 0;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-weight: 700;
  text-decoration: none;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 16px;
}

.meta-list {
  display: grid;
  gap: 2px;
  margin-top: 16px;
}

.meta-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(21, 32, 44, 0.08);
}

.meta-row:last-child {
  border-bottom: 0;
}

.meta-row span {
  color: var(--muted-dark);
}

.meta-row strong,
.meta-row strong a {
  color: var(--text-dark);
  text-decoration: none;
}

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

.flag-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 0 0 1px rgba(21, 32, 44, 0.12);
  flex-shrink: 0;
}

.flag-icon--tr {
  background-image: url("./media/flag-tr.svg");
}

.flag-icon--us {
  background-image: url("./media/flag-us.svg");
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 340px);
  gap: 18px;
  margin-top: 6px;
}

.page-copy,
.page-aside {
  height: 100%;
}

.page-copy h1 {
  font-size: clamp(1.28rem, 2.2vw, 1.65rem);
}

.page-copy .lead,
.page-aside p {
  color: var(--muted-dark);
}

.page-stack {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.support-form-surface {
  display: grid;
  gap: 18px;
}

.support-form-head h2 {
  margin-bottom: 8px;
  font-size: 0.96rem;
}

.support-form-head p {
  max-width: 58ch;
}

.support-form {
  display: grid;
  gap: 14px;
}

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

.field {
  display: grid;
  gap: 6px;
}

.field--full {
  grid-column: 1 / -1;
}

.field span {
  color: var(--text-dark);
  font-size: 0.68rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid rgba(21, 32, 44, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--text-dark);
  font: inherit;
  resize: vertical;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #7d8d9d;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(116, 168, 201, 0.52);
  box-shadow: 0 0 0 4px rgba(157, 195, 221, 0.14);
  background: rgba(255, 255, 255, 0.88);
}

.field input[type="file"] {
  padding: 10px 11px;
  background: rgba(255, 255, 255, 0.74);
}

.field input[type="file"]::file-selector-button {
  margin-right: 10px;
  padding: 7px 10px;
  border: 0;
  border-radius: 10px;
  background: #d9e6f0;
  color: #13202c;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.support-form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.form-note {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.69rem;
  max-width: 54ch;
}

.form-status {
  min-height: 1.2em;
  margin: 0;
  font-size: 0.69rem;
  font-weight: 700;
}

.form-status[data-state="pending"] {
  color: #5e7288;
}

.form-status[data-state="success"] {
  color: #2b6a49;
}

.form-status[data-state="error"] {
  color: #a24c4c;
}

.support-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.aside-label {
  margin: 0 0 6px;
  color: #637283;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.prose h2 {
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.prose p,
.prose li {
  color: var(--muted-dark);
}

.prose p:first-of-type {
  margin-top: 0;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px 24px;
  padding: 28px 0 10px;
  color: var(--muted);
  font-size: 0.72rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.muted {
  color: var(--muted-dark);
}

.reveal {
  animation: rise-in 480ms ease both;
}

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

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

@keyframes slide-visual-center {
  0% {
    opacity: 0;
    transform: translate(calc(-50% + 28px), -50%) scale(0.975);
  }

  8%,
  28% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  36%,
  100% {
    opacity: 0;
    transform: translate(calc(-50% - 28px), -50%) scale(0.975);
  }
}

@keyframes slide-visual-panel {
  0% {
    opacity: 0;
    transform: translateX(18px) scale(0.985);
  }

  10%,
  40% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  50%,
  100% {
    opacity: 0;
    transform: translateX(-18px) scale(0.985);
  }
}

@media (max-width: 1120px) {
  .hero-home,
  .case-grid,
  .contact-grid,
  .page-hero,
  .showcase-matrix {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 920px) {
  .topbar,
  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar-actions {
    justify-content: flex-start;
  }

  .topnav {
    justify-content: flex-start;
    gap: 12px 18px;
  }

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

  .section-head h2,
  .home-title,
  .showcase-copy h2 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .shell {
    padding: 18px 14px 40px;
  }

  .topbar,
  .showcase,
  .surface,
  .resource-list {
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .brand-mark {
    width: 45px;
    height: 45px;
  }

  .screen-grid,
  .card-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .resource-row,
  .summary-row,
  .meta-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .resource-tag {
    margin-top: 4px;
  }
}

@media (max-width: 560px) {
  .home-title {
    font-size: 1.42rem;
  }

  .page-copy h1 {
    font-size: 1.24rem;
  }
}

/* Home 2026 */

.theme-home {
  background:
    radial-gradient(circle at 10% 14%, rgba(103, 210, 255, 0.12), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(119, 128, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #06090f 0%, #09101a 42%, #06090f 100%);
}

.theme-home::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent 24%),
    radial-gradient(circle at bottom left, rgba(103, 210, 255, 0.06), transparent 26%);
}

.theme-home .shell {
  overflow: hidden;
  isolation: isolate;
}

.theme-home .shell::before,
.theme-home .shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.theme-home .shell::before {
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 92%);
  opacity: 0.18;
}

.theme-home .shell::after {
  top: 80px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(103, 210, 255, 0.12) 0%, transparent 66%);
  filter: blur(12px);
}

.theme-home .topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  margin-bottom: 30px;
  padding: 8px 0 16px;
  background: transparent;
  border-bottom: 1px solid rgba(196, 210, 226, 0.08);
  backdrop-filter: blur(8px);
}

.theme-home .brand {
  gap: 12px;
}

.theme-home .brand-mark {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(196, 210, 226, 0.24);
  box-shadow:
    0 0 0 5px rgba(255, 255, 255, 0.02),
    0 12px 22px rgba(0, 0, 0, 0.28);
}

.theme-home .brand-copy strong {
  font-size: 0.98rem;
}

.theme-home .brand-copy span {
  font-size: 0.74rem;
  color: #8da2b9;
}

.theme-home .topnav {
  gap: 18px;
}

.theme-home .topnav a {
  font-size: 0.69rem;
  color: #8da2b9;
  letter-spacing: 0.1em;
}

.theme-home .topnav a:hover,
.theme-home .topnav a:focus-visible {
  color: #edf3f8;
  border-bottom-color: rgba(103, 210, 255, 0.34);
}

.theme-home .lang-switch {
  border-color: rgba(196, 210, 226, 0.14);
  background: rgba(255, 255, 255, 0.035);
}

.theme-home .lang-link {
  color: #8da2b9;
}

.theme-home .lang-link:hover,
.theme-home .lang-link:focus-visible {
  color: #edf3f8;
  background: rgba(255, 255, 255, 0.05);
}

.theme-home .lang-link.is-active {
  color: #08121b;
  background: linear-gradient(135deg, #87d0ff 0%, #d4ebff 100%);
  box-shadow: 0 12px 24px rgba(135, 208, 255, 0.14);
}

.theme-home .hero-home {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 14px;
  align-items: start;
}

.theme-home .hero-column {
  position: relative;
}

.theme-home .hero-column--copy {
  padding-top: 10px;
}

.theme-home .eyebrow {
  background: rgba(103, 210, 255, 0.1);
  color: #b8deff;
}

.micro-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.micro-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid rgba(196, 210, 226, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #b2c4d8;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.theme-home .home-title {
  max-width: 12ch;
  font-size: clamp(2.08rem, 4vw, 3.3rem);
  line-height: 0.98;
  text-wrap: balance;
}

.theme-home .lead {
  max-width: 50ch;
  margin-top: 12px;
  color: #a3b3c5;
  font-size: 0.87rem;
  line-height: 1.64;
}

.theme-home .actions {
  margin-top: 16px;
  gap: 7px;
}

.theme-home .button {
  min-height: 36px;
  padding: 0 12px;
  border-color: rgba(196, 210, 226, 0.18);
  background: rgba(255, 255, 255, 0.045);
  color: #edf3f8;
  font-size: 0.72rem;
  letter-spacing: 0.01em;
}

.theme-home .button.primary {
  background: linear-gradient(135deg, #87d0ff 0%, #d4ebff 100%);
  color: #08121b;
  box-shadow: 0 16px 30px rgba(135, 208, 255, 0.18);
}

.hero-proofline {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.hero-proofline span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid rgba(196, 210, 226, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #9ab0c5;
  font-size: 0.65rem;
}

.hero-bento {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 12px;
  align-items: stretch;
}

.home-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(196, 210, 226, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(15, 21, 31, 0.88), rgba(10, 14, 22, 0.92)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 20px 48px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.home-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 34%);
}

.home-card--intro,
.home-card--signal,
.home-card--device,
.overview-card,
.flagship-copy-card,
.flagship-visual-card,
.flagship-facts-card,
.principle-card,
.product-trust-card,
.product-feature-card,
.product-usecase-card,
.product-faq-card,
.cta-copy-card,
.cta-meta-card {
  padding: 16px;
}

.home-card--device {
  min-height: 360px;
}

.home-card--signal {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 0;
}

.home-card-label {
  display: inline-flex;
  margin-bottom: 8px;
  color: #8ea5bb;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.theme-home .home-card h2,
.theme-home .home-card h3 {
  color: #f4f8fc;
}

.theme-home .home-card h2 {
  max-width: 14ch;
  font-size: clamp(1.18rem, 2vw, 1.52rem);
  line-height: 1.08;
}

.theme-home .home-card h3 {
  font-size: 0.94rem;
  line-height: 1.12;
}

.theme-home .home-card p {
  margin: 8px 0 0;
  color: #95a7b9;
  font-size: 0.8rem;
  line-height: 1.62;
}

.pulse-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-top: 12px;
}

.pulse-item {
  padding: 10px 8px;
  border: 1px solid rgba(196, 210, 226, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.pulse-item strong {
  display: block;
  color: #edf3f8;
  font-size: 0.8rem;
}

.pulse-item span {
  display: block;
  margin-top: 4px;
  color: #8ea5bb;
  font-size: 0.65rem;
}

.hero-device-grid {
  position: relative;
  min-height: 270px;
  margin-top: 10px;
}

.hero-device-grid--single {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 18px 18px 12px;
}

.hero-device-grid--pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 12px;
  min-height: auto;
  padding: 8px 4px 0;
}

.hero-device-grid--solo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  padding: 18px 18px 12px;
}

.hero-screen {
  position: absolute;
  width: 48%;
  max-width: 198px;
  --rotate-angle: 0deg;
  padding: 16px;
  object-fit: contain;
  border-radius: 22px;
  border: 1px solid rgba(203, 215, 229, 0.72);
  background: linear-gradient(180deg, #f8fbfd 0%, #e8eef4 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 18px 32px rgba(0, 0, 0, 0.22);
  animation: float-soft 7s ease-in-out infinite;
}

.hero-screen--primary {
  --rotate-angle: -4deg;
  left: 6%;
  top: 6%;
  transform: translateY(0) rotate(var(--rotate-angle));
}

.hero-screen--secondary {
  --rotate-angle: 4deg;
  right: 6%;
  top: 18%;
  transform: translateY(0) rotate(var(--rotate-angle));
  animation-direction: reverse;
}

.hero-screen--single {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(100%, 280px);
  max-width: 280px;
  opacity: 0;
  transform: translate(calc(-50% + 24px), -50%) scale(0.985);
  animation: slide-visual-center 15s ease-in-out infinite;
}

.hero-device-grid--single .hero-screen--single:nth-child(1) {
  animation-delay: -1.2s;
}

.hero-device-grid--single .hero-screen--single:nth-child(2) {
  animation-delay: 3.8s;
}

.hero-device-grid--single .hero-screen--single:nth-child(3) {
  animation-delay: 8.8s;
}

.hero-screen--pair {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  width: 100%;
  max-width: none;
  animation: none;
}

.hero-device-grid--pair .hero-screen--pair:first-child {
  transform: rotate(-3deg);
}

.hero-device-grid--pair .hero-screen--pair:last-child {
  transform: translateY(16px) rotate(3deg);
}

.hero-screen--solo {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  width: min(100%, 280px);
  max-width: 280px;
  opacity: 1;
  transform: none;
  animation: none;
}

.floating-note {
  position: absolute;
  z-index: 2;
  max-width: 142px;
  padding: 8px 10px;
  border: 1px solid rgba(196, 210, 226, 0.14);
  border-radius: 14px;
  background: rgba(10, 14, 20, 0.66);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
}

.floating-note span {
  display: block;
  color: #8ea5bb;
  font-size: 0.53rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-note strong {
  display: block;
  margin-top: 5px;
  color: #edf3f8;
  font-size: 0.64rem;
  line-height: 1.34;
}

.floating-note--top {
  top: 12px;
  right: 12px;
}

.floating-note--bottom {
  right: 12px;
  bottom: 12px;
}

.signal-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.signal-stack span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid rgba(196, 210, 226, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #d1e2f3;
  font-size: 0.65rem;
}

.store-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid rgba(196, 210, 226, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: #f4f8fc;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.store-badge:hover,
.store-badge:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(135, 208, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
}

.store-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.store-badge-icon svg {
  width: 18px;
  height: 18px;
}

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

.store-badge-kicker {
  color: #8ea5bb;
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-badge-title {
  color: #f4f8fc;
  font-size: 0.78rem;
  line-height: 1.1;
}

.home-section {
  margin-top: 24px;
}

.home-section--markets {
  margin-top: 18px;
}

.market-presence-home {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 348px);
  grid-template-areas:
    "title signal"
    "copy signal"
    "phase1 signal";
  gap: 18px;
  padding: 20px;
  background:
    radial-gradient(circle at top left, rgba(103, 210, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(10, 15, 24, 0.92), rgba(7, 11, 18, 0.98));
}

.market-presence-home::before {
  content: "";
  position: absolute;
  right: -72px;
  bottom: -108px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(103, 210, 255, 0.14), transparent 68%);
  pointer-events: none;
}

.market-presence-home > * {
  position: relative;
  z-index: 1;
}

.market-presence-head {
  grid-area: title;
  position: relative;
  z-index: 1;
}

.market-presence-head > div {
  position: relative;
  z-index: 1;
}

.market-presence-head .eyebrow {
  margin-bottom: 18px;
}

.market-presence-head h2 {
  max-width: none;
  font-size: clamp(1rem, 1.8vw, 1.26rem);
  line-height: 1.14;
  white-space: nowrap;
}

.market-presence-signal {
  grid-area: signal;
  position: relative;
  display: grid;
  gap: 14px;
  overflow: hidden;
  min-width: 0;
  width: 100%;
  max-width: 348px;
  padding: 15px;
  border: 1px solid rgba(196, 210, 226, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(8, 14, 22, 0.82), rgba(7, 11, 18, 0.94)),
    radial-gradient(circle at top right, rgba(103, 210, 255, 0.14), transparent 42%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 34px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  flex-shrink: 0;
}

.market-presence-signal::before,
.market-presence-signal::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.market-presence-signal::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent 30%, rgba(255, 255, 255, 0.02) 60%, transparent 100%);
  opacity: 0.45;
}

.market-presence-signal::after {
  top: -30%;
  left: -20%;
  width: 140%;
  height: 44px;
  background: linear-gradient(90deg, transparent, rgba(135, 208, 255, 0.18), transparent);
  transform: rotate(-6deg);
  animation: market-scan 5.8s linear infinite;
}

.market-signal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.market-signal-display {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(196, 210, 226, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top right, rgba(103, 210, 255, 0.1), transparent 50%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 -1px 0 rgba(255, 255, 255, 0.02);
}

.market-signal-display::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 28px, 28px 100%;
  opacity: 0.35;
  pointer-events: none;
}

.market-signal-label,
.market-signal-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.market-signal-label {
  border: 1px solid rgba(196, 210, 226, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #a5bfda;
}

.market-signal-status {
  background: rgba(103, 210, 255, 0.08);
  color: #d9ecff;
}

.market-signal-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #87d0ff;
  box-shadow: 0 0 0 0 rgba(135, 208, 255, 0.6);
  animation: market-pulse 1.8s ease-out infinite;
}

.market-signal-title {
  display: block;
  color: #f5f9fc;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.market-signal-loading {
  display: grid;
  gap: 8px;
}

.market-signal-loading-text {
  color: #9db5cd;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.market-signal-meter {
  position: relative;
  overflow: hidden;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.market-signal-meter span {
  display: block;
  width: 38%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #67d2ff 0%, #d4ebff 100%);
  box-shadow: 0 0 18px rgba(103, 210, 255, 0.34);
  animation: market-loading 2.8s ease-in-out infinite;
}

.market-signal-copy {
  margin: 0;
  color: #94abc2;
  font-size: 0.71rem;
  line-height: 1.5;
}

.market-signal-stream {
  position: relative;
  overflow: hidden;
  min-height: 84px;
  padding: 12px;
  border: 1px solid rgba(196, 210, 226, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(4, 8, 14, 0.76), rgba(10, 15, 24, 0.92)),
    radial-gradient(circle at bottom left, rgba(103, 210, 255, 0.14), transparent 44%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 24px rgba(0, 0, 0, 0.18);
}

.market-signal-stream::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 36%),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.045) 0,
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px,
      transparent 12px
    );
  opacity: 0.45;
  pointer-events: none;
}

.market-signal-stream::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(103, 210, 255, 0.18), transparent);
  opacity: 0.5;
  pointer-events: none;
}

.market-signal-stream-item {
  position: absolute;
  inset: 12px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  filter: blur(6px);
  animation: market-stream 45s linear infinite;
  animation-delay: calc(var(--stream-index) * 3s);
}

.market-signal-stream-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 10px 0 8px;
  border: 1px solid rgba(196, 210, 226, 0.14);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(103, 210, 255, 0.18), rgba(103, 210, 255, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.market-signal-stream-flag {
  width: 18px;
  height: 18px;
}

.market-signal-stream-code {
  color: #f5f9fc;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.market-signal-stream-copy {
  display: grid;
  gap: 5px;
}

.market-signal-stream-copy strong {
  color: #f4f8fc;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.08;
}

.market-signal-stream-copy small {
  color: #90a9c1;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.market-signal-stream-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid rgba(196, 210, 226, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #b9d0e5;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.market-signal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.market-signal-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid rgba(196, 210, 226, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #a8bfd6;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.market-presence-copy {
  grid-area: copy;
  max-width: none;
  margin: 0;
  color: #9cb0c3;
  font-size: 0.76rem;
  line-height: 1.58;
  text-wrap: pretty;
}

.market-presence-grid {
  grid-area: phase1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 0;
}

.market-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid rgba(196, 210, 226, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: #f4f8fc;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
}

.market-chip span:last-child {
  min-width: 0;
  text-wrap: balance;
}

.market-chip-flag {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.market-chip-flag--tr { background-image: url("./media/flags/tr.svg"); }
.market-chip-flag--us { background-image: url("./media/flags/us.svg"); }
.market-chip-flag--in { background-image: url("./media/flags/in.svg"); }
.market-chip-flag--de { background-image: url("./media/flags/de.svg"); }
.market-chip-flag--at { background-image: url("./media/flags/at.svg"); }
.market-chip-flag--nl { background-image: url("./media/flags/nl.svg"); }
.market-chip-flag--be { background-image: url("./media/flags/be.svg"); }
.market-chip-flag--dk { background-image: url("./media/flags/dk.svg"); }
.market-chip-flag--se { background-image: url("./media/flags/se.svg"); }
.market-chip-flag--no { background-image: url("./media/flags/no.svg"); }
.market-chip-flag--fi { background-image: url("./media/flags/fi.svg"); }
.market-chip-flag--ie { background-image: url("./media/flags/ie.svg"); }
.market-chip-flag--mt { background-image: url("./media/flags/mt.svg"); }
.market-chip-flag--pt { background-image: url("./media/flags/pt.svg"); }
.market-chip-flag--pl { background-image: url("./media/flags/pl.svg"); }
.market-chip-flag--ro { background-image: url("./media/flags/ro.svg"); }
.market-chip-flag--hr { background-image: url("./media/flags/hr.svg"); }
.market-chip-flag--sk { background-image: url("./media/flags/sk.svg"); }
.market-chip-flag--br { background-image: url("./media/flags/br.svg"); }
.market-chip-flag--id { background-image: url("./media/flags/id.svg"); }
.market-chip-flag--fr { background-image: url("./media/flags/fr.svg"); }
.market-chip-flag--it { background-image: url("./media/flags/it.svg"); }
.market-chip-flag--es { background-image: url("./media/flags/es.svg"); }
.market-chip-flag--gr { background-image: url("./media/flags/gr.svg"); }
.market-chip-flag--cz { background-image: url("./media/flags/cz.svg"); }
.market-chip-flag--hu { background-image: url("./media/flags/hu.svg"); }
.market-chip-flag--bg { background-image: url("./media/flags/bg.svg"); }
.market-chip-flag--si { background-image: url("./media/flags/si.svg"); }
.market-chip-flag--ee { background-image: url("./media/flags/ee.svg"); }
.market-chip-flag--lv { background-image: url("./media/flags/lv.svg"); }
.market-chip-flag--lt { background-image: url("./media/flags/lt.svg"); }
.market-chip-flag--cy { background-image: url("./media/flags/cy.svg"); }
.market-chip-flag--lu { background-image: url("./media/flags/lu.svg"); }

@keyframes market-loading {
  0% {
    transform: translateX(0);
    width: 28%;
  }

  50% {
    transform: translateX(130%);
    width: 42%;
  }

  100% {
    transform: translateX(0);
    width: 28%;
  }
}

@keyframes market-stream {
  0%,
  5.2% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }

  6.6%,
  100% {
    opacity: 0;
    transform: translateY(-12px) scale(0.985);
    filter: blur(6px);
  }
}

@keyframes market-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(135, 208, 255, 0.6);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(135, 208, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(135, 208, 255, 0);
  }
}

@keyframes market-scan {
  0% {
    transform: translateX(-12%) rotate(-6deg);
    opacity: 0;
  }

  10%,
  70% {
    opacity: 1;
  }

  100% {
    transform: translateX(18%) rotate(-6deg);
    opacity: 0;
  }
}

@media (prefers-color-scheme: light) {
  .market-chip-flag {
    box-shadow: 0 0 0 1px rgba(21, 32, 44, 0.12);
  }

  .market-presence-home {
    background:
      radial-gradient(circle at top left, rgba(61, 179, 197, 0.1), transparent 28%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 247, 251, 0.98));
  }

  .market-presence-signal {
    border-color: rgba(21, 32, 44, 0.1);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 247, 252, 0.98)),
      radial-gradient(circle at top right, rgba(61, 179, 197, 0.12), transparent 42%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.82),
      0 16px 30px rgba(15, 36, 56, 0.1);
  }

  .market-presence-signal::before {
    background:
      linear-gradient(90deg, rgba(21, 32, 44, 0.05), transparent 30%, rgba(61, 179, 197, 0.04) 60%, transparent 100%);
  }

  .market-presence-signal::after {
    background: linear-gradient(90deg, transparent, rgba(61, 179, 197, 0.16), transparent);
  }

  .market-signal-label {
    border-color: rgba(21, 32, 44, 0.08);
    background: rgba(21, 32, 44, 0.04);
    color: #617080;
  }

  .market-signal-display {
    border-color: rgba(21, 32, 44, 0.08);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 253, 0.92)),
      radial-gradient(circle at top right, rgba(61, 179, 197, 0.1), transparent 48%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.84),
      inset 0 -1px 0 rgba(21, 32, 44, 0.03);
  }

  .market-signal-display::before {
    background:
      linear-gradient(rgba(21, 32, 44, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(21, 32, 44, 0.03) 1px, transparent 1px);
    background-size: 100% 28px, 28px 100%;
  }

  .market-signal-status {
    background: rgba(61, 179, 197, 0.1);
    color: #0f5f74;
  }

  .market-signal-dot {
    background: #0f766e;
  }

  .market-signal-title {
    color: #15202c;
  }

  .market-signal-loading-text,
  .market-signal-copy {
    color: #617080;
  }

  .market-signal-meter {
    background: rgba(21, 32, 44, 0.08);
  }

  .market-signal-stream {
    border-color: rgba(21, 32, 44, 0.08);
    background:
      linear-gradient(180deg, rgba(243, 247, 251, 0.98), rgba(231, 239, 246, 0.96)),
      radial-gradient(circle at bottom left, rgba(61, 179, 197, 0.12), transparent 44%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.84),
      0 12px 24px rgba(15, 36, 56, 0.08);
  }

  .market-signal-stream::before {
    background:
      linear-gradient(180deg, rgba(21, 32, 44, 0.02), transparent 36%),
      repeating-linear-gradient(
        180deg,
        rgba(21, 32, 44, 0.05) 0,
        rgba(21, 32, 44, 0.05) 1px,
        transparent 1px,
        transparent 12px
      );
  }

  .market-signal-stream::after {
    background: linear-gradient(90deg, transparent, rgba(61, 179, 197, 0.18), transparent);
  }

  .market-signal-stream-badge {
    border-color: rgba(21, 32, 44, 0.08);
    background: linear-gradient(180deg, rgba(61, 179, 197, 0.18), rgba(61, 179, 197, 0.08));
  }

  .market-signal-stream-code {
    color: #15202c;
  }

  .market-signal-stream-copy strong {
    color: #15202c;
  }

  .market-signal-stream-copy small,
  .market-signal-meta span,
  .market-signal-stream-order {
    color: #617080;
  }

  .market-signal-stream-order,
  .market-signal-meta span {
    border-color: rgba(21, 32, 44, 0.08);
    background: rgba(21, 32, 44, 0.04);
  }
}

.theme-home .section-head {
  gap: 20px;
  margin-bottom: 12px;
}

.theme-home .section-head h2 {
  max-width: 24ch;
  font-size: clamp(1.38rem, 2.6vw, 2.14rem);
  color: #f4f8fc;
  line-height: 1.08;
  text-wrap: balance;
}

.theme-home .section-copy {
  max-width: 44ch;
  color: #97a9bb;
  font-size: 0.82rem;
  line-height: 1.6;
}

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

.overview-card {
  min-height: 164px;
}

.theme-home .service-list,
.theme-home .feature-list {
  margin-top: 12px;
  color: #a7b8c8;
}

.theme-home .service-list li,
.theme-home .feature-list li {
  font-size: 0.72rem;
}

.flagship-grid-home {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr) minmax(0, 0.78fr);
  gap: 10px;
}

.flagship-copy-card {
  min-height: 100%;
}

.flagship-visual-card {
  min-height: 420px;
}

.showcase-stage {
  position: relative;
  min-height: 300px;
  margin-top: 6px;
}

.showcase-stage--single {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 20px 18px 8px;
}

.stage-screen {
  position: absolute;
  width: 48%;
  max-width: 216px;
  padding: 18px;
  object-fit: contain;
  border-radius: 24px;
  border: 1px solid rgba(203, 215, 229, 0.72);
  background: linear-gradient(180deg, #f8fbfd 0%, #e8eef4 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 18px 34px rgba(0, 0, 0, 0.22);
}

.stage-screen--left {
  left: 4%;
  top: 2%;
  transform: rotate(-4deg);
}

.stage-screen--right {
  right: 1%;
  bottom: 2%;
  transform: rotate(4deg);
}

.stage-screen--single {
  position: relative;
  left: auto;
  top: auto;
  width: min(100%, 280px);
  max-width: 280px;
  opacity: 1;
  transform: none;
  animation: none;
}

.showcase-stage--single .stage-screen--single:nth-child(1) {
  animation-delay: -1.2s;
}

.showcase-stage--single .stage-screen--single:nth-child(2) {
  animation-delay: 3.8s;
}

.showcase-stage--single .stage-screen--single:nth-child(3) {
  animation-delay: 8.8s;
}

@keyframes facts-preview-cycle {
  0% {
    opacity: 0;
    transform: translateX(18px) scale(0.985);
  }

  4%,
  14% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  18%,
  100% {
    opacity: 0;
    transform: translateX(-18px) scale(0.985);
  }
}

.facts-preview-slider {
  position: relative;
  overflow: hidden;
  height: 208px;
  margin-top: 10px;
  border-radius: 18px;
  border: 1px solid rgba(196, 210, 226, 0.14);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.18), transparent 56%),
    linear-gradient(180deg, #111923 0%, #0c141d 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 12px 24px rgba(0, 0, 0, 0.18);
}

.facts-preview-slide {
  position: absolute;
  inset: 14px;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  object-fit: contain;
  border-radius: 14px;
  opacity: 0;
  transform: translateX(18px) scale(0.985);
  animation: facts-preview-cycle 30s ease-in-out infinite;
}

.facts-preview-slider .facts-preview-slide:nth-child(1) {
  animation-delay: -1s;
}

.facts-preview-slider .facts-preview-slide:nth-child(2) {
  animation-delay: 4s;
}

.facts-preview-slider .facts-preview-slide:nth-child(3) {
  animation-delay: 9s;
}

.facts-preview-slider .facts-preview-slide:nth-child(4) {
  animation-delay: 14s;
}

.facts-preview-slider .facts-preview-slide:nth-child(5) {
  animation-delay: 19s;
}

.facts-preview-slider .facts-preview-slide:nth-child(6) {
  animation-delay: 24s;
}

.facts-list,
.cta-meta-stack {
  display: grid;
  gap: 3px;
  margin-top: 8px;
}

.fact-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(196, 210, 226, 0.08);
}

.fact-row:last-child {
  border-bottom: 0;
}

.fact-row span {
  color: #8ea5bb;
  font-size: 0.66rem;
}

.facts-list .fact-row {
  align-items: center;
}

.facts-list .fact-row > span:first-child {
  flex: 1 1 auto;
  min-width: 0;
}

.fact-row strong,
.fact-row strong a {
  color: #f4f8fc;
  font-size: 0.71rem;
  text-align: right;
  text-decoration: none;
}

.fact-status-beacon {
  position: relative;
  display: inline-flex;
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  align-self: center;
  margin-inline-start: auto;
  border-radius: 50%;
  background: #22c55e;
  box-shadow:
    0 0 0 3px rgba(34, 197, 94, 0.12),
    0 0 18px rgba(34, 197, 94, 0.42);
  animation: fact-status-glow 1.6s ease-in-out infinite;
}

.fact-status-beacon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 999px;
  animation: fact-status-ping 1.8s ease-out infinite;
}

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

.principle-card {
  min-height: 156px;
}

.resource-surface-home {
  border: 1px solid rgba(196, 210, 226, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(15, 21, 31, 0.88), rgba(10, 14, 22, 0.92)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.resource-home-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(196, 210, 226, 0.08);
  text-decoration: none;
}

.resource-home-row:last-child {
  border-bottom: 0;
}

.resource-home-copy h3 {
  color: #f4f8fc;
  font-size: 0.96rem;
}

.resource-home-copy p {
  margin: 6px 0 0;
  color: #9aaebf;
  font-size: 0.8rem;
  line-height: 1.58;
}

.resource-home-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid rgba(196, 210, 226, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #edf3f8;
  font-size: 0.64rem;
  flex-shrink: 0;
}

.theme-product .hero-home {
  margin-bottom: 6px;
}

.product-title {
  max-width: 12ch;
}

.hero-bento--single {
  grid-template-columns: 1fr;
}

.product-device-card {
  min-height: 380px;
}

.product-trust-card h2 {
  max-width: 14ch;
  font-size: clamp(1.18rem, 2vw, 1.56rem);
  line-height: 1.08;
}

.product-trust-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 0;
}

.product-store-hint {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  color: #93abc0;
  font-size: 0.72rem;
  line-height: 1.6;
}

.product-store-hint a {
  color: #eef5fb;
  font-weight: 700;
  text-decoration: none;
}

.product-store-hint a:hover,
.product-store-hint a:focus-visible {
  color: #8fdcff;
}

.section-copy {
  max-width: 68ch;
  margin: 10px 0 0;
  color: #95abc0;
  font-size: 0.8rem;
  line-height: 1.6;
}

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

.product-usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.product-shot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.product-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.product-feature-card,
.product-usecase-card,
.product-faq-card,
.product-shot-card {
  min-height: 100%;
}

.product-feature-card h3,
.product-usecase-card h3,
.product-faq-card h3 {
  color: #f4f8fc;
  font-size: 0.94rem;
  line-height: 1.18;
}

.product-feature-card p,
.product-usecase-card p,
.product-faq-card p {
  margin: 10px 0 0;
  color: #95abc0;
  font-size: 0.77rem;
  line-height: 1.62;
}

.product-shot-card {
  display: grid;
  gap: 12px;
  align-content: start;
  justify-items: center;
  padding: 14px;
  margin: 0;
}

.product-shot-card img {
  width: min(100%, 208px);
  height: auto;
  max-height: clamp(220px, 23vw, 320px);
  display: block;
  border-radius: 18px;
  border: 1px solid rgba(196, 210, 226, 0.12);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
  object-fit: contain;
}

.product-shot-card figcaption {
  color: #99aec2;
  font-size: 0.72rem;
  line-height: 1.5;
  width: 100%;
  text-align: left;
}

.product-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-grid-home {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 10px;
}

.cta-copy-card p:last-child {
  max-width: 52ch;
}

.home-section--traffic {
  padding-top: 4px;
}

.traffic-inline {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid rgba(196, 210, 226, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 28px rgba(0, 0, 0, 0.16);
}

.traffic-inline-label,
.traffic-inline-meta {
  color: #90a5b9;
  font-size: 0.68rem;
  line-height: 1.5;
}

.traffic-inline-label {
  font-weight: 700;
}

.traffic-inline-value {
  color: #f4f8fc;
  font-size: 0.94rem;
  line-height: 1;
}

.traffic-inline-separator {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(196, 210, 226, 0.36);
}

.traffic-inline-meta {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.theme-home .site-footer {
  margin-top: 6px;
  padding-top: 26px;
  color: #89a0b6;
  font-size: 0.71rem;
}

.theme-home .footer-links a {
  color: #89a0b6;
}

.theme-home .footer-links a:hover,
.theme-home .footer-links a:focus-visible {
  color: #edf3f8;
}

@keyframes float-soft {
  0%,
  100% {
    transform: translateY(0) rotate(var(--rotate-angle));
  }

  50% {
    transform: translateY(-10px) rotate(var(--rotate-angle));
  }
}

@keyframes fact-status-glow {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.72;
    transform: scale(0.9);
  }
}

@keyframes fact-status-ping {
  0% {
    opacity: 0.7;
    transform: scale(0.62);
  }

  80%,
  100% {
    opacity: 0;
    transform: scale(1.22);
  }
}

@media (max-width: 1180px) {
  .theme-home .hero-home,
  .flagship-grid-home,
  .cta-grid-home {
    grid-template-columns: 1fr;
  }

  .hero-bento {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  }

  .overview-grid-home,
  .principles-grid-home,
  .product-feature-grid,
  .product-shot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .theme-home .topbar {
    position: static;
    margin-bottom: 22px;
  }

  .hero-bento {
    grid-template-columns: 1fr;
  }

  .home-card--device {
    min-height: 400px;
  }

  .home-card--signal {
    min-height: 0;
  }

  .market-presence-home {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "copy"
      "phase1"
      "signal";
  }

  .market-presence-signal {
    max-width: none;
  }

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

  .product-usecase-grid,
  .product-faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .theme-home .shell::before {
    background-size: 48px 48px;
  }

  .theme-home .topbar {
    padding-bottom: 12px;
  }

  .theme-home .topnav {
    gap: 8px 14px;
  }

  .theme-home .home-title,
  .theme-home .section-head h2 {
    max-width: none;
  }

  .overview-grid-home,
  .principles-grid-home,
  .product-feature-grid,
  .product-shot-grid {
    grid-template-columns: 1fr;
  }

  .resource-home-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .facts-list .fact-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .market-presence-signal {
    width: 100%;
    max-width: none;
  }

  .market-presence-grid {
    grid-template-columns: 1fr;
  }

  .market-presence-head h2 {
    white-space: normal;
  }

  .store-links {
    grid-template-columns: 1fr;
  }

  .traffic-inline {
    width: 100%;
  }

  .product-store-hint {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-device-grid {
    min-height: 320px;
  }

  .hero-device-grid--single {
    min-height: 320px;
    padding-top: 22px;
  }

  .hero-device-grid--pair {
    gap: 10px;
    padding-top: 0;
  }

  .hero-device-grid--solo {
    min-height: 320px;
    padding-top: 22px;
  }

  .hero-screen,
  .stage-screen {
    width: 54%;
  }

  .hero-screen--single,
  .stage-screen--single {
    width: min(100%, 252px);
  }

  .hero-screen--solo {
    width: min(100%, 252px);
  }

  .hero-device-grid--pair .hero-screen--pair:last-child {
    transform: translateY(10px) rotate(3deg);
  }
}

@media (max-width: 560px) {
  .theme-home .home-title {
    font-size: 1.28rem;
  }

  .theme-home .lead,
  .theme-home .home-card p,
  .theme-home .resource-home-copy p {
    font-size: 0.75rem;
  }

  .theme-home .button {
    min-height: 38px;
    font-size: 0.72rem;
  }

  .hero-screen,
  .stage-screen {
    width: 60%;
  }

  .hero-screen--single,
  .stage-screen--single {
    width: min(100%, 236px);
  }

  .hero-device-grid--pair {
    gap: 8px;
  }

  .market-presence-home {
    padding: 18px;
  }

  .market-signal-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .market-signal-stream-item {
    grid-template-columns: 1fr;
  }

  .traffic-inline {
    gap: 8px;
    padding: 10px 12px;
  }

  .traffic-inline-value {
    width: 100%;
    font-size: 1rem;
  }

  .traffic-inline-separator {
    display: none;
  }

  .traffic-inline-meta {
    width: 100%;
  }

  .market-signal-stream {
    min-height: 116px;
  }

  .market-signal-stream-badge {
    min-height: 38px;
    width: fit-content;
  }

  .market-signal-stream-flag {
    width: 16px;
    height: 16px;
  }

  .market-signal-stream-order {
    justify-self: flex-start;
  }

  .hero-device-grid--solo {
    min-height: 300px;
    padding-top: 18px;
  }

  .hero-device-grid--pair .hero-screen--pair:first-child,
  .hero-device-grid--pair .hero-screen--pair:last-child {
    transform: none;
  }

  .hero-screen--solo {
    width: min(100%, 236px);
  }
}

@media (prefers-color-scheme: light) {
  :root {
    --line: rgba(21, 32, 44, 0.12);
    --line-strong: rgba(21, 32, 44, 0.18);
    --text: #15202c;
    --muted: #617080;
    --surface: #ffffff;
    --surface-alt: #f3f7fb;
    --surface-line: rgba(15, 23, 34, 0.08);
    --accent: #0f766e;
    --accent-strong: #3db3c5;
    --accent-soft: rgba(15, 118, 110, 0.08);
    --shadow: 0 24px 60px rgba(15, 36, 56, 0.1);
    --shadow-soft: 0 18px 40px rgba(15, 36, 56, 0.08);
  }

  .product-trust-card h2,
  .product-feature-card h3,
  .product-usecase-card h3,
  .product-faq-card h3 {
    color: #15202c;
  }

  .product-store-hint,
  .section-copy,
  .product-feature-card p,
  .product-usecase-card p,
  .product-faq-card p,
  .product-shot-card figcaption {
    color: #617080;
  }

  .product-store-hint a {
    color: #15202c;
  }

  .product-shot-card img {
    border-color: rgba(21, 32, 44, 0.08);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 18px 36px rgba(15, 36, 56, 0.08);
  }

  body {
    background:
      radial-gradient(circle at 8% 4%, rgba(61, 179, 197, 0.2), transparent 22%),
      radial-gradient(circle at 88% 14%, rgba(255, 163, 102, 0.18), transparent 20%),
      radial-gradient(circle at 50% 100%, rgba(15, 118, 110, 0.1), transparent 28%),
      linear-gradient(180deg, #fffdf8 0%, #f7fbff 36%, #edf3f8 100%);
  }

  body::before {
    background:
      linear-gradient(90deg, rgba(21, 32, 44, 0.025), transparent 28%),
      radial-gradient(circle at bottom right, rgba(103, 210, 255, 0.1), transparent 28%),
      radial-gradient(circle at 12% 82%, rgba(255, 163, 102, 0.08), transparent 18%);
  }

  .topbar {
    border-bottom-color: rgba(21, 32, 44, 0.08);
  }

  .brand-mark {
    border-color: rgba(21, 32, 44, 0.12);
  }

  .lang-switch {
    border-color: rgba(21, 32, 44, 0.1);
    background: rgba(255, 255, 255, 0.7);
  }

  .lang-link::before {
    box-shadow: 0 0 0 1px rgba(21, 32, 44, 0.12);
  }

  .lang-link:hover,
  .lang-link:focus-visible {
    background: rgba(21, 32, 44, 0.06);
  }

  .lang-link.is-active {
    color: #ffffff;
    background: #15202c;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.16);
  }

  .site-footer,
  .footer-links a {
    color: var(--muted);
  }

  .footer-links a:hover,
  .footer-links a:focus-visible {
    color: var(--text);
  }

  .theme-home {
    background:
      radial-gradient(circle at 12% 10%, rgba(61, 179, 197, 0.22), transparent 24%),
      radial-gradient(circle at 84% 16%, rgba(255, 163, 102, 0.18), transparent 20%),
      radial-gradient(circle at 62% 86%, rgba(255, 214, 153, 0.16), transparent 24%),
      linear-gradient(180deg, #fffdf7 0%, #f6faff 42%, #eaf1f8 100%);
  }

  .theme-home::before {
    background:
      linear-gradient(90deg, rgba(21, 32, 44, 0.03), transparent 24%),
      radial-gradient(circle at bottom left, rgba(103, 210, 255, 0.1), transparent 24%),
      radial-gradient(circle at 78% 18%, rgba(255, 163, 102, 0.08), transparent 18%);
  }

  .theme-home .shell::before {
    background-image:
      linear-gradient(rgba(21, 32, 44, 0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(21, 32, 44, 0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    opacity: 0.26;
  }

  .theme-home .shell::after {
    top: 42px;
    right: -72px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(103, 210, 255, 0.18) 0%, rgba(255, 163, 102, 0.08) 42%, transparent 72%);
    filter: blur(18px);
  }

  .theme-home .topbar {
    margin: 12px 0 38px;
    padding: 12px 18px;
    border: 1px solid rgba(21, 32, 44, 0.08);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(244, 249, 255, 0.74));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.88),
      0 18px 48px rgba(15, 36, 56, 0.08);
    backdrop-filter: blur(18px) saturate(145%);
  }

  .theme-home .brand-mark {
    border-color: rgba(21, 32, 44, 0.12);
    box-shadow:
      0 0 0 6px rgba(255, 255, 255, 0.74),
      0 18px 32px rgba(15, 36, 56, 0.1);
  }

  .theme-home .brand-copy strong {
    color: #0f172a;
    letter-spacing: -0.04em;
  }

  .theme-home .brand-copy span,
  .theme-home .topnav a,
  .theme-home .lead,
  .theme-home .home-card p,
  .theme-home .resource-home-copy p,
  .theme-home .site-footer,
  .theme-home .footer-links a,
  .theme-home .home-card-label,
  .fact-row span,
  .store-badge-kicker {
    color: #4f6477;
  }

  .theme-home .topnav a:hover,
  .theme-home .topnav a:focus-visible {
    color: #15202c;
    border-bottom-color: rgba(61, 179, 197, 0.34);
  }

  .theme-home .lang-switch {
    border-color: rgba(21, 32, 44, 0.12);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
  }

  .theme-home .lang-link {
    color: #4f6477;
  }

  .theme-home .lang-link:hover,
  .theme-home .lang-link:focus-visible {
    color: #15202c;
    background: rgba(21, 32, 44, 0.05);
  }

  .theme-home .lang-link.is-active {
    color: #ffffff;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.16);
  }

  .theme-home .eyebrow {
    background: linear-gradient(135deg, rgba(61, 179, 197, 0.16), rgba(255, 255, 255, 0.8));
    color: #0b5d69;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
  }

  .theme-home .hero-column--copy {
    padding-top: 18px;
  }

  .theme-home .home-title,
  .theme-home .section-head h2 {
    letter-spacing: -0.055em;
  }

  .theme-home .home-title {
    max-width: 10ch;
    font-size: clamp(2.7rem, 6vw, 4.85rem);
    color: #0f172a;
    text-shadow: 0 18px 42px rgba(61, 179, 197, 0.08);
  }

  @supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .theme-home .home-title {
      background: linear-gradient(135deg, #0f172a 0%, #154e68 44%, #0f766e 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
  }

  .theme-home .lead {
    max-width: 46ch;
    margin-top: 18px;
    color: #526677;
    font-size: 0.94rem;
    line-height: 1.72;
  }

  .theme-home .section-head h2 {
    max-width: 18ch;
  }

  .theme-home .button {
    border-color: rgba(21, 32, 44, 0.12);
    background: rgba(255, 255, 255, 0.78);
    color: #15202c;
    box-shadow: 0 12px 28px rgba(15, 36, 56, 0.06);
  }

  .market-chip {
    border-color: rgba(21, 32, 44, 0.1);
    background: rgba(255, 255, 255, 0.8);
    color: #15202c;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.82),
      0 10px 24px rgba(15, 36, 56, 0.06);
  }

  .market-presence-copy {
    color: #526677;
  }

  .micro-pill,
  .hero-proofline span,
  .signal-stack span,
  .resource-home-tag {
    border-color: rgba(21, 32, 44, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(243, 248, 252, 0.76));
    color: #476174;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
  }

  .theme-home .button.primary {
    background: linear-gradient(135deg, #0f172a 0%, #0f766e 58%, #38bdf8 100%);
    color: #ffffff;
    box-shadow: 0 18px 36px rgba(15, 118, 110, 0.24);
  }

  .home-card,
  .resource-surface-home {
    position: relative;
    overflow: hidden;
    border-color: rgba(21, 32, 44, 0.08);
    background:
      linear-gradient(160deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 251, 255, 0.92) 54%, rgba(237, 244, 250, 0.96) 100%),
      radial-gradient(circle at top right, rgba(61, 179, 197, 0.12), transparent 36%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.82),
      0 22px 54px rgba(15, 36, 56, 0.12);
    backdrop-filter: blur(18px) saturate(145%);
    transition:
      transform 220ms ease,
      border-color 220ms ease,
      box-shadow 220ms ease,
      background 220ms ease;
  }

  .home-card::before,
  .resource-surface-home::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      radial-gradient(circle at 100% 0%, rgba(61, 179, 197, 0.16), transparent 24%),
      linear-gradient(125deg, rgba(255, 255, 255, 0.42), transparent 40%);
    opacity: 0.95;
  }

  .home-card::after {
    background: linear-gradient(135deg, rgba(116, 168, 201, 0.12), transparent 34%);
  }

  .hero-device-grid--solo,
  .showcase-stage--single,
  .facts-preview-slider {
    border: 1px solid rgba(21, 32, 44, 0.08);
    border-radius: 26px;
    background:
      radial-gradient(circle at top, rgba(61, 179, 197, 0.16), transparent 56%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 245, 252, 0.94));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.88),
      0 18px 40px rgba(15, 36, 56, 0.1);
  }

  .hero-screen--solo,
  .stage-screen--single,
  .facts-preview-slide {
    box-shadow:
      0 26px 44px rgba(15, 36, 56, 0.16),
      0 0 0 1px rgba(255, 255, 255, 0.72);
  }

  .traffic-inline {
    border-color: rgba(21, 32, 44, 0.08);
    background:
      linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(239, 246, 252, 0.9)),
      radial-gradient(circle at top right, rgba(61, 179, 197, 0.08), transparent 42%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.88),
      0 14px 30px rgba(15, 36, 56, 0.08);
  }

  .traffic-inline-label,
  .traffic-inline-meta {
    color: #526677;
  }

  .traffic-inline-value {
    color: #15202c;
  }

  .traffic-inline-separator {
    background: rgba(21, 32, 44, 0.18);
  }

  .theme-home .home-card h2,
  .theme-home .home-card h3,
  .theme-home .section-head h2,
  .resource-home-copy h3,
  .fact-row strong,
  .fact-row strong a,
  .store-badge-title {
    color: #15202c;
  }

  .facts-preview-slider {
    border-color: rgba(21, 32, 44, 0.1);
    background:
      radial-gradient(circle at top, rgba(61, 179, 197, 0.12), transparent 56%),
      linear-gradient(180deg, #ffffff 0%, #eff5fa 100%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.76),
      0 12px 24px rgba(15, 36, 56, 0.1);
  }

  .store-badge {
    border-color: rgba(21, 32, 44, 0.1);
    background: rgba(255, 255, 255, 0.82);
    color: #15202c;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.84),
      0 12px 28px rgba(15, 36, 56, 0.08);
  }

  .store-badge:hover,
  .store-badge:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(15, 118, 110, 0.24);
    background: rgba(255, 255, 255, 0.94);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.88),
      0 18px 32px rgba(15, 36, 56, 0.1);
  }

  .store-badge-icon {
    background: rgba(21, 32, 44, 0.05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
  }

  .resource-home-row,
  .fact-row {
    border-bottom-color: rgba(21, 32, 44, 0.08);
    transition:
      transform 220ms ease,
      background 220ms ease,
      border-color 220ms ease;
  }

  .home-card:hover,
  .home-card:focus-within,
  .resource-surface-home:hover,
  .resource-surface-home:focus-within {
    transform: translateY(-4px);
    border-color: rgba(15, 118, 110, 0.16);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.86),
      0 30px 68px rgba(15, 36, 56, 0.16);
  }

  .resource-home-row:hover,
  .resource-home-row:focus-visible {
    transform: translateX(3px);
    background: rgba(255, 255, 255, 0.46);
  }

  .market-chip:hover,
  .market-chip:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(15, 118, 110, 0.18);
    background: rgba(255, 255, 255, 0.92);
  }

  .theme-home .button:hover,
  .theme-home .button:focus-visible {
    box-shadow: 0 16px 36px rgba(15, 36, 56, 0.08);
  }

  .theme-home .footer-links a:hover,
  .theme-home .footer-links a:focus-visible {
    color: #15202c;
  }
}
