:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #050b18;
  color: #eef5ff;
  --page: #050b18;
  --surface: rgba(13, 28, 55, 0.72);
  --surface-strong: #0d1b35;
  --line: rgba(135, 186, 255, 0.2);
  --line-strong: rgba(135, 186, 255, 0.4);
  --text: #eef5ff;
  --muted: #9fb2cf;
  --blue: #4d9dff;
  --blue-bright: #78c6ff;
  --cyan: #53e3ff;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 8%, rgba(40, 119, 255, 0.2), transparent 30rem),
    radial-gradient(circle at 12% 42%, rgba(0, 208, 255, 0.1), transparent 26rem),
    var(--page);
  color: var(--text);
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(87, 153, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(87, 153, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  content: "";
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.shell {
  width: min(var(--max-width), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  border-bottom: 1px solid rgba(127, 175, 255, 0.12);
  background: rgba(5, 11, 24, 0.82);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(78, 157, 255, 0.24), rgba(83, 227, 255, 0.08));
  box-shadow: inset 0 0 20px rgba(101, 180, 255, 0.08);
  color: var(--blue-bright);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.language-selector {
  position: relative;
  flex: 0 0 auto;
  color: var(--text);
}

.language-selector summary {
  display: flex;
  min-width: 138px;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  padding: 0 13px;
  border: 1px solid rgba(135, 186, 255, 0.28);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(23, 49, 88, 0.9), rgba(8, 22, 45, 0.96));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04), 0 8px 24px rgba(0, 0, 0, 0.18);
  color: #dceaff;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 720;
  list-style: none;
  user-select: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.language-selector summary::-webkit-details-marker {
  display: none;
}

.language-selector summary::after {
  width: 7px;
  height: 7px;
  margin-left: auto;
  border-right: 1.5px solid #8fb8e8;
  border-bottom: 1.5px solid #8fb8e8;
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.language-selector[open] summary {
  border-color: rgba(83, 227, 255, 0.58);
  background: linear-gradient(145deg, rgba(26, 63, 111, 0.96), rgba(9, 27, 54, 0.98));
}

.language-selector[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}

.language-selector__menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 9px);
  right: 0;
  display: grid;
  width: 190px;
  gap: 4px;
  padding: 7px;
  border: 1px solid rgba(135, 186, 255, 0.3);
  border-radius: 14px;
  background: rgba(7, 19, 40, 0.98);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.language-selector__menu a {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 11px;
  border-radius: 9px;
  color: #b8c9e0;
  font-size: 0.84rem;
  font-weight: 680;
  text-decoration: none;
}

.language-selector__menu a:hover {
  background: rgba(77, 157, 255, 0.12);
  color: var(--text);
}

.language-selector__menu a[aria-current="page"] {
  background: linear-gradient(135deg, rgba(38, 111, 205, 0.34), rgba(25, 139, 183, 0.22));
  color: #eaf5ff;
}

.language-selector__menu small {
  color: #7591b5;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.language-selector__menu a[aria-current="page"] small {
  color: var(--cyan);
}

.nav-links a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--blue-bright);
}

.hero {
  display: grid;
  min-height: 680px;
  align-items: center;
  padding: 92px 0 80px;
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 64px;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  color: var(--blue-bright);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: var(--cyan);
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 790px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.gradient-text {
  background: linear-gradient(110deg, #ffffff 15%, #77c4ff 72%, #53e3ff);
  background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 32px;
  color: #b9c9e0;
  font-size: clamp(1.1rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.actions,
.card-actions,
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 19px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(12, 28, 53, 0.76);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--blue-bright);
  background: rgba(29, 70, 126, 0.68);
}

.button-primary {
  border-color: #4694ed;
  background: linear-gradient(135deg, #1668d7, #168fc5);
  box-shadow: 0 14px 35px rgba(17, 111, 214, 0.25);
}

.terminal-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(6, 17, 35, 0.84);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  transform: rotate(1.5deg);
}

.terminal-top {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.terminal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3273cc;
}

.terminal-dot:nth-child(2) {
  background: #439ed0;
}

.terminal-dot:nth-child(3) {
  background: #59d6e9;
}

.terminal-body {
  padding: 25px;
  color: #a8c2e5;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.84rem;
  line-height: 1.9;
}

.terminal-body p {
  margin-bottom: 6px;
}

.terminal-key {
  color: #58d9fa;
}

.terminal-value {
  color: #eef7ff;
}

.terminal-ok {
  color: #73e6a3;
}

.section {
  padding: 96px 0;
  border-top: 1px solid rgba(127, 175, 255, 0.1);
}

.section-heading {
  display: grid;
  margin-bottom: 42px;
  gap: 14px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.045em;
}

.section-heading p {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.work-layout,
.app-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(19, 43, 79, 0.82), rgba(7, 19, 40, 0.9));
}

.card::after {
  position: absolute;
  width: 180px;
  height: 180px;
  right: -80px;
  bottom: -100px;
  border-radius: 50%;
  background: rgba(69, 158, 255, 0.12);
  filter: blur(2px);
  content: "";
}

.card-primary {
  grid-row: span 2;
  min-height: 460px;
}

.card-label,
.status {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  padding: 7px 10px;
  border: 1px solid rgba(88, 196, 255, 0.27);
  border-radius: 999px;
  background: rgba(48, 139, 224, 0.1);
  color: #84d6ff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  letter-spacing: -0.035em;
}

.card p {
  position: relative;
  z-index: 1;
  color: #aebed5;
  line-height: 1.68;
}

.card .card-actions,
.card .legal-links {
  position: relative;
  z-index: 1;
  margin-top: 24px;
}

.text-link,
.legal-links a {
  color: var(--blue-bright);
  font-weight: 720;
  text-decoration: none;
}

.text-link:hover,
.legal-links a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 8px 11px;
  border: 1px solid rgba(142, 188, 255, 0.14);
  border-radius: 9px;
  background: rgba(6, 15, 32, 0.52);
  color: #b9cae0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.74rem;
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: linear-gradient(120deg, rgba(25, 81, 153, 0.38), rgba(6, 21, 44, 0.86));
}

