:root {
  --bg: #030712;
  --bg-soft: #07111f;
  --card: rgba(255, 255, 255, 0.055);
  --card-strong: rgba(7, 17, 31, 0.82);
  --card-border: rgba(255, 255, 255, 0.12);
  --text: #eaf2ff;
  --muted: #9fb0c7;
  --cyan: #22d3ee;
  --cyan-soft: #9eeeff;
  --blue: #2563eb;
  --silver: #d8e1ec;
  --header-height: 76px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --shadow-lg: 0 30px 90px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 8%, rgba(34, 211, 238, 0.2), transparent 25%),
    radial-gradient(circle at 82% 18%, rgba(37, 99, 235, 0.24), transparent 29%),
    linear-gradient(135deg, #04070d 0%, var(--bg-soft) 48%, #020617 100%);
}

body::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

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

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  color: #020617;
  background: var(--cyan);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 7, 18, 0.72);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(3, 7, 18, 0.92);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.brand {
  display: flex;
  align-items: center;
  width: clamp(170px, 18vw, 220px);
}

.brand img {
  width: 100%;
  height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  position: relative;
  padding-block: 8px;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--cyan-soft);
}

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

/* TR/EN LANGUAGE SWITCHER */
.language-switcher {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: rgba(159, 176, 199, 0.56);
  background: rgba(255, 255, 255, 0.045);
}

.language-switcher a {
  padding: 0;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.language-switcher a:hover,
.language-switcher a:focus-visible,
.language-switcher a.is-active {
  color: var(--cyan-soft);
  text-shadow: 0 0 18px rgba(34, 211, 238, 0.45);
}

.language-switcher a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
  border-radius: 3px;
}

.hero {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  align-items: center;
  gap: 52px;
  min-height: calc(100vh - var(--header-height));
  padding-block: 78px;
}

.eyebrow {
  color: #bff7ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

h1 {
  margin-bottom: 24px;
  font-size: 54px;
  line-height: 1.02;
  letter-spacing: -0.034em;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(90deg, #fff, var(--cyan-soft), #3b82f6);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy > p {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 18px;
}

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

.actions-centered {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  font-weight: 750;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn.primary {
  border: 0;
  color: #020617;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 14px 38px rgba(34, 211, 238, 0.28);
}

.btn:hover,
.btn:focus-visible {
  border-color: rgba(34, 211, 238, 0.5);
  transform: translateY(-2px);
}

.btn:focus-visible,
.slider-arrow:focus-visible,
.slider-dot:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.visual {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at top, rgba(34, 211, 238, 0.23), transparent 42%);
  box-shadow: var(--shadow-lg);
}

.visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

.visual::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.23);
  filter: blur(70px);
}

.dashboard {
  position: absolute;
  z-index: 1;
  inset: 30px;
  display: flex;
  flex-direction: column;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  background: rgba(4, 10, 20, 0.82);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 28px;
  margin-bottom: 14px;
}

.window-dots {
  display: flex;
  gap: 8px;
}

.window-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.window-label {
  color: rgba(200, 248, 255, 0.7);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.screen-grid {
  min-height: 0;
  flex: 1;
}

.hero-slider {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: #06101e;
}

.slider-viewport,
.slider-track,
.slide {
  width: 100%;
  height: 100%;
}

.slider-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.025);
  transition: transform 6s ease;
}

.slide.is-active img {
  transform: scale(1.08);
}

.slide-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.06) 16%, rgba(2, 6, 23, 0.82) 100%),
    linear-gradient(90deg, rgba(2, 6, 23, 0.72), transparent 75%);
}

.slide-content {
  position: absolute;
  z-index: 1;
  right: 72px;
  bottom: 48px;
  left: 32px;
  max-width: 420px;
}

