@font-face {
  font-family: "Droid Arabic Kufi";
  src: url("/fonts/DroidKufi-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Droid Arabic Kufi";
  src: url("/fonts/DroidKufi-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  --teal-500: #02b5bb;
  --teal-400: #18c7cc;
  --teal-700: #007b83;
  --teal-50: #e8f8f8;
  --ink-950: #0d1419;
  --ink-900: #12191f;
  --ink-800: #21282f;
  --ink-700: #303940;
  --ink-500: #68737b;
  --surface: #ffffff;
  --surface-alt: #f4f8f8;
  --surface-muted: #eaf1f1;
  --border: #d4dfe0;
  --gold: #d9a429;
  --blue: #3d7ea6;
  --coral: #d96b5f;
  --danger: #c7463b;
  --focus: #f6bd2f;
  --header-height: 76px;
  --container: 1240px;
  --shadow-soft: 0 14px 34px rgba(13, 20, 25, 0.09);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --ink-950: #f8fbfb;
  --ink-900: #f1f5f5;
  --ink-800: #d9e1e2;
  --ink-700: #b7c3c5;
  --ink-500: #92a2a5;
  --surface: #171e23;
  --surface-alt: #11181d;
  --surface-muted: #202a30;
  --border: #36444a;
  --teal-50: #17373a;
  --shadow-soft: 0 14px 34px rgba(0, 0, 0, 0.25);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--ink-900);
  font-family: "Droid Arabic Kufi", Tahoma, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
select,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

img {
  max-width: 100%;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.sr-only {
  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;
  inset-inline-start: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 4px;
  background: var(--teal-500);
  color: #071215;
  font-weight: 700;
  text-decoration: none;
  transition: top 150ms ease;
}

.skip-link:focus {
  top: 12px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid rgba(212, 223, 224, 0.7);
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  width: min(var(--container), calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--ink-950);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-width: 0;
  margin-inline: auto;
}

.desktop-nav a,
.footer-links a {
  position: relative;
  color: var(--ink-700);
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -9px;
  height: 2px;
  background: var(--teal-500);
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--teal-700);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.language-select,
.icon-button {
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink-900);
}

.language-select {
  max-width: 112px;
  padding: 0 10px;
  font-size: 12px;
  cursor: pointer;
}

.icon-button {
  width: 40px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
}

.icon-button:hover {
  border-color: var(--teal-500);
  color: var(--teal-700);
}

.theme-icon {
  font-size: 21px;
  line-height: 1;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 9px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.45;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease;
}

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

.button-primary {
  background: var(--teal-500);
  color: #061518;
}

.button-primary:hover {
  background: var(--teal-400);
}

.button-ghost-light {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(13, 20, 25, 0.18);
  color: #ffffff;
}

.button-ghost-light:hover,
.button-outline-light:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #ffffff;
}

.login-menu {
  position: relative;
}

.login-trigger {
  min-width: 126px;
}

.chevron {
  font-size: 15px;
  transition: transform 150ms ease;
}

.login-trigger[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}

.login-panel {
  position: absolute;
  top: calc(100% + 10px);
  inset-inline-end: 0;
  width: 310px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.login-panel a {
  display: block;
  padding: 13px 14px;
  border-radius: 6px;
  text-decoration: none;
}

.login-panel a + a {
  border-top: 1px solid var(--border);
}

.login-panel a:hover,
.login-panel a:focus-visible {
  background: var(--surface-alt);
}

.login-panel strong,
.login-panel span {
  display: block;
}

.login-panel strong {
  margin-bottom: 2px;
  color: var(--ink-950);
  font-size: 14px;
}

.login-panel span {
  color: var(--ink-500);
  font-size: 11px;
}

.mobile-menu-button {
  display: none;
}

.menu-glyph,
.menu-glyph i {
  display: block;
}

.menu-glyph {
  width: 18px;
}

.menu-glyph i {
  height: 2px;
  margin: 4px 0;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.mobile-menu-button[aria-expanded="true"] .menu-glyph i:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-button[aria-expanded="true"] .menu-glyph i:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button[aria-expanded="true"] .menu-glyph i:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: var(--header-height);
  inset-inline: 0;
  z-index: 99;
  display: block;
  height: calc(100vh - var(--header-height));
  height: calc(100dvh - var(--header-height));
  padding: 18px 20px 36px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.mobile-nav[hidden] {
  display: none !important;
}

.mobile-nav a {
  display: block;
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
  color: var(--ink-900);
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 720px;
  height: calc(100svh - var(--header-height) - 72px);
  max-height: 860px;
  isolation: isolate;
  overflow: hidden;
  background-image: url("/assets/images/motixa-workshop-hero.jpg");
  background-position: center;
  background-size: cover;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(9, 16, 20, 0.58);
}

.hero-inner,
.section-inner,
.proof-inner,
.footer-inner {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.hero-inner {
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(630px, 54%);
  color: #ffffff;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--teal-700);
  font-size: 12px;
  font-weight: 700;
}

.hero-eyebrow {
  color: var(--teal-400);
}

.hero h1 {
  margin-bottom: 14px;
  font-size: 72px;
  line-height: 1.18;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.95;
}

.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin: 30px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  list-style: none;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
}

.hero-points li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-inline-end: 8px;
  border-radius: 50%;
  background: var(--teal-400);
}

.inline-arrow {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
}

[dir="ltr"] .inline-arrow {
  transform: rotate(180deg);
}

.proof-band {
  position: relative;
  z-index: 2;
  background: var(--ink-900);
  color: #ffffff;
}

html[data-theme="dark"] .proof-band,
html[data-theme="dark"] .section-dark,
html[data-theme="dark"] .contact-band,
html[data-theme="dark"] .site-footer {
  background: #0b1115;
}

.proof-inner {
  min-height: 108px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.proof-inner > div {
  min-width: 0;
  padding: 16px 26px;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-inner > div:first-child {
  border-inline-start: 0;
}

.proof-inner strong,
.proof-inner span {
  display: block;
}

.proof-inner strong {
  color: var(--teal-400);
  font-size: 25px;
  line-height: 1.4;
}

.proof-inner span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.section {
  padding: 104px 0;
}

.section-light {
  background: var(--surface);
}

.section-muted {
  background: var(--surface-alt);
}

.section-dark {
  background: #12191f;
  color: #ffffff;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2,
.journey-heading h2,
.faq-heading h2,
.about-statement h2,
.partner-copy h2,
.contact-layout h2,
.platform-copy h2 {
  margin-bottom: 16px;
  color: var(--ink-950);
  font-size: 36px;
  line-height: 1.55;
}

.section-dark .platform-copy h2,
.contact-layout h2 {
  color: #ffffff;
}

.section-heading > p:last-child,
.journey-heading > p:last-child,
.partner-copy > p:last-of-type,
.about-copy p,
.faq-heading > p:last-child,
.platform-copy > p:last-of-type,
.contact-layout p {
  color: var(--ink-500);
  font-size: 16px;
}

.section-dark .platform-copy > p:last-of-type,
.contact-layout p {
  color: rgba(255, 255, 255, 0.72);
}

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

.product-card {
  position: relative;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}

.product-card::before {
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 5px;
  background: var(--teal-500);
}

.product-business::before {
  background: var(--ink-800);
}

.product-card-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}

.product-card-header img {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border-radius: 8px;
  object-fit: contain;
}

.product-label {
  margin-bottom: 2px;
  color: var(--teal-700);
  font-size: 11px;
  font-weight: 700;
}

.product-card h3 {
  margin-bottom: 0;
  color: var(--ink-950);
  font-size: 25px;
}

.product-card > p {
  color: var(--ink-500);
  font-size: 14px;
}

.section-downloads {
  background:
    radial-gradient(circle at 12% 10%, rgba(17, 160, 160, 0.13), transparent 34%),
    linear-gradient(180deg, var(--surface-alt), var(--surface));
}

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

.download-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  gap: 22px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  box-shadow: 0 18px 45px rgba(14, 32, 43, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.download-card:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 160, 160, 0.45);
  box-shadow: 0 24px 55px rgba(14, 32, 43, 0.13);
}

.download-card-primary {
  border-color: rgba(17, 160, 160, 0.42);
  background: linear-gradient(145deg, rgba(17, 160, 160, 0.12), var(--surface) 58%);
}

.download-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--ink-950);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.download-card-primary .download-icon {
  background: var(--teal-700);
}

.download-card h3 {
  margin: 5px 0 10px;
  color: var(--ink-950);
  font-size: 23px;
}

.download-card p:last-child {
  margin: 0;
  color: var(--ink-500);
  font-size: 14px;
}

.download-button {
  width: 100%;
  margin-top: auto;
}

.button-outline {
  border-color: var(--border-strong);
  background: transparent;
  color: var(--ink-950);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--teal-700);
  color: var(--teal-700);
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 30px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  color: var(--ink-800);
  font-size: 13px;
}

.feature-list li::before {
  content: "✓";
  margin-inline-end: 10px;
  color: var(--teal-700);
  font-weight: 700;
}

.text-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  color: var(--teal-700);
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  color: var(--teal-500);
}

