:root {
  --ink: #172033;
  --ink-2: #24304a;
  --paper: #f5f6f8;
  --paper-blue: #eef1ff;
  --white: #ffffff;
  --blue: #3155e7;
  --blue-dark: #2443c5;
  --orange: #ffb84d;
  --mint: #dff5e8;
  --muted: #677083;
  --line: #dfe3eb;
  --radius: 14px;
  --shadow: 0 22px 65px rgba(27, 42, 82, 0.13);
  --shell: min(1210px, calc(100% - 56px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
  position: fixed;
  z-index: 1000;
  top: -64px;
  left: 18px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  font-weight: 800;
  transition: top .2s;
}
.skip-link:focus { top: 18px; }

/* Header */
.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  width: 100%;
  color: var(--ink);
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .055em;
}
.brand-mark {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 9px;
  font-size: 17px;
  letter-spacing: 0;
  box-shadow: 4px 4px 0 #b9c6ff;
}
.brand-accent { color: var(--blue); }
.main-nav { display: flex; align-items: center; gap: 22px; font-size: 13px; font-weight: 650; }
.main-nav > a:not(.button) { position: relative; color: #4f596c; }
.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform .2s;
}
.main-nav > a:hover::after,
.main-nav > a[aria-current="page"]::after { transform: scaleX(1); }
.theme-toggle {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  color: #4f596c;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: 11px;
  font-weight: 750;
  cursor: pointer;
  transition: color .2s, background .2s, border-color .2s;
}
.theme-toggle:hover { color: var(--blue); background: var(--paper-blue); border-color: #bdc8f7; }
.theme-toggle-icon { width: 18px; display: grid; place-items: center; font-size: 20px; line-height: 1; }
.theme-toggle-icon::before { content: "☾"; }
[data-theme="dark"] .theme-toggle-icon::before { content: "☀"; font-size: 17px; }
.menu-button { display: none; padding: 6px; border: 0; color: var(--ink); background: transparent; }
.menu-button span { display: block; width: 24px; height: 2px; margin: 5px; background: currentColor; }

/* Type and shared controls */
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1, h2 { letter-spacing: -.045em; }
h1 em, h2 em { color: var(--blue); font-style: normal; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary, .button-dark {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 10px 25px rgba(49,85,231,.24);
}
.button-primary:hover, .button-dark:hover { background: var(--blue-dark); }
.button-small { min-height: 42px; padding: 10px 17px; font-size: 12px; }
.button-light { color: var(--ink); background: var(--white); box-shadow: 0 10px 28px rgba(0,0,0,.12); }
.button-outline { color: var(--blue); background: var(--white); border-color: #bdc8f7; }
.full { width: 100%; }
.text-link, .text-buy { color: var(--blue); font-weight: 800; }
.text-link { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; }
.text-link span { font-size: 18px; }
.text-buy {
  margin-top: auto;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 12px;
  cursor: pointer;
}
.section { padding: 105px 0; }
.section-number, .eyebrow, .price-label, .dialog-kicker {
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.section-number { margin-bottom: 20px; }
.section-number.light, .eyebrow.light { color: #9db0ff; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.eyebrow span { width: 26px; height: 2px; background: currentColor; }

/* Home hero */
.hero {
  position: relative;
  min-height: 790px;
  display: flex;
  align-items: center;
  padding: 145px 0 94px;
  background:
    linear-gradient(rgba(33,46,83,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,46,83,.045) 1px, transparent 1px),
    linear-gradient(135deg, #f9f9f7 0%, #eef1ff 100%);
  background-size: 34px 34px, 34px 34px, auto;
  overflow: hidden;
}
.hero::after {
  content: "ФИНАНСЫ";
  position: absolute;
  right: -30px;
  bottom: -28px;
  color: rgba(49,85,231,.05);
  font-size: clamp(92px, 14vw, 205px);
  font-weight: 950;
  letter-spacing: -.08em;
  line-height: .8;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: 112px;
  left: 49%;
  width: 430px;
  height: 430px;
  background: #ffda94;
  border-radius: 50%;
  filter: blur(85px);
  opacity: .3;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 70px;
  align-items: center;
}
.hero h1 {
  max-width: 610px;
  margin-bottom: 26px;
  font-size: clamp(48px, 5.6vw, 76px);
  line-height: .98;
}
.hero h1 em { display: block; }
.hero-lead { max-width: 610px; color: #566073; font-size: 17px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 25px; margin-top: 34px; }
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  margin-top: 50px;
  border-top: 1px solid #ccd2df;
}
.hero-meta > div { padding: 18px 14px 0 0; }
.hero-meta strong { display: block; margin-bottom: 4px; color: var(--ink); font-size: 17px; }
.hero-meta span { color: var(--muted); font-size: 10px; line-height: 1.35; }
.product-visual, .screenshot-frame {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.product-visual {
  position: relative;
  transform: rotate(1deg);
  box-shadow: 0 30px 80px rgba(34,48,93,.2), 14px 14px 0 rgba(49,85,231,.12);
}
.product-visual img { width: 100%; min-height: 350px; object-fit: cover; object-position: left top; }
.window-bar, .screen-frame-bar {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  background: #f6f7fa;
  border-bottom: 1px solid var(--line);
}
.window-bar > span, .screen-frame-bar > span { width: 8px; height: 8px; background: #c7ccd7; border-radius: 50%; }
.window-bar b, .screen-frame-bar b { margin-left: 6px; color: #737c8d; font-size: 10px; font-weight: 700; }
.screen-proof {
  position: absolute;
  right: 18px;
  bottom: 17px;
  display: grid;
  gap: 4px;
  padding: 13px 16px;
  color: var(--ink);
  background: var(--orange);
  border: 1px solid rgba(23,32,51,.12);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(23,32,51,.18);
}
.screen-proof span { font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.screen-proof strong { font-size: 12px; }
.trust-strip { background: var(--white); border-block: 1px solid var(--line); }
.trust-strip .shell { min-height: 76px; display: flex; align-items: center; justify-content: center; gap: 30px; }
.trust-strip span { color: #969dac; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.trust-strip b { font-size: 12px; }
.trust-strip i { width: 4px; height: 4px; background: var(--orange); border-radius: 50%; }

/* Main page sections */
.intro-section { background: var(--white); }
.two-col-heading { display: grid; grid-template-columns: 1fr .92fr; gap: 120px; align-items: start; }
.two-col-heading h2, .section-heading h2, .feature-copy h2, .center-heading h2,
.excel-grid h2, .faq-grid h2, .requirements h2 {
  margin-bottom: 0;
  font-size: clamp(37px, 4vw, 55px);
  line-height: 1.04;
}
.section-lead { color: #3f495c; font-size: 20px; line-height: 1.55; }
.check-list { display: grid; gap: 0; margin: 30px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 13px; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.check-list svg { flex: 0 0 auto; color: var(--blue); font-size: 18px; }
.reports-section { color: var(--white); background: var(--ink); }
.section-heading { display: grid; grid-template-columns: 1fr 330px; gap: 90px; align-items: end; margin-bottom: 54px; }
.section-heading > p { margin-bottom: 6px; color: rgba(255,255,255,.57); line-height: 1.65; }
.report-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 17px; }
.report-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 29px;
  background: #202b42;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  transition: transform .25s, border-color .25s;
}
.report-card:hover { transform: translateY(-5px); border-color: #7189e7; }
.report-card.featured { color: var(--ink); background: var(--orange); border-color: var(--orange); }
.report-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 52px;
  color: #9db0ff;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  font-size: 24px;
}
.featured .report-icon { color: var(--ink); background: rgba(255,255,255,.35); border-color: rgba(23,32,51,.12); }
.report-card > span { font-size: 10px; opacity: .55; }
.report-card h3 { margin: 13px 0 16px; font-size: 25px; letter-spacing: -.03em; }
.report-card p { color: rgba(255,255,255,.58); font-size: 13px; line-height: 1.65; }
.featured p { color: rgba(23,32,51,.7); }
.report-card a { margin-top: auto; font-size: 12px; font-weight: 850; }
.report-card a b { margin-left: 7px; }
.feature-section { background: var(--paper); }
.feature-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 75px; align-items: center; }
.feature-copy p, .excel-grid > div > p { margin: 25px 0 28px; color: var(--muted); line-height: 1.7; }
.screenshot-frame { box-shadow: var(--shadow); }
.screenshot-frame a { display: block; }
.screenshot-frame img { width: 100%; }
.feature-screenshot img { width: 100%; height: auto; max-height: none; object-fit: contain; }
.screenshot-excel img { width: 100%; height: auto; max-height: none; object-fit: contain; }
.screenshot-frame figcaption { padding: 13px 16px; color: #70798a; background: var(--white); border-top: 1px solid var(--line); font-size: 10px; }
.workflow-section { background: var(--white); }
.center-heading { max-width: 760px; margin: 0 auto 62px; text-align: center; }
.center-heading p { margin-top: 18px; color: var(--muted); }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.steps > div { min-height: 235px; padding: 24px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.steps span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}
.steps h3 { margin: 46px 0 12px; font-size: 20px; }
.steps p { color: var(--muted); font-size: 13px; line-height: 1.6; }
.excel-section { background: var(--paper-blue); }
.excel-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: center; }
.screen-frame-bar.excel span { width: 25px; height: 25px; display: grid; place-items: center; color: var(--white); background: #168257; border-radius: 3px; font-size: 10px; }
.simple-list { margin: 26px 0 0; padding: 0; list-style: none; }
.simple-list li { position: relative; padding: 13px 0 13px 23px; border-bottom: 1px solid var(--line); font-size: 13px; }
.simple-list li::before { content: "→"; position: absolute; left: 0; color: var(--blue); }
.audience-section { background: #fff3de; }
.audience-section .section-heading { color: var(--ink); }
.audience-section .section-heading > p { color: var(--muted); }
.audience-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 17px; }
.audience-grid article { min-height: 240px; padding: 27px; background: var(--white); border: 1px solid #ead8bb; border-radius: var(--radius); }
.audience-grid span { color: var(--blue); font-size: 10px; font-weight: 900; }
.audience-grid h3 { margin: 65px 0 12px; font-size: 22px; }
.audience-grid p { color: var(--muted); font-size: 13px; line-height: 1.6; }
.faq-section { background: var(--white); }
.faq-section.soft { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .55fr 1fr; gap: 100px; align-items: start; }
.faq-grid > div:first-child > p { color: var(--muted); line-height: 1.65; }
.accordions { border-top: 1px solid var(--line); }
.accordions details { border-bottom: 1px solid var(--line); }
.accordions summary { display: flex; justify-content: space-between; gap: 20px; padding: 24px 0; list-style: none; cursor: pointer; font-size: 15px; font-weight: 800; }
.accordions summary::-webkit-details-marker { display: none; }
.accordions summary span { color: var(--blue); font-size: 22px; font-weight: 400; transition: transform .2s; }
.accordions details[open] summary span { transform: rotate(45deg); }
.accordions details p { max-width: 680px; padding-right: 40px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.cta-section { position: relative; padding: 82px 0; color: var(--white); background: var(--blue); overflow: hidden; }
.cta-section::after { content: ""; position: absolute; right: 7%; top: -125px; width: 330px; height: 330px; border: 70px solid rgba(255,184,77,.24); border-radius: 50%; }
.cta-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 70px; align-items: end; }
.cta-grid h2 { margin-bottom: 15px; font-size: clamp(37px,4vw,55px); line-height: 1.03; }
.cta-grid p { margin-bottom: 0; color: rgba(255,255,255,.7); }
.cta-action { display: grid; gap: 11px; justify-items: center; }
.cta-action small { color: rgba(255,255,255,.62); }

/* Inner pages */
.inner-hero, .legal-hero {
  padding: 165px 0 90px;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 10%, rgba(255,184,77,.37), transparent 28%),
    var(--paper-blue);
  border-bottom: 1px solid #d7ddf6;
}
.inner-hero.compact { padding-bottom: 82px; }
.inner-hero-grid { display: grid; grid-template-columns: 1.1fr .62fr; gap: 100px; align-items: end; }
.inner-hero h1 { margin-bottom: 0; font-size: clamp(46px,5vw,70px); line-height: 1; }
.inner-hero-grid > p { margin-bottom: 5px; color: var(--muted); font-size: 16px; line-height: 1.75; }
.product-detail { padding-top: 50px; }
.detail-row {
  display: grid;
  grid-template-columns: 42px .8fr 1.2fr;
  gap: 45px;
  align-items: center;
  padding: 65px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 30px;
}
.detail-index { align-self: start; padding-top: 7px; color: var(--blue); font-size: 11px; font-weight: 900; }
.pill { padding: 6px 9px; color: #205f42; background: var(--mint); border-radius: 5px; font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.detail-row h2 { margin: 15px 0 19px; font-size: 39px; line-height: 1.04; }
.detail-row p { color: var(--muted); font-size: 14px; line-height: 1.7; }
.detail-screen { box-shadow: 0 20px 50px rgba(29,43,82,.13); }
.detail-screen img { min-height: 215px; object-fit: cover; object-position: left top; }
.product-screenshots { background: var(--ink); }
.screen-heading { color: var(--white); }
.screen-heading > p { color: rgba(255,255,255,.57); }
.screen-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.screen-gallery .wide { grid-column: 1 / -1; }
.screen-gallery img { width: 100%; height: auto; max-height: none; object-fit: contain; }
.capability-section { background: var(--white); }
.capability-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.capability-grid article { min-height: 220px; padding: 25px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.capability-grid span { color: var(--blue); font-size: 10px; font-weight: 900; }
.capability-grid h3 { margin: 48px 0 11px; font-size: 19px; }
.capability-grid p { color: var(--muted); font-size: 13px; line-height: 1.6; }
.requirements { color: var(--white); background: var(--ink-2); }
.requirements-grid { display: grid; grid-template-columns: .8fr 1fr; gap: 100px; }
.requirements-note { max-width: 440px; margin: 19px 0 0; color: rgba(255,255,255,.66); font-size: 13px; line-height: 1.65; }
.requirements-download { margin-top: 27px; }
.requirements ul { margin: 0; padding: 0; list-style: none; }
.requirements li { display: flex; gap: 15px; align-items: center; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.requirements li svg { flex: 0 0 auto; color: var(--orange); }
.guide-video-block { display: grid; grid-template-columns: .58fr 1.42fr; gap: 72px; align-items: center; margin-top: 70px; padding-top: 60px; border-top: 1px solid rgba(255,255,255,.13); }
.guide-video-block h3, .demo-video-block h3 { margin: 0 0 17px; font-size: clamp(30px, 3.2vw, 43px); line-height: 1.05; }
.guide-video-block p { max-width: 390px; margin: 0; color: rgba(255,255,255,.66); font-size: 13px; line-height: 1.7; }
.video-frame { overflow: hidden; margin: 0; background: #090e17; border: 1px solid #34405a; border-radius: var(--radius); box-shadow: 0 24px 64px rgba(0,0,0,.28); }
.video-frame video { width: 100%; aspect-ratio: 16 / 9; display: block; background: #05080d; object-fit: contain; }
.video-frame figcaption { display: flex; justify-content: space-between; gap: 25px; align-items: center; padding: 14px 17px; color: rgba(255,255,255,.88); background: #151e30; border-top: 1px solid rgba(255,255,255,.1); font-size: 11px; }
.video-frame figcaption strong { line-height: 1.45; }
.video-frame figcaption span { flex: 0 0 auto; color: rgba(255,255,255,.5); font-size: 10px; }
.pricing-section { background: var(--white); }
.pricing-grid { display: grid; grid-template-columns: .85fr 1fr; gap: 100px; align-items: start; }
.price-card { padding: 40px; background: var(--paper-blue); border: 2px solid var(--blue); border-radius: var(--radius); box-shadow: 12px 12px 0 #dbe1ff; }
.price-value { display: flex; align-items: end; gap: 12px; margin: 17px 0 12px; }
.price-value h2, .price-card h2 { margin: 0; font-size: 54px; }
.price-value > span { padding-bottom: 8px; color: var(--muted); font-size: 11px; }
.price-card > p { color: var(--muted); line-height: 1.6; }
.price-card .button { margin-top: 30px; }
.price-card .demo-link { margin-top: 11px; }
.price-card > small { display: block; margin-top: 14px; color: var(--muted); text-align: center; }
.order-steps { margin: 0; padding: 0; list-style: none; }
.order-steps li { display: grid; grid-template-columns: 42px 1fr; gap: 22px; padding: 0 0 30px; }
.order-steps li > span { width: 39px; height: 39px; display: grid; place-items: center; color: var(--white); background: var(--blue); border-radius: 10px; font-size: 11px; font-weight: 900; }
.order-steps h3 { margin: 7px 0 8px; font-size: 20px; }
.order-steps p { color: var(--muted); line-height: 1.6; }
.purchase-section { color: var(--white); background: #11192a; scroll-margin-top: 24px; }
.purchase-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 80px; align-items: start; }
.purchase-copy { padding-top: 26px; }
.purchase-copy h2 { margin: 13px 0 19px; font-size: clamp(42px, 5vw, 62px); }
.purchase-copy > p { max-width: 470px; color: rgba(255,255,255,.64); line-height: 1.75; }
.purchase-copy .simple-list { margin-top: 34px; color: rgba(255,255,255,.88); }
.purchase-copy .simple-list li { border-color: rgba(255,255,255,.14); }
.purchase-panel { color: var(--ink); box-shadow: 0 28px 80px rgba(0,0,0,.26); }
.demo-section { position: relative; overflow: hidden; background: linear-gradient(135deg, #edf1ff 0%, #f8f9fd 62%, #fff4e5 100%); scroll-margin-top: 24px; }
.demo-section::before { content: "30"; position: absolute; right: 4%; top: -48px; color: rgba(49,85,231,.055); font-size: 300px; font-weight: 900; letter-spacing: -.09em; line-height: 1; pointer-events: none; }
.demo-copy { position: relative; padding-top: 26px; }
.demo-copy h2 { margin: 13px 0 19px; font-size: clamp(42px, 5vw, 62px); }
.demo-copy > p { max-width: 470px; color: var(--muted); line-height: 1.75; }
.demo-license-note { max-width: 500px; margin-top: 28px; padding: 20px 22px; background: rgba(255,255,255,.76); border: 1px solid #d5dcf8; border-left: 4px solid var(--blue); border-radius: 0 10px 10px 0; }
.demo-license-note strong { display: block; margin-bottom: 9px; font-size: 17px; }
.demo-license-note p { margin: 7px 0 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.demo-copy .simple-list { margin-top: 24px; }
.demo-panel { position: relative; box-shadow: 0 28px 80px rgba(36,48,74,.14); }
.demo-video-block { display: grid; grid-template-columns: 1.35fr .65fr; gap: 55px; align-items: center; margin-top: 74px; padding: 40px; background: rgba(255,255,255,.68); border: 1px solid #d5dcf1; border-radius: calc(var(--radius) + 2px); }
.demo-video-block > div > p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.selected-product { display: grid; grid-template-columns: 1fr auto; gap: 5px 18px; padding: 17px 18px; background: var(--paper-blue); border: 1px solid #d8def8; border-radius: 9px; }
.selected-product span { grid-column: 1 / -1; color: var(--muted); font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.selected-product strong { font-size: 13px; line-height: 1.5; }
.selected-product b { color: var(--blue); font-size: 18px; white-space: nowrap; }
.license-options { background: var(--paper); }
.license-option-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.license-option-grid article { min-height: 290px; display: flex; flex-direction: column; padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.license-option-grid article > span { color: var(--blue); font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.license-option-grid h3 { margin: 47px 0 12px; font-size: 33px; letter-spacing: -.04em; }
.license-option-grid h3 small { color: var(--muted); font-size: 13px; font-weight: 650; }
.license-option-grid p { color: var(--muted); font-size: 13px; line-height: 1.6; }
.contact-section { min-height: 800px; padding: 145px 0 90px; background: var(--paper-blue); }
.contact-grid { display: grid; grid-template-columns: .82fr 1fr; gap: 90px; align-items: start; }
.contact-copy { padding-top: 35px; }
.contact-copy h1 { font-size: clamp(45px,5vw,68px); }
.contact-copy > p { max-width: 520px; color: var(--muted); line-height: 1.75; }
.contact-direct { display: grid; gap: 8px; margin-top: 28px; }
.contact-direct span { margin-bottom: 3px; color: var(--muted); font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.contact-direct a { width: fit-content; color: var(--blue); font-size: 15px; font-weight: 800; }
.contact-direct a:hover { text-decoration: underline; }
.contact-owner { display: grid; gap: 7px; margin-top: 48px; padding-top: 23px; border-top: 1px solid #ccd4ee; }
.contact-buy { margin-top: 22px; }
.contact-owner span, .contact-owner small { color: var(--muted); font-size: 11px; }
.requisites-section { background: var(--white); scroll-margin-top: 24px; }
.requisites-heading { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: end; margin-bottom: 42px; }
.requisites-heading h2 { margin-bottom: 0; font-size: clamp(37px, 4vw, 54px); }
.requisites-heading > p { margin-bottom: 6px; color: var(--muted); }
.requisites-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.requisites-grid article { padding: 30px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.requisites-grid h3 { margin-bottom: 27px; font-size: 22px; }
.requisites-grid dl { display: grid; gap: 0; margin: 0; }
.requisites-grid dl > div { display: grid; grid-template-columns: 145px minmax(0, 1fr); gap: 18px; padding: 13px 0; border-top: 1px solid var(--line); }
.requisites-grid dt { color: var(--muted); font-size: 11px; }
.requisites-grid dd { margin: 0; overflow-wrap: anywhere; font-size: 13px; font-weight: 700; line-height: 1.5; }
.form-panel { padding: 38px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-panel h2 { margin-bottom: 7px; font-size: 30px; }
.form-panel > p { margin-bottom: 28px; color: var(--muted); font-size: 12px; }
.order-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.order-form label { display: grid; gap: 8px; color: #4a5467; font-size: 11px; font-weight: 750; }
.order-form label > span { color: var(--muted); }
.order-form input, .order-form textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: #fafbfc; border: 1px solid #d8dde7; border-radius: 7px; outline: none; font-size: 14px; transition: border .2s, box-shadow .2s; }
.order-form textarea { resize: vertical; }
.order-form input:focus, .order-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(49,85,231,.12); }
.order-form [aria-invalid="true"] { border-color: #c94b4b; }
.edo-help { margin-top: -4px; padding: 12px 14px; background: #f7f8fb; border: 1px solid var(--line); border-radius: 8px; }
.edo-help summary { width: fit-content; display: flex; align-items: center; gap: 8px; color: var(--blue); font-size: 11px; font-weight: 850; cursor: pointer; list-style: none; }
.edo-help summary::-webkit-details-marker { display: none; }
.edo-help summary > span { width: 20px; height: 20px; display: grid; place-items: center; color: var(--white); background: var(--blue); border-radius: 50%; font-size: 11px; }
.edo-help-content { padding: 13px 3px 2px; color: var(--muted); font-size: 11px; line-height: 1.55; }
.edo-help-content p { margin: 0 0 8px; }
.edo-help-content ul { display: grid; gap: 8px; margin: 0; padding-left: 18px; }
.edo-help-content a { color: var(--blue); text-decoration: underline; }
.order-form .checkbox { display: flex; grid-template-columns: auto 1fr; align-items: start; gap: 10px; font-weight: 500; line-height: 1.4; }
.order-form .checkbox input { width: 16px; height: 16px; margin-top: 1px; accent-color: var(--blue); }
.order-form .checkbox a { text-decoration: underline; }
.form-privacy-note { margin: -7px 0 0; color: var(--muted); font-size: 10px; line-height: 1.5; }
.form-privacy-note a { color: var(--blue); text-decoration: underline; }
.form-actions { display: flex; align-items: center; gap: 15px; }
.form-note { color: var(--muted); font-size: 10px; }
.form-status { min-height: 18px; font-size: 12px; line-height: 1.4; }
.form-status.success { color: #19764e; }
.form-status.error { color: #a53b3b; }
.button.is-loading { opacity: .65; cursor: wait; }
.legal-hero h1 { margin-bottom: 18px; font-size: clamp(42px,5vw,65px); }
.legal-hero p { max-width: 700px; color: var(--muted); line-height: 1.7; }
.legal-version { width: fit-content; margin-top: 25px; padding: 8px 11px; color: var(--blue); background: rgba(255,255,255,.72); border: 1px solid #d6dcf5; border-radius: 6px; font-size: 11px; font-weight: 800; }
.legal-content { padding: 75px 0 110px; background: var(--white); }
.legal-grid { display: grid; grid-template-columns: 220px 1fr; gap: 90px; }
.legal-grid aside { position: sticky; top: 30px; height: fit-content; display: grid; gap: 11px; font-size: 11px; }
.legal-grid aside strong { margin-bottom: 8px; }
.legal-grid aside a { color: var(--muted); }
.legal-grid article { max-width: 760px; }
.legal-grid h2 { margin: 48px 0 16px; font-size: 28px; scroll-margin-top: 30px; }
.legal-grid article p { color: #566073; line-height: 1.8; }
.legal-grid article a { color: var(--blue); text-decoration: underline; }
.legal-grid article ul { display: grid; gap: 10px; margin: 18px 0 25px; padding-left: 22px; color: #566073; line-height: 1.7; }
.policy-table { display: grid; margin: 22px 0 27px; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.policy-table > div { display: grid; grid-template-columns: .8fr 1.2fr; gap: 25px; padding: 17px 18px; border-bottom: 1px solid var(--line); }
.policy-table > div:last-child { border-bottom: 0; }
.policy-table b { font-size: 12px; line-height: 1.5; }
.policy-table span { color: var(--muted); font-size: 12px; line-height: 1.6; }
.legal-notice { padding: 18px; color: #77501e; background: #fff4df; border-left: 4px solid var(--orange); font-size: 13px; line-height: 1.5; }
.not-found { min-height: 650px; display: grid; place-items: center; padding-top: 100px; text-align: center; }
.not-found span { color: var(--blue); font-size: 14px; }
.not-found h1 { margin: 15px 0; font-size: 56px; }
.not-found p { color: var(--muted); }
.not-found .button { margin-top: 20px; }

/* Cookie notice and footer */
.cookie-banner { position: fixed; z-index: 50; right: 18px; bottom: 18px; left: 18px; width: min(930px, calc(100% - 36px)); display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; margin-inline: auto; padding: 20px 22px; color: var(--ink); background: rgba(255,255,255,.97); border: 1px solid #cfd6e5; border-radius: 12px; box-shadow: 0 20px 60px rgba(16,27,53,.24); backdrop-filter: blur(14px); }
.cookie-banner[hidden] { display: none; }
.cookie-banner strong { display: block; margin-bottom: 5px; font-size: 14px; }
.cookie-banner p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
.cookie-actions { display: flex; align-items: center; gap: 17px; }
.cookie-actions > a { color: var(--blue); font-size: 11px; font-weight: 800; }
.site-footer { padding: 68px 0 24px; color: rgba(255,255,255,.56); background: #11192a; font-size: 12px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3,1fr); gap: 55px; }
.brand-footer { margin-bottom: 19px; color: var(--white); }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-grid strong { margin-bottom: 7px; color: var(--white); }
.footer-grid p { margin-bottom: 0; line-height: 1.55; }
.footer-grid a:hover { color: var(--white); }
.footer-grid .muted { color: rgba(255,255,255,.3); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 58px; padding-top: 21px; color: rgba(255,255,255,.32); border-top: 1px solid rgba(255,255,255,.1); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  :root { --shell: min(100% - 38px, 790px); }
  .menu-button { display: block; }
  .main-nav { position: absolute; top: 78px; right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 14px 19px 20px; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 18px 35px rgba(24,35,61,.1); }
  .main-nav.is-open { display: flex; }
  .main-nav > a { padding: 12px; }
  .main-nav .theme-toggle { justify-content: flex-start; margin: 7px 0; padding: 11px 12px; }
  .main-nav .button { margin-top: 7px; }
  .hero { padding-top: 133px; }
  .hero-grid, .two-col-heading, .feature-grid, .excel-grid, .faq-grid, .inner-hero-grid,
  .contact-grid, .pricing-grid, .purchase-grid, .requirements-grid { grid-template-columns: 1fr; gap: 52px; }
  .guide-video-block, .demo-video-block { grid-template-columns: 1fr; gap: 35px; }
  .hero-grid { max-width: 790px; }
  .product-visual { transform: none; }
  .report-cards, .audience-grid { grid-template-columns: 1fr; }
  .report-card { min-height: 310px; }
  .report-icon { margin-bottom: 35px; }
  .steps, .capability-grid { grid-template-columns: 1fr 1fr; }
  .license-option-grid { grid-template-columns: 1fr; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .cta-grid { grid-template-columns: 1fr; align-items: start; }
  .cta-action { justify-items: start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .detail-row { grid-template-columns: 38px 1fr; }
  .detail-screen { grid-column: 2; }
  .contact-copy { padding-top: 0; }
  .legal-grid { grid-template-columns: 1fr; gap: 35px; }
  .requisites-grid { grid-template-columns: 1fr; }
  .legal-grid aside { position: static; grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 28px); --radius: 11px; }
  .nav-wrap { height: 70px; }
  .main-nav { top: 70px; }
  .hero { min-height: auto; padding: 115px 0 64px; }
  .hero::after { display: none; }
  .hero h1, .inner-hero h1, .contact-copy h1 { font-size: 43px; }
  .hero-lead { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .text-link { padding-left: 4px; }
  .hero-meta { grid-template-columns: 1fr; }
  .hero-meta > div { padding: 11px 0; border-bottom: 1px solid #d7dbe4; }
  .product-visual img { min-height: 235px; }
  .screen-proof { right: 8px; bottom: 8px; }
  .trust-strip .shell { flex-wrap: wrap; gap: 10px 17px; padding-block: 17px; }
  .trust-strip span { width: 100%; text-align: center; }
  .section { padding: 76px 0; }
  .two-col-heading h2, .section-heading h2, .feature-copy h2, .center-heading h2,
  .excel-grid h2, .faq-grid h2, .requirements h2 { font-size: 37px; }
  .section-lead { font-size: 17px; }
  .report-card { min-height: 330px; padding: 24px; }
  .steps, .capability-grid, .footer-grid { grid-template-columns: 1fr; }
  .steps > div { min-height: 210px; }
  .audience-grid article { min-height: 205px; }
  .cta-section { padding: 62px 0; }
  .footer-bottom { flex-direction: column; }
  .inner-hero, .legal-hero { padding: 122px 0 67px; }
  .detail-row { grid-template-columns: 1fr; gap: 19px; padding: 48px 0; }
  .detail-screen { grid-column: 1; }
  .detail-row h2 { font-size: 36px; }
  .screen-gallery { grid-template-columns: 1fr; }
  .screen-gallery .wide { grid-column: 1; }
  .price-card, .form-panel { padding: 25px; }
  .price-value { align-items: start; flex-direction: column; }
  .price-value h2 { font-size: 46px; }
  .form-row { grid-template-columns: 1fr; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .contact-section { padding: 118px 0 68px; }
  .legal-grid aside { grid-template-columns: 1fr; }
  .policy-table > div { grid-template-columns: 1fr; gap: 7px; }
  .requisites-heading { grid-template-columns: 1fr; gap: 12px; }
  .requisites-grid article { padding: 23px; }
  .requisites-grid dl > div { grid-template-columns: 1fr; gap: 5px; }
  .selected-product { grid-template-columns: 1fr; }
  .selected-product b { white-space: normal; }
  .guide-video-block { margin-top: 55px; padding-top: 45px; }
  .demo-video-block { margin-top: 55px; padding: 24px; }
  .video-frame figcaption { align-items: flex-start; flex-direction: column; gap: 5px; }
  .cookie-banner { right: 10px; bottom: 10px; left: 10px; width: calc(100% - 20px); grid-template-columns: 1fr; gap: 16px; padding: 18px; }
  .cookie-actions { justify-content: space-between; }
  .dialog-price { font-size: 39px; }
}

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

/* Dark theme */
html[data-theme="dark"] {
  --ink: #eef2fb;
  --ink-2: #111a2d;
  --paper: #151c2a;
  --paper-blue: #18223a;
  --blue: #839cff;
  --blue-dark: #6f8cff;
  --orange: #ffc36a;
  --mint: #183e33;
  --muted: #aeb7c9;
  --line: #303a4d;
  --shadow: 0 22px 65px rgba(0,0,0,.38);
  color-scheme: dark;
}

[data-theme="dark"] body { color: var(--ink); background: #0e1420; }
[data-theme="dark"] .site-header {
  color: var(--ink);
  background: rgba(14,20,32,.92);
  border-color: var(--line);
}
[data-theme="dark"] .main-nav { background: transparent; }
[data-theme="dark"] .main-nav > a:not(.button),
[data-theme="dark"] .theme-toggle { color: #c4ccdc; }
[data-theme="dark"] .theme-toggle:hover { color: var(--blue); background: var(--paper-blue); border-color: #536cae; }
[data-theme="dark"] .brand-mark { box-shadow: 4px 4px 0 #2d3f78; }
[data-theme="dark"] .button-light { color: #172033; background: #fff; }
[data-theme="dark"] .button-outline { color: #b9c7ff; background: #151d2d; border-color: #495a87; }
[data-theme="dark"] .hero {
  background:
    linear-gradient(rgba(150,166,215,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(150,166,215,.055) 1px, transparent 1px),
    linear-gradient(135deg, #0d1421 0%, #17213a 100%);
  background-size: 34px 34px, 34px 34px, auto;
}
[data-theme="dark"] .hero::after { color: rgba(131,156,255,.055); }
[data-theme="dark"] .hero-glow { background: #94682d; opacity: .24; }
[data-theme="dark"] .hero-lead,
[data-theme="dark"] .section-lead { color: #b7bfd0; }
[data-theme="dark"] .hero-meta { border-color: #354057; }
[data-theme="dark"] .hero-meta strong { color: var(--ink); }
[data-theme="dark"] .trust-strip,
[data-theme="dark"] .intro-section,
[data-theme="dark"] .workflow-section,
[data-theme="dark"] .faq-section,
[data-theme="dark"] .capability-section,
[data-theme="dark"] .pricing-section,
[data-theme="dark"] .requisites-section,
[data-theme="dark"] .legal-content { background: #0e1420; }
[data-theme="dark"] .trust-strip span { color: #858fa4; }
[data-theme="dark"] .reports-section,
[data-theme="dark"] .product-screenshots { color: #fff; background: #090f1a; }
[data-theme="dark"] .report-card { background: #182238; }
[data-theme="dark"] .report-card.featured {
  color: #172033;
  background: var(--orange);
  border-color: var(--orange);
}
[data-theme="dark"] .screen-proof {
  color: #172033;
}
[data-theme="dark"] .featured .report-icon { color: #172033; }
[data-theme="dark"] .feature-section,
[data-theme="dark"] .faq-section.soft,
[data-theme="dark"] .license-options { background: var(--paper); }
[data-theme="dark"] .window-bar,
[data-theme="dark"] .screen-frame-bar { background: #171f2d; border-color: var(--line); }
[data-theme="dark"] .window-bar b,
[data-theme="dark"] .screen-frame-bar b { color: #aeb7c9; }
[data-theme="dark"] .screenshot-frame { border-color: #374257; }
[data-theme="dark"] .screenshot-frame figcaption { color: #aeb7c9; background: #151c2a; }
[data-theme="dark"] .excel-section { background: #151f35; }
[data-theme="dark"] .audience-section { background: #211a12; }
[data-theme="dark"] .audience-section .section-heading { color: var(--ink); }
[data-theme="dark"] .audience-grid article { background: #171d29; border-color: #594932; }
[data-theme="dark"] .inner-hero,
[data-theme="dark"] .legal-hero {
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 10%, rgba(255,184,77,.17), transparent 30%),
    var(--paper-blue);
  border-color: #2d3a5d;
}
[data-theme="dark"] .pill { color: #9de1c2; }
[data-theme="dark"] .price-card { background: #192440; box-shadow: 12px 12px 0 #27375f; }
[data-theme="dark"] .demo-section { background: linear-gradient(135deg, #17213a 0%, #111827 62%, #211b15 100%); }
[data-theme="dark"] .demo-section::before { color: rgba(131,156,255,.055); }
[data-theme="dark"] .demo-license-note { background: rgba(26,36,57,.88); border-color: #3b4d7c; border-left-color: var(--blue); }
[data-theme="dark"] .demo-video-block { background: rgba(18,26,42,.8); border-color: #34415d; }
[data-theme="dark"] .form-panel,
[data-theme="dark"] .license-option-grid article { background: #151c2a; }
[data-theme="dark"] .selected-product { background: #1b2742; border-color: #354774; }
[data-theme="dark"] .order-form label { color: #c2cad9; }
[data-theme="dark"] .order-form input,
[data-theme="dark"] .order-form textarea { color: var(--ink); background: #0f1624; border-color: #39445a; }
[data-theme="dark"] .order-form input::placeholder,
[data-theme="dark"] .order-form textarea::placeholder { color: #737f95; }
[data-theme="dark"] .edo-help { background: #111927; }
[data-theme="dark"] .contact-owner { border-color: #354057; }
[data-theme="dark"] .legal-version { background: rgba(20,29,48,.85); border-color: #3c4c7a; }
[data-theme="dark"] .legal-grid article p,
[data-theme="dark"] .legal-grid article ul { color: #b7bfd0; }
[data-theme="dark"] .legal-notice { color: #f2c985; background: #2a2114; }
[data-theme="dark"] .cookie-banner { color: var(--ink); background: rgba(18,25,39,.97); border-color: #3b465b; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
[data-theme="dark"] .form-status.success { color: #64d3a2; }
[data-theme="dark"] .form-status.error { color: #ff9292; }

@media (max-width: 1020px) {
  [data-theme="dark"] .main-nav { background: #0e1420; }
}
