:root {
  --ink: #111315;
  --ink-soft: #1a1d20;
  --ink-line: #30353a;
  --paper: #f3f0e9;
  --paper-deep: #e7e2d8;
  --white: #fffdf8;
  --muted: #666b70;
  --signal: #ff6842;
  --signal-deep: #e94a27;
  --lime: #b8f36a;
  --blue: #59a9ff;
  --line: rgba(17, 19, 21, .14);
  --radius: 22px;
  --shell: min(1240px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans SC", "Source Han Sans SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}
body::selection { color: var(--ink); background: var(--lime); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; top: -80px; left: 20px; z-index: 100; padding: 10px 16px; color: #fff; background: var(--signal); border-radius: 0 0 8px 8px; }
.skip-link:focus { top: 0; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 82px;
  color: #f7f4ed;
  background: rgba(17, 19, 21, .94);
  border-bottom: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(16px);
}
.topbar-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.identity { display: inline-flex; align-items: center; gap: 13px; min-width: 190px; }
.identity-mark { position: relative; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 12px; background: #202428; overflow: hidden; }
.identity-mark::before { content: ""; position: absolute; inset: 7px; border: 1px solid var(--signal); transform: rotate(45deg); }
.identity-mark i { position: relative; z-index: 1; width: 4px; height: 4px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 12px var(--lime); }
.identity-mark i:first-child { position: absolute; left: 9px; top: 9px; }
.identity-mark i:last-child { position: absolute; right: 9px; bottom: 9px; }
.identity-copy { display: grid; line-height: 1.2; }
.identity-copy strong { font-size: 17px; letter-spacing: .08em; }
.identity-copy small { margin-top: 5px; color: #92999f; font-size: 10px; letter-spacing: .15em; }
.main-nav { display: flex; align-items: center; gap: 32px; font-size: 13px; }
.main-nav > a:not(.nav-contact) { position: relative; color: #c5c9cc; transition: color .2s ease; }
.main-nav > a:not(.nav-contact)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; background: var(--signal); transition: right .25s ease; }
.main-nav > a:hover { color: #fff; }
.main-nav > a:hover::after { right: 0; }
.nav-contact { padding: 11px 17px; color: var(--ink); background: var(--lime); border-radius: 8px; font-weight: 800; }
.menu-toggle { display: none; }

.hero { position: relative; min-height: 760px; overflow: hidden; color: #fff; background: var(--ink); }
.hero-grid { position: absolute; inset: 0; opacity: .24; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 56px 56px; mask-image: linear-gradient(to bottom, black 30%, transparent 100%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .16; pointer-events: none; }
.hero-glow-one { width: 520px; height: 520px; right: -160px; top: -210px; background: var(--signal); }
.hero-glow-two { width: 380px; height: 380px; left: 33%; bottom: -330px; background: var(--lime); }
.hero-layout { position: relative; z-index: 2; min-height: 678px; display: grid; grid-template-columns: minmax(0, .94fr) minmax(500px, 1.06fr); align-items: center; gap: 76px; padding-block: 76px 66px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 25px; color: #afb5b9; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow span { width: 30px; height: 2px; background: var(--signal); }
.hero h1 { margin: 0; font-size: clamp(54px, 5.25vw, 82px); line-height: 1.06; letter-spacing: -.055em; font-weight: 900; }
.hero h1 em { color: var(--lime); font-style: normal; }
.hero-lead { max-width: 660px; margin: 28px 0 0; color: #b9bec1; font-size: 17px; line-height: 1.9; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 25px; padding: 0 22px; border: 1px solid rgba(255,255,255,.2); border-radius: 10px; font-size: 14px; font-weight: 800; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-signal { color: #fff; background: var(--signal); border-color: var(--signal); box-shadow: 0 13px 30px rgba(255,104,66,.2); }
.button-signal:hover { background: var(--signal-deep); border-color: var(--signal-deep); }
.button-signal b { font-size: 18px; }
.button-ghost { color: #eef0f1; background: rgba(255,255,255,.04); }
.button-ghost:hover { border-color: rgba(255,255,255,.48); background: rgba(255,255,255,.08); }
.hero-checks { display: flex; flex-wrap: wrap; gap: 23px; margin: 25px 0 0; padding: 0; list-style: none; color: #8f979c; font-size: 12px; }
.hero-checks li::before { content: ""; display: inline-block; width: 6px; height: 6px; margin-right: 8px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 10px rgba(184,243,106,.7); vertical-align: 1px; }

.network-console { border: 1px solid rgba(255,255,255,.13); border-radius: 24px; background: rgba(26,29,32,.82); box-shadow: 0 30px 80px rgba(0,0,0,.38); backdrop-filter: blur(14px); overflow: hidden; }
.console-head { height: 55px; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.console-label { color: #7e878d; }
.live-state { display: inline-flex; align-items: center; gap: 7px; color: var(--lime); }
.live-state i { width: 7px; height: 7px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 0 5px rgba(184,243,106,.09), 0 0 16px var(--lime); animation: livePulse 1.8s ease-in-out infinite; }
.network-map { padding: 6px 20px 0; }
.network-map svg { width: 100%; height: auto; overflow: visible; }
.network-lines path { stroke-dasharray: 7 9; animation: lineFlow 5s linear infinite; }
.network-pulses circle { filter: drop-shadow(0 0 8px var(--signal)); animation: mapPulse 2.2s ease-in-out infinite; }
.network-map text { fill: #f2f3f3; font-family: inherit; font-size: 14px; font-weight: 800; }
.network-map .node-sub { fill: #899198; font-size: 8px; letter-spacing: .2em; }
.console-jobs { border-top: 1px solid rgba(255,255,255,.09); }
.console-jobs > div { min-height: 66px; display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 12px; padding: 10px 18px; border-bottom: 1px solid rgba(255,255,255,.07); }
.console-jobs > div:last-child { border-bottom: 0; }
.console-jobs > div > span { color: #646c72; font-size: 11px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.console-jobs p { display: grid; margin: 0; line-height: 1.35; }
.console-jobs p b { font-size: 12px; }
.console-jobs p small { margin-top: 4px; color: #777f84; font-size: 10px; }
.console-jobs i { padding: 4px 7px; border: 1px solid currentColor; border-radius: 4px; font-size: 8px; font-style: normal; font-weight: 900; letter-spacing: .1em; }
.status-ready { color: var(--lime); }
.status-run { color: var(--signal); }

.engine-rail { color: #d6d9db; background: #25292d; border-top: 1px solid #33383c; border-bottom: 1px solid #33383c; }
.engine-list { min-height: 72px; display: grid; grid-template-columns: 1.25fr repeat(6, 1fr); align-items: center; }
.engine-list span, .engine-list b { padding-inline: 14px; border-right: 1px solid rgba(255,255,255,.08); font-size: 11px; letter-spacing: .08em; white-space: nowrap; }
.engine-list span { color: var(--signal); font-weight: 900; }
.engine-list b { color: #a9afb3; text-align: center; }

.section { padding: 120px 0; }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 70px; margin-bottom: 56px; }
.section-index { display: block; margin-bottom: 18px; color: var(--signal-deep); font-size: 11px; font-weight: 900; letter-spacing: .18em; }
.section-heading h2, .workflow-intro h2, .faq-title h2 { margin: 0; font-size: clamp(38px, 4.2vw, 62px); line-height: 1.14; letter-spacing: -.045em; }
.section-heading p, .workflow-intro > p, .faq-title > p { margin: 0; color: var(--muted); line-height: 1.95; }
.capability-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 16px; }
.capability-card { position: relative; min-height: 310px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,253,248,.8); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.capability-card:hover { transform: translateY(-5px); box-shadow: 0 24px 50px rgba(29,31,33,.09); }
.capability-featured { grid-row: span 2; min-height: 636px; padding: 38px; background: var(--signal); border-color: var(--signal); color: #fff; }
.capability-dark { color: #fff; background: var(--ink); border-color: var(--ink); }
.card-number { margin-bottom: 58px; color: rgba(17,19,21,.38); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11px; letter-spacing: .16em; }
.capability-featured .card-number, .capability-dark .card-number { color: rgba(255,255,255,.5); }
.capability-card h3 { margin: 0 0 17px; font-size: 25px; line-height: 1.3; }
.capability-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.9; }
.capability-featured p, .capability-dark p { color: rgba(255,255,255,.7); }
.capability-card a { position: absolute; left: 30px; bottom: 27px; font-size: 12px; font-weight: 900; }
.capability-card a span { margin-left: 8px; color: var(--signal); font-size: 17px; }
.capability-featured ul { margin: 40px 0 0; padding: 0; list-style: none; }
.capability-featured li { padding: 15px 0; border-top: 1px solid rgba(255,255,255,.24); font-size: 13px; font-weight: 800; }
.card-icon { width: 150px; height: 150px; display: grid; place-items: center; margin: 15px 0 53px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; }
.card-icon::before { content: ""; width: 76px; height: 76px; border: 2px solid #fff; transform: rotate(45deg); }
.card-icon span { position: absolute; width: 9px; height: 9px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 14px rgba(184,243,106,.8); }
.card-icon span:first-child { transform: translate(-52px,-30px); }
.card-icon span:last-child { transform: translate(52px,30px); }
.mini-log { display: grid; grid-template-columns: 1fr auto auto; gap: 10px; margin-top: 13px; padding: 10px 0; border-top: 1px solid rgba(255,255,255,.13); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 9px; }
.mini-log span { color: #9ea5aa; }
.mini-log b { color: var(--lime); }
.mini-log i { color: #6e767c; font-style: normal; }

.workflow { background: var(--paper-deep); border-block: 1px solid var(--line); }
.workflow-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; }
.workflow-intro { position: sticky; top: 130px; align-self: start; }
.workflow-intro > p { margin-top: 28px; max-width: 470px; }
.text-action { display: inline-flex; align-items: center; gap: 20px; margin-top: 32px; padding-bottom: 7px; border-bottom: 2px solid var(--signal); font-size: 13px; font-weight: 900; }
.text-action b { font-size: 18px; }
.workflow-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.workflow-steps li { min-height: 172px; display: grid; grid-template-columns: 85px 1fr; gap: 25px; padding: 36px 10px; border-bottom: 1px solid var(--line); }
.workflow-steps li > span { color: var(--signal-deep); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 13px; font-weight: 900; }
.workflow-steps h3 { margin: 0 0 10px; font-size: 24px; }
.workflow-steps p { margin: 0; color: var(--muted); font-size: 14px; }

.evidence { color: #fff; background: var(--ink); }
.section-heading.inverse .section-index { color: var(--lime); }
.section-heading.inverse p { color: #949ba0; }
.evidence-layout { display: block; max-width: 980px; margin-inline: auto; }
.screen-card { margin: 0; border: 1px solid #30353a; border-radius: var(--radius); background: #1a1d20; overflow: hidden; }
.screen-top { height: 48px; display: flex; align-items: center; gap: 7px; padding: 0 16px; border-bottom: 1px solid #30353a; }
.screen-top span { margin-right: auto; color: #90989e; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 9px; letter-spacing: .12em; }
.screen-top i { width: 7px; height: 7px; background: #555c61; border-radius: 50%; }
.screen-card img { width: 100%; aspect-ratio: 1.55 / 1; object-fit: cover; object-position: top; filter: saturate(.82) contrast(1.03); }
.screen-card:not(.screen-wide) img { aspect-ratio: .8 / 1; }
.screen-card figcaption { display: grid; gap: 4px; padding: 18px 20px; border-top: 1px solid #30353a; }
.screen-card figcaption b { font-size: 13px; }
.screen-card figcaption span { color: #7e868c; font-size: 11px; }
.service-specs { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 18px; border: 1px solid #30353a; border-radius: 16px; overflow: hidden; }
.service-specs > div { display: grid; gap: 8px; padding: 25px; border-right: 1px solid #30353a; }
.service-specs > div:last-child { border-right: 0; }
.service-specs small { color: #747c82; font-size: 10px; letter-spacing: .08em; }
.service-specs strong { font-size: 13px; }

.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }
.faq-title p { max-width: 390px; margin-top: 24px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 88px; display: grid; grid-template-columns: 52px 1fr 28px; align-items: center; gap: 15px; cursor: pointer; list-style: none; font-size: 17px; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--signal-deep); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; }
.faq-list summary i { position: relative; width: 22px; height: 22px; }
.faq-list summary i::before, .faq-list summary i::after { content: ""; position: absolute; left: 5px; right: 5px; top: 10px; height: 2px; background: var(--ink); transition: transform .2s ease; }
.faq-list summary i::after { transform: rotate(90deg); }
.faq-list details[open] summary i::after { transform: rotate(0); }
.faq-list details p { margin: -5px 40px 30px 67px; color: var(--muted); font-size: 14px; line-height: 1.9; }

.contact-band { padding: 20px 0 28px; background: #fff; border-bottom: 1px solid var(--line); }
.telegram-panel { display: grid; grid-template-columns: auto 1fr minmax(420px, .8fr); align-items: center; gap: 28px; padding: 36px; color: #fff; background: var(--signal); border-radius: 26px; box-shadow: 0 24px 60px rgba(233,74,39,.2); }
.telegram-symbol { width: 74px; height: 74px; display: grid; place-items: center; background: #2aabee; border-radius: 20px; box-shadow: 0 14px 30px rgba(20, 91, 130, .22); }
.telegram-symbol img { width: 46px; height: 46px; }
.telegram-main small { font-size: 9px; font-weight: 900; letter-spacing: .14em; opacity: .72; }
.telegram-main h2 { margin: 8px 0 6px; font-size: 26px; line-height: 1.35; }
.telegram-main p { margin: 0; font-size: 12px; opacity: .78; }
.telegram-owner { display: flex; align-items: center; gap: 10px; margin: 8px 0 7px; }
.telegram-owner > img { width: 42px; height: 42px; flex: 0 0 42px; }
.telegram-owner > span { display: grid; }
.telegram-owner h2 { margin: 0; }
.telegram-owner a, .telegram-main p a { color: #fff; font-size: 12px; font-weight: 900; text-decoration: underline; text-underline-offset: 3px; }
.telegram-links { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.telegram-links a { display: grid; min-height: 108px; padding: 16px; color: var(--ink); background: #fff; border-radius: 14px; transition: transform .2s ease; }
.telegram-links a:hover { transform: translateY(-3px); }
.telegram-links span { color: #8a8f93; font-size: 9px; }
.telegram-links strong { margin-top: 3px; font-size: 15px; }
.telegram-links b { align-self: end; color: var(--signal-deep); font-size: 10px; }

.footer { padding: 60px 0 25px; color: #d3d6d8; background: var(--ink); border-top: 1px solid #2e3236; }
.footer-main { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-bottom: 45px; }
.identity-footer .identity-copy small { color: #777f85; }
.footer-links { display: flex; flex-wrap: wrap; gap: 28px; color: #8d9499; font-size: 12px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 22px; color: #666e74; border-top: 1px solid #292d30; font-size: 10px; }

.error-page { min-height: 100vh; display: grid; place-items: center; padding: 32px; color: #fff; background: var(--ink); }
.error-card { width: min(620px, 100%); padding: 54px; border: 1px solid #34393d; border-radius: 28px; background: #1a1d20; box-shadow: 0 30px 80px rgba(0,0,0,.36); }
.error-code { display: block; color: var(--signal); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; font-weight: 900; letter-spacing: .18em; }
.error-card h1 { margin: 18px 0 14px; font-size: clamp(42px, 8vw, 72px); line-height: 1.08; letter-spacing: -.05em; }
.error-card p { margin: 0 0 28px; color: #9ba2a7; }
.error-card .button { width: fit-content; }

.reveal { opacity: 1; transform: none; }
.reveal.is-visible { animation: revealIn .72s cubic-bezier(.2,.65,.25,1) both; }
.reveal-delay.is-visible { animation-delay: .12s; }
.reveal-delay-one.is-visible { animation-delay: .08s; }
.reveal-delay-two.is-visible { animation-delay: .16s; }

@keyframes lineFlow { to { stroke-dashoffset: -64; } }
@keyframes livePulse { 50% { opacity: .55; transform: scale(.72); } }
@keyframes mapPulse { 50% { opacity: .35; transform: scale(.72); transform-origin: center; } }
@keyframes revealIn { from { opacity: .22; transform: translateY(24px); } to { opacity: 1; transform: none; } }

@media (max-width: 1100px) {
  .hero-layout { grid-template-columns: 1fr 1fr; gap: 35px; }
  .hero h1 { font-size: clamp(48px, 6vw, 66px); }
  .capability-grid { grid-template-columns: 1fr 1fr; }
  .capability-featured { grid-row: span 2; }
  .capability-dark { grid-column: 2; }
  .telegram-panel { grid-template-columns: auto 1fr; }
  .telegram-links { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 32px, 680px); --radius: 18px; }
  .topbar { height: 70px; }
  .menu-toggle { width: 42px; height: 42px; display: grid; place-content: center; gap: 4px; padding: 0; color: transparent; background: #24282b; border: 1px solid #353a3e; border-radius: 10px; }
  .menu-toggle span { width: 18px; height: 2px; background: #e9ebec; transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle b { position: absolute; width: 1px; height: 1px; overflow: hidden; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .main-nav { position: absolute; left: 16px; right: 16px; top: 78px; display: none; padding: 14px; background: #1a1d20; border: 1px solid #30353a; border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,.36); }
  .main-nav.is-open { display: grid; }
  .main-nav a { padding: 12px 10px; }
  .nav-contact { text-align: center; }
  .hero { min-height: auto; }
  .hero-layout { min-height: 0; grid-template-columns: 1fr; gap: 46px; padding-block: 65px 58px; }
  .hero h1 { font-size: clamp(44px, 12vw, 62px); }
  .network-console { max-width: 620px; width: 100%; margin-inline: auto; }
  .engine-list { min-height: 64px; display: flex; gap: 24px; overflow-x: auto; scrollbar-width: none; }
  .engine-list::-webkit-scrollbar { display: none; }
  .engine-list span, .engine-list b { flex: 0 0 auto; border-right: 0; }
  .section { padding: 88px 0; }
  .section-heading, .workflow-layout, .faq-layout { grid-template-columns: 1fr; gap: 36px; }
  .section-heading h2, .workflow-intro h2, .faq-title h2 { font-size: clamp(36px, 9vw, 50px); }
  .capability-grid { grid-template-columns: 1fr 1fr; }
  .capability-featured { grid-row: auto; grid-column: 1 / -1; min-height: 520px; }
  .capability-dark { grid-column: 1 / -1; }
  .workflow-intro { position: static; }
  .evidence-layout { grid-template-columns: 1fr; }
  .screen-card:not(.screen-wide) img { aspect-ratio: 1.35 / 1; }
  .service-specs { grid-template-columns: 1fr 1fr; }
  .service-specs > div:nth-child(2) { border-right: 0; }
  .service-specs > div:nth-child(-n+2) { border-bottom: 1px solid #30353a; }
  .telegram-panel { grid-template-columns: auto 1fr; padding: 28px; }
  .telegram-links { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 28px); }
  body { font-size: 15px; }
  .identity { min-width: 0; }
  .identity-mark { width: 35px; height: 35px; }
  .identity-copy strong { font-size: 15px; }
  .identity-copy small { font-size: 8px; }
  .hero-layout { padding-top: 52px; }
  .eyebrow { margin-bottom: 18px; font-size: 10px; }
  .hero h1 { font-size: clamp(40px, 12vw, 52px); line-height: 1.1; }
  .hero-lead { margin-top: 22px; font-size: 15px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-checks { gap: 10px 18px; }
  .network-map { padding-inline: 4px; }
  .console-jobs > div { grid-template-columns: 27px 1fr auto; padding-inline: 12px; }
  .section { padding: 72px 0; }
  .section-heading { margin-bottom: 35px; }
  .section-heading h2, .workflow-intro h2, .faq-title h2 { font-size: 36px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-featured, .capability-dark { grid-column: auto; }
  .capability-featured { min-height: 540px; padding: 30px; }
  .capability-card { min-height: 280px; padding: 26px; }
  .capability-card a { left: 26px; }
  .workflow-steps li { grid-template-columns: 50px 1fr; min-height: 150px; padding: 28px 0; }
  .screen-card img, .screen-card:not(.screen-wide) img { aspect-ratio: 1.12 / 1; }
  .service-specs { grid-template-columns: 1fr; }
  .service-specs > div { border-right: 0; border-bottom: 1px solid #30353a; }
  .service-specs > div:last-child { border-bottom: 0; }
  .faq-list summary { grid-template-columns: 38px 1fr 24px; min-height: 78px; font-size: 15px; }
  .faq-list details p { margin: -2px 24px 27px 53px; }
  .contact-band { padding-bottom: 70px; }
  .telegram-panel { grid-template-columns: 1fr; padding: 24px; }
  .telegram-symbol { width: 60px; height: 60px; border-radius: 16px; }
  .telegram-symbol img { width: 38px; height: 38px; }
  .telegram-main h2 { font-size: 23px; }
  .telegram-owner > img { width: 36px; height: 36px; flex-basis: 36px; }
  .telegram-links { grid-template-columns: 1fr; }
  .telegram-links a { min-height: 98px; }
  .footer-main, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-links { gap: 14px 20px; }
  .error-page { padding: 18px; }
  .error-card { padding: 34px 25px; border-radius: 20px; }
}

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