:root {
  --canvas: #ffffff;
  --canvas-soft: #f7f6f3;
  --surface: #f4f2ee;
  --surface-strong: #ebe8e1;
  --ink: #191816;
  --body: #5d584f;
  --muted: #8f887d;
  --line: #e7e3dc;
  --line-strong: #d4cec2;
  --accent: #315fd6;
  --accent-soft: rgba(49, 95, 214, 0.1);
  --orange: #dc7b4d;
  --green: #1f8a65;
  --shadow-soft: 0 1px 2px rgba(20, 18, 14, 0.04), 0 18px 42px -22px rgba(20, 18, 14, 0.18);
  --shadow-card: 0 1px 2px rgba(20, 18, 14, 0.04), 0 28px 58px -26px rgba(20, 18, 14, 0.2);
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --container: 1240px;
  --container-wide: 1536px;
  --gutter: 24px;
  --nav-h: 64px;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--font-sans);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

body.drawer-open {
  overflow: hidden;
}

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

button {
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

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

.app-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 50;
  margin-top: 12px;
  padding: 0 20px;
  pointer-events: none;
}

.nav {
  position: relative;
  overflow: visible;
  max-width: var(--container-wide);
  height: var(--nav-h);
  margin: 0 auto;
  padding: 0 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  pointer-events: auto;
  transition: max-width 0.36s ease, box-shadow 0.24s ease;
}

.site-header[data-scrolled="true"] .nav {
  max-width: 768px;
  box-shadow: 0 12px 34px -18px rgba(0, 0, 0, 0.32);
}

.nav-glass {
  position: absolute;
  inset: 0;
  opacity: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px) saturate(180%);
  transition: opacity 0.24s ease;
}

.site-header[data-scrolled="true"] .nav-glass {
  opacity: 1;
}

.nav-brand,
.nav-links,
.nav-actions {
  position: relative;
  z-index: 2;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #070707;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.nav-links {
  position: absolute;
  left: 50%;
  display: none;
  transform: translateX(-50%);
  gap: 4px;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 550;
}

.nav-links a:hover {
  background: rgba(0, 0, 0, 0.06);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-picker {
  position: relative;
  flex: 0 0 auto;
}

.language-button {
  min-width: 118px;
  height: 36px;
  padding: 0 12px 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  border: 1px solid rgba(212, 206, 194, 0.95);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 246, 243, 0.82));
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.84), 0 1px 2px rgba(20, 18, 14, 0.05),
    0 10px 24px -18px rgba(20, 18, 14, 0.24);
}

.language-button::before {
  content: "A";
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  font-weight: 850;
  line-height: 1;
}

.language-button:hover {
  border-color: var(--ink);
}