.platform-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 88px;
  align-items: start;
}

.platform-copy {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.platform-copy .button {
  margin-top: 20px;
}

.capability-list {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.capability-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cap-number {
  color: var(--teal-400);
  font-size: 12px;
  font-weight: 700;
}

.capability-list h3 {
  margin-bottom: 5px;
  font-size: 17px;
}

.capability-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

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

.industry-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}

.industry-card > span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 42px;
  border-radius: 6px;
  background: var(--teal-50);
  color: var(--teal-700);
  font-size: 11px;
  font-weight: 700;
}

.industry-card.accent-blue > span {
  background: color-mix(in srgb, var(--blue) 15%, var(--surface));
  color: var(--blue);
}

.industry-card.accent-gold > span {
  background: color-mix(in srgb, var(--gold) 16%, var(--surface));
  color: var(--gold);
}

.industry-card.accent-coral > span {
  background: color-mix(in srgb, var(--coral) 14%, var(--surface));
  color: var(--coral);
}

.industry-card h3 {
  margin-bottom: 10px;
  color: var(--ink-950);
  font-size: 17px;
  line-height: 1.7;
}

.industry-card p {
  margin-bottom: 0;
  color: var(--ink-500);
  font-size: 12px;
}

.journey-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 80px;
  align-items: start;
}