.contact-panel h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.04em;
}

.contact-panel p {
  max-width: 620px;
  margin-bottom: 0;
  color: #b7c8df;
  line-height: 1.6;
}

.page-hero {
  padding: 94px 0 58px;
}

.page-hero h1 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 5.7rem);
}

.page-hero > p:not(.eyebrow) {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

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

.app-summary-link {
  position: static;
  display: grid;
  gap: 18px;
  color: inherit;
  text-decoration: none;
}

.app-summary-link::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
}

.app-summary-link > * {
  position: relative;
  z-index: 2;
}

.app-card:has(.app-summary-link:hover) {
  border-color: var(--blue-bright);
  transform: translateY(-3px);
}

.app-card {
  transition: transform 160ms ease, border-color 160ms ease;
}

.app-card .status,
.app-card .legal-links {
  position: relative;
  z-index: 3;
}

.app-card .status {
  pointer-events: none;
}

.app-summary-link:hover h2 {
  color: var(--blue-bright);
}

.app-summary-link h2,
.app-summary-link p {
  margin-bottom: 0;
}

.app-card-logo {
  width: 112px;
  height: 112px;
  border: 1px solid var(--line);
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.app-card-logo-wordmark {
  width: 180px;
  height: 120px;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
}

.app-card-mark {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border: 7px solid #164e3c;
  border-radius: 24px;
  background: linear-gradient(145deg, #fff0be, #e4bd70);
  box-shadow: inset 0 0 0 3px #c28a32, 0 18px 42px rgba(0, 0, 0, 0.28);
  color: #0e4937;
  font-size: 4.4rem;
  font-weight: 900;
  line-height: 1;
  transform: rotate(-3deg);
}

.app-home-rf {
  background:
    radial-gradient(circle at 78% 8%, rgba(236, 31, 173, 0.17), transparent 30rem),
    radial-gradient(circle at 12% 42%, rgba(0, 208, 255, 0.13), transparent 26rem),
    var(--page);
}

.app-home-cf {
  background:
    radial-gradient(circle at 82% 9%, rgba(239, 194, 71, 0.17), transparent 30rem),
    radial-gradient(circle at 10% 44%, rgba(42, 97, 195, 0.16), transparent 26rem),
    var(--page);
}

.app-home-ca {
  background:
    radial-gradient(circle at 82% 9%, rgba(216, 163, 55, 0.18), transparent 30rem),
    radial-gradient(circle at 10% 44%, rgba(29, 111, 74, 0.18), transparent 26rem),
    var(--page);
}

.app-home-ca .product-hero {
  grid-template-columns: minmax(0, 1fr) 340px;
}

.product-logo-ca {
  border-radius: 0;
  object-fit: contain;
}

.ca-brand-mark {
  display: grid;
  justify-items: center;
  gap: 18px;
  color: #f7e9bf;
  text-align: center;
}

.ca-brand-mark .app-card-mark {
  width: 130px;
  height: 130px;
  font-size: 5.2rem;
}

.ca-brand-mark strong {
  max-width: 180px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.product-hero {
  display: grid;
  min-height: 520px;
  align-items: center;
  gap: 52px;
  padding: 76px 0 70px;
  grid-template-columns: minmax(0, 1fr) 230px;
}

.product-hero > * {
  min-width: 0;
}

.product-hero h1 {
  margin-bottom: 22px;
}

.product-lead {
  max-width: 710px;
  margin-bottom: 28px;
  color: #c4d2e7;
  font-size: clamp(1.12rem, 2vw, 1.34rem);
  line-height: 1.68;
  overflow-wrap: anywhere;
}

.product-byline {
  margin-top: 22px;
  color: #8fa5c2;
  font-size: 0.86rem;
}

.product-logo-card {
  display: grid;
  width: 230px;
  min-height: 230px;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(20, 42, 77, 0.74), rgba(5, 14, 30, 0.92));
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.32);
}

.product-logo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.product-logo-cf {
  object-fit: contain;
}

.product-logo-card-ca {
  width: 340px;
  min-height: 250px;
  padding: 10px;
  border-color: rgba(217, 174, 77, 0.72);
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.58), transparent 34%),
    linear-gradient(145deg, #fff3ce, #e8c982);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.42),
    0 26px 65px rgba(0, 0, 0, 0.32);
}

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