.language-button:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.language-current {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.language-chev {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.16s ease;
}

.language-picker[data-open="true"] .language-chev {
  transform: translateY(2px) rotate(225deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 60;
  min-width: 160px;
  padding: 6px;
  display: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px -24px rgba(20, 18, 14, 0.34), 0 4px 14px -10px rgba(20, 18, 14, 0.18);
  backdrop-filter: blur(18px) saturate(180%);
}

.language-menu::before {
  content: "";
  position: absolute;
  top: -5px;
  right: 18px;
  width: 10px;
  height: 10px;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  transform: rotate(45deg);
}

.language-picker[data-open="true"] .language-menu {
  display: grid;
  gap: 2px;
}

.language-option {
  min-height: 34px;
  padding: 0 11px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-radius: 8px;
  color: var(--body);
  font-size: 13px;
  font-weight: 650;
  text-align: left;
}

.language-option:hover,
.language-option[data-active="true"] {
  background: var(--surface);
  color: var(--ink);
}

.language-option[data-active="true"]::after {
  content: "";
  width: 6px;
  height: 10px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg) translateY(-1px);
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 650;
  white-space: nowrap;
  transition: transform 0.16s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-sm {
  min-height: 36px;
  padding: 0 15px;
  font-size: 13px;
}

.btn-dark {
  background: #030303;
  color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.btn-dark:hover {
  background: #222;
}

.btn-glass {
  min-height: 56px;
  padding: 0 30px;
  color: #303030;
  background: linear-gradient(-75deg, rgba(230, 245, 255, 0.15), rgba(240, 250, 255, 0.62), rgba(230, 245, 255, 0.15));
  border: 1px solid rgba(96, 151, 204, 0.35);
  box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.05), inset 0 -2px 2px rgba(255, 255, 255, 0.72),
    0 18px 34px -16px rgba(49, 95, 214, 0.45);
  backdrop-filter: blur(4px);
}

.btn-glass:hover {
  transform: scale(0.985);
  box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.05), inset 0 -2px 2px rgba(255, 255, 255, 0.82),
    0 24px 42px -18px rgba(49, 95, 214, 0.54);
}

.nav-toggle {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  gap: 4px;
  border: 2px solid var(--ink);
  border-radius: 12px;
}

.nav-toggle span {
  width: 15px;
  height: 2px;
  border-radius: 10px;
  background: var(--ink);
}

.nav-drawer {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  right: 0;
  min-height: calc(100dvh - var(--nav-h));
  padding: 24px;
  display: none;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--line);
  background: var(--canvas);
  pointer-events: auto;
}

.nav-drawer[data-open="true"] {
  display: flex;
}

.nav-drawer a:not(.btn) {
  padding: 14px 12px;
  border-radius: 8px;
  color: var(--body);
  font-size: 16px;
}

.nav-drawer .btn {
  margin-top: 8px;
  width: 100%;
}

.nav-drawer .drawer-lang {
  width: 100%;
  margin-top: 2px;
}

.nav-drawer .language-button {
  width: 100%;
  height: 44px;
  padding-inline: 18px;
  justify-content: space-between;
}

.nav-drawer .language-menu {
  position: static;
  width: 100%;
  margin-top: 8px;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.65), 0 1px 2px rgba(20, 18, 14, 0.05);
}

.nav-drawer .language-menu::before {
  display: none;
}

.nav-drawer .language-option {
  justify-content: space-between;
}

