:root {
  --bg: #f3f1ec;
  --paper: #fbfaf7;
  --ink: #171915;
  --muted: #67695f;
  --line: rgba(23, 25, 21, 0.15);
  --accent: #d9ff67;
  --accent-2: #dfe8ff;
  --dark: #1c211b;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(20, 24, 18, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 4%, rgba(217,255,103,.14), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(223,232,255,.65), transparent 30%),
    var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  z-index: 10;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
}

.section-shell,
.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  background: rgba(243, 241, 236, .76);
}

.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; }
.brand-logo { display: block; width: 54px; height: 54px; object-fit: contain; flex: 0 0 auto; }
.brand-text { font-size: 15px; }
.nav { display: flex; gap: 28px; font-size: 14px; color: #4f524a; }
.nav a { transition: opacity .2s ease; }
.nav a:hover { opacity: .55; }
.header-actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.language-switcher { display: flex; align-items: center; gap: 5px; }
.language-switch {
  min-width: 42px;
  height: 42px;
  padding-inline: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.language-switch:hover { transform: translateY(-2px); background: rgba(255,255,255,.65); border-color: rgba(23,25,21,.24); }
.language-switch:focus-visible { outline: 3px solid rgba(23,25,21,.25); outline-offset: 2px; }
.header-cta-short { display: none; }

.rtl .hero-card li { padding-left: 0; padding-right: 22px; }
.rtl .hero-card li::before { left: auto; right: 0; transform: scaleX(-1); }
.rtl .text-link span { display: inline-block; margin-left: 0; margin-right: 6px; transform: scaleX(-1); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #1b1e18;
  font-weight: 750;
  letter-spacing: -.015em;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(73,82,44,.12); }
.button-small { min-height: 42px; padding: 0 17px; font-size: 14px; white-space: nowrap; }
.button-dark { background: var(--dark); color: #fff; }

.hero {
  min-height: 760px;
  padding: 110px 0 90px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, .65fr);
  gap: 56px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
  color: #666b5b;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, blockquote { overflow-wrap: anywhere; hyphens: auto; }
h1 {
  max-width: 850px;
  margin: 20px 0 28px;
  font-size: clamp(48px, 6.2vw, 88px);
  line-height: .98;
  letter-spacing: -.057em;
  font-weight: 780;
}
h1 span { color: #6b7064; }
.hero-lead {
  max-width: 760px;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.45;
  color: #4b4f46;
  letter-spacing: -.02em;
}
.hero-copy,
.section-content,
.contact-section > div { min-width: 0; }
.hero-actions { display: flex; align-items: center; gap: 22px; margin: 36px 0 48px; flex-wrap: wrap; }
.text-link { font-weight: 700; font-size: 15px; }
.text-link span { margin-left: 6px; }
.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; border-top: 1px solid var(--line); padding-top: 24px; }
.hero-facts strong { display: block; font-size: 20px; letter-spacing: -.02em; }
.hero-facts span { color: var(--muted); font-size: 13px; display: block; margin-top: 4px; }

.hero-card {
  background: var(--dark);
  color: #f4f5ef;
  padding: 30px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  transform: rotate(1.1deg);
}
.hero-card-top { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #cdd2c6; margin-bottom: 22px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px rgba(217,255,103,.08); }
.hero-card ul { margin: 0; padding: 0; list-style: none; }
.hero-card li { padding: 15px 0 15px 22px; border-bottom: 1px solid rgba(255,255,255,.11); position: relative; }
.hero-card li::before { content: "↗"; position: absolute; left: 0; color: var(--accent); }
.hero-card p { margin: 24px 0 0; color: #c6cbc0; font-size: 14px; }

.section-grid {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 55px;
  padding: 112px 0;
  border-top: 1px solid var(--line);
}
.about-section { grid-template-columns: 260px minmax(0, 1fr); }
.about-intro { align-self: start; }
.profile-photo {
  margin: 24px 0 0;
}
.profile-photo img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center 32%;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.profile-photo figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}
.section-content h2 {
  max-width: 900px;
  margin-bottom: 34px;
  font-size: clamp(36px, 4.3vw, 62px);
  line-height: 1.04;
  letter-spacing: -.045em;
}
.section-lead { max-width: 860px; font-size: 21px; color: #555a50; letter-spacing: -.015em; margin-bottom: 40px; }
.prose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; font-size: 18px; color: #50544b; }

.credentials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 46px; }
.credentials article,
.case-grid article {
  background: rgba(255,255,255,.56);
  border: 1px solid rgba(23,25,21,.09);
  border-radius: var(--radius);
  padding: 25px;
}
.credentials article span { font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: #74786d; font-weight: 800; }
.credentials h3 { font-size: 21px; line-height: 1.15; letter-spacing: -.025em; margin: 14px 0 12px; }
.credentials p { margin-bottom: 0; font-size: 14px; color: var(--muted); }

.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.case-number { font-size: 12px; color: #7e8276; margin-bottom: 34px; }
.case-grid h3 { font-size: 23px; letter-spacing: -.025em; margin-bottom: 10px; }
.case-grid p { margin: 0; color: var(--muted); font-size: 14px; }

.method-stack { border-top: 1px solid var(--line); }
.method-stack article { display: grid; grid-template-columns: 70px 1fr; gap: 24px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.method-label { font-size: 12px; color: #81857a; padding-top: 4px; }
.method-stack h3 { font-size: 27px; margin-bottom: 6px; letter-spacing: -.03em; }
.method-stack p { color: var(--muted); max-width: 760px; margin-bottom: 0; }

.formats {
  margin-top: 50px;
  border-radius: 30px;
  background: var(--accent-2);
  padding: 30px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 44px;
}
.format-intro span { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; color: #5e6678; }
.format-intro h3 { margin: 10px 0 0; font-size: 30px; line-height: 1.1; letter-spacing: -.03em; }
.format-list { display: grid; gap: 10px; }
.format-list div { background: rgba(255,255,255,.65); border-radius: 17px; padding: 16px 18px; display: grid; grid-template-columns: 130px 1fr; gap: 15px; }
.format-list strong { letter-spacing: -.02em; }
.format-list span { color: #5f6470; font-size: 14px; }

.company-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.company-chip { min-height: 150px; background: var(--paper); border-radius: 22px; border: 1px solid var(--line); padding: 22px; display: flex; flex-direction: column; justify-content: space-between; }
.company-art { min-height: 76px; display: grid; align-items: center; }
.corp-logos { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 5px 10px; }
.corp-logo { height: 34px; overflow: hidden; display: grid; place-items: center; }
.corp-logo img { display: block; max-width: 100%; max-height: 31px; width: auto; height: auto; object-fit: contain; }
.corp-logo-canonical img { transform: scale(1.35); }
.corp-logo-intel img { filter: contrast(1.65); }
.corp-logo-yandex img { max-width: 100%; }
.own-logos { grid-template-columns: 1fr 1fr; gap: 14px; overflow: hidden; }
.own-logos img { display: block; width: 100%; height: 68px; object-fit: cover; object-position: center; }
.own-logos .own-logo-daynix { object-fit: contain; }
.world-map { min-height: 84px; }
.world-map img { display: block; width: 100%; height: auto; object-fit: contain; transform: scale(1.08); }
.company-chip > span { color: var(--muted); font-size: 15px; line-height: 1.35; font-weight: 700; text-align: center; }
.experience-note { margin-top: 24px; padding: 24px 0 0; border-top: 1px solid var(--line); max-width: 930px; font-size: 18px; color: #555a50; }

.quote-section { padding: 110px 0; border-top: 1px solid var(--line); }
.quote-section blockquote { margin: 0; max-width: 1000px; font-size: clamp(34px, 4.2vw, 61px); line-height: 1.08; letter-spacing: -.045em; font-weight: 690; }
.quote-section span { display: block; margin-top: 22px; color: var(--muted); }

.contact-section {
  background: var(--accent);
  border-radius: 36px;
  margin-bottom: 28px;
  padding: 52px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 60px;
  align-items: center;
}
.contact-section h2 { font-size: clamp(39px, 4.8vw, 66px); letter-spacing: -.05em; line-height: 1; margin: 14px 0 22px; }
.contact-section > div:first-child > p { max-width: 720px; font-size: 18px; color: #41463b; }
.contact-card { background: #f8f9f2; border-radius: 26px; padding: 28px; box-shadow: 0 14px 40px rgba(72,83,28,.12); }
.contact-caption { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; color: #6e7465; }
.contact-big { font-size: 48px; font-weight: 780; letter-spacing: -.05em; margin: 6px 0; }
.contact-card p { color: #5d6258; }
.contact-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 20px 0 14px; }
.contact-action {
  flex: 0 1 calc((100% - 20px) / 3);
  min-width: 0;
  padding: 14px 8px 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 750;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.contact-action:hover { transform: translateY(-2px); border-color: rgba(23,25,21,.24); box-shadow: 0 10px 24px rgba(37,43,29,.1); }
.contact-action:focus-visible { outline: 3px solid rgba(23,25,21,.34); outline-offset: 3px; }
.contact-action img { display: block; width: 52px; height: 52px; object-fit: contain; border-radius: 14px; }
.contact-card small { display: block; color: #797e73; line-height: 1.45; }

.footer { min-height: 110px; display: flex; align-items: center; justify-content: space-between; color: #70756a; font-size: 13px; }
.footer-socials { display: flex; align-items: center; gap: 8px; }
.footer-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255,255,255,.5);
  display: grid;
  place-items: center;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.footer-socials a:hover { transform: translateY(-2px); background: #fff; border-color: rgba(23,25,21,.24); }
.footer-socials a:focus-visible { outline: 3px solid rgba(23,25,21,.25); outline-offset: 2px; }
.footer-socials img { display: block; width: 23px; height: 23px; object-fit: contain; border-radius: 6px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }

@media (max-width: 980px) {
  .nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 80px; }
  .hero-card { max-width: 620px; transform: none; }
  .section-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-section { grid-template-columns: 220px minmax(0, 1fr); gap: 36px; }
  .credentials, .case-grid { grid-template-columns: 1fr 1fr; }
  .company-row { grid-template-columns: 1fr 1fr; }
  .formats, .contact-section { grid-template-columns: 1fr; }
}

@media (max-width: 650px) {
  .section-shell { width: calc(100% - 24px); }
  .site-header { width: 100%; height: 70px; margin: 0; padding-inline: 12px; }
  .brand { min-width: 0; gap: 8px; }
  .brand-logo { width: 44px; height: 44px; }
  .brand-text { display: block; font-size: 13px; line-height: 1.1; white-space: nowrap; }
  .header-actions { gap: 6px; }
  .language-switcher { gap: 3px; }
  .language-switch { min-width: 34px; height: 34px; padding-inline: 7px; font-size: 11px; }
  .header-cta-full { display: none; }
  .header-cta-short { display: inline; }
  .button-small { min-height: 40px; font-size: 12px; padding: 0 13px; }
  .hero { padding: 44px 0 58px; gap: 32px; }
  h1 { margin: 16px 0 22px; font-size: clamp(38px, 10.5vw, 44px); line-height: 1; }
  .hero-lead { font-size: 17px; line-height: 1.48; }
  .hero-actions { gap: 14px; margin: 28px 0 34px; }
  .hero-actions .button { width: 100%; min-height: 50px; padding-inline: 16px; font-size: 15px; text-align: center; }
  .hero-facts { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; padding-top: 20px; }
  .hero-facts strong { font-size: 16px; }
  .hero-facts span { font-size: 11px; line-height: 1.35; }
  .hero-card { padding: 22px; border-radius: 24px; }
  .hero-card li { padding: 13px 0 13px 20px; }
  .section-grid { padding: 64px 0; gap: 20px; }
  .about-section { grid-template-columns: 1fr; }
  .profile-photo { width: 100%; max-width: 420px; }
  .profile-photo img { height: clamp(220px, 65vw, 280px); }
  .prose-grid, .credentials, .case-grid, .company-row { grid-template-columns: 1fr; }
  .prose-grid { gap: 20px; font-size: 17px; }
  .credentials { margin-top: 32px; }
  .credentials article, .case-grid article { padding: 21px; }
  .case-number { margin-bottom: 24px; }
  .method-stack article { grid-template-columns: 44px 1fr; gap: 12px; padding: 22px 0; }
  .method-stack h3 { font-size: 23px; }
  .company-chip { min-height: 150px; padding: 20px; }
  .corp-logos { gap-inline: 18px; }
  .corp-logo { height: 38px; }
  .corp-logo img { max-height: 35px; }
  .own-logos { max-width: 330px; }
  .world-map { max-width: 420px; }
  .section-content h2 { margin-bottom: 26px; font-size: clamp(32px, 9vw, 37px); line-height: 1.06; }
  .section-lead { margin-bottom: 32px; font-size: 17px; }
  .formats { margin-top: 38px; padding: 20px; gap: 24px; border-radius: 24px; }
  .format-intro h3 { font-size: 26px; }
  .format-list div { grid-template-columns: 1fr; gap: 4px; }
  .quote-section { padding: 72px 0; }
  .quote-section blockquote { font-size: clamp(30px, 8.5vw, 36px); line-height: 1.1; }
  .contact-section { padding: 22px; gap: 30px; border-radius: 24px; }
  .contact-section h2 { font-size: clamp(34px, 9vw, 39px); line-height: 1.03; }
  .contact-section > div:first-child > p { font-size: 17px; }
  .contact-card { padding: 20px; border-radius: 22px; }
  .contact-big { font-size: 42px; }
  .contact-actions { gap: 7px; }
  .contact-action { flex-basis: calc((100% - 14px) / 3); padding-inline: 5px; font-size: 11px; }
  .contact-action img { width: 48px; height: 48px; }
  .footer { flex-direction: column; align-items: flex-start; justify-content: center; gap: 14px; padding: 20px 0; }
}

@media (max-width: 480px) {
  .site-header { padding-inline: 10px; }
  .button-small { padding-inline: 12px; font-size: 11.5px; }
  h1 { font-size: clamp(36px, 10.5vw, 40px); }
  .contact-section { padding: 18px; }
  .contact-card { padding: 16px; }
}

@media (max-width: 360px) {
  .brand { gap: 6px; }
  .brand-logo { width: 40px; height: 40px; }
  .brand-text { font-size: 11.5px; }
  .button-small { padding-inline: 10px; font-size: 11px; }
}