.slide-kicker {
  display: inline-flex;
  padding: 6px 9px;
  margin-bottom: 9px;
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: 8px;
  color: #c8f8ff;
  background: rgba(2, 6, 23, 0.7);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.slide-content h2 {
  max-width: 380px;
  font-size: clamp(22px, 2.7vw, 33px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.slide-content p {
  max-width: 390px;
  margin-top: 8px;
  color: rgba(234, 242, 255, 0.76);
  font-size: 13px;
}

.slider-arrow {
  position: absolute;
  z-index: 3;
  top: 14px;
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  background: rgba(2, 6, 23, 0.68);
  backdrop-filter: blur(12px);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.slider-arrow:hover {
  border-color: rgba(34, 211, 238, 0.5);
  background: rgba(8, 25, 45, 0.86);
  transform: scale(1.04);
}

.slider-prev {
  right: 61px;
}

.slider-next {
  right: 14px;
}

.slider-footer {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 16px;
  left: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slider-dots {
  display: flex;
  gap: 7px;
}

.slider-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.45);
  transition: width 0.25s ease, background 0.25s ease;
}

.slider-dot.is-active {
  width: 26px;
  background: var(--cyan);
}

.slide-counter {
  color: rgba(234, 242, 255, 0.7);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.12em;
}

.section {
  padding-block: 88px;
}

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

.section-title .eyebrow,
.cta .eyebrow {
  display: inline-block;
  margin-bottom: 12px;
}

.section-title h2,
.cta h2 {
  margin-bottom: 14px;
  font-size: clamp(31px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.026em;
}

.section-title p,
.cta p {
  color: var(--muted);
  font-size: 17px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  min-height: 238px;
  padding: 26px;
  border: 1px solid var(--card-border);
  border-radius: 24px;
  background: var(--card);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
}

.icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 15px;
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.12);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.card p {
  color: var(--muted);
  font-size: 15px;
}

.showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.demo {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.16);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.demo:hover {
  border-color: rgba(34, 211, 238, 0.34);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  transform: translateY(-5px);
}

.demo-img {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: #07111f;
}

.demo-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(2, 6, 23, 0.7));
}

.demo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.demo:hover .demo-img img {
  transform: scale(1.055);
}

.demo-img span {
  position: absolute;
  z-index: 1;
  bottom: 16px;
  left: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 10px;
  color: #c8f8ff;
  background: rgba(2, 6, 23, 0.74);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  backdrop-filter: blur(10px);
}

.demo-body {
  padding: 22px;
}

.demo-body h3 {
  margin-bottom: 8px;
}

.demo-body p {
  color: var(--muted);
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--cyan-soft);
  font-weight: 750;
}

