:root {
  --fsp-bg: #f7f3e8;
  --fsp-card: #fffdf6;
  --fsp-blue: #283c96;
  --fsp-blue-dark: #1f2f78;
  --fsp-orange: #ff5a36;
  --fsp-orange-dark: #e84620;
  --fsp-pink: #f06ba8;
  --fsp-ink: #1c1c1c;
  --fsp-maxw: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--fsp-ink);
  background-color: var(--fsp-bg);
  background-image: radial-gradient(circle at 1px 1px, rgba(40, 60, 150, 0.05) 1px, transparent 0);
  background-size: 4px 4px;
  line-height: 1.55;
}

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

.fsp-page {
  width: min(var(--fsp-maxw), calc(100% - 24px));
  margin: 0 auto;
}

.fsp-header {
  background: var(--fsp-bg);
  border-bottom: 2px solid var(--fsp-blue);
  position: sticky;
  top: 0;
  z-index: 30;
}

.fsp-header-inner {
  width: min(var(--fsp-maxw), calc(100% - 24px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
}

.fsp-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.fsp-logo-mark {
  width: 32px;
  height: 32px;
  background: var(--fsp-orange);
  border-radius: 4px;
  box-shadow: 2px 2px 0 var(--fsp-blue);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Archivo", Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
}

.fsp-logo-text {
  font-family: "Archivo", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--fsp-ink);
  font-size: 0.95rem;
}

.fsp-logo-line {
  height: 2px;
  width: 28px;
  background: var(--fsp-blue);
  margin-top: 2px;
}

.fsp-burger {
  display: none;
  border: 2px solid var(--fsp-blue);
  background: var(--fsp-card);
  border-radius: 6px;
  width: 40px;
  height: 36px;
  padding: 0;
}

.fsp-burger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--fsp-blue);
}

.fsp-nav {
  display: flex;
  gap: 1.1rem;
  align-items: center;
}

.fsp-nav a {
  font-family: "Archivo", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

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

.fsp-nav a:hover::after,
.fsp-nav a:focus-visible::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--fsp-orange);
}

.fsp-nav .fsp-nav-active::before {
  content: "● ";
  color: var(--fsp-orange);
  font-family: "Inter", Arial, sans-serif;
}

.fsp-main {
  display: block;
}

.fsp-hero {
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  position: relative;
  overflow: hidden;
}

.fsp-hero-left,
.fsp-hero-right {
  min-width: 0;
}

.fsp-hero-left {
  padding: clamp(1.4rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.fsp-hero-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--fsp-card);
  clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
  z-index: -1;
  pointer-events: none;
}

