:root {
  --bg: #0b0c0e;
  --surface: #121419;
  --surface-2: #181b21;
  --text: #f7f8fb;
  --muted: #a7adb8;
  --subtle: #737a86;
  --line: #343842;
  --pink: #e33fb6;
  --pink-dark: #9c237e;
  --cyan: #17d9c2;
  --blue: #526fe4;
  --lime: #d5ff00;
  --focus: #fff36a;
  --radius: 8px;
  --font-scale: 1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: calc(16px * var(--font-scale));
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.high-contrast {
  --bg: #000000;
  --surface: #000000;
  --surface-2: #111111;
  --text: #ffffff;
  --muted: #ffffff;
  --subtle: #e6e6e6;
  --line: #ffffff;
  --pink: #ff6bd9;
  --pink-dark: #ff6bd9;
  --cyan: #62ffed;
  --blue: #9aafff;
  --lime: #e5ff54;
  --focus: #ffef3d;
}

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

a {
  color: inherit;
}

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

button {
  font: inherit;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--lime);
  color: #070707;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

.narrow {
  width: min(760px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 12, 14, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

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

.brand img {
  display: none;
}

.brand::before {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 2px solid var(--pink);
  border-radius: 50%;
  color: var(--pink);
  content: "\2261";
  font-family: Arial, sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
}

.brand::after {
  content: "Accessibility";
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: 0;
}

.site-nav {
  justify-self: end;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  display: block;
  padding: 8px 0;
  color: #f2f3f6;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--pink);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions,
.accessibility-tools,
.language-switch {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header-actions {
  margin-left: 4px;
}

.tool-button,
.menu-button {
  width: 35px;
  height: 35px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #101216;
  color: var(--text);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
}

.tool-button:hover,
.menu-button:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.contrast-symbol {
  width: 16px;
  height: 16px;
  overflow: hidden;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: linear-gradient(90deg, currentColor 50%, transparent 50%);
}

.language-switch {
  margin-left: 4px;
  padding-left: 8px;
  border-left: 1px solid var(--line);
}

.language-switch a {
  padding: 6px;
  border-radius: 4px;
  color: var(--subtle);
  font-size: 0.7rem;
  font-weight: 900;
  text-decoration: none;
}

.language-switch a:hover,
.language-switch a[aria-current="true"] {
  background: var(--pink-dark);
  color: #ffffff;
}

.menu-button {
  display: none;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
  content: "";
}

.menu-button span {
  margin-block: 4px;
}

/* Homepage */
.home-main {
  padding: 20px 0 40px;
}

.product-showcase {
  width: min(920px, calc(100% - 48px));
  margin-inline: auto;
  padding: 22px 0 82px;
}

.showcase-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 86px;
  align-items: center;
  min-height: 270px;
}

.showcase-row + .showcase-row {
  margin-top: 28px;
}

.showcase-row.is-reversed .showcase-copy {
  grid-column: 1;
  grid-row: 1;
}

.showcase-row.is-reversed .showcase-media {
  grid-column: 2;
  grid-row: 1;
}

.showcase-media {
  min-width: 0;
  display: grid;
  place-items: center;
}

.showcase-media img {
  width: 188px;
  height: 188px;
  object-fit: contain;
  transition: transform 220ms ease, filter 220ms ease;
}

.showcase-row:hover .showcase-media img {
  transform: translateY(-5px);
}

.showcase-row.theme-nine .showcase-media img {
  filter: drop-shadow(0 0 22px rgba(23, 217, 194, 0.28));
}

.showcase-row.theme-braille .showcase-media img {
  filter: drop-shadow(0 0 20px rgba(21, 103, 255, 0.24));
}

.showcase-row.theme-magnifier .showcase-media img {
  border-radius: 28px;
  filter: drop-shadow(0 0 20px rgba(213, 255, 0, 0.13));
}

.showcase-copy {
  min-width: 0;
  max-width: 480px;
}

.product-overline {
  margin: 0 0 7px;
  color: var(--subtle);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.showcase-copy h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.showcase-copy p:not(.product-overline) {
  margin: 11px 0 18px;
  color: #d1d4da;
  font-size: 0.96rem;
}

.product-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border-radius: 5px;
  color: #08090a;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 150ms ease, filter 150ms ease;
}

.product-link:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.theme-nine .product-link {
  background: var(--cyan);
}

.theme-braille .product-link {
  background: var(--blue);
  color: #ffffff;
}

.theme-magnifier .product-link {
  background: var(--pink-dark);
  color: #ffffff;
}

.value-section {
  padding: 78px 0 82px;
  border-top: 1px solid #24272d;
  background: #111318;
}

.value-kicker {
  margin: 0 0 14px;
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.value-title {
  max-width: 760px;
  margin: 0;
  font-size: 2.75rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  margin-top: 46px;
}

.value-item {
  min-width: 0;
  padding-top: 22px;
  border-top: 3px solid var(--pink);
}

.value-item:nth-child(2) {
  border-top-color: var(--cyan);
}

.value-item:nth-child(3) {
  border-top-color: var(--lime);
}

.value-number {
  color: #aeb3bd;
  font-size: 0.72rem;
  font-weight: 900;
}

.value-item h3 {
  margin: 18px 0 0;
  font-size: 1.15rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.value-item p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.home-cta {
  padding: 54px 0;
  background: #941974;
  color: #ffffff;
}

.home-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
}

.home-cta h2 {
  margin: 0;
  font-size: 2.35rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.home-cta p {
  max-width: 760px;
  margin: 12px 0 0;
  color: #ffffff;
}

.home-cta .home-cta-button {
  min-height: 50px;
  padding-inline: 22px;
  background: #ffffff;
  color: #111216;
}

.home-cta .home-cta-button:hover {
  background: var(--lime);
  color: #08090a;
}

/* Product and contact pages */
.hero {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
}

.hero::before {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 72px 0;
}

.hero-copy {
  max-width: 540px;
}

.product-hero .hero-copy {
  margin-left: auto;
  padding-right: 40px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: 3.1rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-lead {
  margin: 17px 0 0;
  color: #e7e9ed;
  font-size: 1.2rem;
  font-weight: 650;
  line-height: 1.45;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 22px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
  list-style: none;
}

.hero-meta li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-meta li::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  content: "";
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 27px;
}

.button {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 15px;
  border: 1px solid transparent;
  border-radius: 5px;
  background: var(--pink);
  color: #ffffff;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 150ms ease, background-color 150ms ease;
}

.button:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
}

.button-light,
.button-outline {
  border-color: var(--line);
  background: transparent;
  color: var(--text);
}

.button-light:hover,
.button-outline:hover {
  border-color: var(--text);
  background: #191b20;
}

.arrow {
  font-size: 1.05rem;
  line-height: 1;
}

.product-hero .product-mark {
  position: absolute;
  top: 50%;
  left: max(6vw, calc((100vw - 960px) / 2));
  width: 230px;
  height: 230px;
  object-fit: contain;
  opacity: 1;
  filter: drop-shadow(0 0 28px rgba(23, 217, 194, 0.24));
  transform: translateY(-50%);
}

.product-hero .product-mark[src*="braille"] {
  filter: drop-shadow(0 0 28px rgba(34, 105, 255, 0.28));
}

.contact-hero {
  min-height: 400px;
}

.contact-hero .hero-copy {
  max-width: 720px;
}

.contact-hero h1 {
  font-size: 3.2rem;
}

.hero-visual,
.platform-strip {
  display: none;
}

.section {
  padding: 76px 0;
  background: var(--bg);
}

.section-compact {
  padding: 62px 0;
}

.section-muted,
.section-dark,
.process-section {
  background: var(--bg);
  color: var(--text);
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title {
  max-width: 760px;
  margin: 0;
  color: var(--text);
  font-size: 2.2rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-intro {
  max-width: 680px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

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

.feature {
  min-width: 0;
  padding: 28px 24px;
  border: 1px solid #f1f2f4;
  border-radius: var(--radius);
  text-align: center;
}

.feature-number {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border: 1px solid var(--text);
  border-radius: 50%;
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 900;
}

.feature h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.2;
}

.feature p,
.section-dark .feature p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(270px, 0.85fr);
  gap: 48px;
  align-items: center;
  padding: 42px;
  border: 1px solid #24272e;
  border-radius: var(--radius);
  background: var(--surface);
}

.prose h2 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 1.75rem;
  line-height: 1.2;
}

.prose p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.demo-panel {
  padding: 27px;
  border: 1px solid #3b3f49;
  border-radius: var(--radius);
  background: #0d0f12;
  color: var(--text);
}

.demo-panel h3 {
  margin: 0 0 18px;
  font-size: 1rem;
}

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

.key-step,
.braille-key {
  min-width: 0;
  padding: 14px 7px;
  border: 1px solid #555a65;
  border-bottom-width: 4px;
  border-radius: 5px;
  background: #202329;
  text-align: center;
}

.key-step strong,
.braille-key strong {
  display: block;
  color: var(--cyan);
  font-size: 1.2rem;
}

.key-step span,
.braille-key span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.68rem;
}

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

.process-section {
  border: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  margin-top: 36px;
}

.process-step > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--pink);
  font-size: 0.7rem;
  font-weight: 900;
}

.process-step h3 {
  margin: 0;
  font-size: 1.05rem;
}

.process-step p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 36px;
  margin-top: 38px;
}

.download-grid-two {
  grid-template-columns: repeat(2, minmax(0, 270px));
  justify-content: center;
}

#shkarko .section-kicker,
#shkarko .section-title,
#shkarko .section-intro,
#download .section-kicker,
#download .section-title,
#download .section-intro {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.download-card {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  column-gap: 14px;
  align-items: center;
  padding: 12px 0;
  background: transparent;
}

