:root {
  --ink: #0c0c0d;
  --ink-soft: #171719;
  --paper: #f4f0e8;
  --paper-2: #ebe5db;
  --white: #ffffff;
  --muted: #a7a39d;
  --line: rgba(255,255,255,.14);
  --line-dark: rgba(12,12,13,.16);
  --accent: #ff5c35;
  --accent-soft: #ff8a6f;
  --max: 1240px;
  --pad: clamp(22px, 4vw, 58px);
  --radius: 2px;

  /* Typography: nine deliberate size levels across the site. */
  --font-sans: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --font-serif: "Iowan Old Style", Charter, "Palatino Linotype", "Book Antiqua", Georgia, "Times New Roman", serif;
  --fs-1: 12px;
  --fs-2: 14px;
  --fs-3: 18px;
  --fs-4: 22px;
  --fs-5: 26px;
  --fs-6: 36px;
  --fs-7: 52px;
  --fs-8: 68px;
  --fs-9: clamp(68px, 7.2vw, 104px);
}

html[lang="ru"] { --fs-9:clamp(56px,5.2vw,72px); }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: var(--fs-3);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { max-width: 100%; display: block; }
::selection { background: var(--accent); color: #fff; }

.shell { width: min(var(--max), calc(100% - 2 * var(--pad))); margin: 0 auto; }
.hero-grid > *, .proof-grid > *, .two-col > *, .cap-head > *, .cap-grid > *, .industry-head > *, .analytics-wrap > *, .how-head > *, .how-grid > *, .conf-inner > *, .contact-grid > *, .audience-grid > *, .field > * { min-width:0; }
.section { padding: clamp(78px, 10vw, 150px) 0; position: relative; }
.section--dark { background: var(--ink); color: var(--paper); }
.section--light { background: var(--paper); color: var(--ink); }
.section--paper2 { background: var(--paper-2); color: var(--ink); }
.eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: var(--fs-4); font-weight: 400; text-transform: none;
  line-height: 1.25; letter-spacing: -.01em; margin-bottom: 28px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); }