.journey-heading {
  max-width: 500px;
}

.journey-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.journey-steps li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.journey-steps li > span {
  color: var(--teal-700);
  font-size: 12px;
  font-weight: 700;
}

.journey-steps h3 {
  margin-bottom: 2px;
  color: var(--ink-950);
  font-size: 17px;
}

.journey-steps p {
  margin-bottom: 0;
  color: var(--ink-500);
  font-size: 12px;
}

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

.knowledge-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}

.article-type {
  width: fit-content;
  margin-bottom: 32px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--teal-500);
  color: var(--teal-700);
  font-size: 10px;
  font-weight: 700;
}

.knowledge-card h3 {
  margin-bottom: 12px;
  color: var(--ink-950);
  font-size: 17px;
  line-height: 1.8;
}

.knowledge-card > p:not(.article-type) {
  color: var(--ink-500);
  font-size: 12px;
}

.knowledge-card > span {
  margin-top: auto;
  color: var(--ink-500);
  font-size: 10px;
}

.partner-band {
  background: var(--teal-50);
}

.partner-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 84px;
  align-items: start;
}

.partner-copy h2 {
  color: var(--ink-950);
}

.partner-copy .text-link {
  margin-top: 16px;
}

.partner-types {
  border-top: 1px solid var(--border);
}