.feature-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(10, 25, 50, 0.7);
}

.feature-number {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  font-weight: 800;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

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

.product-fact {
  padding: 24px;
  border-left: 2px solid var(--cyan);
  border-radius: 0 14px 14px 0;
  background: rgba(10, 25, 50, 0.62);
}

.product-fact h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.product-fact p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.product-legal-panel {
  display: grid;
  align-items: center;
  gap: 34px;
  padding: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: linear-gradient(120deg, rgba(25, 81, 153, 0.32), rgba(6, 21, 44, 0.88));
  grid-template-columns: minmax(0, 1fr) auto;
}

.product-legal-panel h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  letter-spacing: -0.04em;
}

.product-legal-panel p {
  max-width: 650px;
  margin-bottom: 0;
  color: #b7c8df;
  line-height: 1.62;
}

.working-title {
  color: #ffd978;
  border-color: rgba(255, 205, 91, 0.28);
  background: rgba(255, 194, 45, 0.08);
}

.notice {
  margin-top: 32px;
  padding: 16px;
  border: 1px solid rgba(255, 208, 84, 0.36);
  border-radius: 12px;
  background: rgba(97, 72, 7, 0.28);
  color: #ffe7a2;
}

.legal-page {
  width: min(820px, calc(100% - 40px));
  min-height: calc(100vh - 100px);
  margin: 0 auto;
  padding: 64px 0;
}

.legal-page h1 {
  margin-top: 36px;
  font-size: clamp(2.3rem, 6vw, 4.4rem);
}

.legal-page h2 {
  margin: 46px 0 14px;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  letter-spacing: -0.025em;
}

.legal-page h3 {
  margin: 28px 0 10px;
  font-size: 1.08rem;
}

.legal-page p,
.legal-page li {
  color: #b9c8dc;
  line-height: 1.72;
}

.legal-page li + li {
  margin-top: 8px;
}

.legal-page strong {
  color: var(--text);
}

.legal-page code {
  color: var(--blue-bright);
}

.legal-back {
  color: var(--blue-bright);
  font-weight: 720;
  text-decoration: none;
}

.legal-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.legal-meta {
  margin-bottom: 28px;
  color: #8296b4;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.8rem;
}

.legal-summary {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 30px 0;
  padding: 18px 0;
  border-block: 1px solid var(--line);
}

.legal-nav a {
  color: var(--blue-bright);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.steps {
  padding: 0;
  list-style: none;
  counter-reset: legal-steps;
}

.steps li {
  position: relative;
  min-height: 46px;
  padding: 10px 0 10px 52px;
  counter-increment: legal-steps;
}

.steps li::before {
  position: absolute;
  top: 6px;
  left: 0;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: rgba(38, 105, 188, 0.18);
  color: var(--blue-bright);
  content: counter(legal-steps);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-weight: 800;
}

.site-footer {
  padding: 34px 0 44px;
  border-top: 1px solid rgba(127, 175, 255, 0.1);
  color: #8296b4;
  font-size: 0.82rem;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-row p {
  margin: 0;
}

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

.footer-links a {
  color: #a5bbd8;
  text-decoration: none;
}

@media (max-width: 820px) {
  .hero-grid,
  .work-layout,
  .app-grid,
  .feature-grid,
  .product-facts,
  .product-legal-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .terminal-card {
    max-width: 520px;
    transform: none;
  }

  .card-primary {
    min-height: auto;
  }

  .contact-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-hero {
    min-height: auto;
    gap: 30px;
    grid-template-columns: minmax(0, 1fr) 150px;
  }

  .product-logo-card {
    width: 150px;
    min-height: auto;
    padding: 12px;
    border-radius: 20px;
  }

  .app-home-ca .product-hero {
    grid-template-columns: minmax(0, 1fr) 230px;
  }

  .product-logo-card-ca {
    width: 230px;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 28px, var(--max-width));
  }

  .nav {
    min-height: 66px;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-links a {
    font-size: 0.82rem;
  }

  .nav-links > a:nth-child(2) {
    display: none;
  }

  .nav-links > a:nth-child(3) {
    display: none;
  }

  .language-selector summary {
    min-width: 122px;
    min-height: 40px;
    gap: 8px;
    padding-inline: 11px;
    font-size: 0.76rem;
  }

  .language-selector__menu {
    width: 178px;
  }

  .hero {
    padding-top: 72px;
  }

  .product-hero {
    gap: 26px;
    padding: 62px 0 56px;
    grid-template-columns: 1fr;
  }

  .product-logo-card {
    width: 128px;
    justify-self: start;
  }


  .app-home-ca .product-hero {
    grid-template-columns: 1fr;
  }

  .product-logo-card-ca {
    width: min(300px, 100%);
  }

  .section {
    padding: 72px 0;
  }

  .card,
  .contact-panel {
    padding: 23px;
  }

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