.text-link:hover,
.text-link:focus-visible { color: #fff; }

/* Product and editorial pages */
.content-page main { min-height: 70vh; }
.content-header .nav-links a[aria-current="page"] { color: var(--cyan-soft); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 34px; color: var(--muted); font-size: 13px; }
.breadcrumbs a:hover,
.breadcrumbs a:focus-visible { color: var(--cyan-soft); }
.content-hero { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr); align-items: center; gap: 54px; padding-block: 64px 84px; }
.content-hero h1,
.article-hero h1 { max-width: 900px; margin: 14px 0 22px; }
.content-lead { max-width: 720px; color: var(--muted); font-size: 19px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 9px; margin: 25px 0 30px; list-style: none; }
.hero-facts li,
.tag { padding: 7px 11px; border: 1px solid rgba(34, 211, 238, 0.2); border-radius: 999px; color: #c9f9ff; background: rgba(34, 211, 238, 0.07); font-size: 13px; }
.product-visual { position: relative; overflow: hidden; border: 1px solid var(--card-border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.product-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(3, 7, 18, 0.72), transparent 55%); }
.product-visual img { width: 100%; min-height: 440px; object-fit: cover; }
.answer-box { padding: 30px; border: 1px solid rgba(34, 211, 238, 0.25); border-radius: var(--radius-md); background: linear-gradient(135deg, rgba(34, 211, 238, 0.09), rgba(37, 99, 235, 0.07)); }
.answer-box h2,
.answer-box h3 { margin-bottom: 12px; }
.answer-box p { color: #d7e5f5; font-size: 17px; }
.content-section { padding-block: 74px; }
.content-section + .content-section { border-top: 1px solid rgba(255, 255, 255, 0.08); }
.content-section .section-title { max-width: 820px; }
.intelligence-loop { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; margin-top: 34px; list-style: none; counter-reset: loop; }
.intelligence-loop li { counter-increment: loop; padding: 24px 18px; border: 1px solid var(--card-border); border-radius: 18px; background: var(--card); }
.intelligence-loop li::before { content: "0" counter(loop); display: block; margin-bottom: 12px; color: var(--cyan); font-size: 12px; font-weight: 800; letter-spacing: 0.12em; }
.module-grid,
.article-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 34px; }
.module-card,
.article-card { padding: 26px; border: 1px solid var(--card-border); border-radius: var(--radius-md); background: var(--card); }
.module-card h3,
.article-card h2,
.article-card h3 { margin: 10px 0 12px; line-height: 1.25; }
.module-card p,
.article-card p { color: var(--muted); }
.article-card { display: flex; flex-direction: column; }
.article-card .text-link { margin-top: auto; padding-top: 22px; }
.plain-list { display: grid; gap: 12px; margin-top: 24px; padding-left: 20px; color: var(--muted); }
.article-hero { max-width: 920px; padding-block: 52px 58px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 25px; color: var(--muted); font-size: 14px; }
.article-layout { display: grid; grid-template-columns: minmax(0, 760px) minmax(230px, 1fr); align-items: start; gap: 64px; padding-bottom: 86px; }
.article-prose { min-width: 0; }
.article-prose > * + * { margin-top: 20px; }
.article-prose h2 { margin-top: 48px; font-size: 30px; line-height: 1.2; }
.article-prose h3 { margin-top: 32px; font-size: 21px; }
.article-prose p,
.article-prose li { color: #c4d2e3; font-size: 17px; }
.article-prose ul,
.article-prose ol { display: grid; gap: 11px; padding-left: 24px; }
.article-prose a,
.source-list a { color: var(--cyan-soft); text-decoration: underline; text-decoration-color: rgba(158, 238, 255, 0.35); text-underline-offset: 3px; }
.article-aside { position: sticky; top: calc(var(--header-height) + 24px); padding: 24px; border: 1px solid var(--card-border); border-radius: var(--radius-md); background: rgba(7, 17, 31, 0.78); }
.article-aside h2 { margin-bottom: 14px; font-size: 18px; }
.article-aside ul,
.source-list { display: grid; gap: 12px; padding-left: 18px; color: var(--muted); font-size: 14px; }
.editorial-note { margin-top: 32px; padding: 22px; border-left: 3px solid var(--cyan); color: var(--muted); background: rgba(255, 255, 255, 0.035); }

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 42px;
}

.split .section-title {
  margin-bottom: 0;
}

.list {
  display: grid;
  gap: 16px;
}

.list-item {
  display: flex;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.list-item > div {
  display: grid;
  gap: 2px;
}

.list-item span:not(.check) {
  color: var(--muted);
  font-size: 15px;
}

.check {
  color: var(--cyan);
  font-weight: 900;
}

.faq-section {
  padding-top: 50px;
}

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

.faq-item {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.faq-item h3 {
  margin-bottom: 10px;
  color: #eff8ff;
  font-size: 18px;
  line-height: 1.35;
}

.faq-item p {
  color: var(--muted);
  font-size: 15px;
}

.leadership-section {
  padding-top: 50px;
  padding-bottom: 42px;
}

.leadership-card {
  position: relative;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  align-items: center;
  gap: 48px;
  padding: 52px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 50%, rgba(34, 211, 238, 0.15), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  box-shadow: 0 26px 75px rgba(0, 0, 0, 0.2);
}

.leadership-card::after {
  content: "";
  position: absolute;
  top: -110px;
  right: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.14);
  filter: blur(60px);
  pointer-events: none;
}

.founder-mark {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  align-content: center;
  width: 170px;
  aspect-ratio: 1;
  border: 1px solid rgba(158, 238, 255, 0.28);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(34, 211, 238, 0.18), rgba(37, 99, 235, 0.12)),
    rgba(2, 6, 23, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 24px 55px rgba(0, 0, 0, 0.25);
}

.founder-mark span {
  color: #eaffff;
  font-size: 44px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.08em;
  text-shadow: 0 0 28px rgba(34, 211, 238, 0.34);
}

.founder-mark small {
  margin-top: 14px;
  color: var(--cyan-soft);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.17em;
}

.leadership-copy {
  position: relative;
  z-index: 1;
}

.leadership-copy .eyebrow {
  display: inline-block;
  margin-bottom: 11px;
}

.leadership-copy h2 {
  margin-bottom: 4px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.026em;
}

.leadership-role {
  margin-bottom: 19px;
  color: var(--cyan-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.leadership-description {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
}

.cta {
  padding: 76px 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  text-align: center;
  background:
    radial-gradient(circle at center top, rgba(34, 211, 238, 0.25), transparent 40%),
    rgba(255, 255, 255, 0.06);
}

.cta p {
  max-width: 680px;
  margin: 0 auto 30px;
}

footer {
  padding-block: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 1020px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .visual {
    min-height: 560px;
  }
}

@media (max-width: 920px) {
  .cards,
  .showcase {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .split .section-title {
    margin-bottom: 10px;
  }

  .leadership-card {
    grid-template-columns: 145px minmax(0, 1fr);
    gap: 34px;
    padding: 40px;
  }

  .founder-mark {
    width: 145px;
    border-radius: 29px;
  }

  .nav-links {
    gap: 18px;
  }

  .header-actions {
    gap: 18px;
  }

  .content-hero,
  .article-layout { grid-template-columns: 1fr; }

  .content-hero { gap: 34px; }
  .intelligence-loop { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .module-grid,
  .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-aside { position: static; }
}

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

  .container {
    width: min(100% - 28px, 1160px);
  }

  .brand {
    width: 165px;
  }

  .nav-links {
    display: none;
  }

  .header-actions {
    gap: 0;
  }

  .language-switcher {
    padding: 5px 8px;
  }

  .hero {
    gap: 38px;
    padding-block: 56px;
  }

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

  .hero-copy > p {
    font-size: 16px;
  }

  .visual {
    min-height: 450px;
    border-radius: 24px;
  }

  .dashboard {
    inset: 14px;
    padding: 12px;
  }

  .window-label {
    display: none;
  }

  .slide-content {
    right: 54px;
    bottom: 50px;
    left: 22px;
  }

  .slide-content h2 {
    font-size: 25px;
  }

  .slide-content p {
    display: none;
  }

  .slider-footer {
    right: 18px;
    left: 22px;
  }

  .slider-arrow {
    top: 10px;
    width: 34px;
    height: 34px;
  }

  .slider-prev {
    right: 50px;
  }

  .slider-next {
    right: 9px;
  }

  .section {
    padding-block: 66px;
  }

  .cards,
  .showcase,
  .faq-grid,
  .module-grid,
  .article-grid,
  .intelligence-loop {
    grid-template-columns: 1fr;
  }

  .content-hero { padding-block: 44px 60px; }
  .product-visual img { min-height: 300px; }
  .content-section { padding-block: 58px; }
  .article-hero h1 { font-size: clamp(36px, 10vw, 46px); }
  .article-prose h2 { font-size: 27px; }

  .card {
    min-height: 0;
  }

  .demo-img {
    height: 230px;
  }

  .leadership-section {
    padding-block: 38px;
  }

  .leadership-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 24px;
  }

  .founder-mark {
    width: 132px;
    border-radius: 27px;
  }

  .founder-mark span {
    font-size: 37px;
  }

  .leadership-copy h2 {
    font-size: 34px;
  }

  .leadership-description {
    font-size: 16px;
  }

  .cta {
    padding: 58px 22px;
  }
}

@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;
  }
}