.download-card::before {
  grid-column: 1;
  grid-row: 1 / 4;
  font-family: "Segoe UI Emoji", sans-serif;
  font-size: 2.2rem;
  line-height: 1;
  content: "";
}

.download-grid-six .download-card:nth-child(1)::before,
.download-grid-six .download-card:nth-child(2)::before,
.download-grid-two .download-card:nth-child(1)::before {
  content: "\1F1E6\1F1F1";
}

.download-grid-six .download-card:nth-child(3)::before,
.download-grid-six .download-card:nth-child(4)::before,
.download-grid-two .download-card:nth-child(2)::before {
  content: "\1F1EC\1F1E7";
}

.download-grid-six .download-card:nth-child(5)::before,
.download-grid-six .download-card:nth-child(6)::before {
  content: "\1F1EE\1F1F9";
}

.download-card h3 {
  grid-column: 2;
  margin: 0;
  font-size: 1rem;
}

.download-meta {
  grid-column: 2;
  margin: 3px 0 7px;
  color: var(--subtle);
  font-size: 0.7rem;
}

.download-card .button {
  grid-column: 2;
  min-height: 0;
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--cyan);
  font-size: 0.76rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.download-card .button:hover {
  background: transparent;
  color: #ffffff;
  transform: none;
}

.notice {
  margin-top: 28px;
  padding: 15px 18px;
  border-left: 3px solid var(--cyan);
  background: var(--surface);
  color: var(--muted);
  font-size: 0.86rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.contact-card {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.contact-card .contact-type {
  margin: 0 0 8px;
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card a {
  overflow-wrap: anywhere;
  color: var(--text);
  font-size: 1.55rem;
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.contact-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: 72px;
  align-items: start;
}

.contact-form-intro > p:not(.section-kicker) {
  max-width: 430px;
  margin: 16px 0 0;
  color: var(--muted);
}

.contact-form-intro h3 {
  margin: 34px 0 0;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 24px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

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

.form-status {
  margin: 0;
  padding: 13px 15px;
  border-left: 3px solid var(--pink);
  background: #29131f;
  color: #ffffff;
  font-size: 0.84rem;
}

.form-field {
  min-width: 0;
  display: grid;
  gap: 8px;
}

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

.form-field label {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
}

.form-field label > span[aria-hidden="true"] {
  color: var(--pink);
}

.form-field .optional {
  margin-left: 6px;
  color: var(--subtle);
  font-size: 0.72rem;
  font-weight: 650;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #3a3e47;
  border-radius: 5px;
  outline: 0;
  background: #0d0f12;
  color: var(--text);
  font: inherit;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.form-field select {
  color-scheme: dark;
  cursor: pointer;
}

.form-field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(212, 59, 168, 0.2);
}

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

.form-footer p {
  max-width: 380px;
  margin: 0;
  color: var(--subtle);
  font-size: 0.76rem;
}

.form-footer .button {
  flex: 0 0 auto;
  min-width: 150px;
}

.form-honey {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cta-band {
  background: var(--surface);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.cta-inner h2 {
  margin: 0;
  font-size: 1.8rem;
}

.cta-inner p {
  max-width: 650px;
  margin: 8px 0 0;
  color: var(--muted);
}

/* Footer */
.site-footer {
  padding: 0;
  border-top: 1px solid #292c33;
  background: #090a0c;
  color: var(--text);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.65fr) repeat(3, minmax(130px, 0.7fr));
  gap: 48px;
  align-items: start;
  padding: 58px 0 44px;
}

.footer-brand {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 0 12px;
}

.footer-brand img {
  display: none;
}

.footer-brand::before {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 2px solid var(--pink);
  border-radius: 50%;
  color: var(--pink);
  content: "\2261";
  font-family: Arial, sans-serif;
  font-size: 31px;
  line-height: 1;
}

.footer-brand::after {
  content: "Accessibility";
  font-size: 1.62rem;
  font-weight: 850;
}

.footer-brand p {
  display: block;
  grid-column: 1 / -1;
  max-width: 360px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-column h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column li + li {
  margin-top: 10px;
}

.footer-column a {
  color: var(--muted);
  font-size: 0.84rem;
  text-decoration: none;
  transition: color 150ms ease;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0 28px;
  border-top: 1px solid #292c33;
  color: var(--subtle);
  font-size: 0.72rem;
}

@media (max-width: 980px) {
  .header-inner {
    gap: 12px;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    right: 24px;
    left: auto;
    width: min(310px, calc(100% - 30px));
    display: none;
    padding: 14px 18px 18px;
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 8px 8px;
    background: #0d0f12;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.38);
    transform-origin: top right;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    width: 100%;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .site-nav a {
    padding: 11px 0;
    text-align: right;
  }

  .site-nav a::after {
    right: 0;
    left: auto;
    width: 38px;
    transform-origin: right;
  }

  .menu-button {
    display: block;
  }

  .showcase-row {
    gap: 54px;
  }

  .contact-form-layout {
    gap: 44px;
  }

  .footer-grid {
    grid-template-columns: minmax(240px, 1.25fr) minmax(150px, 0.75fr);
    gap: 36px 42px;
  }

  .product-hero .product-mark {
    left: 8vw;
    width: 205px;
    height: 205px;
  }

  .product-hero .hero-copy {
    max-width: 500px;
  }
}

@media (max-width: 760px) {
  .container,
  .narrow,
  .product-showcase {
    width: min(100% - 30px, 1120px);
  }

  .header-inner {
    min-height: 68px;
  }

  .brand::before {
    width: 27px;
    height: 27px;
    font-size: 23px;
  }

  .brand::after {
    font-size: 1.04rem;
  }

  .site-nav {
    top: 68px;
    right: 15px;
  }

  .accessibility-tools .tool-button:first-child,
  .accessibility-tools .tool-button:nth-child(2) {
    display: none;
  }

  .language-switch {
    padding-left: 5px;
  }

  .home-main {
    padding-top: 0;
  }

  .product-showcase {
    padding-top: 24px;
  }

  .value-section {
    padding: 60px 0 64px;
  }

  .value-title {
    font-size: 2rem;
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 34px;
  }

  .value-item {
    padding-top: 18px;
  }

  .home-cta {
    padding: 44px 0;
  }

  .home-cta-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-cta h2 {
    font-size: 2rem;
  }

  .home-cta .button {
    justify-self: start;
  }

  .showcase-row,
  .showcase-row.is-reversed {
    grid-template-columns: 1fr;
    gap: 26px;
    min-height: 0;
    padding: 44px 0;
  }

  .showcase-row + .showcase-row {
    margin-top: 0;
    border-top: 1px solid #24272d;
  }

  .showcase-row .showcase-media,
  .showcase-row.is-reversed .showcase-media {
    grid-column: 1;
    grid-row: 1;
  }

  .showcase-row .showcase-copy,
  .showcase-row.is-reversed .showcase-copy {
    grid-column: 1;
    grid-row: 2;
    max-width: none;
  }

  .showcase-media img {
    width: 158px;
    height: 158px;
  }

  .showcase-copy {
    text-align: center;
  }

  .showcase-copy h2 {
    font-size: 1.75rem;
  }

  .hero {
    min-height: 0;
    padding-top: 250px;
  }

  .hero-inner {
    padding: 34px 0 64px;
  }

  .product-hero .hero-copy {
    max-width: none;
    margin-left: 0;
    padding-right: 0;
    text-align: center;
  }

  .hero h1,
  .contact-hero h1 {
    font-size: 2.35rem;
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .hero-meta,
  .hero-actions {
    justify-content: center;
  }

  .product-hero .product-mark {
    top: 34px;
    left: 50%;
    width: 170px;
    height: 170px;
    transform: translateX(-50%);
  }

  .contact-hero {
    padding-top: 0;
  }

  .contact-hero .hero-copy {
    text-align: left;
  }

  .contact-hero .hero-meta,
  .contact-hero .hero-actions {
    justify-content: flex-start;
  }

  .section,
  .section-compact {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .feature-grid,
  .process-grid,
  .download-grid,
  .contact-grid,
  .contact-form-layout,
  .split-layout,
  .cta-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .form-field-full {
    grid-column: auto;
  }

  .contact-form {
    padding: 24px;
  }

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

  .split-layout {
    gap: 28px;
    padding: 27px;
  }

  .download-grid {
    gap: 15px;
  }

  .cta-inner .button {
    justify-self: start;
  }

  .footer-grid {
    gap: 25px;
    padding: 44px 0 34px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 7px;
    padding-bottom: 24px;
  }
}

@media (max-width: 430px) {
  .brand::after {
    content: "Accessibility";
    font-size: 0.92rem;
  }

  .header-actions {
    gap: 2px;
  }

  .tool-button,
  .menu-button {
    width: 33px;
    height: 33px;
  }

  .hero-actions,
  .section-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .footer-brand::after {
    font-size: 1.4rem;
  }
}

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

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