/* Kinetic Arcade design reminder: cobalt-blue editorial arcade, asymmetric rails, ivory longform reading, restrained signal colors. */
:root {
  --ink: #081423;
  --navy: #0a1730;
  --cobalt: #1359e8;
  --electric: #3878ff;
  --ivory: #f5f1e8;
  --paper: #fffdf8;
  --yellow: #ffd630;
  --red: #ff4d43;
  --green: #1fba76;
  --muted: #728097;
  --line: rgba(14, 38, 73, 0.15);
  --space: "Space Grotesk", sans-serif;
  --body: "Source Sans 3", sans-serif;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.topline {
  background: #071123;
  color: #bdc8dc;
  font-size: 13px;
}
.topline-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.topline i {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--green);
  margin-right: 7px;
  box-shadow: 0 0 0 3px rgba(31, 186, 118, 0.18);
}
.topline a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-header {
  background: #0c1830;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  position: sticky;
  top: 0;
  z-index: 20;
}
.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}
.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
  background: #fffdf8;
  border: 2px solid var(--yellow);
  padding: 2px;
  box-shadow: 3px 3px 0 var(--cobalt);
}
.brand small {
  display: block;
  font-size: 8px;
  letter-spacing: 0.12em;
  color: #9eb1d3;
  line-height: 1.1;
}
.brand strong,
.form-kicker {
  font-family: var(--space);
  font-size: 21px;
  line-height: 1.05;
  letter-spacing: -0.06em;
}
.brand strong span,
.form-kicker span {
  color: var(--yellow);
}
.main-nav {
  display: flex;
  gap: 18px;
  margin-left: auto;
  font-size: 14px;
}
.main-nav a {
  color: #cbd5e6;
  transition: color 0.18s var(--ease);
}
.main-nav a:hover {
  color: var(--yellow);
}
.account-links {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
}
.text-link {
  color: #d9e3f5;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 2px solid #8fb3ff;
  border-radius: 15px;
  background: var(--cobalt);
  color: #fff;
  font-family: var(--space);
  font-size: 14px;
  font-weight: 700;
  padding: 13px 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 5px 0 #073aa0,
    5px 8px 0 rgba(8, 20, 35, 0.14);
  transition:
    transform 0.18s var(--ease),
    box-shadow 0.18s var(--ease),
    background 0.18s var(--ease);
}
.button::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 2px 12% auto;
  height: 42%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), transparent);
}
.button:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 7px 0 #073aa0,
    7px 10px 0 var(--yellow);
}
.button:active {
  transform: translateY(3px) scale(0.97);
  box-shadow: 0 2px 0 #073aa0;
}
.button-sm {
  padding: 9px 14px;
  font-size: 12px;
}
.button.ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.button.outline {
  background: transparent;
  color: var(--cobalt);
}
.button.warn {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}
.button.full {
  width: 100%;
  border: 0;
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  font-family: var(--space);
}
.breadcrumb {
  width: min(1180px, calc(100% - 40px));
  margin: 22px auto 0;
  color: #65738b;
  font-size: 13px;
}
.breadcrumb span {
  display: inline-flex;
  gap: 9px;
  align-items: center;
}
.breadcrumb a:hover {
  color: var(--cobalt);
}
.breadcrumb b {
  color: var(--yellow);
  font-size: 17px;
}
.home-hero {
  background: #0b1832;
  color: #fff;
  padding: 62px 0 70px;
  position: relative;
  overflow: hidden;
}
.home-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      110deg,
      rgba(9, 23, 49, 0.92) 0%,
      rgba(9, 23, 49, 0.65) 50%,
      rgba(9, 23, 49, 0.12) 100%
    ),
    radial-gradient(circle at 18% 25%, rgba(19, 89, 232, 0.25), transparent 34%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.93fr;
  gap: 50px;
  align-items: center;
}
.hero-copy {
  padding: 28px 0;
}
.eyebrow,
.section-kicker {
  font-family: var(--space);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 11px;
  color: var(--cobalt);
  font-weight: 700;
  margin: 0 0 14px;
}
.home-hero .eyebrow {
  color: #bcd1ff;
}
.eyebrow span {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--yellow);
  margin-right: 8px;
}
h1,
h2,
h3 {
  font-family: var(--space);
  line-height: 1.05;
  letter-spacing: -0.055em;
  margin: 0;
}
h1 {
  font-size: clamp(41px, 5vw, 76px);
  max-width: 740px;
}
h1 em {
  font-style: normal;
  color: var(--yellow);
}
.lead {
  font-size: 20px;
  line-height: 1.55;
  max-width: 650px;
  color: #5c6879;
  margin: 22px 0;
}
.home-hero .lead {
  color: #cad7ec;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-points {
  display: flex;
  gap: 19px;
  margin-top: 37px;
  flex-wrap: wrap;
  color: #b7c3d8;
  font-size: 13px;
}
.hero-points b {
  display: block;
  color: #fff;
  font-family: var(--space);
  font-size: 21px;
}
.hero-art {
  min-height: 430px;
  position: relative;
}
.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  inset: 0;
  box-shadow: 16px 16px 0 rgba(19, 89, 232, 0.7);
}
.art-label {
  position: absolute;
  bottom: 0;
  left: -19px;
  padding: 14px 19px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--space);
  font-size: 10px;
  line-height: 1.15;
  letter-spacing: 0.11em;
  font-weight: 700;
}
.art-label i {
  display: block;
  width: 18px;
  height: 5px;
  background: var(--red);
  margin-bottom: 8px;
}
.signal-section {
  padding: 100px 0;
  background: var(--ivory);
  background-image:
    linear-gradient(rgba(8, 20, 35, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 20, 35, 0.035) 1px, transparent 1px);
  background-size: 24px 24px;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 50px;
  align-items: end;
  margin-bottom: 37px;
}
.section-heading h2,
.rail-head h2,
.split-grid h2,
.compare-layout h2,
.responsible-grid h2,
.faq-section h2,
.search-layout h2 {
  font-size: clamp(31px, 4vw, 53px);
}
.section-heading h2 em {
  color: var(--cobalt);
  font-style: normal;
}
.section-heading p {
  margin: 0;
  color: #5a6777;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.feature-grid article {
  position: relative;
  overflow: hidden;
  min-height: 255px;
  padding: 23px 22px;
  border: 1px solid rgba(14, 38, 73, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.9),
      rgba(239, 244, 252, 0.76)
    ),
    rgba(255, 255, 255, 0.45);
  box-shadow: 0 10px 24px rgba(8, 20, 35, 0.06);
  transition:
    transform 0.18s var(--ease),
    background 0.18s var(--ease),
    box-shadow 0.18s var(--ease);
}
.feature-grid article::after {
  content: "7";
  position: absolute;
  top: -19px;
  right: 13px;
  color: rgba(19, 89, 232, 0.08);
  font: 700 94px/1 var(--space);
  transform: rotate(10deg);
  pointer-events: none;
}
.feature-grid article:hover {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: 0 16px 30px rgba(8, 20, 35, 0.13);
}
.feature-no {
  font-family: var(--space);
  font-size: 12px;
  color: var(--red);
  font-weight: 700;
}
.feature-grid h3 {
  font-size: 23px;
  margin: 33px 0 10px;
}
.feature-grid p {
  font-size: 15px;
  line-height: 1.5;
  color: #58667a;
  min-height: 67px;
}
.feature-grid a {
  font-size: 14px;
  color: var(--cobalt);
  font-weight: 700;
}
.category-rail {
  background: #0b1832;
  color: #fff;
  padding: 92px 0;
}
.rail-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 30px;
}
.rail-head a {
  font-size: 14px;
  color: #c6d9ff;
}
.rail-head b {
  color: var(--yellow);
  font-size: 23px;
}
.category-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}
.showcase-card {
  display: block;
  min-height: 330px;
  position: relative;
  overflow: hidden;
  background: #152745;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  box-shadow: 0 13px 0 rgba(5, 14, 31, 0.55);
}
.showcase-image {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0.7;
  transition:
    transform 0.35s var(--ease),
    opacity 0.35s var(--ease);
}
.showcase-card:hover .showcase-image {
  transform: scale(1.06);
  opacity: 0.95;
}
.showcase-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(4, 12, 27, 0.02),
    rgba(4, 12, 27, 0.9)
  );
}
.showcase-card::before {
  content: "7  ·  ✦  ·  7";
  position: absolute;
  z-index: 2;
  top: 13px;
  right: 14px;
  color: #fff;
  font: 700 10px/1 var(--space);
  letter-spacing: 0.1em;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: rgba(7, 17, 35, 0.52);
  backdrop-filter: blur(5px);
}
.showcase-card > span,
.showcase-card > div {
  position: absolute;
  z-index: 1;
}
.tag {
  top: 14px;
  left: 14px;
  padding: 4px 6px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--space);
  font-size: 10px;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 2px 2px 0 rgba(8, 20, 35, 0.48);
}
.showcase-card > div {
  left: 17px;
  bottom: 17px;
}
.showcase-card h3 {
  font-size: 28px;
}
.showcase-card p {
  margin: 4px 0 0;
  color: #d9e2f2;
  font-size: 14px;
}
.split-copy {
  padding: 102px 0;
  background: var(--paper);
}
.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 84px;
  align-items: center;
}
.split-grid h2 {
  margin-bottom: 20px;
}
.split-grid > div > p:not(.section-kicker) {
  font-size: 19px;
  max-width: 560px;
  color: #536174;
}
.split-grid aside {
  padding: 31px;
  position: relative;
  overflow: hidden;
  border: 2px solid #9dbdff;
  border-radius: 24px;
  background: var(--cobalt);
  color: #fff;
  box-shadow: 13px 13px 0 var(--yellow);
}
.split-grid aside::before {
  content: "●  ✦  ●";
  position: absolute;
  top: 14px;
  right: 16px;
  color: rgba(255, 255, 255, 0.35);
  font: 700 13px var(--space);
  letter-spacing: 0.2em;
}
.mini-label {
  font-size: 11px;
  letter-spacing: 0.13em;
  font-family: var(--space);
  margin: 0;
  color: #d3e1ff;
}
.split-grid aside h3 {
  font-size: 29px;
  margin: 23px 0 14px;
}
.split-grid aside p {
  color: #dce8ff;
}
.split-grid aside a {
  font-weight: 700;
  border-bottom: 1px solid #fff;
}
.compare-section {
  padding: 85px 0;
  background: #edf1f8;
}
.compare-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 75px;
}
.compare-table {
  border-top: 2px solid var(--ink);
}
.compare-table > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.compare-table span,
.compare-table b {
  padding: 14px 12px;
  font-size: 15px;
}
.compare-table b {
  font-family: var(--space);
  font-size: 13px;
  background: #d9e2f0;
}
.compare-table b + b {
  background: #ffd630;
}
.compare-table span + span {
  color: #af3029;
  background: #fff3f1;
}
.responsible-block {
  background: var(--red);
  color: #fff;
  padding: 74px 0;
}
.responsible-block .section-kicker {
  color: #ffe9e6;
}
.responsible-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: end;
}
.responsible-grid h2 {
  font-size: clamp(34px, 4vw, 57px);
}
.responsible-grid p {
  font-size: 18px;
  margin: 0 0 25px;
  color: #fff3f2;
}
.faq-section {
  padding: 98px 0;
  background: var(--paper);
}
.faq-section h2 {
  margin-bottom: 35px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--space);
  font-size: 20px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  color: var(--cobalt);
  font-size: 26px;
  line-height: 0.7;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list p {
  max-width: 790px;
  color: #526176;
  margin: 12px 0 0;
}
.search-strip {
  padding: 67px 0 85px;
  background: #0b1832;
  color: #fff;
}
.search-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}
.search-layout .section-kicker {
  color: #b6caff;
}
.search-layout h2 {
  font-size: clamp(29px, 3vw, 45px);
}
.search-layout form,
.large-search {
  display: flex;
  width: min(100%, 490px);
}
.search-layout input,
.large-search input {
  height: 52px;
  flex: 1;
  border: 0;
  padding: 0 16px;
  font: 16px var(--body);
  min-width: 0;
}
.search-layout button,
.large-search button {
  border: 0;
  background: var(--yellow);
  color: var(--ink);
  font: 700 14px var(--space);
  padding: 0 20px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-top: 21px;
  font-size: 14px;
  color: #b5c1d4;
}
.tags a {
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
}
.site-footer {
  background: #071123;
  color: #c5cfdd;
  padding: 66px 0 95px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1.2fr 1fr;
  gap: 35px;
}
.footer-brand {
  color: #fff;
  margin-bottom: 14px;
}
.footer-grid p {
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 10px;
}
.footer-grid h2 {
  font-size: 15px;
  letter-spacing: 0.02em;
  margin: 5px 0 16px;
  color: #fff;
}
.footer-grid section:not(:first-child) a {
  display: block;
  margin: 7px 0;
  color: #c5cfdd;
  font-size: 14px;
}
.footer-grid a:hover {
  color: var(--yellow);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 47px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
}
.fixed-cta {
  position: fixed;
  z-index: 21;
  right: 19px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #111d34;
  border: 2px solid var(--yellow);
  border-radius: 20px;
  box-shadow: 8px 8px 0 var(--red);
  padding: 8px 9px 8px 12px;
  color: #fff;
  max-width: calc(100vw - 32px);
}
.fixed-cta p {
  font-size: 11px;
  line-height: 1.1;
  margin: 0 5px 0 0;
}
.fixed-cta p b,
.fixed-cta p small {
  display: block;
}
.fixed-cta p small {
  color: #bfcce1;
  margin-top: 3px;
}
.fixed-cta a {
  font: 700 12px var(--space);
  padding: 9px 11px;
  background: var(--yellow);
  color: var(--ink);
  border-radius: 11px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
  transition: transform 0.18s var(--ease);
}
.fixed-cta a:hover {
  transform: translateY(-2px);
}
.fixed-cta .login-cta {
  background: var(--cobalt);
  color: #fff;
}
.coin {
  position: absolute;
  color: var(--yellow);
  font-size: 13px;
  opacity: 0.85;
  pointer-events: none;
  animation: floatCoin 5s ease-in-out infinite;
}
.coin-a {
  left: -9px;
  top: -12px;
}
.coin-b {
  right: -6px;
  bottom: -12px;
  animation-delay: 1.5s;
  color: var(--red);
}
@keyframes floatCoin {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-8px) rotate(30deg);
  }
}
.hero-inner,
.article-hero {
  padding: 70px 0 34px;
}
.hero-inner {
  width: min(900px, calc(100% - 40px));
  margin: auto;
}
.hero-inner h1 {
  font-size: clamp(40px, 5vw, 67px);
}
.hero-inner .lead {
  max-width: 690px;
}
.category-grid,
.terms-grid,
.help-grid,
.steps {
  width: min(1180px, calc(100% - 40px));
  margin: 28px auto 75px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.category-card {
  position: relative;
  overflow: hidden;
  padding: 25px;
  background: #0b1832;
  color: #fff;
  min-height: 235px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-bottom: 7px solid var(--cobalt);
  border-radius: 22px;
  box-shadow: 0 10px 0 rgba(8, 20, 35, 0.18);
  transition:
    transform 0.2s var(--ease),
    border 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}
.category-card::after {
  content: "✦";
  position: absolute;
  top: 16px;
  right: 17px;
  color: rgba(255, 214, 48, 0.72);
  font-size: 23px;
  text-shadow: 0 0 12px rgba(255, 214, 48, 0.6);
}
.category-card:hover {
  transform: translateY(-5px);
  border-bottom-color: var(--yellow);
  box-shadow: 0 15px 0 rgba(8, 20, 35, 0.22);
}
.card-index {
  font: 700 11px var(--space);
  color: var(--yellow);
}
.category-card h2 {
  font-size: 29px;
  margin: 38px 0 10px;
}
.category-card p {
  font-size: 15px;
  color: #c9d4e7;
  line-height: 1.5;
}
.reading-note {
  background: #edf1f8;
  padding: 38px;
  width: min(1020px, calc(100% - 40px));
  margin: 0 auto 85px;
  border-left: 7px solid var(--green);
  border-radius: 0 20px 20px 0;
  box-shadow: 8px 9px 0 rgba(31, 186, 118, 0.11);
}
.reading-note h2 {
  font-size: 28px;
}
.reading-note p {
  margin-bottom: 0;
  color: #47566c;
}
.terms-grid {
  grid-template-columns: repeat(3, 1fr);
}
.terms-grid article,
.help-grid article {
  background: #fff;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 7px 7px 0 #e0e6ee;
}
.terms-grid span {
  font: 700 13px var(--space);
  color: var(--red);
}
.terms-grid h2,
.help-grid h2 {
  font-size: 23px;
  margin: 22px 0 10px;
}
.terms-grid p,
.help-grid p {
  font-size: 15px;
  color: #566478;
  margin: 0;
}
.article-body {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto 85px;
}
.article-body h2 {
  font-size: 32px;
  margin: 45px 0 13px;
}
.article-body p {
  color: #46556a;
  font-size: 18px;
}
.article-body strong {
  color: var(--ink);
}
.steps {
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.steps article {
  padding: 23px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 245px;
}
.steps span {
  font: 700 12px var(--space);
  color: var(--cobalt);
}
.steps h2 {
  font-size: 26px;
  margin: 30px 0 8px;
}
.steps p {
  font-size: 15px;
  color: #566478;
  line-height: 1.5;
}
.contact-card {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto 42px;
  padding: 30px;
  border: 2px solid #95b9ff;
  border-radius: 23px;
  background: #0b1832;
  color: #fff;
  box-shadow: 9px 9px 0 var(--yellow);
}
.contact-card h2 {
  font-size: 27px;
}
.contact-card a {
  color: var(--yellow);
  font: 700 23px var(--space);
  border-bottom: 1px solid var(--yellow);
}
.contact-card p {
  color: #cdd8eb;
}
.article-hero {
  background: #eef2f8;
  margin-top: 15px;
  padding-bottom: 65px;
}
.article-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 52px;
  align-items: center;
}
.article-hero h1 {
  font-size: clamp(38px, 4.6vw, 64px);
}
.article-hero .lead {
  font-size: 18px;
  margin-bottom: 22px;
}
.article-hero figure {
  margin: 0;
  height: 325px;
}
.article-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 12px 12px 0 var(--cobalt);
}
.article-meta {
  display: flex;
  gap: 10px;
  color: #647187;
  font-size: 13px;
}
.article-layout {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  gap: 65px;
  padding-top: 65px;
}
.article-aside {
  font-size: 14px;
  align-self: start;
  position: sticky;
  top: 108px;
}
.article-aside > p {
  font: 700 10px var(--space);
  letter-spacing: 0.13em;
  color: var(--cobalt);
  margin: 0 0 12px;
}
.article-aside ol {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.article-aside li {
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
}
.article-aside li a {
  color: #566478;
  line-height: 1.35;
}
.article-aside > a {
  display: block;
  margin-top: 24px;
  color: var(--red);
  font-weight: 700;
}
.long-form {
  width: auto;
  margin: 0;
}
.long-form section {
  position: relative;
  padding-left: 48px;
  scroll-margin-top: 125px;
}
.long-form h2 {
  margin-top: 0;
}
.long-form p {
  margin-top: 0;
}
.section-number {
  position: absolute;
  left: 0;
  top: 4px;
  font: 700 12px var(--space);
  color: var(--red);
}
.article-end {
  margin-top: 54px;
  padding: 25px;
  background: #eaf0ff;
  border-left: 5px solid var(--cobalt);
  border-radius: 0 20px 20px 0;
  box-shadow: 8px 8px 0 rgba(19, 89, 232, 0.1);
}
.article-end .button {
  margin-top: 10px;
}
.auth-wrap {
  width: min(1040px, calc(100% - 40px));
  margin: 48px auto 90px;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 85px;
  align-items: center;
}
.auth-copy h1 {
  font-size: clamp(40px, 4vw, 64px);
}
.auth-copy ul {
  padding-left: 20px;
  color: #536174;
}
.auth-card {
  background: #0b1832;
  padding: 35px;
  color: #fff;
  border: 2px solid #9bbdff;
  border-radius: 26px;
  box-shadow: 13px 13px 0 var(--yellow);
}
.auth-card h2 {
  font-size: 36px;
  margin: 14px 0 28px;
}
.form-kicker {
  color: #fff;
}
.auth-card label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-top: 14px;
  color: #d7e1ef;
}
.auth-card input:not([type="checkbox"]) {
  display: block;
  width: 100%;
  height: 46px;
  margin-top: 6px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  background: #132646;
  color: #fff;
  font: 16px var(--body);
}
.auth-card .check {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-weight: 400;
  line-height: 1.45;
}
.auth-card .check a {
  color: var(--yellow);
  text-decoration: underline;
}
.auth-card .button {
  margin-top: 20px;
}
.form-note,
.switch-note {
  font-size: 12px;
  line-height: 1.45;
  color: #b7c7df;
}
.switch-note a {
  color: var(--yellow);
  font-weight: 700;
}
.search-page {
  padding: 72px 0 150px;
}
.search-page h1 {
  font-size: clamp(40px, 5vw, 66px);
  margin-bottom: 28px;
}
.large-search {
  max-width: 720px;
}
.large-search input {
  border: 1px solid var(--line);
  height: 60px;
}
.search-count {
  color: #647187;
}
.search-results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.result-card {
  border: 1px solid var(--line);
  padding: 19px;
  background: #fff;
}
.result-card .result-type {
  font: 700 10px var(--space);
  letter-spacing: 0.1em;
  color: var(--cobalt);
}
.result-card h2 {
  font-size: 24px;
  margin: 9px 0;
}
.result-card p {
  font-size: 15px;
  color: #59677a;
  margin: 0;
}
.result-card a {
  display: block;
  margin-top: 10px;
  color: var(--cobalt);
  font-weight: 700;
  font-size: 14px;
}
@media (max-width: 960px) {
  .main-nav {
    gap: 12px;
  }
  .header-inner {
    gap: 17px;
  }
  .category-showcase,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-grid article {
    min-height: 220px;
  }
  .split-grid,
  .compare-layout,
  .responsible-grid,
  .article-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
  .footer-grid section:last-child {
    grid-column: 2/4;
  }
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .article-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .article-aside {
    position: static;
  }
  .article-aside ol {
    columns: 2;
  }
  .auth-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 620px;
  }
  .auth-card {
    max-width: 440px;
  }
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  body {
    font-size: 16px;
  }
  .wrap {
    width: min(100% - 30px, 1180px);
  }
  .topline-inner {
    font-size: 11px;
    line-height: 1.3;
    padding: 8px 0;
  }
  .topline-inner a {
    display: none;
  }
  .site-header {
    position: relative;
  }
  .header-inner {
    height: 66px;
    justify-content: space-between;
  }
  .brand-mark {
    width: 36px;
    height: 36px;
  }
  .brand strong {
    font-size: 19px;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    background: #0b1832;
    padding: 18px 15px;
    z-index: 2;
  }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
  .account-links {
    margin-left: 0;
    gap: 9px;
  }
  .account-links .text-link {
    display: none;
  }
  .breadcrumb {
    width: min(100% - 30px, 1180px);
    margin-top: 14px;
  }
  .home-hero {
    padding: 32px 0 55px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .hero-copy {
    padding: 0;
  }
  .hero-art {
    min-height: 280px;
  }
  .art-label {
    left: 0;
  }
  .hero-points {
    gap: 12px;
  }
  .hero-points b {
    font-size: 17px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .signal-section,
  .category-rail,
  .split-copy,
  .faq-section {
    padding: 65px 0;
  }
  .feature-grid,
  .category-showcase,
  .terms-grid,
  .help-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid article {
    min-height: auto;
  }
  .showcase-card {
    min-height: 275px;
  }
  .rail-head,
  .search-layout {
    align-items: flex-start;
    flex-direction: column;
  }
  .split-grid {
    gap: 36px;
  }
  .compare-layout {
    gap: 31px;
  }
  .compare-table span,
  .compare-table b {
    padding: 10px 7px;
    font-size: 13px;
  }
  .responsible-block {
    padding: 58px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }
  .footer-grid section:first-child {
    grid-column: 1/3;
  }
  .footer-grid section:last-child {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .fixed-cta {
    right: 12px;
    bottom: 12px;
    gap: 6px;
    padding: 7px 7px 7px 9px;
  }
  .fixed-cta p {
    display: none;
  }
  .fixed-cta a {
    padding: 9px 10px;
  }
  .hero-inner,
  .article-hero {
    padding: 43px 0 18px;
  }
  .category-grid,
  .terms-grid,
  .help-grid,
  .steps {
    width: min(100% - 30px, 1180px);
    margin-bottom: 55px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .article-hero {
    padding-bottom: 44px;
  }
  .article-hero figure {
    height: 220px;
  }
  .article-layout {
    padding-top: 37px;
  }
  .article-aside ol {
    columns: 1;
  }
  .article-body {
    width: min(100% - 30px, 760px);
  }
  .article-body p {
    font-size: 17px;
  }
  .long-form section {
    padding-left: 0;
  }
  .section-number {
    position: static;
    display: block;
    margin-bottom: 8px;
  }
  .long-form h2,
  .article-body h2 {
    font-size: 29px;
  }
  .auth-wrap {
    width: min(100% - 30px, 620px);
    margin-top: 30px;
  }
  .auth-card {
    padding: 25px;
  }
  .search-results {
    grid-template-columns: 1fr;
  }
  .search-page {
    padding: 47px 0 120px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .showcase-card::before {
    animation: slot-signal 3.8s ease-in-out infinite;
  }
  .category-card::after {
    animation: slot-signal 3.2s ease-in-out infinite reverse;
  }
}
@keyframes slot-signal {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.72;
  }
  50% {
    transform: translateY(-3px);
    opacity: 1;
  }
}
