:root {
  --ink: #111315;
  --ink-soft: #22262a;
  --paper: #f3f1ea;
  --white: #fff;
  --line: rgba(17, 19, 21, 0.18);
  --amber: #e7a23c;
  --amber-bright: #ffb64d;
  --red: #d84434;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-180%);
}

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

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  display: flex;
  width: min(calc(100% - 64px), var(--max));
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--white);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.brand-name {
  max-width: 21rem;
  font-weight: 750;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: var(--white);
}

.hero {
  position: relative;
  display: grid;
  min-height: 730px;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 11, 12, 0.94) 0%, rgba(10, 11, 12, 0.84) 31%, rgba(10, 11, 12, 0.22) 62%, rgba(10, 11, 12, 0.08) 100%),
    linear-gradient(0deg, rgba(10, 11, 12, 0.78) 0%, transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 64px), var(--max));
  margin: 0 auto;
  padding: 190px 0 86px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1.5rem;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--amber-bright);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 890px;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 6.8vw, 6.25rem);
  font-weight: 720;
  letter-spacing: -0.065em;
  line-height: 0.93;
  overflow-wrap: anywhere;
}

.hero-lead {
  max-width: 630px;
  margin-bottom: 2.2rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.5;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--amber-bright);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
}

.hero-link span {
  color: var(--amber-bright);
}

.warning {
  display: grid;
  grid-template-columns: minmax(200px, 0.36fr) minmax(0, 1fr);
  min-width: 0;
  width: min(calc(100% - 64px), var(--max));
  margin: -1px auto 0;
  background: var(--amber);
}

.warning-label {
  display: flex;
  min-width: 0;
  min-height: 100%;
  align-items: flex-start;
  gap: 1rem;
  padding: 3.5rem 2.5rem;
  border-right: 1px solid rgba(17, 19, 21, 0.3);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.warning-icon {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 2px solid var(--ink);
  font-size: 1.2rem;
  line-height: 1;
}

.warning-copy {
  min-width: 0;
  padding: 3.5rem clamp(2rem, 6vw, 5rem) 4rem;
  overflow-wrap: anywhere;
}

.warning h2 {
  max-width: 850px;
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 4.2vw, 4rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.warning-copy > p {
  max-width: 870px;
  font-size: 1.09rem;
}

.warning-copy h3 {
  max-width: 870px;
  margin: 3rem 0 1rem;
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.legal-lead {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(17, 19, 21, 0.35);
  font-weight: 650;
}

.domain {
  font-weight: 800;
  overflow-wrap: anywhere;
}

.fraud-resource {
  max-width: 870px;
  margin: 2.5rem 0;
  padding: 2rem;
  background: var(--ink);
  color: var(--white);
}

.fraud-resource > span {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--amber-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.fraud-resource > strong {
  display: block;
  margin-bottom: 1rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
}

.fraud-resource p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.notice-list {
  max-width: 870px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: notice-item;
  border-top: 1px solid rgba(17, 19, 21, 0.35);
}

.notice-list li {
  position: relative;
  min-height: 68px;
  padding: 1.15rem 0 1.15rem 3.7rem;
  border-bottom: 1px solid rgba(17, 19, 21, 0.35);
  counter-increment: notice-item;
}

.notice-list li::before {
  position: absolute;
  top: 1.25rem;
  left: 0;
  content: counter(notice-item, decimal-leading-zero);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  font-weight: 800;
}

.recommendation-list {
  counter-reset: none;
}

.recommendation-list li {
  counter-increment: none;
}

.recommendation-list li::before {
  content: "—";
  font-family: inherit;
  font-size: 1.1rem;
}

.official-resource {
  margin: 2.5rem 0;
  padding: 1.5rem 1.7rem;
  border: 1px solid rgba(17, 19, 21, 0.45);
  background: rgba(255, 255, 255, 0.16);
}

.action-block {
  max-width: 870px;
  margin: 3rem 0;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--ink);
  color: var(--white);
}

.action-block h3 {
  margin-top: 0;
  color: var(--white);
}

.action-block > p {
  color: rgba(255, 255, 255, 0.68);
}

.urgent-list {
  border-color: rgba(255, 255, 255, 0.22);
}

.urgent-list li {
  border-color: rgba(255, 255, 255, 0.22);
}

.urgent-list li::before {
  color: var(--amber-bright);
}

.warning-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 2.3rem 0;
  border-top: 1px solid rgba(17, 19, 21, 0.35);
  border-bottom: 1px solid rgba(17, 19, 21, 0.35);
}

.warning-actions div {
  display: grid;
  min-height: 126px;
  align-content: space-between;
  padding: 1.25rem 1.3rem;
  border-right: 1px solid rgba(17, 19, 21, 0.35);
}

.warning-actions div:last-child {
  border-right: 0;
}

.warning-actions span {
  font-size: 0.76rem;
  font-weight: 800;
}

.warning-actions strong {
  max-width: 190px;
  font-size: 0.94rem;
  line-height: 1.35;
}

.warning-note {
  margin-bottom: 0;
  padding-left: 1.2rem;
  border-left: 4px solid var(--red);
  font-weight: 680;
}

.section {
  display: grid;
  grid-template-columns: minmax(200px, 0.36fr) minmax(0, 1fr);
  width: min(calc(100% - 64px), var(--max));
  margin: 0 auto;
  padding: 8rem 0;
}

.section-kicker {
  color: rgba(17, 19, 21, 0.52);
}

.section-content {
  min-width: 0;
}

.section h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.details {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 8rem max(32px, calc((100% - var(--max)) / 2));
  background: var(--ink);
  color: var(--white);
}

.section-kicker.light {
  color: rgba(255, 255, 255, 0.45);
}

.details-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.2rem;
}

.details-heading h2 {
  margin-bottom: 0.8rem;
}

.details-heading p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
}

