:root {
  --ink: #151515;
  --soft-ink: #4d4d4d;
  --muted: #767676;
  --paper: #f4f0e8;
  --paper-light: #fffaf2;
  --white: #ffffff;
  --line: #d8d0c2;
  --red: #b01423;
  --red-dark: #7b0e18;
  --olive: #536245;
  --sand: #e4d3b4;
  --blue-black: #111820;
  --shadow: 0 22px 55px rgba(17, 24, 32, 0.11);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(176, 20, 35, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, #f7f3ea 0%, #f2eee5 48%, #ebe5d9 100%);
  background-size:
    54px 54px,
    auto;
  line-height: 1.65;
  overflow-x: hidden;
}
img {
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
.topbar {
  background: var(--paper-light);
  border-bottom: 1px solid var(--line);
}
.topbar__ad {
  background: var(--blue-black);
  color: #fff;
  text-align: center;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.masthead {
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand__mark {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  font-weight: 900;
  letter-spacing: -0.06em;
  border: 3px double #fff;
  box-shadow: 0 0 0 1px var(--red);
}
.brand__text {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.95;
}
.nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.nav a {
  border: 1px solid var(--line);
  padding: 8px 11px;
  background: #fff;
}
.nav a:hover {
  border-color: var(--red);
  color: var(--red);
}
.newspaper-line {
  border-top: 4px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 8px 18px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--soft-ink);
}
.newspaper-line span:not(:last-child)::after {
  content: "—";
  margin-left: 18px;
  color: #9f978b;
}
.news-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 34px 18px 72px;
}
.hero-editorial {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 8px solid var(--red);
  padding: clamp(26px, 5vw, 58px);
  box-shadow: var(--shadow);
}
.hero-editorial__label,
.section-heading span,
.registration-intro > span {
  display: inline-block;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
}
h1 {
  max-width: 960px;
  margin: 14px 0 0;
  font-size: clamp(37px, 6vw, 78px);
  line-height: 0.93;
  letter-spacing: -0.065em;
}
.lead {
  max-width: 840px;
  margin: 28px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.4vw, 29px);
  line-height: 1.35;
  color: #3d3d3d;
}
.byline {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 10px 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.byline span:not(:last-child)::after {
  content: "/";
  margin-left: 18px;
  color: #b7ada0;
}
.article-body,
.faq,
.reader-comments {
  max-width: 850px;
  margin: 0 auto;
}
.article-body {
  background: rgba(255, 255, 255, 0.72);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: clamp(18px, 4vw, 46px);
}
.article-body p {
  margin: 0 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.72;
}
.article-body h2,
.section-heading h2,
.registration-intro h2,
.platform-panel h2,
.profile-story h2,
.faq h2,
.reader-comments h2 {
  margin: 36px 0 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}
.quote-slab {
  margin: 34px 0;
  padding: 26px;
  background: var(--ink);
  color: #fff;
  border-bottom: 7px solid var(--red);
}
.quote-slab span {
  display: block;
  color: #ead9b9;
  font-size: clamp(22px, 3vw, 34px);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
}
.quote-slab strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(16px, 2vw, 22px);
}
.signal-board,
.platform-panel,
.profile-story,
.registration-section {
  margin: 34px 0;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.signal-board,
.registration-section {
  padding: clamp(24px, 4vw, 46px);
}
.section-heading {
  max-width: 760px;
}
.section-heading h2 {
  margin-top: 12px;
}
.section-heading p {
  color: var(--soft-ink);
  font-size: 18px;
}
.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 24px;
}
.signal-grid div {
  min-height: 120px;
  display: flex;
  align-items: end;
  padding: 18px;
  background: #fbf7ee;
  font-weight: 900;
  color: var(--blue-black);
}
.signal-grid div::before {
  content: "✓";
  margin-right: 10px;
  color: var(--red);
}
.platform-panel {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: clamp(20px, 4vw, 44px);
  padding: clamp(24px, 4vw, 48px);
  background: linear-gradient(
    90deg,
    #fff 0%,
    #fff 63%,
    #f0e6d5 63%,
    #f0e6d5 100%
  );
}
.platform-panel__number {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(72px, 11vw, 140px);
  line-height: 0.82;
  color: var(--red);
  font-weight: 900;
  letter-spacing: -0.08em;
}
.platform-panel p,
.profile-story p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.7;
}
.profile-story {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
}
.profile-story__header {
  padding: clamp(24px, 4vw, 44px);
  background: var(--olive);
  color: #fff;
}
.profile-story__header span {
  color: #ead9b9;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.profile-story__header h2 {
  color: #fff;
}
.profile-story__content {
  padding: clamp(24px, 4vw, 44px);
}
blockquote {
  margin: 22px 0;
  padding: 0 0 0 18px;
  border-left: 5px solid var(--red);
  color: #3b3b3b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-style: italic;
}
.advantage-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ink);
  margin: 34px 0;
  border: 1px solid var(--ink);
}
.advantage-row div {
  min-height: 155px;
  padding: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.advantage-row strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  letter-spacing: -0.04em;
}
.advantage-row span {
  color: var(--muted);
  font-weight: 700;
}
.faq {
  margin-top: 40px;
  padding: clamp(24px, 4vw, 46px);
  background: #fff;
  border: 1px solid var(--line);
}
.faq details {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}
.faq details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 18px;
}
.faq p {
  margin: 12px 0 0;
  color: var(--soft-ink);
}
.registration-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(22px, 4vw, 44px);
  align-items: start;
  border-top: 8px solid var(--red);
}
.registration-intro ul {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.registration-intro li {
  padding: 12px 14px;
  background: #f5eddf;
  border-left: 4px solid var(--red);
  font-weight: 900;
}
.final-page__form {
  background: var(--blue-black);
  color: #fff;
  padding: clamp(22px, 4vw, 34px);
}
.final-page__form h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -0.04em;
}
.form-note {
  color: rgba(255, 255, 255, 0.75);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  display: grid;
  gap: 7px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.78);
}
.form-input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0 14px;
  font-size: 16px;
  outline: none;
}
.form-input:focus {
  border-color: #ead9b9;
  background: rgba(255, 255, 255, 0.12);
}
.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  line-height: 1.45;
}
.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--red);
  flex: 0 0 auto;
}
.privacy-check a {
  color: #f0d18c;
  text-decoration: underline;
}
.form-submit,
.cookie-actions button {
  border: 0;
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-submit {
  width: 100%;
  min-height: 58px;
  background: var(--red);
  color: #fff;
  font-size: 15px;
  box-shadow: 0 14px 28px rgba(176, 20, 35, 0.34);
}
.form-submit:hover {
  background: var(--red-dark);
}
.reader-comments {
  margin-top: 38px;
  background: #fff;
  border: 1px solid var(--line);
  padding: clamp(22px, 4vw, 42px);
}
.comments-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.comment {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.comment strong {
  display: block;
  color: var(--red);
}
.comment p {
  margin: 7px 0 0;
  color: var(--soft-ink);
}
.site-footer {
  background: var(--blue-black);
  color: #fff;
  padding: 46px 18px 28px;
}
.footer-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 40px;
}
.brand--footer .brand__text {
  color: #fff;
}
.footer-disclaimer {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}
.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}
.footer-links a {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}
.footer-links a:hover {
  color: #f0d18c;
}
.footer-bottom {
  max-width: 1120px;
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}
.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}
.cookie-banner.is-hidden {
  display: none;
}
.cookie-banner p {
  margin: 5px 0 0;
  color: var(--soft-ink);
  font-size: 13px;
}
.cookie-actions {
  display: flex;
  gap: 9px;
}
.cookie-actions button {
  padding: 13px 18px;
  background: var(--red);
  color: #fff;
}
.cookie-actions .cookie-secondary {
  background: var(--ink);
}
@media (max-width: 900px) {
  .masthead,
  .footer-grid,
  .platform-panel,
  .profile-story,
  .registration-section {
    grid-template-columns: 1fr;
  }
  .masthead {
    display: grid;
    justify-items: center;
    text-align: center;
  }
  .nav {
    justify-content: center;
  }
  .platform-panel {
    background: #fff;
  }
  .advantage-row,
  .signal-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .news-page {
    padding: 22px 12px 54px;
  }
  .hero-editorial,
  .article-body,
  .signal-board,
  .faq,
  .reader-comments,
  .registration-section {
    padding: 22px 16px;
  }
  h1 {
    font-size: 38px;
  }
  .lead {
    font-size: 19px;
  }
  .newspaper-line span:not(:last-child)::after,
  .byline span:not(:last-child)::after {
    content: "";
    margin: 0;
  }
  .signal-grid,
  .advantage-row,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .advantage-row div {
    min-height: 112px;
  }
  .cookie-banner {
    grid-template-columns: 1fr;
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.form-error {
  color: red;
  font-size: 0.9em;
  margin-top: 2px;
  font-weight: 400;
  text-transform: none;
  line-height: 10px;
  min-height: 10px;
}
.legal-page {
  max-width: 880px;
  margin: 36px auto 70px;
  padding: clamp(24px, 4vw, 46px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.article-kicker {
  display: inline-block;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.legal-page h1 {
  font-size: clamp(40px, 5vw, 66px);
  margin: 12px 0 18px;
}
.legal-page h2 {
  margin-top: 28px;
  font-size: 30px;
  letter-spacing: -0.04em;
}
.legal-page p {
  font-size: 17px;
  color: var(--soft-ink);
}
.legal-page a {
  color: var(--red);
  font-weight: 800;
  text-decoration: underline;
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .nav {
    justify-content: center;
  }
}
@media (max-width: 620px) {
  .legal-page {
    padding: 22px 16px;
  }
  h1 {
    font-size: 38px;
  }
}
.modal-note {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  background-color: #98cd66;
  color: #212529;
  font-weight: 600;
  border-radius: 30px;
  animation: 0.3s ease-out forwards slide-in;
}
@keyframes slide-in {
  0% {
    top: -200px;
  }
  100% {
    top: 80px;
  }
}
.input-error {
  border-color: red;
}
