:root {
  --brand-950: #071720;
  --brand-900: #0B2431;
  --brand-800: #173746;
  --brand-700: #2A556C;
  --brand-600: #44697D;
  --brand-500: #5C8294;
  --brand-200: #DDECF1;
  --brand-100: #EEF6F8;
  --paper: #FFFFFF;
  --paper-soft: #F7FBFC;
  --ink: #0B1821;
  --muted: #657783;
  --cyan: #25BFE3;
  --cyan-soft: #DFF8FC;
  --green: #A8ED47;
  --green-dark: #7BBE20;
  --violet: #8D6BEE;
  --orange: #FF9666;
  --red: #FF6C80;
  --line: rgba(68, 105, 125, .22);
  --glass: rgba(255, 255, 255, .78);
  --shadow: 0 28px 80px rgba(7, 23, 32, .16);
  --shadow-soft: 0 16px 48px rgba(7, 23, 32, .10);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 6% 6%, rgba(37, 191, 227, .20), transparent 32rem),
    radial-gradient(circle at 86% 10%, rgba(168, 237, 71, .14), transparent 30rem),
    linear-gradient(180deg, #F8FCFD 0%, #FFFFFF 48%, #F7FBFC 100%);
  font-family: Calibri, Candara, "Segoe UI", Arial, sans-serif;
  line-height: 1.52;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(42, 85, 108, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 85, 108, .07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.62) 48%, transparent 92%);
}
body.modal-open, body.menu-open, body.lightbox-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { border: 0; }
.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.section { padding: 92px 0; position: relative; }
.section.compact { padding: 64px 0; }
.section.dark {
  color: #fff;
  background:
    radial-gradient(circle at 15% 0%, rgba(37,191,227,.22), transparent 30rem),
    linear-gradient(135deg, var(--brand-900), var(--brand-700));
}
.section.dark .muted, .section.dark .section-head p { color: rgba(255,255,255,.78); }
.skip-link { position: absolute; left: -999px; top: 0; background:#fff; padding: 10px; z-index:999; }
.skip-link:focus { left: 12px; top: 12px; }
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  border-bottom: 1px solid rgba(68, 105, 125, .14);
  background: rgba(248, 252, 253, .82);
  backdrop-filter: blur(18px);
  transition: background .24s ease, box-shadow .24s ease;
}
.site-header.is-scrolled { background: rgba(248,252,253,.96); box-shadow: 0 14px 38px rgba(7, 23, 32, .08); }
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand img { width: 268px; max-height: 56px; height: auto; object-fit: contain; }
.nav { display: flex; align-items: center; justify-content: center; gap: 2px; }
.nav a { padding: 10px 11px; border-radius: 999px; color: rgba(11, 24, 33, .76); font-size: 15px; font-weight: 700; transition: color .2s ease, background .2s ease; }
.nav a:hover, .nav a.is-active { color: var(--brand-900); background: rgba(68, 105, 125, .1); }
.header-actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.lang-switch { display: inline-flex; gap: 4px; padding: 4px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.74); }
.lang-switch button { min-width: 38px; height: 34px; border-radius: 999px; background: transparent; color: var(--brand-800); cursor: pointer; font-weight: 800; font-size: 13px; }
.lang-switch button.is-active { color: #fff; background: var(--brand-700); }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.84); color: var(--brand-700); cursor: pointer; }
.nav-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; border-radius: 999px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 12px 18px; border: 1px solid transparent; border-radius: 999px; font-weight: 800; letter-spacing: .01em; cursor: pointer; transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease; }
.btn:hover { transform: translateY(-2px); }
.btn:disabled { opacity: .48; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-primary { color: var(--brand-950); background: linear-gradient(135deg, var(--green), #DDFD82); box-shadow: 0 18px 38px rgba(123,190,32,.26); }
.btn-primary:hover { box-shadow: 0 20px 46px rgba(123,190,32,.34); }
.btn-ghost { color: var(--brand-900); border-color: rgba(68,105,125,.24); background: rgba(255,255,255,.84); }
.btn-ghost:hover { border-color: rgba(68,105,125,.5); box-shadow: var(--shadow-soft); }
.btn-accent { color: var(--brand-950); background: linear-gradient(135deg, var(--green), #DDFD82); box-shadow: 0 18px 38px rgba(123,190,32,.26); }
[data-open-demo] { color: var(--brand-950) !important; background: linear-gradient(135deg, var(--green), #DDFD82) !important; border-color: rgba(123,190,32,.30) !important; box-shadow: 0 18px 38px rgba(123,190,32,.26) !important; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; min-height: 34px; padding: 7px 12px; border: 1px solid rgba(37,191,227,.35); border-radius: 999px; background: rgba(255,255,255,.78); color: var(--brand-700); font-size: 14px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; box-shadow: 0 10px 34px rgba(7,23,32,.05); }
.eyebrow::before { content:""; width:8px; height:8px; border-radius:50%; background: var(--green); box-shadow:0 0 0 5px rgba(168,237,71,.18); }
.section-head { max-width: 860px; margin: 0 auto 42px; text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }
.section-head h2 { margin: 16px 0 12px; color: var(--brand-900); font-size: clamp(34px, 5vw, 58px); line-height: .96; letter-spacing: -.045em; }
.section.dark .section-head h2 { color: #fff; }
.section-head p { margin: 0; color: var(--muted); font-size: clamp(18px, 2vw, 22px); }
.muted { color: var(--muted); }
.text-gradient { background: linear-gradient(92deg, var(--brand-700), #14A8C8 54%, #7BBE20); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero { padding: 128px 0 80px; min-height: 760px; display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr); gap: 46px; align-items: center; }
.hero h1 { margin: 22px 0 20px; color: var(--brand-950); font-size: clamp(46px, 7vw, 88px); line-height: .88; letter-spacing: -.065em; }
.hero p.lead { margin: 0 0 26px; max-width: 720px; color: var(--muted); font-size: clamp(19px, 2.4vw, 25px); line-height: 1.28; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 22px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.trust-pill { display: inline-flex; align-items: center; gap: 8px; min-height: 36px; padding: 7px 11px; border-radius: 999px; background: rgba(255,255,255,.76); border: 1px solid var(--line); color: var(--brand-800); font-weight: 800; font-size: 14px; }
.trust-pill img { height: 24px; width: auto; }
.hero-visual { position: relative; min-width: 0; }
.hero-card { position: relative; border: 1px solid rgba(68,105,125,.18); border-radius: var(--radius-xl); overflow: hidden; background: #fff; box-shadow: var(--shadow); }
.hero-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.hero-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,23,32,0) 50%, rgba(7,23,32,.56)); pointer-events: none; }
.float-card { position: absolute; right: 22px; bottom: 22px; z-index: 2; max-width: 300px; padding: 18px; border: 1px solid rgba(255,255,255,.28); border-radius: 22px; background: rgba(255,255,255,.86); backdrop-filter: blur(14px); box-shadow: 0 18px 54px rgba(7,23,32,.18); }
.float-card strong { display:block; margin-bottom:6px; color: var(--brand-900); font-size:20px; line-height:1.05; }
.float-card span { color: var(--muted); }
.metric-strip { position: absolute; left: 22px; top: 22px; z-index: 2; display: grid; gap: 8px; }
.metric-mini { width: max-content; max-width: 280px; padding: 10px 12px; border-radius: 999px; background: rgba(11,36,49,.82); color: #fff; font-size: 14px; font-weight: 800; backdrop-filter: blur(12px); }
.hero-orb { position: absolute; z-index: -1; right: -44px; top: -42px; width: 190px; height: 190px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #fff, var(--cyan) 48%, var(--brand-700)); opacity: .55; filter: blur(4px); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { position: relative; min-width: 0; border: 1px solid rgba(68,105,125,.18); border-radius: var(--radius-lg); background: rgba(255,255,255,.84); box-shadow: var(--shadow-soft); overflow: hidden; }
.card.pad { padding: 26px; }
.card h3, .card h4 { margin: 0 0 10px; color: var(--brand-900); line-height: 1.06; }
.card h3 { font-size: 26px; }
.card h4 { font-size: 22px; }
.card p { margin: 0; color: var(--muted); }
.card .kicker { display:inline-flex; align-items:center; justify-content:center; width:36px; height:36px; margin-bottom:16px; border-radius:12px; color: var(--brand-900); background: var(--cyan-soft); font-weight:900; }
.card:nth-child(2) .kicker { background: #F0EAFE; }
.card:nth-child(3) .kicker { background: #E8FFE2; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.problem-card { padding: 26px; border-radius: var(--radius-lg); border: 1px solid rgba(68,105,125,.16); background: #fff; box-shadow: 0 16px 44px rgba(7,23,32,.07); }
.problem-card:nth-child(1) { border-top: 5px solid var(--cyan); }
.problem-card:nth-child(2) { border-top: 5px solid var(--violet); }
.problem-card:nth-child(3) { border-top: 5px solid #F5C25A; }
.problem-card:nth-child(4) { border-top: 5px solid var(--green-dark); }
.problem-card:nth-child(5) { border-top: 5px solid var(--orange); }
.problem-card:nth-child(6) { border-top: 5px solid var(--red); }
.solution-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 30px; align-items: center; }
.solution-block { display: grid; gap: 28px; }
.solution-copy { max-width: 920px; }
.solution-copy h2 { margin: 16px 0 12px; color: var(--brand-900); font-size: clamp(34px,5vw,58px); line-height:.96; letter-spacing:-.045em; }
.solution-copy p { margin: 0; max-width: 860px; color: var(--muted); font-size: clamp(18px,2vw,22px); }
.solution-visual-wide { width: 100%; }
.solution-visual-wide .screen-main img { aspect-ratio: 21 / 8; object-position: top left; }
.solution-visual-wide .screen-over { width: 34%; right: 26px; bottom: -34px; }
.flow-horizontal { grid-template-columns: repeat(3, 1fr); margin-top: 26px; }
.flow { display: grid; gap: 14px; }
.flow-step { display: grid; grid-template-columns: 54px minmax(0,1fr); gap: 16px; align-items: start; padding: 20px; border-radius: 22px; background: #fff; border: 1px solid rgba(68,105,125,.18); box-shadow: 0 12px 34px rgba(7,23,32,.06); }
.flow-step .num { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 18px; background: var(--brand-700); color: #fff; font-weight: 900; font-size: 22px; }
.flow-step:nth-child(2) .num { background: var(--cyan); color: var(--brand-950); }
.flow-step:nth-child(3) .num { background: var(--green); color: var(--brand-950); }
.screen-stack { position: relative; min-width: 0; }
.screen-main { border-radius: var(--radius-xl); border: 1px solid rgba(68,105,125,.18); background: #fff; box-shadow: var(--shadow); overflow: hidden; }
.screen-main img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.screen-over { position: absolute; right: -18px; bottom: -28px; width: 52%; border-radius: 18px; border: 1px solid rgba(68,105,125,.18); background: #fff; box-shadow: 0 20px 54px rgba(7,23,32,.18); overflow: hidden; }
.screen-over img { width: 100%; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature { padding: 22px; min-height: 230px; }
.feature-icon { width: 48px; height: 48px; border-radius: 16px; display:grid; place-items:center; margin-bottom:18px; font-size:24px; background: var(--cyan-soft); color: var(--brand-800); }
.feature:nth-child(2) .feature-icon { background:#F0EAFE; }
.feature:nth-child(3) .feature-icon { background:#E8FFE2; }
.feature:nth-child(4) .feature-icon { background:#FFF2E7; }
.device-panel { display: grid; grid-template-columns: 1fr 1.1fr; gap: 26px; align-items: center; }
.brand-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.brand-chip { min-height: 46px; display: inline-flex; align-items: center; gap: 9px; padding: 10px 14px; border-radius: 999px; border: 1px solid rgba(68,105,125,.18); background: rgba(255,255,255,.9); box-shadow: 0 12px 30px rgba(7,23,32,.06); font-weight: 900; color: var(--brand-900); }
.brand-chip img { width: 30px; height: 30px; object-fit: contain; flex: 0 0 auto; }
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.industry-card { padding: 26px; background: rgba(255,255,255,.84); border-radius: var(--radius-lg); border: 1px solid rgba(68,105,125,.18); min-height: 260px; }
.industry-card ul { margin: 16px 0 0; padding-left: 18px; color: var(--muted); }
.industry-card li + li { margin-top: 8px; }
.screens-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.screenshot-card { border-radius: var(--radius-lg); border: 1px solid rgba(68,105,125,.18); background: #fff; overflow: hidden; box-shadow: var(--shadow-soft); }
.screenshot-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; object-position: top left; }
.screenshot-card.tall img { aspect-ratio: 4/3; }
.screenshot-card .caption { padding: 16px 18px; border-top: 1px solid var(--line); font-weight: 800; color: var(--brand-800); }

.interface-carousel { position: relative; border-radius: var(--radius-xl); border: 1px solid rgba(68,105,125,.18); background: rgba(255,255,255,.86); box-shadow: var(--shadow); overflow: hidden; }
.carousel-viewport { position: relative; min-height: 560px; background: linear-gradient(180deg, #fff, var(--brand-100)); }
.carousel-slide { position: absolute; inset: 0; margin: 0; opacity: 0; pointer-events: none; transform: translateX(3%); transition: opacity .55s ease, transform .55s ease; display: grid; grid-template-rows: 1fr auto; }
.carousel-slide.is-active { opacity: 1; pointer-events: auto; transform: translateX(0); }
.carousel-slide img { width: 100%; height: 100%; object-fit: contain; object-position: center; padding: 22px 64px 0; }
.carousel-slide figcaption { margin: 0; padding: 16px 78px 22px; color: var(--brand-900); font-weight: 900; font-size: 18px; text-align: center; }
.carousel-btn { position: absolute; top: 50%; z-index: 4; width: 50px; height: 50px; transform: translateY(-50%); border-radius: 999px; background: rgba(255,255,255,.92); color: var(--brand-900); border: 1px solid rgba(68,105,125,.18); box-shadow: 0 12px 36px rgba(7,23,32,.12); cursor: pointer; font-size: 34px; line-height: 1; display: grid; place-items: center; }
.carousel-btn:hover { background: #fff; box-shadow: 0 16px 44px rgba(7,23,32,.18); }
.carousel-prev { left: 18px; }
.carousel-next { right: 18px; }
.carousel-dots { position: absolute; left: 0; right: 0; bottom: 10px; z-index: 5; display: flex; justify-content: center; gap: 8px; pointer-events: none; }
.carousel-dots button { width: 9px; height: 9px; border-radius: 999px; background: rgba(68,105,125,.28); cursor: pointer; pointer-events: auto; transition: width .2s ease, background .2s ease; }
.carousel-dots button.is-active { width: 28px; background: var(--green-dark); }

.awards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.award-card { background: #fff; border-radius: var(--radius-lg); border: 1px solid rgba(68,105,125,.18); overflow: hidden; box-shadow: 0 16px 44px rgba(7,23,32,.08); }
.award-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: top center; background: #fff; }
.award-card .award-text { padding: 18px; }
.award-card .award-text h3 { font-size: 20px; }
.gallery { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 18px; grid-auto-rows: 260px; }
.gallery a { position: relative; overflow: hidden; border-radius: var(--radius-lg); border: 1px solid rgba(68,105,125,.18); background: #fff; box-shadow: var(--shadow-soft); }
.gallery a:first-child { grid-row: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.gallery a:hover img { transform: scale(1.04); }
.gallery span { position:absolute; left:14px; bottom:14px; right:14px; padding:9px 12px; border-radius:999px; background:rgba(255,255,255,.82); backdrop-filter: blur(8px); color: var(--brand-900); font-weight:800; font-size:14px; }

.lightbox-layer { position: fixed; inset: 0; z-index: 140; display: none; align-items: center; justify-content: center; padding: 74px 22px 26px; background: rgba(7,23,32,.82); backdrop-filter: blur(12px); }
.lightbox-layer.is-open { display: flex; }
.lightbox-figure { width: min(1120px, 100%); max-height: calc(100vh - 120px); margin: 0; display: grid; gap: 12px; }
.lightbox-figure img { width: 100%; max-height: calc(100vh - 170px); object-fit: contain; border-radius: 22px; background: #fff; box-shadow: 0 30px 90px rgba(0,0,0,.35); }
.lightbox-figure figcaption { color: #fff; text-align: center; font-weight: 900; font-size: 18px; }
.lightbox-close { position: fixed; right: 22px; top: 20px; width: 52px; height: 52px; border-radius: 999px; background: rgba(255,255,255,.94); color: var(--brand-900); cursor: pointer; font-size: 34px; line-height: 1; box-shadow: 0 16px 44px rgba(0,0,0,.25); }
.gallery a { cursor: zoom-in; }

.pilot { display: grid; grid-template-columns: .95fr 1.05fr; gap: 28px; align-items: center; }
.pilot-box { padding: 28px; border-radius: var(--radius-xl); background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18); box-shadow: 0 20px 70px rgba(0,0,0,.16); }
.pilot-list { display:grid; gap: 12px; margin-top: 20px; }
.pilot-list div { padding: 14px 16px; border-radius: 16px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.16); }
.cta-card { padding: clamp(30px, 6vw, 56px); border-radius: var(--radius-xl); background: #fff; border: 1px solid rgba(68,105,125,.18); box-shadow: var(--shadow); text-align: center; }
.cta-card h2 { margin: 0 0 12px; color: var(--brand-900); font-size: clamp(34px, 5vw, 56px); line-height: .96; letter-spacing: -.04em; }
.cta-card p { margin: 0 auto 24px; max-width: 820px; color: var(--muted); font-size: 20px; }
.footer { padding: 54px 0 28px; background: var(--brand-950); color: rgba(255,255,255,.78); }
.footer-grid { display:grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; }
.footer img { width: 250px; background: #fff; border-radius: 12px; padding: 8px; }
.footer a { color: #fff; }
.footer h3 { color:#fff; margin:0 0 12px; }
.footer p { margin: 0 0 8px; }
.footer-bottom { margin-top: 32px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display:flex; gap:18px; justify-content:space-between; flex-wrap:wrap; font-size:14px; }
.demo-layer { position: fixed; inset: 0; z-index: 120; display: none; align-items: flex-start; justify-content: center; padding: 92px 20px 20px; background: rgba(7,23,32,.48); backdrop-filter: blur(10px); overflow-y: auto; }
.demo-layer.is-open { display: flex; }
.demo-modal { width: min(760px, 100%); border-radius: 28px; border: 1px solid rgba(255,255,255,.32); background: rgba(255,255,255,.96); box-shadow: 0 30px 90px rgba(0,0,0,.26); overflow: hidden; }
.demo-head { display:flex; justify-content:space-between; gap:16px; padding: 26px 28px 18px; border-bottom:1px solid var(--line); background: linear-gradient(135deg, rgba(221,236,241,.82), rgba(255,255,255,.88)); }
.demo-head h2 { margin:0 0 6px; color: var(--brand-900); font-size: 32px; line-height: 1; }
.demo-head p { margin:0; color: var(--muted); }
.demo-close { width: 44px; height: 44px; flex:0 0 auto; border-radius: 14px; background: rgba(42,85,108,.10); color: var(--brand-900); cursor:pointer; font-size: 28px; line-height:1; }
.demo-form { padding: 24px 28px 28px; }
.form-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display:grid; gap:7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 900; color: var(--brand-900); }
.field small { color: var(--muted); }
.input, .select, .textarea { width:100%; border:1px solid rgba(68,105,125,.26); border-radius: 15px; background:#fff; color: var(--ink); padding: 13px 14px; outline: none; transition:border-color .2s ease, box-shadow .2s ease; }
.input:focus, .select:focus, .textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(37,191,227,.14); }
.textarea { min-height: 92px; resize: vertical; }
.consent { display:flex; gap:12px; align-items:flex-start; margin: 18px 0 0; color: var(--muted); }
.consent input { margin-top: 4px; width: 18px; height: 18px; }
.form-actions { display:flex; gap:12px; align-items:center; flex-wrap:wrap; margin-top: 20px; }
.form-status { margin-top: 16px; padding: 14px 16px; border-radius: 16px; display:none; }
.form-status.show { display:block; }
.form-status.ok { background:#E8FFE2; color:#17440c; border:1px solid rgba(123,190,32,.25); }
.form-status.err { background:#FFF0F2; color:#7a1726; border:1px solid rgba(255,108,128,.25); }
.portal-shell { padding-top: 110px; min-height: 100vh; }
.portal-grid { display:grid; grid-template-columns: 330px 1fr; gap: 24px; align-items:start; }
.portal-panel { padding:24px; border-radius: var(--radius-lg); background:#fff; border:1px solid var(--line); box-shadow: var(--shadow-soft); }
.table-wrap { overflow:auto; border: 1px solid var(--line); border-radius: 16px; background:#fff; }
table { width: 100%; border-collapse: collapse; min-width: 680px; }
th, td { padding: 12px 14px; border-bottom: 1px solid rgba(68,105,125,.16); text-align:left; vertical-align: top; }
th { color: var(--brand-900); background: var(--brand-100); font-weight: 900; }
.status { display:inline-flex; padding:5px 9px; border-radius:999px; background:var(--brand-100); color:var(--brand-800); font-weight:900; font-size:13px; }
@media (max-width: 1120px) {
  .brand img { width: 210px; }
  .nav a { font-size: 14px; padding: 9px 8px; }
  .hero-grid, .solution-grid, .device-panel, .pilot { grid-template-columns: 1fr; }
  .flow-horizontal { grid-template-columns: 1fr; }
  .solution-visual-wide .screen-main img { aspect-ratio: 16 / 10; }
  .solution-visual-wide .screen-over { width: 46%; right: 14px; }
  .hero { padding-top: 114px; }
}
@media (max-width: 940px) {
  .nav-toggle { display: inline-block; }
  .nav { position: fixed; left: 20px; right: 20px; top: 86px; display: none; flex-direction: column; align-items: stretch; padding: 12px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.97); box-shadow: var(--shadow); }
  body.menu-open .nav { display: flex; }
  .nav a { padding: 14px 16px; }
  .header-actions .btn-primary { display: none; }
  .value-grid, .problem-grid, .feature-grid, .industry-grid, .awards-grid, .screens-grid { grid-template-columns: 1fr 1fr; }
  .carousel-viewport { min-height: 470px; }
  .carousel-slide img { padding: 18px 54px 0; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .gallery a:first-child { grid-row: auto; grid-column: span 2; }
  .footer-grid, .portal-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 68px 0; }
  .header-inner { min-height: 68px; gap: 8px; }
  .brand img { width: 172px; max-height: 46px; }
  .lang-switch button { min-width: 34px; height: 32px; }
  .hero { padding: 102px 0 54px; min-height: auto; }
  .hero-grid { gap: 28px; }
  .hero p.lead { font-size: 18px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .metric-strip { left: 12px; top: 12px; }
  .metric-mini { font-size: 12px; max-width: 230px; }
  .float-card { position: static; margin: -18px 12px 12px; max-width: none; }
  .hero-card::after { display: none; }
  .value-grid, .problem-grid, .feature-grid, .industry-grid, .awards-grid, .screens-grid { grid-template-columns: 1fr; }
  .flow-horizontal { grid-template-columns: 1fr; margin-top: 10px; }
  .solution-visual-wide .screen-main img { aspect-ratio: 4 / 3; }
  .solution-visual-wide .screen-over { position: static; width: auto; margin: 12px 0 0; }
  .carousel-viewport { min-height: 360px; }
  .carousel-slide img { padding: 16px 12px 0; }
  .carousel-slide figcaption { padding: 12px 44px 24px; font-size: 15px; }
  .carousel-btn { width: 38px; height: 38px; font-size: 26px; }
  .carousel-prev { left: 8px; }
  .carousel-next { right: 8px; }
  .lightbox-layer { padding: 74px 10px 20px; }
  .lightbox-close { right: 12px; top: 12px; width: 44px; height: 44px; font-size: 30px; }
  .screen-over { position: static; width: auto; margin: 12px 0 0; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 230px; }
  .gallery a:first-child { grid-column: auto; }
  .demo-layer { padding: 76px 10px 10px; }
  .demo-modal { border-radius: 22px; }
  .demo-head, .demo-form { padding-inline: 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-bottom { display:block; }
  .section-head h2, .cta-card h2 { letter-spacing: -.03em; }
}
@media (max-width: 640px) {
  .header-actions > .btn-ghost { display: none; }
  .header-actions { gap: 6px; }
}

/* v5 refinements */
.brand img[src$="itr-logo.svg"] { width: 310px; max-height: 64px; object-fit: contain; }
.footer img[src$="itr-logo.svg"] { width: 320px; max-width: 100%; background: #fff; }
.btn-video {
  color: var(--brand-900);
  border-color: rgba(37,191,227,.38);
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(223,248,252,.92));
  box-shadow: 0 14px 32px rgba(7,23,32,.10);
}
.btn-video::before { content: "▶"; font-size: .86em; color: var(--cyan); }
.btn-video:hover { border-color: rgba(37,191,227,.7); box-shadow: 0 18px 44px rgba(7,23,32,.14); }
.btn-video-dark { color: #fff; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.12); }
.btn-video-dark::before { color: var(--green); }
.trust-logo-only { padding: 9px 14px; border-radius: 20px; }
.trust-logo-only img { height: 42px; width: auto; }
.trust-video { min-height: 46px; }
.problem-head { max-width: 1040px; }
.section-head .problem-lead-large {
  max-width: 1040px;
  margin: 0 auto;
  color: var(--brand-900);
  font-weight: 900;
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.12;
  letter-spacing: -.02em;
}
.platform-visual { width: 100%; border-radius: var(--radius-xl); border: 1px solid rgba(68,105,125,.18); background: #fff; box-shadow: var(--shadow); overflow: hidden; }
.platform-visual img { width: 100%; height: auto; object-fit: contain; object-position: top left; }
.flow-horizontal { margin-top: 10px; }
.brand-chip img { width: 34px; height: 34px; }
.industry-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.industry-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -46px auto;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(168,237,71,.22), transparent 68%);
  pointer-events: none;
}
.industry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: rgba(37,191,227,.35); }
.scenario-top { display: grid; grid-template-columns: 54px 1fr; gap: 14px; align-items: start; }
.scenario-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 18px; background: linear-gradient(135deg, var(--cyan-soft), #fff); color: var(--brand-700); border: 1px solid rgba(37,191,227,.28); box-shadow: 0 12px 28px rgba(7,23,32,.08); font-size: 26px; font-weight: 900; }
.industry-card:nth-child(2) .scenario-icon { background: linear-gradient(135deg, #F0EAFE, #fff); color: var(--violet); border-color: rgba(141,107,238,.28); }
.industry-card:nth-child(3) .scenario-icon { background: linear-gradient(135deg, #E8FFE2, #fff); color: var(--green-dark); border-color: rgba(123,190,32,.26); }
.industry-card:nth-child(4) .scenario-icon { background: linear-gradient(135deg, #FFF2E7, #fff); color: #D86C2F; border-color: rgba(255,150,102,.30); }
.industry-card:nth-child(5) .scenario-icon { background: linear-gradient(135deg, #EAF2FF, #fff); color: #2E67C7; border-color: rgba(46,103,199,.25); }
.industry-card:nth-child(6) .scenario-icon { background: linear-gradient(135deg, #F2F7FA, #fff); color: var(--brand-700); border-color: rgba(68,105,125,.25); }
.industry-card h3 { margin: 0; color: var(--brand-900); font-size: clamp(24px, 2.4vw, 31px); line-height: 1.02; letter-spacing: -.025em; }
.industry-card ul { padding-left: 22px; }
.industry-card li { font-size: 18px; line-height: 1.34; font-weight: 700; color: var(--brand-800); }
.award-skolkovo-only { grid-column: span 2; display: grid; place-items: center; padding: clamp(28px, 5vw, 54px); }
.award-card.award-skolkovo-only img { width: min(100%, 560px); max-height: 180px; height: auto; aspect-ratio: auto; object-fit: contain; padding: 0; }
.awards-cta { display: flex; justify-content: center; margin-top: 26px; }
.carousel-viewport { min-height: 630px; }
.carousel-slide img { padding-top: 28px; }
@media (max-width: 1120px) {
  .brand img[src$="itr-logo.svg"] { width: 250px; }
  .carousel-viewport { min-height: 560px; }
}
@media (max-width: 940px) {
  .award-skolkovo-only { grid-column: span 2; }
}
@media (max-width: 640px) {
  .brand img[src$="itr-logo.svg"] { width: 188px; max-height: 52px; }
  .trust-row { align-items: stretch; }
  .trust-logo-only { justify-content: center; }
  .trust-logo-only img { height: 36px; }
  .trust-video { width: 100%; }
  .section-head .problem-lead-large { font-size: 23px; }
  .scenario-top { grid-template-columns: 46px 1fr; }
  .scenario-icon { width: 46px; height: 46px; border-radius: 15px; font-size: 22px; }
  .industry-card { min-height: 0; }
  .industry-card li { font-size: 17px; }
  .award-skolkovo-only { grid-column: auto; }
  .carousel-viewport { min-height: 380px; }
}


/* v6 refinements */
.site-header .header-inner { min-height: 124px; }
.site-header .brand { min-width: 118px; align-self: stretch; align-items: center; }
.site-header .brand-logo-v2 {
  width: 118px !important;
  height: 118px !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain;
}
.hero { padding-top: 168px; }
.nav { flex: 1 1 auto; }
.trust-row { min-height: 0; }
.problem-head {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 44px;
}
.section-head.problem-head .problem-thesis.problem-lead-large {
  max-width: 1120px;
  margin: 16px auto 16px;
  color: var(--brand-900);
  font-weight: 900;
  font-size: clamp(28px, 3.2vw, 44px) !important;
  line-height: 1.1 !important;
  letter-spacing: -.028em !important;
}
.problem-head p { max-width: 980px; margin-inline: auto; }
.btn-video { white-space: nowrap; }
.case-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--cyan-soft), #fff);
  color: var(--brand-700);
  border: 1px solid rgba(37,191,227,.28);
  box-shadow: 0 12px 28px rgba(7,23,32,.08);
  font-size: 28px;
  font-weight: 900;
}
.industry-card:nth-child(2) .case-icon { background: linear-gradient(135deg, #F0EAFE, #fff); color: var(--violet); border-color: rgba(141,107,238,.28); }
.industry-card:nth-child(3) .case-icon { background: linear-gradient(135deg, #E8FFE2, #fff); color: var(--green-dark); border-color: rgba(123,190,32,.26); }
.industry-card:nth-child(4) .case-icon { background: linear-gradient(135deg, #FFF2E7, #fff); color: #D86C2F; border-color: rgba(255,150,102,.30); }
.industry-card:nth-child(5) .case-icon { background: linear-gradient(135deg, #EAF2FF, #fff); color: #2E67C7; border-color: rgba(46,103,199,.25); }
.industry-card:nth-child(6) .case-icon { background: linear-gradient(135deg, #F2F7FA, #fff); color: var(--brand-700); border-color: rgba(68,105,125,.25); }
@media (max-width: 1120px) {
  .site-header .header-inner { min-height: 106px; }
  .site-header .brand { min-width: 100px; }
  .site-header .brand-logo-v2 { width: 100px !important; height: 100px !important; }
  .hero { padding-top: 148px; }
  .nav { flex: 0 1 auto; }
}
@media (max-width: 940px) {
  .site-header .header-inner { min-height: 100px; }
  .site-header .brand-logo-v2 { width: 92px !important; height: 92px !important; }
  .nav { top: 116px; }
  .hero { padding-top: 136px; }
}
@media (max-width: 640px) {
  .site-header .header-inner { min-height: 76px; }
  .site-header .brand { min-width: 70px; }
  .site-header .brand-logo-v2 { width: 70px !important; height: 70px !important; }
  .nav { top: 84px; }
  .hero { padding-top: 104px; }
  .section-head.problem-head .problem-thesis.problem-lead-large {
    max-width: 100%;
    font-size: 25px !important;
    line-height: 1.14 !important;
    letter-spacing: -.02em !important;
  }
  .case-icon { width: 48px; height: 48px; border-radius: 16px; font-size: 23px; margin-bottom: 14px; }
}


/* v6 final overrides */
.footer img[src$="itr-logo.svg"], .footer img[src$="itr-logo-v2.svg"] { width: 180px !important; height: auto !important; max-height: none !important; background: #fff; border-radius: 22px; padding: 10px; }
.problem-thesis {
  width: min(100%, 1120px);
  max-width: 1120px !important;
  margin: 18px auto !important;
  padding: clamp(22px, 3.4vw, 38px);
  border: 1px solid rgba(37,191,227,.24);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 96% 0%, rgba(168,237,71,.20), transparent 28rem), linear-gradient(135deg, rgba(255,255,255,.92), rgba(238,246,248,.9));
  box-shadow: var(--shadow-soft);
  text-align: left;
  font-size: clamp(28px, 3.3vw, 44px) !important;
  line-height: 1.1 !important;
}
@media (max-width: 640px) {
  .problem-thesis { padding: 20px !important; font-size: 24px !important; line-height: 1.14 !important; }
  .footer img[src$="itr-logo.svg"], .footer img[src$="itr-logo-v2.svg"] { width: 140px !important; }
}


/* v6 logo final sizing: SVG version 2, cropped by viewBox without redrawing */
.site-header .header-inner { min-height: 126px !important; }
.site-header .brand { min-width: 164px !important; }
.site-header .brand-logo-v2 {
  width: 164px !important;
  height: auto !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
}
@media (max-width: 1120px) {
  .site-header .header-inner { min-height: 112px !important; }
  .site-header .brand { min-width: 144px !important; }
  .site-header .brand-logo-v2 { width: 144px !important; height: auto !important; }
}
@media (max-width: 940px) {
  .site-header .header-inner { min-height: 102px !important; }
  .site-header .brand { min-width: 128px !important; }
  .site-header .brand-logo-v2 { width: 128px !important; height: auto !important; }
  .nav { top: 112px !important; }
}
@media (max-width: 640px) {
  .site-header .header-inner { min-height: 80px !important; }
  .site-header .brand { min-width: 92px !important; }
  .site-header .brand-logo-v2 { width: 92px !important; height: auto !important; }
  .nav { top: 88px !important; }
}

/* v7 refinements: compact header, aligned Skolkovo badge, AI block */
.site-header .header-inner { min-height: 96px !important; }
.site-header .brand { min-width: 123px !important; }
.site-header .brand-logo-v2 {
  width: 123px !important;
  height: auto !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
}
.hero { padding-top: 138px; }
.video-proof { display: inline-flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.video-proof .btn-video { width: 100%; }
.video-proof .skolkovo-pill {
  padding: 9px 13px;
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 30px rgba(7,23,32,.08);
}
.video-proof .skolkovo-pill img { width: 166px; height: auto; display: block; }
.section-head.problem-head .problem-thesis.problem-lead-large,
.problem-thesis {
  width: min(100%, 1180px) !important;
  max-width: 1180px !important;
  font-size: clamp(23px, 2.55vw, 34px) !important;
  line-height: 1.22 !important;
  padding: clamp(20px, 2.7vw, 34px) clamp(24px, 4vw, 48px) !important;
}
.ai-capability {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(360px, 1.14fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  margin-top: 22px;
  padding: clamp(24px, 4vw, 42px);
  overflow: hidden;
  background:
    radial-gradient(circle at 98% 0%, rgba(37,191,227,.16), transparent 30rem),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(238,246,248,.92));
}
.ai-capability-copy h3 {
  margin: 0 0 16px;
  color: var(--brand-900);
  font-size: clamp(30px, 4vw, 48px);
  line-height: .98;
  letter-spacing: -.04em;
}
.ai-capability-copy p {
  margin: 0 0 18px;
  color: var(--brand-800);
  font-size: 20px;
  line-height: 1.42;
  font-weight: 700;
}
.ai-capability-copy ul { margin: 0; padding-left: 20px; color: var(--brand-800); }
.ai-capability-copy li { font-size: 18px; line-height: 1.38; font-weight: 800; }
.ai-capability-copy li + li { margin-top: 8px; }
.ai-capability-visual img {
  width: 100%;
  display: block;
  border-radius: 24px;
  border: 1px solid rgba(68,105,125,.16);
  box-shadow: 0 18px 50px rgba(7,23,32,.10);
  background: #fff;
}
.cta-actions { display: flex; justify-content: center; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-status {
  display: inline-flex;
  margin: 0 0 12px !important;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(168,237,71,.16);
  color: #E8FFD4;
  border: 1px solid rgba(168,237,71,.28);
  font-weight: 900;
}
.footer-grid > div:first-child p:not(.footer-status) { color: #fff; font-weight: 800; font-size: 18px; }
.award-card.award-skolkovo-only {
  grid-column: span 2;
  display: grid;
  place-items: center;
  padding: clamp(26px, 4.5vw, 48px);
  min-height: 210px;
}
.award-card.award-skolkovo-only img {
  width: min(100%, 520px);
  max-height: 170px;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  padding: 0;
  background: transparent;
}
.footer .footer-grid > div:first-child img { display: none !important; }
@media (max-width: 1120px) {
  .site-header .header-inner { min-height: 92px !important; }
  .site-header .brand { min-width: 108px !important; }
  .site-header .brand-logo-v2 { width: 108px !important; height: auto !important; }
  .hero { padding-top: 130px; }
  .ai-capability { grid-template-columns: 1fr; }
}
@media (max-width: 940px) {
  .site-header .header-inner { min-height: 84px !important; }
  .site-header .brand { min-width: 96px !important; }
  .site-header .brand-logo-v2 { width: 96px !important; height: auto !important; }
  .nav { top: 94px !important; }
  .hero { padding-top: 118px; }
  .award-card.award-skolkovo-only { grid-column: span 2; }
}
@media (max-width: 640px) {
  .site-header .header-inner { min-height: 72px !important; }
  .site-header .brand { min-width: 69px !important; }
  .site-header .brand-logo-v2 { width: 69px !important; height: auto !important; }
  .nav { top: 78px !important; }
  .hero { padding-top: 96px; }
  .video-proof { width: 100%; align-items: stretch; }
  .video-proof .skolkovo-pill { justify-content: center; }
  .video-proof .skolkovo-pill img { width: 158px; }
  .problem-thesis { font-size: 22px !important; line-height: 1.25 !important; }
  .ai-capability { padding: 20px; }
  .ai-capability-copy h3 { font-size: 28px; }
  .ai-capability-copy p { font-size: 17px; }
  .ai-capability-copy li { font-size: 16px; }
  .award-card.award-skolkovo-only { grid-column: auto; min-height: 170px; }
}

/* v7 awards layout polish */
.awards-grid { grid-template-columns: repeat(3, 1fr); }
.award-card.award-skolkovo-only { grid-column: 1 / -1; }
@media (max-width: 940px) {
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .award-card.award-skolkovo-only { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .awards-grid { grid-template-columns: 1fr; }
  .award-card.award-skolkovo-only { grid-column: auto; }
}

/* v8 refinements: hero badges, compact header, about page, footer polish */
.site-header .header-inner { min-height: 78px !important; }
.site-header .brand { min-width: 92px !important; }
.site-header .brand-logo-v2 {
  width: 92px !important;
  height: auto !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
}
.hero { padding-top: 116px; min-height: 720px; }
.hero-badges { display: flex; align-items: center; gap: 16px; flex-wrap: nowrap; }
.hero-badges .hero-eyebrow { flex: 0 0 auto; }
.skolkovo-inline { display: inline-flex; align-items: center; justify-content: center; min-height: 34px; padding: 0; background: transparent; border: 0; box-shadow: none; }
.skolkovo-inline img { height: 34px; width: auto; object-fit: contain; }
.hero-title { letter-spacing: -.032em !important; }
.title-blue { color: rgb(0, 176, 240); }
.title-dark { color: var(--brand-950); }
.hero-actions-main { flex-wrap: nowrap; align-items: center; gap: 10px; max-width: 100%; position: relative; z-index: 3; }
.hero-actions-main .btn { white-space: nowrap; min-width: 0; }
.solution-copy { max-width: 980px; margin: 0 auto; text-align: center; }
.solution-copy p { margin: 0 auto; }
.device-panel .section-head.left { text-align: center; margin-left: auto; margin-right: auto; }
.device-panel .section-head.left .eyebrow { margin-left: auto; margin-right: auto; }
.device-panel .section-head.left p { max-width: 880px; margin-left: auto; margin-right: auto; }
.award-card.award-skolkovo-only { min-height: 138px; padding: 18px 22px; }
.award-card.award-skolkovo-only img { width: min(100%, 338px); max-height: 110px; }
.footer-grid { grid-template-columns: 1.32fr .74fr .94fr; gap: 46px; align-items: start; }
.footer-contacts { justify-self: center; min-width: 190px; }
.footer-status {
  display: block;
  margin: 0 0 4px !important;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255,255,255,.82);
  font-weight: 800;
  font-size: 15px;
  line-height: 1.36;
  white-space: nowrap;
}
.footer-company-block .footer-company,
.footer-grid > div:first-child .footer-company {
  margin: 0 0 7px !important;
  color: #fff !important;
  font-weight: 800 !important;
  font-size: 17px !important;
  line-height: 1.25;
}
.footer-company-block .footer-address {
  margin: 0 !important;
  color: rgba(255,255,255,.70) !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  line-height: 1.36;
  max-width: 480px;
}
.footer h3 { font-size: 17px; letter-spacing: .01em; }
.footer a { font-weight: 700; }

.about-page .hero { min-height: auto; }
.about-hero { padding-top: 132px; padding-bottom: 54px; }
.about-hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(300px, .65fr); gap: 34px; align-items: center; }
.about-hero h1 { margin: 18px 0 16px; color: var(--brand-950); font-size: clamp(42px, 6vw, 74px); line-height: .92; letter-spacing: -.048em; }
.about-hero .lead { max-width: 860px; color: var(--muted); font-size: clamp(20px, 2.4vw, 26px); line-height: 1.26; }
.about-card { display: grid; gap: 18px; padding: 26px; border-radius: var(--radius-xl); background: rgba(255,255,255,.88); border: 1px solid rgba(68,105,125,.18); box-shadow: var(--shadow); }
.about-card img { width: 170px; height: auto; }
.about-card strong { display:block; color: var(--brand-900); font-size: 26px; line-height: 1.05; }
.about-card span { color: var(--muted); font-weight: 700; }
.about-content { display: grid; gap: 20px; }
.about-content h2 { margin: 0 0 14px; color: var(--brand-900); font-size: clamp(28px, 3.6vw, 44px); line-height: 1; letter-spacing: -.035em; }
.about-wide-card p + p { margin-top: 12px; }
.about-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-list { margin: 0; padding-left: 20px; color: var(--brand-800); font-size: 18px; font-weight: 700; }
.about-list li + li { margin-top: 9px; }
.about-requisites { display: grid; grid-template-columns: .8fr 1.2fr; gap: 26px; align-items: start; }
.about-requisites a { color: var(--brand-700); font-weight: 900; }
.requisites-grid { margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.requisites-grid div { padding: 14px 16px; border-radius: 16px; background: var(--brand-100); border: 1px solid rgba(68,105,125,.16); }
.requisites-grid dt { margin: 0 0 4px; color: var(--muted); font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.requisites-grid dd { margin: 0; color: var(--brand-900); font-weight: 900; line-height: 1.28; }
@media (max-width: 1120px) {
  .site-header .header-inner { min-height: 74px !important; }
  .site-header .brand { min-width: 82px !important; }
  .site-header .brand-logo-v2 { width: 82px !important; }
  .hero { padding-top: 106px; min-height: auto; }
  .hero-actions-main { flex-wrap: wrap; }
  .about-hero { padding-top: 118px; }
}
@media (max-width: 940px) {
  .site-header .header-inner { min-height: 72px !important; }
  .site-header .brand { min-width: 74px !important; }
  .site-header .brand-logo-v2 { width: 74px !important; }
  .nav { top: 82px !important; }
  .hero { padding-top: 104px; }
  .hero-badges { flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-contacts { justify-self: stretch; }
  .footer-status { white-space: normal; }
  .about-hero-grid, .about-two-col, .about-requisites { grid-template-columns: 1fr; }
  .about-hero { padding-top: 112px; }
}
@media (max-width: 640px) {
  .site-header .header-inner { min-height: 66px !important; }
  .site-header .brand { min-width: 58px !important; }
  .site-header .brand-logo-v2 { width: 58px !important; }
  .nav { top: 74px !important; }
  .hero { padding-top: 92px; }
  .hero-title { letter-spacing: -.02em !important; }
  .skolkovo-inline img { height: 30px; }
  .hero-badges { gap: 10px; }
  .hero-actions-main { flex-direction: column; align-items: stretch; }
  .hero-actions-main .btn { width: 100%; }
  .about-hero { padding-top: 94px; }
  .about-card img { width: 130px; }
  .requisites-grid { grid-template-columns: 1fr; }
  .award-card.award-skolkovo-only { min-height: 118px; }
  .award-card.award-skolkovo-only img { width: min(100%, 310px); max-height: 96px; }
}

/* v9 requested refinements */
#value.section.compact {
  padding-top: 0;
  margin-top: -20px;
}

.about-hero {
  padding-bottom: 34px;
}
.about-hero h1 {
  margin-top: 14px;
  margin-bottom: 12px;
}

.ai-capability {
  display: block;
}
.ai-capability-title {
  margin-bottom: 22px;
}
.ai-capability-title .kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 12px;
  color: var(--brand-900);
  background: var(--cyan-soft);
  font-weight: 900;
}
.ai-capability-title h3 {
  margin: 0;
  color: var(--brand-900);
  font-size: clamp(30px, 4vw, 48px);
  line-height: .98;
  letter-spacing: -.04em;
  max-width: 100%;
}
.ai-capability-content {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(340px, 1.04fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
}
.ai-capability-copy h3,
.ai-capability-copy .kicker {
  display: none;
}
.ai-capability-list {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--brand-800);
}
.ai-capability-list li {
  font-size: 18px;
  line-height: 1.38;
  font-weight: 800;
  white-space: nowrap;
}
.ai-capability-list li + li {
  margin-top: 8px;
}
.footer-grid {
  grid-template-columns: 1.28fr .76fr .96fr;
  gap: 42px;
}
.footer-contacts {
  transform: translateX(-18px);
}
.footer-company-block .footer-address {
  max-width: 520px;
}

@media (max-width: 1120px) {
  #value.section.compact { margin-top: -14px; }
  .ai-capability-content { grid-template-columns: 1fr; }
  .ai-capability-list li { white-space: normal; }
}
@media (max-width: 940px) {
  #value.section.compact { margin-top: 0; padding-top: 28px; }
  .footer-contacts { transform: none; }
}
@media (max-width: 640px) {
  .ai-capability-title h3 { font-size: 28px; }
  .ai-capability-list li { font-size: 16px; }
  .about-hero { padding-bottom: 26px; }
}

/* v10 final refinements: about page compact meta and admin responsiveness */
.about-card .about-meta-line,
.about-card > div > span {
  display: block;
  color: var(--muted);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.34;
}
.about-card .about-meta-line { margin-bottom: 4px; }
.about-hero { padding-bottom: 22px; }
.about-card { gap: 14px; }
.portal-grid { grid-template-columns: minmax(280px, 330px) minmax(0, 1fr); }
.portal-grid > section { min-width: 0; }
.portal-shell { overflow-x: hidden; }
.admin-dashboard[hidden], .admin-logout[hidden] { display: none !important; }
.admin-toolbar { display: grid; grid-template-columns: minmax(220px, 1fr) minmax(160px, .7fr) minmax(160px, .7fr) auto; gap: 12px; align-items: end; margin: 0 0 18px; }
.admin-toolbar .field { margin: 0; }
.admin-settings-grid { display: grid; grid-template-columns: repeat(2, minmax(180px, 1fr)); gap: 12px; align-items: end; }
.admin-actions-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 14px; }
.admin-reset-note { color: var(--muted); font-size: 14px; margin-top: 10px; }
.admin-table { min-width: 1120px; }
.table-wrap { max-width: 100%; }
@media (max-width: 1120px) {
  .admin-toolbar { grid-template-columns: 1fr 1fr; }
  .admin-settings-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .admin-toolbar { grid-template-columns: 1fr; }
  .portal-panel { padding: 18px; }
  .about-hero { padding-bottom: 18px; }
}


/* v11 micro-fixes: demo form privacy note, about punctuation, mobile header alignment */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
.site-header,
main,
.footer,
.portal-shell {
  max-width: 100vw;
}
@media (max-width: 640px) {
  .container.header-inner {
    width: 100%;
    padding-left: 12px;
    padding-right: 10px;
    margin-inline: 0;
  }
  .site-header .brand { min-width: 54px !important; }
  .site-header .brand-logo-v2 { width: 54px !important; }
  .header-actions {
    margin-left: auto;
    gap: 4px;
    transform: translateX(-4px);
  }
  .lang-switch {
    padding: 2px;
    gap: 2px;
  }
  .lang-switch button {
    min-width: 30px;
    height: 30px;
    font-size: 12px;
  }
  .nav-toggle {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }
  .nav-toggle span {
    width: 18px;
    margin: 4px auto;
  }
  .nav {
    left: 12px !important;
    right: 12px !important;
    top: 72px !important;
  }
  .hero,
  .about-hero {
    overflow-x: hidden;
  }
}
@media (max-width: 380px) {
  .container.header-inner {
    padding-left: 10px;
    padding-right: 8px;
  }
  .site-header .brand { min-width: 48px !important; }
  .site-header .brand-logo-v2 { width: 48px !important; }
  .header-actions { transform: translateX(-6px); }
  .lang-switch button {
    min-width: 28px;
    height: 28px;
  }
  .nav-toggle {
    width: 38px;
    height: 38px;
  }
}

/* v13 news section and admin news management */
.news-ticker-section {
  padding: 96px 0 0;
  margin-bottom: -56px;
  position: relative;
  z-index: 5;
}
.hero-after-news { padding-top: 112px; }
.news-ticker {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 10px 14px 10px 16px;
  border: 1px solid rgba(37,191,227,.28);
  border-radius: 24px;
  background: rgba(255,255,255,.90);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.news-ticker:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.news-ticker-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-900), var(--brand-700));
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.news-ticker-track {
  min-width: 0;
  overflow: hidden;
  color: var(--brand-900);
  font-weight: 800;
  white-space: nowrap;
}
.news-ticker-track span {
  display: inline-block;
  padding-left: 100%;
  animation: news-marquee 28s linear infinite;
}
.news-ticker:hover .news-ticker-track span { animation-play-state: paused; }
.news-ticker-more {
  color: var(--brand-700);
  font-weight: 900;
  white-space: nowrap;
}
@keyframes news-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
.news-hero { padding-top: 132px; padding-bottom: 56px; }
.news-hero-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(360px, .72fr); gap: 34px; align-items: center; }
.news-hero-feed .container { max-width: 1180px; }
.news-hero-feed .lead { max-width: 980px; }
.news-topics { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.news-topics span { display: inline-flex; align-items: center; min-height: 36px; padding: 8px 13px; border-radius: 999px; background: rgba(37,191,227,.12); color: var(--brand-800); font-weight: 900; border: 1px solid rgba(37,191,227,.20); }
.news-hero h1 { margin: 18px 0 16px; color: var(--brand-950); font-size: clamp(42px, 6vw, 72px); line-height: .94; letter-spacing: -.048em; }
.news-hero .lead { max-width: 840px; color: var(--muted); font-size: clamp(20px, 2.3vw, 25px); line-height: 1.28; }
.news-hero-card { padding: 14px; border: 1px solid rgba(68,105,125,.18); border-radius: var(--radius-xl); background: rgba(255,255,255,.86); box-shadow: var(--shadow); }
.news-hero-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 22px; }
.news-section-head { margin-bottom: 24px; }
.news-list { display: grid; gap: 22px; }
.news-feed-list { align-items: start; }
.news-card {
  display: grid;
  grid-template-columns: minmax(260px, .42fr) minmax(0, 1fr);
  gap: 0;
  border: 1px solid rgba(68,105,125,.18);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.news-card-image { min-height: 260px; background: var(--brand-100); }
.news-card-image img { width: 100%; height: 100%; object-fit: cover; }
.news-card-body { padding: 28px; }
.news-meta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 12px; color: var(--muted); font-weight: 800; font-size: 14px; }
.news-meta span { color: var(--brand-700); background: var(--cyan-soft); border-radius: 999px; padding: 5px 10px; }
.news-card h3 { margin: 0 0 12px; color: var(--brand-900); font-size: clamp(28px, 3.4vw, 44px); line-height: 1; letter-spacing: -.035em; }
.news-card p { margin: 0; color: var(--muted); font-size: 18px; }
.news-full-text { margin-top: 18px; color: var(--brand-800); }
.news-full-text p { color: var(--brand-800); margin: 0 0 12px; }
.news-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.news-tags span { padding: 6px 10px; border-radius: 999px; background: rgba(42,85,108,.08); color: var(--brand-700); font-weight: 800; font-size: 13px; }
.admin-news-grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(320px, .55fr); gap: 18px; align-items: start; }
.news-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.news-form-grid .field.full { grid-column: 1 / -1; }
.news-admin-list { display: grid; gap: 10px; }
.news-admin-item { display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: 12px; align-items: start; padding: 12px; border: 1px solid rgba(68,105,125,.16); border-radius: 18px; background: rgba(255,255,255,.84); }
.news-admin-item img { width: 72px; height: 58px; border-radius: 12px; object-fit: cover; background: var(--brand-100); }
.news-admin-item h4 { margin: 0 0 4px; color: var(--brand-900); font-size: 18px; line-height: 1.1; }
.news-admin-item p { margin: 0; color: var(--muted); font-size: 14px; }
.news-admin-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.news-admin-actions .btn { min-height: 36px; padding: 8px 11px; font-size: 13px; }
.news-status-pill { display: inline-flex; margin-top: 6px; padding: 3px 8px; border-radius: 999px; font-weight: 900; font-size: 12px; background: var(--brand-100); color: var(--brand-700); }
.news-status-pill.published { background: rgba(168,237,71,.26); color: var(--brand-900); }
.news-status-pill.archive { background: rgba(255,108,128,.12); color: #A83A4B; }
.news-month-chart { display: grid; gap: 8px; }
.news-month-row { display: grid; grid-template-columns: 78px minmax(0,1fr) 44px; gap: 10px; align-items: center; font-weight: 800; color: var(--brand-800); }
.news-month-bar { height: 12px; border-radius: 999px; background: var(--brand-100); overflow: hidden; }
.news-month-bar span { display:block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--cyan), var(--green)); }
@media (max-width: 1120px) {
  .news-ticker-section { padding-top: 88px; }
  .hero-after-news { padding-top: 96px; }
  .admin-news-grid { grid-template-columns: 1fr; }
}
@media (max-width: 940px) {
  .news-ticker-section { padding-top: 82px; margin-bottom: -34px; }
  .hero-after-news { padding-top: 72px; }
  .news-ticker { grid-template-columns: auto minmax(0, 1fr) auto; }
    .news-hero-grid, .news-card { grid-template-columns: 1fr; }
  .news-hero { padding-top: 112px; }
}
@media (max-width: 640px) {
  .news-ticker-section { padding-top: 74px; margin-bottom: -16px; }
  .hero-after-news { padding-top: 52px; }
  .news-ticker { min-height: 58px; padding: 8px 10px; border-radius: 18px; grid-template-columns: auto minmax(0, 1fr); }
  .news-ticker-label { font-size: 12px; min-height: 30px; padding: 6px 9px; }
  .news-ticker-more { display: none; }
  .news-ticker-track { font-size: 14px; }
  .news-hero { padding-top: 94px; padding-bottom: 34px; }
  .news-card-image { min-height: 190px; }
  .news-card-body { padding: 20px; }
  .news-form-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .news-ticker-track span { animation: none; padding-left: 0; }
}
/* v13 minor news feed refinements */
.news-hero.news-hero-feed .lead { max-width: 980px; }
.news-page .news-card-large .news-card-image { min-height: 340px; }
@media (max-width: 640px) {
  .news-ticker { grid-template-columns: auto minmax(0, 1fr); }
  .news-page .news-card-large .news-card-image { min-height: 210px; }
}