.hero {
  position: relative;
  max-width: var(--container-wide);
  margin: calc(-1 * (var(--nav-h) + 12px)) auto 0;
  padding: 126px var(--gutter) 0;
  text-align: center;
  overflow: clip;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.hero h1 {
  max-width: 760px;
  margin: 20px auto 0;
  background: linear-gradient(90deg, #191816 0%, #191816 22%, #5b372c 38%, #d07049 54%, #f0b28b 68%, #191816 86%);
  background-size: 260% 100%;
  background-position: 100% 50%;
  background-clip: text;
  color: transparent;
  font-size: clamp(38px, 6.2vw, 70px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 680;
  text-wrap: balance;
  animation: titleShine 5.2s ease-in-out infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title-shine {
  display: inline;
}

.hero-lead {
  max-width: 58ch;
  margin: 18px auto 0;
  color: var(--body);
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.56;
  text-wrap: balance;
}

.hero-cta {
  margin-top: 24px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-cta span {
  color: var(--body);
  font-size: 13px;
}

.hero-stack {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-stack > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-stack ul {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
}

.hero-stack li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
}

.mini-mark {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: inline-block;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.mark-orange {
  background: linear-gradient(135deg, #f9b37f, #c95d32);
}

.mark-blue {
  background: linear-gradient(135deg, #dbe7ff, #496ee8);
}

.mark-black {
  background: #050505;
}

.mark-green {
  background: linear-gradient(135deg, #b9edce, #1f8a65);
}

.mark-silver {
  background: linear-gradient(135deg, #f4f3ef, #8b8f98);
}

.hero-stage {
  max-width: calc(var(--container) - 2 * var(--gutter));
  margin: 34px auto 0;
}

.device-frame,
.media-card {
  position: relative;
  padding: 10px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(to bottom, rgba(190, 197, 207, 0.92), rgba(127, 135, 148, 0.82));
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 60px -34px rgba(20, 18, 14, 0.42);
}

.demo-screen,
.mock-window {
  min-height: 470px;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 28% 1fr;
  background: linear-gradient(135deg, #1b74ce 0%, #2a95d5 26%, #8379c9 52%, #ff985a 82%, #ffd68d 100%);
}

.demo-sidebar {
  padding: 42px 24px;
  background: rgba(0, 0, 0, 0.84);
}

.demo-sidebar span {
  display: block;
  height: 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.demo-panel {
  align-self: start;
  margin: 42px 32px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.demo-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.demo-toolbar strong {
  color: #fff;
}

.demo-request {
  margin-top: 22px;
  padding: 18px;
  display: flex;
  gap: 14px;
  border: 1px solid rgba(246, 180, 111, 0.48);
  border-radius: 16px;
  background: rgba(96, 49, 17, 0.28);
}

.demo-request p {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.66);
}

.check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--orange);
  flex: 0 0 auto;
}

.demo-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.demo-grid span {
  height: 52px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 96px var(--gutter);
}

.section-head {
  max-width: 64ch;
  margin-bottom: 48px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section-head h2 {
  font-size: clamp(31px, 4.8vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 680;
  text-wrap: balance;
}

.section-head p {
  margin-top: 14px;
  color: var(--body);
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.55;
}

.feature-rows {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-row {
  display: grid;
  gap: 32px;
  align-items: center;
}

.feature-text {
  max-width: 36rem;
}

.feature-text span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.feature-text h3,
.tab-panel h3,
.gallery-card h3 {
  margin-top: 12px;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.18;
  letter-spacing: -0.025em;
  font-weight: 620;
}

.feature-text p,
.tab-panel p,
.gallery-card p {
  margin-top: 14px;
  color: var(--body);
  font-size: 16px;
  line-height: 1.7;
}

.media-card {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.media-card .mock-window {
  min-height: 300px;
  grid-template-columns: 1fr;
  padding: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0b1118 0%, #141414 42%, #405a90 100%);
}

.mock-line {
  width: 54%;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.mock-line.wide {
  width: 78%;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.36);
}

.mock-list {
  margin-top: auto;
  display: grid;
  gap: 12px;
}

.mock-list span,
.mock-dashboard span {
  display: block;
  height: 46px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
}

.mock-dashboard {
  gap: 14px;
}

.metric-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 16px;
  color: #fff;
}

.metric-row strong {
  font-size: 34px;
  letter-spacing: -0.03em;
}

.workflow-block {
  display: grid;
  gap: 36px;
  align-items: center;
}

.media-large .mock-window {
  min-height: 390px;
}

.mock-flow {
  align-content: center;
  gap: 14px;
}

.flow-card {
  width: min(460px, 100%);
  padding: 18px 20px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

.flow-card.active {
  color: #fff;
  border: 1px solid rgba(246, 180, 111, 0.48);
  background: rgba(96, 49, 17, 0.35);
}

.tabs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tab-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-left: 2px solid var(--line);
}

.tab {
  margin-left: -2px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 2px solid transparent;
  color: var(--muted);
  text-align: left;
  font-size: 15px;
  font-weight: 700;
}

.tab-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--line-strong);
  flex: 0 0 auto;
}

.tab.active {
  color: var(--ink);
  border-left-color: var(--accent);
}

.tab.active .tab-dot {
  background: var(--accent);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.gallery-card {
  padding: 16px 16px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--canvas);
  box-shadow: var(--shadow-card);
}

.gallery-card h3 {
  margin-top: 18px;
  font-size: 20px;
}

.gallery-visual {
  height: 220px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #151515;
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.06);
}

.visual-a {
  background: linear-gradient(135deg, #151515, #265b8e 52%, #ff9b61);
}

.visual-b {
  background: linear-gradient(135deg, #151515, #5a7197 46%, #f0d48d);
}

.visual-c {
  background: linear-gradient(135deg, #151515, #41685b 50%, #8ad3a3);
}

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

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  min-height: 64px;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  font-size: 16px;
  font-weight: 650;
}

.plus {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.plus::before,
.plus::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 2px;
  border-radius: 10px;
  background: var(--muted);
  transition: transform 0.18s ease;
}

.plus::after {
  transform: rotate(90deg);
}

.faq-item[data-open="true"] .plus::after {
  transform: rotate(0deg);
}

.faq-a {
  display: none;
  max-width: 70ch;
  padding: 0 0 22px;
  color: var(--body);
  font-size: 15.5px;
  line-height: 1.65;
}

.faq-item[data-open="true"] .faq-a {
  display: block;
}

.cta-band {
  max-width: var(--container);
  margin: 0 auto;
  padding: 32px var(--gutter) 16px;
}

.cta-card {
  padding: 84px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  background: linear-gradient(180deg, #fff, #f8f7f4);
  box-shadow: var(--shadow-card);
}

.cta-card h2 {
  font-size: clamp(32px, 4.2vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.cta-card p {
  margin: 14px auto 28px;
  color: var(--body);
}

.site-footer {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter) 32px;
}

.footer-card {
  padding: 56px clamp(24px, 4vw, 56px) 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--canvas);
  box-shadow: var(--shadow-soft);
}

.footer-top {
  display: grid;
  gap: 36px;
}

.footer-top aside {
  max-width: 590px;
}

.footer-top aside p {
  color: var(--body);
  line-height: 1.65;
}

.footer-top aside span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

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

.footer-grid h4 {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-grid a {
  display: block;
  margin-top: 9px;
  color: var(--body);
  font-size: 14px;
}

.footer-wordmark {
  display: block;
  margin: clamp(42px, 5vw, 76px) 0;
  text-align: center;
  font-size: clamp(72px, 19vw, 220px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.footer-base {
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

@keyframes titleShine {
  0% {
    background-position: 120% 50%;
  }
  42% {
    background-position: 0 50%;
  }
  100% {
    background-position: 0 50%;
  }
}

@media (min-width: 768px) {
  :root {
    --gutter: 32px;
  }

  .section {
    padding-top: 104px;
    padding-bottom: 104px;
  }
}

@media (min-width: 880px) {
  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .nav-drawer {
    display: none !important;
  }
}

@media (min-width: 960px) {
  .footer-top {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  :root {
    --gutter: 40px;
  }

  .feature-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
    gap: 56px;
  }

  .feature-row:nth-child(even) {
    direction: rtl;
  }

  .feature-row:nth-child(even) > * {
    direction: ltr;
  }

  .workflow-block {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: 56px;
  }

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

@media (max-width: 767px) {
  .site-header {
    padding: 0 14px;
  }

  .nav {
    padding: 0 12px;
    gap: 8px;
  }

  .nav-brand {
    font-size: 15px;
  }

  .nav-actions .btn {
    display: none;
  }

  .language-button {
    min-width: 112px;
  }

  .hero {
    padding-top: 106px;
  }

  .hero h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .hero-stack ul {
    gap: 12px 18px;
  }

  .demo-screen {
    min-height: 190px;
    grid-template-columns: 1fr;
  }

  .demo-sidebar {
    display: none;
  }

  .demo-panel {
    margin: 18px;
    padding: 16px;
  }

  .demo-grid {
    display: none;
  }

  .media-card .mock-window {
    min-height: 220px;
    padding: 24px;
  }

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

  .footer-wordmark {
    font-size: 22vw;
  }
}

@media (max-width: 359px) {
  .language-button {
    min-width: 96px;
    padding-inline: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