.lede { font-size: var(--fs-4); line-height: 1.28; letter-spacing: -.02em; }
.display {
  font-family: var(--font-serif);
  font-size: var(--fs-9);
  line-height: .92; letter-spacing: -.045em; font-weight: 400;
  margin: 0;
}
.h2 { font-family: var(--font-serif); font-size: var(--fs-7); font-weight:400; line-height: 1.02; letter-spacing: -.032em; margin: 0; }
.h3 { font-family: var(--font-serif); font-size: var(--fs-6); font-weight:400; line-height: 1.08; letter-spacing: -.022em; margin: 0; }
h1, h2, h3 { overflow-wrap:normal; word-break:normal; hyphens:none; }
.small { font-size: var(--fs-2); }
.muted { color: #6e6b66; }
.section--dark .muted { color: var(--muted); }

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  color: var(--paper);
  transition: background .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { background: rgba(12,12,13,.92); backdrop-filter: blur(14px); border-color: var(--line); }
.header-inner { height: 78px; display: grid; grid-template-columns: 170px 1fr auto; align-items: center; gap: 22px; }
.logo { width: 150px; height: auto; }
.nav { display: flex; justify-content: center; gap: clamp(10px, 1.35vw, 20px); font-size: var(--fs-2); line-height: 1.15; white-space: nowrap; }
.nav a { opacity: .82; transition: opacity .2s ease; }
.nav a:hover, .nav a:focus { opacity: 1; }
.lang { display: flex; gap: 9px; align-items: center; font-size: var(--fs-1); letter-spacing: .06em; }
.lang a { opacity: .45; }
.lang a.active, .lang a:hover { opacity: 1; }
.lang .slash { opacity: .25; }
.menu-btn { display: none; border: 0; background: none; color: inherit; width: 42px; height: 42px; padding: 9px; cursor: pointer; }
.menu-btn span { display:block; height:1px; background: currentColor; margin: 7px 0; transition:.2s; }
.mobile-panel { display: none; }

/* Hero */
.hero {
  min-height: 100svh;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.hero-grid { min-height: 100svh; padding-top: 112px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 4vw; align-items: center; }
.hero-copy { position: relative; z-index: 3; padding: 58px 0 68px; }
.hero-copy .eyebrow { margin-bottom: 34px; }
.hero-sub { max-width: 760px; font-size: var(--fs-4); line-height: 1.38; color: #cbc7bf; margin: 34px 0 40px; }
.hero-actions { display:flex; gap: 16px; flex-wrap:wrap; }
.text-link {
  display:inline-flex; align-items:center; gap:11px; padding: 11px 0;
  font-weight:700; font-size:var(--fs-2); border-bottom:1px solid rgba(255,255,255,.35);
}
.text-link::after { content:"↗"; color:var(--accent); transition:transform .2s ease; }
.text-link:hover::after { transform: translate(3px,-3px); }

.hero-art { position:relative; height: min(73vh, 760px); min-height: 520px; }
.strips { position:absolute; inset:0; display:grid; grid-template-columns:repeat(6,1fr); gap:10px; transform: skewX(-15deg); }
.strip { overflow:hidden; position:relative; border-left:1px solid rgba(255,255,255,.08); }
.strip::before, .strip::after { content:""; position:absolute; inset:0; transform: skewX(15deg) scale(1.35); transform-origin:center; }
.strip::after { background: linear-gradient(180deg, rgba(5,5,5,.08), rgba(5,5,5,.68)); }
.strip:nth-child(1)::before {
  background:
    radial-gradient(circle at 58% 23%, rgba(255,92,53,.8) 0 2%, transparent 2.4%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.17) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.09) 0 1px, transparent 1px 34px),
    linear-gradient(135deg,#2c2c2e 0%,#111 72%);
}
.strip:nth-child(2)::before {
  background:
    radial-gradient(ellipse at 65% 54%, rgba(242,211,143,.58) 0 8%, transparent 8.5%),
    radial-gradient(ellipse at 35% 66%, rgba(242,211,143,.45) 0 7%, transparent 7.5%),
    repeating-linear-gradient(72deg, rgba(255,255,255,.08) 0 2px, transparent 2px 20px),
    linear-gradient(135deg,#5a4b39,#171514 72%);
}
.strip:nth-child(3)::before {
  background:
    linear-gradient(90deg, transparent 0 22%, rgba(255,92,53,.56) 22% 26%, transparent 26% 100%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.13) 0 2px, transparent 2px 34px),
    linear-gradient(140deg,#3c4045,#121315 70%);
}
.strip:nth-child(4)::before {
  background:
    radial-gradient(circle at 50% 40%, rgba(255,92,53,.7) 0 3%, transparent 3.4%),
    repeating-radial-gradient(circle at 50% 40%, transparent 0 20px, rgba(255,255,255,.1) 21px 22px, transparent 23px 38px),
    linear-gradient(135deg,#272b34,#0f1013 76%);
}
.strip:nth-child(5)::before {
  background:
    repeating-linear-gradient(160deg, rgba(255,255,255,.13) 0 3px, transparent 3px 20px),
    linear-gradient(150deg,#5d5550,#151414 70%);
}
.strip:nth-child(6)::before {
  background:
    radial-gradient(circle at 44% 72%, rgba(255,92,53,.76) 0 2.5%, transparent 2.8%),
    repeating-linear-gradient(110deg, rgba(255,255,255,.1) 0 1px, transparent 1px 22px),
    linear-gradient(135deg,#303033,#111 68%);
}
.hero-art .accent-slash { position:absolute; width: 7px; height: 46%; background:var(--accent); right: 6%; top: 12%; transform: rotate(15deg); box-shadow:0 0 40px rgba(255,92,53,.22); }
.hero-art .micro { position:absolute; bottom:3%; right:4%; font-size:var(--fs-1); letter-spacing:.16em; text-transform:uppercase; color:rgba(255,255,255,.52); transform: rotate(-90deg) translateX(100%); transform-origin:right bottom; }

.proof { background:var(--ink); color:var(--paper); border-top:1px solid var(--line); }
.proof-grid { display:grid; grid-template-columns:1.35fr .65fr; }
.proof-item { padding: 27px 0 30px; min-height:105px; display:flex; align-items:center; gap:20px; }
.proof-item + .proof-item { border-left:1px solid var(--line); padding-left:36px; }
.proof-kicker { color:var(--accent); font-weight:700; font-size:var(--fs-2); letter-spacing:.05em; text-transform:uppercase; }
.proof-text { font-size:var(--fs-4); line-height:1.25; max-width:730px; }
.proof-number { font-family:var(--font-serif); font-size:var(--fs-8); line-height:.9; font-weight:400; letter-spacing:-.035em; white-space:nowrap; }
.proof-caption { font-size:var(--fs-4); color:var(--paper); max-width:360px; line-height:1.25; }

/* Intro */
.two-col { display:grid; grid-template-columns:.88fr 1.12fr; gap: clamp(45px, 8vw, 130px); align-items:start; }
.prose { font-size:var(--fs-3); line-height:1.62; max-width:760px; }
.prose p { margin:0 0 1.25em; }
.prose p:last-child { margin-bottom:0; }
.prose strong { font-weight:700; }

/* Capabilities */
.cap-head { display:grid; grid-template-columns:1fr .8fr; gap:50px; align-items:end; margin-bottom:60px; }
.cap-head .lede { margin:0; color:#b9b4ad; }
.cap-grid { display:grid; grid-template-columns:1fr 1fr; border-top:1px solid var(--line); }
.cap-card { padding:48px 40px 52px 0; }
.cap-card + .cap-card { border-left:1px solid var(--line); padding-left:50px; padding-right:0; }
.cap-no { color:var(--accent); font-size:var(--fs-1); letter-spacing:.14em; margin-bottom:38px; }
.cap-title { font-family:var(--font-serif); font-size:var(--fs-7); font-weight:400; line-height:1.02; letter-spacing:-.03em; margin:0 0 20px; }
.cap-tagline { color:#bdb8b1; font-size:var(--fs-3); max-width:500px; margin-bottom:32px; }
.clean-list { list-style:none; padding:0; margin:0; }
.clean-list li { padding:12px 0 12px 21px; border-top:1px solid var(--line); position:relative; color:#dfdbd4; }
.clean-list li::before { content:""; width:5px; height:5px; background:var(--accent); position:absolute; left:0; top:21px; }

/* Industries */
.industry-head { display:grid; grid-template-columns:.9fr 1.1fr; gap:70px; align-items:end; margin-bottom:58px; }
.industry-head .lede { max-width:780px; margin:0; }
.industry-list { border-top:1px solid var(--line-dark); }
.industry-row { display:grid; grid-template-columns:28px 1fr auto; gap:22px; align-items:center; padding:18px 0; border-bottom:1px solid var(--line-dark); }
.industry-row .n { font-size:var(--fs-5); line-height:1; letter-spacing:0; color:var(--accent); }
.industry-row .name { font-size:var(--fs-5); letter-spacing:-.015em; }
.industry-row .mark { width:8px; height:8px; background:var(--accent); opacity:.0; transition:opacity .2s, transform .2s; transform:translateX(-8px) rotate(45deg); }
.industry-row:hover .mark { opacity:1; transform:translateX(0) rotate(45deg); }

/* Analytics */
.analytics-wrap { display:grid; grid-template-columns:.9fr 1.1fr; gap:0; border:1px solid var(--line); }
.analytics-title { padding:54px; min-height:430px; position:relative; overflow:hidden; }
.analytics-title::after { content:""; position:absolute; width:220px; height:580px; background:var(--accent); right:-80px; top:-110px; transform:rotate(15deg); opacity:.98; }
.analytics-title .h2 { position:relative; z-index:2; max-width:520px; }
.analytics-copy { padding:54px; background:#121214; }
.analytics-copy p { font-size:var(--fs-3); line-height:1.6; margin:0 0 1.25em; color:#d6d1ca; }
.analytics-copy p:last-child { margin-bottom:0; }

/* How */
.how-head { display:grid; grid-template-columns:.8fr 1.2fr; gap:60px; align-items:end; margin-bottom:60px; }
.how-grid { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid var(--line-dark); border-bottom:1px solid var(--line-dark); }
.how-card { padding:30px 26px 38px 0; min-height:300px; }
.how-card + .how-card { border-left:1px solid var(--line-dark); padding-left:28px; }
.how-card .n { color:var(--accent); font-size:var(--fs-1); letter-spacing:.15em; margin-bottom:48px; }
.how-card h3 { font-family:var(--font-serif); font-size:var(--fs-5); font-weight:400; line-height:1.12; letter-spacing:-.02em; margin:0 0 20px; }
.how-card p { margin:0; color:#5e5a55; font-size:var(--fs-3); line-height:1.55; }

/* Confidentiality */
.conf { overflow:hidden; }
.conf-inner { min-height:390px; display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; position:relative; }
.conf-inner::before { content:""; position:absolute; width:8px; height:600px; background:var(--accent); left:50%; top:-110px; transform:rotate(15deg); }
.conf .h2 { font-size:clamp(40px,4.2vw,52px); white-space:nowrap; }
.conf .statement { font-size:var(--fs-4); line-height:1.28; letter-spacing:-.02em; max-width:840px; margin:0; }

/* Contact */
.contact-grid .lede a { color:var(--paper); border-bottom:1px solid rgba(255,255,255,.45); }
.contact-grid .lede a:hover, .contact-grid .lede a:focus { border-bottom-color:var(--accent); }
.contact-grid { display:grid; grid-template-columns:.78fr 1.22fr; gap:clamp(55px,8vw,120px); }
.contact-email {
  display:inline-block; max-width:100%; margin-top:22px; border-bottom:1px solid rgba(255,255,255,.45);
  font-size:clamp(16px,2vw,28px); white-space:nowrap; overflow-wrap:normal; word-break:normal;
  direction:ltr; unicode-bidi:isolate;
}
.form { border-top:1px solid var(--line); }
.field { display:grid; grid-template-columns:180px 1fr; gap:24px; padding:19px 0; border-bottom:1px solid var(--line); align-items:start; }
.field label { font-size:var(--fs-1); text-transform:uppercase; letter-spacing:.12em; color:#9f9b94; padding-top:11px; }
.field input, .field textarea, .field select {
  width:100%; border:0; background:transparent; color:var(--paper); outline:none; padding:9px 0; border-radius:0;
}
.field input::placeholder, .field textarea::placeholder { color:#65625e; }
.field textarea { min-height:120px; resize:vertical; }
.field select option { color:#111; }
.checkbox { display:flex; align-items:flex-start; gap:11px; font-size:var(--fs-2); color:#aaa59e; margin:20px 0 26px; }
.checkbox input { margin-top:3px; }
.checkbox a { color:inherit; text-decoration:underline; text-decoration-color:currentColor; text-underline-offset:3px; }
.checkbox a:hover, .checkbox a:focus { color:var(--accent); }
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  min-height:50px; padding:0 24px; border:1px solid var(--accent); background:var(--accent); color:#fff;
  font-weight:700; cursor:pointer; transition:transform .2s ease, background .2s ease;
}
.btn:hover { transform:translateY(-2px); background:#ff6c4a; }
.btn:disabled { opacity:.65; cursor:wait; transform:none; }
.form-status { margin-top:18px; min-height:24px; color:#c9c5be; font-size:var(--fs-2); }

/* Form success modal */
body.success-modal-open { overflow:hidden; }
.success-modal {
  position:fixed; inset:0; z-index:1000; display:grid; place-items:center; padding:24px;
  background:rgba(7,7,8,.74); opacity:0; visibility:hidden; pointer-events:none;
  transition:opacity .22s ease, visibility .22s ease; backdrop-filter:blur(5px);
}
.success-modal.is-open { opacity:1; visibility:visible; pointer-events:auto; }
.success-modal__dialog {
  position:relative; width:min(100%,560px); padding:clamp(38px,6vw,62px); text-align:center;
  background:var(--paper); color:var(--ink); border-top:5px solid var(--accent);
  box-shadow:0 28px 80px rgba(0,0,0,.35); transform:translateY(18px) scale(.985);
  transition:transform .22s ease;
}
.success-modal.is-open .success-modal__dialog { transform:none; }
.success-modal__close {
  position:absolute; top:12px; right:14px; width:42px; height:42px; border:0;
  background:transparent; color:var(--ink); font-size:32px; line-height:1; cursor:pointer;
}
.success-modal__close:hover { color:var(--accent); }
.success-modal__close:focus-visible, .success-modal__action:focus-visible { outline:3px solid rgba(238,77,43,.42); outline-offset:3px; }
.success-modal__mark {
  display:grid; place-items:center; width:58px; height:58px; margin:0 auto 24px;
  border-radius:50%; background:var(--accent); color:#fff; font-size:30px; font-weight:700;
}
.success-modal__title {
  margin:0 0 14px; font-family:var(--font-serif); font-size:var(--fs-6); font-weight:400;
  letter-spacing:-.025em; line-height:1.05;
}
.success-modal__message { max-width:420px; margin:0 auto 30px; color:#5f5a54; font-size:var(--fs-3); line-height:1.55; }
.success-modal__action { min-width:150px; }
.success-modal[dir="rtl"] .success-modal__close { right:auto; left:14px; }
.success-modal[dir="rtl"] .success-modal__title { font-family:"Noto Naskh Arabic","Amiri","Times New Roman",serif; letter-spacing:0; }

/* Footer */
.footer { background:#070708; color:#8f8b85; border-top:1px solid var(--line); }
.footer-inner { min-height:160px; display:grid; grid-template-columns:1fr auto; gap:40px; align-items:center; }
.footer-logo { width:132px; opacity:.78; margin-bottom:18px; }
.footer-links { display:flex; gap:22px; flex-wrap:wrap; font-size:var(--fs-1); }
.footer-links a:hover { color:#fff; }
.footer-note { font-size:var(--fs-1); text-align:right; }

/* Career */
.page-hero { min-height:65vh; background:var(--ink); color:var(--paper); display:flex; align-items:end; padding:150px 0 80px; overflow:hidden; position:relative; }
.page-hero::after { content:""; position:absolute; width:9px; height:140%; background:var(--accent); right:18%; top:-20%; transform:rotate(15deg); }
.page-hero .display { max-width:900px; position:relative; z-index:2; }
.page-hero p { max-width:760px; font-size:var(--fs-4); color:#bdb8b1; position:relative; z-index:2; }
.audience-grid { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--line-dark); border-bottom:1px solid var(--line-dark); }
.audience-card { padding:32px 26px 36px 0; min-height:180px; }
.audience-card + .audience-card { border-left:1px solid var(--line-dark); padding-left:30px; }
.audience-card .n { color:var(--accent); font-size:var(--fs-1); margin-bottom:30px; }
.audience-card h3 { font-family:var(--font-serif); font-size:var(--fs-5); font-weight:400; margin:0; line-height:1.18; }
.light-form { border-top:1px solid var(--line-dark); }
.light-form .field { border-color:var(--line-dark); }
.light-form .field label { color:#68645e; }
.light-form .field input, .light-form .field textarea, .light-form .field select { color:var(--ink); }
.light-form .field input::placeholder, .light-form .field textarea::placeholder { color:#9c978f; }
.light-form .checkbox { color:#68645e; }
.light-form .form-status { color:#5f5a54; }

/* Legal */
.legal-body { padding-top:140px; min-height:75vh; }
.legal-body article { max-width:820px; }
.legal-body h1 { font-family:var(--font-serif); font-size:var(--fs-7); font-weight:400; letter-spacing:-.032em; line-height:1.02; margin:0 0 40px; }
.legal-body h2 { font-family:var(--font-serif); font-size:var(--fs-5); font-weight:400; margin:44px 0 14px; }
.legal-body p, .legal-body li { font-size:var(--fs-3); line-height:1.65; color:#4f4b46; }
.legal-callout { border-left:4px solid var(--accent); padding:18px 22px; background:var(--paper-2); margin:28px 0; }

/* Reveal */
.reveal { opacity:0; transform:translateY(18px); transition:opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity:1; transform:none; }

/* RTL */
html[dir="rtl"] body { font-family: Arial, Tahoma, sans-serif; }
html[dir="rtl"] .display, html[dir="rtl"] .h2, html[dir="rtl"] .h3, html[dir="rtl"] .cap-title, html[dir="rtl"] .how-card h3, html[dir="rtl"] .proof-number, html[dir="rtl"] .audience-card h3, html[dir="rtl"] .legal-body h1, html[dir="rtl"] .legal-body h2 { font-family: "Noto Naskh Arabic", "Amiri", "Times New Roman", serif; }
html[dir="rtl"] .eyebrow::before { order:2; }
html[dir="rtl"] .cap-card { padding-right:0; padding-left:40px; }
html[dir="rtl"] .cap-card + .cap-card { border-left:0; border-right:1px solid var(--line); padding-right:50px; padding-left:0; }
html[dir="rtl"] .clean-list li { padding-right:21px; padding-left:0; }
html[dir="rtl"] .clean-list li::before { right:0; left:auto; }
html[dir="rtl"] .proof-item + .proof-item { border-left:0; border-right:1px solid var(--line); padding-left:0; padding-right:36px; }
html[dir="rtl"] .how-card { padding-right:0; padding-left:26px; }
html[dir="rtl"] .how-card + .how-card { border-left:0; border-right:1px solid var(--line-dark); padding-left:0; padding-right:28px; }
html[dir="rtl"] .audience-card { padding-right:0; padding-left:26px; }
html[dir="rtl"] .audience-card + .audience-card { border-left:0; border-right:1px solid var(--line-dark); padding-left:0; padding-right:30px; }
html[dir="rtl"] .conf-inner::before { left:auto; right:50%; }
html[dir="rtl"] .footer-note { text-align:left; }

@media (max-width: 1080px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .nav, .lang { display:none; }
  .menu-btn { display:block; }
  .mobile-panel {
    display:block; position:fixed; inset:78px 0 0 0; background:rgba(12,12,13,.98); color:var(--paper);
    padding:32px var(--pad); overflow-y:auto; overscroll-behavior:contain; -webkit-overflow-scrolling:touch;
    visibility:hidden; opacity:0; pointer-events:none; transform:translateY(-14px);
    transition:opacity .22s ease, transform .22s ease, visibility 0s linear .22s; z-index:999;
  }
  body.menu-open .mobile-panel {
    visibility:visible; opacity:1; pointer-events:auto; transform:none;
    transition-delay:0s;
  }
  .mobile-panel a { display:block; padding:15px 0; border-bottom:1px solid var(--line); font-size:var(--fs-4); }
  .mobile-langs { display:flex; gap:16px; padding-top:28px; }
  .mobile-langs a { border:0; font-size:var(--fs-2); opacity:.55; }
  .mobile-langs a.active { opacity:1; color:var(--accent); }
  .hero-grid { grid-template-columns:1fr; gap:0; padding-top:125px; align-content:center; }
  .hero-copy { padding:20px 0 18px; }
  .hero-art { height:310px; min-height:310px; margin-bottom:20px; }
  .proof-grid { grid-template-columns:1fr; }
  .proof-item + .proof-item { border-left:0; border-top:1px solid var(--line); padding-left:0; }
  html[dir="rtl"] .proof-item + .proof-item { border-right:0; padding-right:0; }
  .two-col, .cap-head, .industry-head, .analytics-wrap, .how-head, .conf-inner, .contact-grid { grid-template-columns:1fr; }
  .cap-grid { grid-template-columns:1fr; }
  .cap-card + .cap-card { border-left:0; border-top:1px solid var(--line); padding-left:0; }
  html[dir="rtl"] .cap-card + .cap-card { border-right:0; padding-right:0; }
  .analytics-title { min-height:300px; }
  .how-grid { grid-template-columns:1fr 1fr; }
  .how-card:nth-child(3) { border-left:0; border-top:1px solid var(--line-dark); }
  .how-card:nth-child(4) { border-top:1px solid var(--line-dark); }
  html[dir="rtl"] .how-card:nth-child(3) { border-right:0; }
  .conf-inner::before { display:none; }
  .audience-grid { grid-template-columns:1fr; }
  .audience-card + .audience-card { border-left:0; border-top:1px solid var(--line-dark); padding-left:0; }
  html[dir="rtl"] .audience-card + .audience-card { border-right:0; padding-right:0; }
}

@media (min-width: 1081px) and (max-width: 1200px) {
  .two-col { grid-template-columns:1fr; }
}

@media (max-width: 640px) {
  :root {
    --pad: 20px;
    --fs-4: 20px;
    --fs-5: 24px;
    --fs-6: 32px;
    --fs-7: clamp(28px, 8.8vw, 40px);
    --fs-8: 60px;
    --fs-9: clamp(31px, 10.2vw, 45px);
  }
  html[lang="ru"] { --fs-9:clamp(31px,10.2vw,45px); }
  .header-inner { height:68px; }
  .logo { width:126px; }
  .mobile-panel { top:68px; }
  .hero-grid { padding-top:102px; }
  .hero-sub { margin:26px 0 30px; }
  .hero-art { height:240px; min-height:240px; overflow:hidden; }
  .strips { gap:6px; }
  .strips .strip:nth-child(5), .strips .strip:nth-child(6) { display:none; }
  .strips { grid-template-columns:repeat(4,1fr); }
  .proof-item { align-items:flex-start; flex-direction:column; gap:8px; }
  .section { padding:74px 0; }
  .cap-card { padding:36px 0; }
  .cap-card + .cap-card { padding-left:0; }
  .industry-row { grid-template-columns:28px 1fr; }
  .industry-row .mark { display:none; }
  .analytics-title, .analytics-copy { padding:34px 24px; }
  .analytics-title { min-height:250px; }
  .analytics-title::after { width:160px; right:-85px; }
  .how-grid { grid-template-columns:1fr; }
  .how-card, .how-card + .how-card { padding:28px 0; border-left:0; border-top:1px solid var(--line-dark); min-height:auto; }
  .how-card:first-child { border-top:0; }
  html[dir="rtl"] .how-card, html[dir="rtl"] .how-card + .how-card { border-right:0; padding-right:0; }
  .conf-inner { min-height:320px; }
  .conf .h2 { font-size:clamp(25px,8.3vw,36px); }
  .field { grid-template-columns:1fr; gap:6px; }
  .field label { padding-top:0; }
  .field input[type="file"] { max-width:100%; min-width:0; }
  .footer-inner { grid-template-columns:1fr; padding:42px 0; }
  .footer-note { text-align:left; }
  html[dir="rtl"] .footer-note { text-align:right; }
  .page-hero { padding-top:125px; min-height:58vh; }
  .success-modal { padding:16px; }
  .success-modal__dialog { padding:42px 24px 34px; }
  .success-modal__message { font-size:16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { transition:none !important; animation:none !important; }
  .reveal { opacity:1; transform:none; }
}