.fsp-kicker {
  margin: 0 0 1rem;
  color: var(--fsp-blue);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.fsp-hero h1,
.fsp-page-hero h1 {
  margin: 0;
  font-family: "Archivo", Arial, sans-serif;
  font-size: clamp(48px, 9vw, 112px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -1px;
  max-width: 100%;
  overflow-wrap: break-word;
}

.fsp-accent-word {
  color: var(--fsp-orange);
  text-shadow: 2px 2px 0 rgba(40, 60, 150, 0.3);
}

.fsp-hero-bar {
  margin: 1.1rem 0 1rem;
  width: 72px;
  height: 4px;
  background: var(--fsp-orange);
  box-shadow: 2px 2px 0 rgba(40, 60, 150, 0.45);
}

.fsp-hero .fsp-subline {
  margin: 0 0 1.3rem;
  max-width: 540px;
  color: var(--fsp-blue);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
}

.fsp-button,
.fsp-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Archivo", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 6px;
  padding: 0.85rem 1.2rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.fsp-button {
  background: var(--fsp-orange);
  color: #fff;
  border: 0;
  box-shadow: 3px 3px 0 var(--fsp-blue);
}

.fsp-button:hover,
.fsp-button:focus-visible {
  background: var(--fsp-blue);
  color: #fff;
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--fsp-orange);
}

.fsp-link-button {
  border: 2px solid var(--fsp-blue);
  background: var(--fsp-card);
  color: var(--fsp-blue);
}

.fsp-link-button:hover,
.fsp-link-button:focus-visible {
  background: var(--fsp-blue);
  color: var(--fsp-card);
}

.fsp-hero-right {
  position: relative;
  min-height: 100%;
}

.fsp-riso-shape {
  position: absolute;
  border-radius: 999px;
}

.fsp-shape-orange {
  width: 200px;
  height: 200px;
  background: var(--fsp-orange);
  opacity: 0.2;
  top: 12%;
  right: 12%;
}

.fsp-shape-blue {
  width: 160px;
  height: 320px;
  background: var(--fsp-blue);
  opacity: 0.22;
  top: 35%;
  right: 42%;
  border-radius: 160px 0 0 160px;
}

.fsp-shape-pink {
  width: 100px;
  height: 100px;
  background: var(--fsp-pink);
  opacity: 0.18;
  bottom: 15%;
  right: 18%;
}

.fsp-section {
  padding: 3rem 1.2rem;
  margin: 0 auto;
}

.fsp-section h2 {
  margin: 0 0 1.1rem;
  font-family: "Archivo", Arial, sans-serif;
  font-size: clamp(1.4rem, 3.2vw, 2.3rem);
  line-height: 1.05;
}

.fsp-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.fsp-method-item,
.fsp-card,
.fsp-verdict-item,
.fsp-news-item,
.fsp-rg-item {
  background: var(--fsp-card);
  border-top: 2px solid var(--fsp-blue);
  border-radius: 8px;
  box-shadow: 2px 2px 0 rgba(40, 60, 150, 0.25);
}

.fsp-method-item {
  padding: 1rem;
}

.fsp-method-item h3 {
  margin: 0 0 0.45rem;
  font-family: "Archivo", Arial, sans-serif;
  font-size: 1.05rem;
}

.fsp-about p,
.fsp-method-item p,
.fsp-rg-item p {
  margin: 0 0 0.8rem;
}

.fsp-cards {
  display: grid;
  gap: 1rem;
}

.fsp-card {
  padding: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fsp-card:hover {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 rgba(40, 60, 150, 0.3);
}

.fsp-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.fsp-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.fsp-logo-wrap {
  width: 140px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
  flex-shrink: 0;
}

.fsp-logo-wrap img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  display: block;
}

.fsp-brand-meta h3 {
  margin: 0;
  font-family: "Archivo", Arial, sans-serif;
  font-size: 1.35rem;
}

.fsp-badge {
  display: inline-flex;
  align-items: center;
  background: var(--fsp-orange);
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  font-family: "Archivo", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 2px 2px 0 rgba(40, 60, 150, 0.3);
}

.fsp-score {
  font-family: "Archivo", Arial, sans-serif;
  font-weight: 700;
  color: var(--fsp-blue);
  text-align: right;
}

.fsp-score strong {
  display: block;
  font-size: 1.6rem;
  color: var(--fsp-ink);
}

.fsp-rating-dots {
  display: inline-flex;
  gap: 6px;
}

.fsp-dot,
.fsp-dot-empty {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.fsp-dot {
  background: var(--fsp-orange);
  box-shadow: 1px 1px 0 var(--fsp-blue);
}

.fsp-dot-empty {
  border: 1.5px solid var(--fsp-blue);
  background: transparent;
}

.fsp-card p {
  margin: 0.9rem 0 0.8rem;
}

.fsp-bonus {
  display: inline;
  font-family: "Archivo", Arial, sans-serif;
  font-weight: 700;
  font-size: 24px;
  background: linear-gradient(180deg, transparent 55%, #ff5a36 55%, #ff5a36 88%, transparent 88%);
}

.fsp-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.8rem;
}

.fsp-pill {
  background: rgba(40, 60, 150, 0.1);
  color: var(--fsp-blue);
  border-radius: 4px;
  padding: 4px 12px;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fsp-procon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin: 0.9rem 0;
}

.fsp-procon h4 {
  margin: 0 0 0.3rem;
  font-family: "Archivo", Arial, sans-serif;
  font-size: 0.9rem;
}

.fsp-procon ul {
  margin: 0;
  padding-left: 1rem;
}

.fsp-procon li {
  margin: 0 0 0.3rem;
}

.fsp-card-disclaimer {
  margin: 0.7rem 0;
  color: var(--fsp-blue);
  font-size: 0.82rem;
}

.fsp-verdict-grid,
.fsp-news-grid {
  display: grid;
  gap: 1rem;
}

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

.fsp-verdict-item,
.fsp-news-item {
  padding: 1rem;
}

.fsp-score-badge {
  display: inline-block;
  margin-top: 0.5rem;
  background: var(--fsp-orange);
  color: #fff;
  font-family: "Archivo", Arial, sans-serif;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.fsp-news-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.fsp-news-item h3 {
  margin: 0 0 0.35rem;
  font-family: "Archivo", Arial, sans-serif;
  font-size: 1rem;
}

.fsp-news-date {
  margin: 0.4rem 0 0;
  color: var(--fsp-blue);
  font-style: italic;
}

.fsp-rg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.fsp-rg-item {
  padding: 1rem;
}

.fsp-rg-checklist {
  margin: 0;
  padding-left: 1.1rem;
}

.fsp-rg-checklist li {
  margin-bottom: 0.5rem;
}

.fsp-rg-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.fsp-reg-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--fsp-blue);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  font-family: "Archivo", Arial, sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
}

.fsp-footer {
  border-top: 2px solid var(--fsp-blue);
  margin-top: 2rem;
}

.fsp-footer-box {
  padding: 1.35rem 1rem;
}

.fsp-footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-family: "Archivo", Arial, sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.fsp-footer-meta {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  color: var(--fsp-blue);
}

.fsp-footer-meta p {
  margin: 0.3rem 0;
}

.fsp-cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2147483645;
  background: var(--fsp-card);
  border-top: 2px solid var(--fsp-blue);
  border-radius: 8px;
  box-shadow: 2px 2px 0 rgba(40, 60, 150, 0.3);
  padding: 12px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.fsp-cookie-actions {
  display: flex;
  gap: 8px;
}

.fsp-cookie-banner button {
  border: 0;
}

.fsp-cookie-decline {
  background: var(--fsp-blue);
  color: #fff;
  box-shadow: 3px 3px 0 var(--fsp-orange);
}

.fsp-age-overlay {
  position: fixed !important;
  inset: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 100dvh !important;
  min-height: 100vh !important;
  z-index: 2147483646 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  overflow-y: auto !important;
  overscroll-behavior: contain !important;
  background: rgba(40, 60, 150, 0.88) !important;
}

.fsp-age-box {
  margin-block: auto;
  width: min(420px, calc(100% - 12px));
  background: #f7f3e8;
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center;
  border-top: 3px solid #ff5a36;
  box-shadow: 4px 4px 0 rgba(40, 60, 150, 0.3);
}

.fsp-age-actions {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.fsp-scroll-top {
  position: fixed;
  right: 14px;
  bottom: 90px;
  border: 0;
  background: var(--fsp-orange);
  color: #fff;
  box-shadow: 3px 3px 0 var(--fsp-blue);
  border-radius: 6px;
  width: 42px;
  height: 42px;
  display: none;
  z-index: 2147483644;
  font-family: "Archivo", Arial, sans-serif;
  font-weight: 700;
}

.fsp-page-hero {
  padding: 3rem 1rem 1.2rem;
}

.fsp-text-page {
  padding: 0 1rem 2rem;
}

.fsp-text-page h2 {
  margin: 1.2rem 0 0.6rem;
  font-family: "Archivo", Arial, sans-serif;
}

.fsp-text-page p,
.fsp-text-page li {
  margin: 0 0 0.8rem;
}

.fsp-text-page ul {
  padding-left: 1.1rem;
}

@media (max-width: 1024px) {
  .fsp-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .fsp-hero-left::before {
    clip-path: none;
  }

  .fsp-hero-right {
    min-height: 280px;
  }

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

  .fsp-verdict-grid,
  .fsp-method-grid,
  .fsp-rg-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .fsp-burger {
    display: inline-block;
  }

  .fsp-nav {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--fsp-card);
    border-top: 2px solid var(--fsp-blue);
    border-radius: 8px;
    box-shadow: 2px 2px 0 rgba(40, 60, 150, 0.3);
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .fsp-nav.fsp-nav-open {
    display: flex;
  }

  .fsp-news-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .fsp-procon {
    grid-template-columns: 1fr;
  }

  .fsp-card-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 550px) {
  html, body { overflow-x: hidden; max-width: 100%; }
  .fsp-page, .fsp-page * { max-width: 100%; }
  .fsp-page { width: min(1180px, calc(100% - 12px)); }
  .fsp-header-inner { padding: 0.65rem 0.75rem; gap: 0.5rem; position: relative; }
  .fsp-logo { min-width: 0; }
  .fsp-logo-text { font-size: clamp(0.58rem, 2.9vw, 0.78rem); letter-spacing: 0.05em; word-break: break-word; overflow-wrap: anywhere; }
  .fsp-nav { left: 8px; right: 8px; padding: 12px; }
  .fsp-nav a { font-size: 0.72rem; letter-spacing: 0.1em; }
  .fsp-hero h1, .fsp-page-hero h1 { font-size: clamp(1.05rem, 5.8vw, 2rem); letter-spacing: 0.055em; word-break: break-word; overflow-wrap: anywhere; }
  .fsp-button, .fsp-link-button, .fsp-form button, .fsp-age-actions button, .fsp-cookie-banner button { max-width: 100%; white-space: normal; word-break: break-word; overflow-wrap: anywhere; min-width: 0; padding: 0.72rem 1rem; font-size: 0.88rem; }
  .fsp-hero p, .fsp-hero .fsp-subline { white-space: normal; word-break: break-word; overflow-wrap: anywhere; max-width: 100%; }
  .fsp-section { padding: 0.95rem 0.75rem; }
  .fsp-section h2 { font-size: clamp(1.02rem, 4.8vw, 1.55rem); word-break: break-word; overflow-wrap: anywhere; }
  .fsp-table-wrap { max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .fsp-card { padding: 0.95rem 0.75rem; }
  .fsp-card:hover { transform: none; }
  .fsp-card-top { flex-wrap: wrap; align-items: flex-start; gap: 0.55rem; }
  .fsp-score { min-width: 0; max-width: 100%; flex-shrink: 1; word-break: break-word; overflow-wrap: anywhere; }
  .fsp-badge { font-size: 0.65rem; max-width: 100%; white-space: normal; }
  .fsp-card, .fsp-card * { min-width: 0; max-width: 100%; }
  .fsp-card h3, .fsp-card p, .fsp-card a, .fsp-card .fsp-bonus { word-break: break-word; overflow-wrap: anywhere; }
  .fsp-logo-wrap { width: min(140px, 100%); max-width: 100%; height: auto; min-height: 4.25rem; }
  .fsp-brand-meta { min-width: 0; width: 100%; }
  .fsp-cookie-banner { padding: 10px; gap: 10px; font-size: 0.84rem; }
  .fsp-footer-box { padding: 1.15rem 0.75rem; }
  .fsp-age-overlay { padding: 0.65rem; }
  .fsp-age-box { padding: 1.1rem 0.75rem; }
  .fsp-age-box h2 { font-size: clamp(1rem, 4.5vw, 1.35rem); word-break: break-word; }
  .fsp-rg-item { min-width: 0; word-break: break-word; overflow-wrap: anywhere; }
  .fsp-rg-checklist li, .fsp-rg-checklist p { word-break: break-word; overflow-wrap: anywhere; hyphens: auto; min-width: 0; }
  .fsp-reg-badge { white-space: normal; font-size: 0.72rem; max-width: 100%; flex-shrink: 1; }
}

@media (max-width: 380px) {
  .fsp-page { width: min(1180px, calc(100% - 8px)); }
  .fsp-logo-text { font-size: 0.52rem; letter-spacing: 0.02em; }
  .fsp-hero h1 { font-size: clamp(1rem, 5.2vw, 1.75rem); }
  .fsp-header-inner { padding: 0.55rem; }
  .fsp-section, .fsp-card, .fsp-footer-box { padding-inline: 0.65rem; }
}

@media (max-width: 900px) {
  .fsp-header-inner { position: relative; }
}