.partner-types article {
  display: grid;
  grid-template-columns: minmax(160px, 0.45fr) 1fr;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.partner-types h3 {
  margin-bottom: 0;
  color: var(--ink-950);
  font-size: 15px;
}

.partner-types p {
  margin-bottom: 0;
  color: var(--ink-500);
  font-size: 12px;
}

.partner-proof {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.partner-proof strong {
  color: var(--teal-700);
  font-size: 34px;
}

.partner-proof span {
  color: var(--ink-500);
  font-size: 12px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(0, 1fr);
  gap: 84px;
}

.about-copy {
  padding-top: 28px;
}

.about-copy .text-link {
  margin-top: 16px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: 80px;
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  position: relative;
  padding: 22px 0;
  padding-inline-end: 36px;
  color: var(--ink-950);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  inset-inline-end: 4px;
  top: 19px;
  color: var(--teal-700);
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  max-width: 760px;
  padding-bottom: 22px;
  margin-bottom: 0;
  color: var(--ink-500);
  font-size: 13px;
}

.contact-band {
  padding: 88px 0;
  background: #12191f;
  color: #ffffff;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 60px;
  align-items: center;
}

.contact-layout h2 {
  max-width: 800px;
  margin-bottom: 12px;
}

.contact-actions {
  justify-content: flex-end;
}

.site-footer {
  padding: 44px 0 28px;
  background: #0d1419;
  color: #ffffff;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px 60px;
  align-items: center;
}

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

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: contain;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  font-size: 16px;
}

.footer-brand span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact {
  grid-column: 1 / -1;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-contact h2 {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

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

.footer-contact-list a {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: #ffffff;
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.footer-contact-list a:hover {
  border-color: rgba(3, 183, 191, 0.55);
  background: rgba(3, 183, 191, 0.08);
}

.footer-contact-list span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
}

.footer-contact-list bdi,
.footer-contact-list strong {
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  font-weight: 700;
}

.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.copyright {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.developer-credit {
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  text-decoration: none;
}

.developer-credit:hover {
  color: var(--teal-400);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

  .header-actions {
    margin-inline-start: auto;
  }

  .mobile-menu-button {
    display: inline-grid;
  }

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

  .industry-card {
    min-height: 220px;
  }

  .industry-card > span {
    margin-bottom: 26px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  .hero {
    min-height: 650px;
    height: calc(100svh - var(--header-height) - 54px);
    background-position: 42% center;
  }

  .hero-copy {
    width: min(620px, 72%);
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .proof-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-inner > div:nth-child(3) {
    border-inline-start: 0;
  }

  .product-grid,
  .download-grid,
  .platform-layout,
  .journey-layout,
  .partner-layout,
  .about-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .platform-layout,
  .journey-layout,
  .partner-layout,
  .about-layout,
  .faq-layout {
    gap: 44px;
  }

  .platform-copy {
    position: static;
  }

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

  .knowledge-card {
    min-height: 240px;
  }

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

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

@media (max-width: 640px) {
  body {
    font-size: 14px;
  }

  .header-inner,
  .hero-inner,
  .section-inner,
  .proof-inner,
  .footer-inner {
    width: min(100% - 28px, var(--container));
  }

  .brand span,
  .login-menu {
    display: none;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .header-actions {
    gap: 6px;
  }

  .hero {
    min-height: 620px;
    height: calc(100svh - var(--header-height) - 36px);
    max-height: 760px;
    background-position: 32% center;
  }

  .hero-backdrop {
    background: rgba(9, 16, 20, 0.66);
  }

  .hero-copy {
    width: 100%;
    padding-top: 12px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-lead {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.9;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .hero-points {
    display: grid;
    gap: 6px;
  }

  .proof-inner {
    width: 100%;
  }

  .proof-inner > div {
    min-height: 96px;
    padding: 14px 20px;
  }

  .proof-inner > div:nth-child(3),
  .proof-inner > div:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .proof-inner strong {
    font-size: 21px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading h2,
  .journey-heading h2,
  .faq-heading h2,
  .about-statement h2,
  .partner-copy h2,
  .contact-layout h2,
  .platform-copy h2 {
    font-size: 27px;
    line-height: 1.65;
  }

  .section-heading > p:last-child,
  .journey-heading > p:last-child,
  .partner-copy > p:last-of-type,
  .about-copy p,
  .faq-heading > p:last-child,
  .platform-copy > p:last-of-type,
  .contact-layout p {
    font-size: 14px;
  }

  .product-card {
    min-height: 400px;
    padding: 24px;
  }

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

  .industry-card {
    min-height: 230px;
    padding: 18px;
  }

  .industry-card > span {
    margin-bottom: 22px;
  }

  .industry-card h3 {
    font-size: 14px;
  }

  .industry-card p {
    font-size: 10px;
  }

  .partner-types article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about-copy {
    padding-top: 0;
  }

  .contact-band {
    padding: 68px 0;
  }

  .contact-actions .button {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: start;
    gap: 12px;
  }

  .footer-contact-list {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 390px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .industry-card {
    min-height: 190px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