.details-heading .search-aliases {
  max-width: 720px;
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.status {
  flex: 0 0 auto;
  padding: 0 0 0.2rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.status i {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 0.55rem;
  border-radius: 50%;
  background: #5fbd7a;
  box-shadow: 0 0 0 4px rgba(95, 189, 122, 0.12);
}

.requisites {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.requisites > div {
  display: grid;
  grid-template-columns: minmax(145px, 0.7fr) minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.25rem 1.25rem 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.requisites > div:nth-child(even):not(.wide) {
  padding-left: 1.25rem;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.requisites .wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
}

.requisites dt {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}

.requisites dd {
  margin: 0;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.75rem;
  margin-top: 2.5rem;
}

.source-links p {
  width: 100%;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
}

.source-links a {
  color: var(--amber-bright);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.35rem;
}

.source-links .source-logo {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--white);
}

.source-logo img {
  display: block;
  width: 109px;
  height: 20px;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  width: min(calc(100% - 64px), var(--max));
  margin: 0 auto;
  padding: 2rem 0;
  color: rgba(17, 19, 21, 0.72);
  font-size: 0.82rem;
}

footer p {
  margin: 0;
}

.footer-brand {
  color: var(--ink);
  font-weight: 800;
}

@media (max-width: 960px) {
  .site-header {
    width: min(calc(100% - 40px), var(--max));
  }

  nav {
    gap: 1.2rem;
  }

  .hero-content,
  .warning,
  .section,
  footer {
    width: min(calc(100% - 40px), var(--max));
  }

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

  .warning-label {
    min-height: auto;
    padding: 2rem;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 19, 21, 0.3);
  }

  .section-kicker {
    margin-bottom: 2.8rem;
  }

  .details {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }

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

  .requisites > div,
  .requisites > div:nth-child(even):not(.wide),
  .requisites .wide {
    grid-column: auto;
    grid-template-columns: minmax(180px, 0.5fr) minmax(0, 1fr);
    padding: 1.15rem 0;
    border-left: 0;
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 74px;
  }

  .brand-name {
    max-width: 150px;
    font-size: 0.92rem;
  }

  nav a {
    display: none;
  }

  nav a:first-child {
    display: block;
    color: var(--amber-bright);
    font-size: 0.78rem;
    font-weight: 750;
  }

  .hero {
    min-height: 690px;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 11, 12, 0.9), rgba(10, 11, 12, 0.46)),
      linear-gradient(0deg, rgba(10, 11, 12, 0.93) 4%, rgba(10, 11, 12, 0.38) 70%);
  }

  .hero-content {
    padding-bottom: 3.8rem;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .warning-copy {
    padding: 2.4rem 1.5rem 3rem;
  }

  .warning h2 {
    font-size: 2.25rem;
  }

  .fraud-resource,
  .action-block {
    margin-right: -1.5rem;
    margin-left: -1.5rem;
  }

  .notice-list li {
    padding-left: 3rem;
  }

  .warning-actions,
  .requisites {
    grid-template-columns: 1fr;
  }

  .warning-actions div,
  .warning-actions div:last-child {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 19, 21, 0.35);
  }

  .warning-actions div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 5rem 0;
  }

  .details {
    width: 100%;
  }

  .details-heading {
    display: block;
  }

  .status {
    display: block;
    margin-top: 1.5rem;
  }

  .requisites > div,
  .requisites > div:nth-child(even):not(.wide),
  .requisites .wide {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 0.45rem;
    padding: 1rem 0;
    border-left: 0;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

@media (max-width: 420px) {
  nav {
    display: none;
  }

  h1 {
    font-size: 2.25rem;
  }
}

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