:root {
  color-scheme: dark;
  --page: #101010;
  --surface: #171717;
  --surface-strong: #1d1d1d;
  --text: #f4f4f4;
  --muted: #a9a9a9;
  --line: #343434;
  --accent: #f4b000;
  --accent-soft: #ffd15a;
  --wrap: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--page);
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  overflow-wrap: break-word;
}

.wrap {
  width: min(calc(100% - 48px), var(--wrap));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--accent);
  color: #111;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.metrika-pixel {
  position: absolute;
  left: -9999px;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(16, 16, 16, .96);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: grid;
  grid-template-columns: 210px 1fr auto;
  min-height: 78px;
  align-items: center;
  gap: 28px;
}

.logo {
  width: max-content;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.site-nav a {
  color: #c7c7c7;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent);
}

.header-cta,
.primary-cta,
.footer-cta {
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  background: #151515;
  color: var(--accent);
  cursor: pointer;
  font-weight: 800;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.primary-cta {
  min-height: 54px;
  padding-inline: 28px;
  background: var(--accent);
  color: #111;
}

.header-cta:hover,
.footer-cta:hover,
.header-cta:focus-visible,
.footer-cta:focus-visible {
  background: var(--accent);
  color: #111;
}

.primary-cta:hover,
.primary-cta:focus-visible {
  background: var(--accent-soft);
  transform: translateY(-1px);
}

.header-cta:disabled,
.primary-cta:disabled,
.footer-cta:disabled {
  cursor: wait;
  opacity: .65;
}

.eyebrow,
.section-index {
  margin: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero {
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .93fr) minmax(440px, 1.07fr);
  min-height: min(680px, calc(100vh - 78px));
  align-items: center;
  gap: 70px;
  padding-block: 58px;
}

.hero-copy {
  min-width: 0;
}

.hero h1 {
  max-width: 650px;
  margin: 14px 0 24px;
  font-size: clamp(50px, 5.1vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1::after {
  display: block;
  width: 84px;
  height: 5px;
  margin-top: 24px;
  background: var(--accent);
  content: "";
}

.hero-lead {
  max-width: 660px;
  margin: 0;
  color: #d1d1d1;
  font-size: 19px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.link-status {
  display: flex;
  max-width: 250px;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.status-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(244, 176, 0, .12);
}

.hero-terminal {
  position: relative;
  min-width: 0;
  border: 1px solid var(--line);
  background: #0b0b0b;
}

.hero-terminal::before {
  position: absolute;
  z-index: 2;
  top: -1px;
  left: -1px;
  width: 76px;
  height: 76px;
  border-top: 3px solid var(--accent);
  border-left: 3px solid var(--accent);
  content: "";
  pointer-events: none;
}

.terminal-bar {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.terminal-bar span {
  color: var(--accent);
  font-weight: 800;
}

.terminal-bar strong {
  color: #d4d4d4;
}

.hero-terminal video {
  width: 100%;
  height: 360px;
  object-fit: cover;
  opacity: .84;
}

.terminal-options {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.terminal-options span {
  min-width: 0;
  padding: 13px 5px;
  border-right: 1px solid var(--line);
  color: #d0d0d0;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.terminal-options span:last-child {
  border-right: 0;
}

.signal-band {
  border-bottom: 1px solid var(--line);
  background: #0b0b0b;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.signal-grid > div {
  display: flex;
  min-height: 104px;
  flex-direction: column;
  justify-content: center;
  padding: 20px 24px;
  border-left: 1px solid var(--line);
}

.signal-grid > div:last-child {
  border-right: 1px solid var(--line);
}

.signal-grid small {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.signal-grid strong {
  color: var(--accent);
  font-size: 18px;
}

.intro-section,
.capabilities,
.person-search,
.report-section,
.telegram-section,
.free-section,
.safety-section,
.faq-section {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}

.intro-layout,
.free-layout {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
  gap: 96px;
}

.intro-layout h2,
.section-heading h2,
.person-copy h2,
.report-copy h2,
.telegram-title h2,
.free-layout h2,
.safety-copy h2,
.faq-heading h2 {
  margin: 12px 0 22px;
  font-size: clamp(38px, 4.1vw, 58px);
  line-height: 1.07;
  letter-spacing: 0;
}

.intro-copy,
.free-copy {
  padding-top: 26px;
  border-top: 2px solid var(--accent);
}

.intro-copy p,
.free-copy p {
  margin: 0 0 18px;
  color: #d0d0d0;
  font-size: 18px;
  line-height: 1.75;
}

.intro-copy strong {
  color: var(--accent);
}

.capabilities {
  background: var(--surface);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  column-gap: 80px;
  margin-bottom: 46px;
}

.section-heading .section-index {
  grid-column: 1 / -1;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p:last-child {
  align-self: end;
  margin: 0 0 5px;
  color: #c9c9c9;
  font-size: 17px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.capability-grid article {
  min-height: 245px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #141414;
}

.capability-grid article > span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.capability-grid h3 {
  margin: 50px 0 10px;
  font-size: 22px;
}

.capability-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.language-note {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  margin: 38px 0 0;
  padding: 22px 0;
  border-top: 2px solid var(--accent);
  border-bottom: 1px solid var(--line);
  color: #c9c9c9;
}

.language-note strong {
  color: var(--accent);
  text-transform: uppercase;
}

.person-layout,
.report-layout,
.safety-layout {
  display: grid;
  grid-template-columns: minmax(390px, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 80px;
}

.person-media {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.person-media video {
  width: 100%;
  height: 510px;
  object-fit: cover;
}

.person-media > span {
  position: absolute;
  bottom: 18px;
  left: 18px;
  padding: 8px 10px;
  background: #111;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.person-copy > p:not(.section-index):not(.search-tail),
.report-copy > p,
.safety-copy > p:not(.section-index) {
  color: #cfcfcf;
  font-size: 17px;
  line-height: 1.75;
}

.check-list {
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.check-list li > span {
  color: var(--accent);
  font-weight: 800;
}

.check-list strong {
  font-size: 16px;
}

.check-list p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.search-tail {
  margin: 24px 0 0;
  color: #929292;
  font-size: 13px;
}

.report-section {
  background: #0d0d0d;
}

.report-copy {
  order: 1;
}

.report-figure {
  order: 2;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--surface);
}

.report-figure img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.report-figure figcaption {
  padding: 15px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.report-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 28px 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.report-columns ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.report-columns li {
  padding: 13px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #d4d4d4;
  font-size: 14px;
}

.report-note {
  margin-bottom: 0;
  color: #939393 !important;
  font-size: 13px !important;
}

.telegram-section {
  background: var(--surface);
}

.telegram-layout {
  display: grid;
  grid-template-columns: minmax(260px, .68fr) minmax(340px, 1fr) minmax(260px, .7fr);
  gap: 56px;
}

.telegram-title h2 {
  margin-bottom: 0;
}

.telegram-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.telegram-steps li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.telegram-steps li > span {
  color: var(--accent);
  font-weight: 800;
}

.telegram-steps strong {
  display: block;
  margin-bottom: 4px;
}

.telegram-steps p,
.telegram-action p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.telegram-action {
  padding: 24px;
  border: 1px solid var(--line);
  background: #111;
}

.telegram-action .primary-cta {
  width: 100%;
  margin-top: 28px;
}

.free-section {
  background: #0b0b0b;
}

.free-copy p:last-child {
  color: #9a9a9a;
  font-size: 14px;
}

.safety-copy {
  order: 2;
}

.safety-visual {
  order: 1;
}

.safety-visual img {
  width: 100%;
  min-height: 360px;
  border: 1px solid var(--line);
  object-fit: cover;
}

.safety-visual p {
  margin: 10px 0 0;
  color: #858585;
  font-size: 12px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, .68fr) minmax(0, 1.32fr);
  gap: 82px;
}

.faq-heading {
  position: sticky;
  top: 108px;
  align-self: start;
}

.faq-heading p:last-child {
  color: var(--muted);
}

.faq-list {
  border-top: 2px solid var(--accent);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 22px 48px 22px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 3px;
  color: var(--accent);
  content: "+";
  font-size: 26px;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 760px;
  margin: 0;
  padding: 0 0 24px;
  color: #bdbdbd;
}

.site-footer {
  padding: 38px 0;
  border-top: 2px solid var(--accent);
  background: #0a0a0a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 48px;
}

.footer-grid p {
  max-width: 460px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #8f8f8f;
  font-size: 12px;
}

@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero-grid,
  .intro-layout,
  .person-layout,
  .report-layout,
  .free-layout,
  .safety-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-terminal {
    max-width: 760px;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    margin-bottom: 18px;
  }

  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .person-media {
    min-height: 420px;
  }

  .person-media video {
    height: 420px;
  }

  .report-copy,
  .safety-copy {
    order: 1;
  }

  .report-figure,
  .safety-visual {
    order: 2;
  }

  .telegram-layout {
    grid-template-columns: 1fr 1.2fr;
  }

  .telegram-action {
    grid-column: 1 / -1;
  }

  .faq-heading {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
  }

  .footer-meta {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 720px) {
  .wrap {
    width: min(calc(100% - 32px), var(--wrap));
  }

  .header-inner {
    min-height: 68px;
    gap: 14px;
  }

  .logo img {
    width: 152px;
    height: auto;
  }

  .header-cta {
    min-height: 42px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .hero-grid {
    gap: 32px;
    padding-block: 44px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .link-status {
    max-width: none;
  }

  .hero-terminal video {
    height: 300px;
  }

  .signal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signal-grid > div {
    min-height: 88px;
    border-bottom: 1px solid var(--line);
  }

  .intro-section,
  .capabilities,
  .person-search,
  .report-section,
  .telegram-section,
  .free-section,
  .safety-section,
  .faq-section {
    padding: 66px 0;
  }

  .intro-layout h2,
  .section-heading h2,
  .person-copy h2,
  .report-copy h2,
  .telegram-title h2,
  .free-layout h2,
  .safety-copy h2,
  .faq-heading h2 {
    font-size: 36px;
  }

  .capability-grid {
    grid-template-columns: 1fr;
  }

  .capability-grid article {
    min-height: 190px;
  }

  .capability-grid h3 {
    margin-top: 32px;
  }

  .language-note {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .telegram-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .telegram-action {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-meta {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-cta {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 37px;
  }

  .hero-terminal {
    display: none;
  }

  .terminal-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .terminal-options span:nth-child(3) {
    border-right: 0;
  }

  .terminal-options span:nth-child(n+4) {
    border-top: 1px solid var(--line);
  }

  .intro-section,
  .capabilities,
  .person-search,
  .report-section,
  .telegram-section,
  .free-section,
  .safety-section,
  .faq-section {
    padding: 54px 0;
  }

  .intro-layout,
  .person-layout,
  .report-layout,
  .free-layout,
  .safety-layout,
  .faq-layout {
    gap: 30px;
  }

  .intro-layout h2,
  .section-heading h2,
  .person-copy h2,
  .report-copy h2,
  .telegram-title h2,
  .free-layout h2,
  .safety-copy h2,
  .faq-heading h2 {
    font-size: 31px;
  }

  .person-media,
  .person-media video {
    min-height: 290px;
    height: 290px;
  }

  .report-columns {
    grid-template-columns: 1fr;
  }

  .report-figure img,
  .safety-visual img {
    min-height: 260px;
  }
}

@media (max-width: 360px) {
  .header-inner {
    grid-template-columns: 1fr;
  }

  .header-cta {
    display: none;
  }

  .hero-grid {
    padding-block: 30px 24px;
  }

  .hero h1 {
    margin-bottom: 18px;
    font-size: 34px;
  }

  .hero h1::after {
    margin-top: 16px;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .link-status {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
