:root {
  --fs-red: #e31b23;
  --fs-red-dark: #b9131a;
  --fs-ink: #080a0d;
  --fs-panel: #11151a;
  --fs-panel-2: #171c22;
  --fs-line: #2a3038;
  --fs-paper: #f3f5f6;
  --fs-white: #ffffff;
  --fs-muted: #aeb6c0;
  --fs-cyan: #55d1e5;
  --fs-green: #6cdb96;
  --fs-shell: 1180px;
}

html {
  scroll-behavior: smooth;
}

body.atf-fs-body {
  margin: 0;
  background: var(--fs-ink);
  color: var(--fs-white);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.atf-fs-body *,
body.atf-fs-body *::before,
body.atf-fs-body *::after {
  box-sizing: border-box;
  letter-spacing: 0;
}

body.atf-fs-body img {
  display: block;
  max-width: 100%;
}

body.atf-fs-body a {
  color: inherit;
  text-decoration: none;
}

body.atf-fs-body h1,
body.atf-fs-body h2,
body.atf-fs-body h3,
body.atf-fs-body p {
  margin-top: 0;
}

body.atf-fs-body h1,
body.atf-fs-body h2,
body.atf-fs-body h3 {
  color: inherit;
  font-family: Teko, Impact, "Arial Narrow", sans-serif;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: none;
}

body.atf-fs-body h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.3vw, 6.6rem);
}

body.atf-fs-body h2 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.3vw, 4.7rem);
}

body.atf-fs-body h3 {
  margin-bottom: 12px;
  font-size: 1.8rem;
}

.atf-fs-page {
  min-height: 100vh;
  background: var(--fs-ink);
}

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

.atf-fs-skip {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  padding: 10px 16px;
  border-radius: 4px;
  background: var(--fs-white);
  color: var(--fs-ink);
  transform: translateY(-160%);
}

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

.atf-fs-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 78px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 10, 13, 0.96);
  backdrop-filter: blur(14px);
}

.atf-fs-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.atf-fs-brand {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
  gap: 18px;
}

.atf-fs-brand img {
  width: 190px;
  height: auto;
}

.atf-fs-brand span {
  padding-left: 18px;
  border-left: 1px solid var(--fs-line);
  color: var(--fs-muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.atf-fs-header__actions,
.atf-fs-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.atf-fs-language {
  display: inline-flex;
  border: 1px solid var(--fs-line);
  border-radius: 5px;
  overflow: hidden;
}

.atf-fs-language a {
  display: grid;
  width: 42px;
  height: 38px;
  place-items: center;
  color: var(--fs-muted);
  font-size: 0.76rem;
  font-weight: 900;
}

.atf-fs-language a + a {
  border-left: 1px solid var(--fs-line);
}

.atf-fs-language a[aria-current="page"] {
  background: var(--fs-white);
  color: var(--fs-ink);
}

.atf-fs-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.atf-fs-button:hover {
  transform: translateY(-2px);
}

.atf-fs-button--primary {
  background: var(--fs-red);
  color: var(--fs-white);
  box-shadow: 0 12px 32px rgba(227, 27, 35, 0.25);
}

.atf-fs-button--primary:hover {
  background: var(--fs-red-dark);
  color: var(--fs-white);
}

.atf-fs-button--quiet {
  color: var(--fs-white);
}

.atf-fs-button--quiet:hover,
.atf-fs-button--outline:hover {
  border-color: var(--fs-white);
  background: var(--fs-white);
  color: var(--fs-ink);
}

.atf-fs-button--outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--fs-white);
}

.atf-fs-hero {
  position: relative;
  display: grid;
  min-height: min(720px, calc(100svh - 108px));
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--fs-line);
}

.atf-fs-hero__image,
.atf-fs-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.atf-fs-hero__image {
  z-index: -2;
  object-fit: cover;
  object-position: center 42%;
}

.atf-fs-hero__shade {
  z-index: -1;
  background: rgba(4, 7, 10, 0.75);
}

.atf-fs-hero__content {
  padding-block: 88px 72px;
}

.atf-fs-eyebrow {
  margin-bottom: 18px;
  color: var(--fs-red);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.atf-fs-hero__lead {
  max-width: 750px;
  margin-bottom: 30px;
  color: #e5e8eb;
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.65;
}

.atf-fs-hero__note {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--fs-muted);
  font-size: 0.9rem;
}

.atf-fs-hero__points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 940px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.atf-fs-hero__points li {
  min-height: 54px;
  padding: 7px 18px;
  border-left: 2px solid var(--fs-red);
  color: var(--fs-white);
  font-size: 0.86rem;
  font-weight: 800;
}

.atf-fs-section {
  padding-block: 112px;
}

.atf-fs-heading {
  max-width: 780px;
  margin-bottom: 56px;
}

.atf-fs-heading--wide {
  max-width: 900px;
}

.atf-fs-heading > p:last-child,
.atf-fs-copy {
  max-width: 760px;
  color: var(--fs-muted);
  font-size: 1.04rem;
}

.atf-fs-proof {
  background: var(--fs-panel);
}

.atf-fs-benefits {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.atf-fs-benefit {
  grid-column: span 2;
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--fs-line);
  border-radius: 7px;
  background: var(--fs-panel-2);
}

.atf-fs-benefit:nth-child(4) {
  grid-column: 2 / span 2;
}

.atf-fs-benefit > span,
.atf-fs-steps > li > span {
  display: block;
  margin-bottom: 26px;
  color: var(--fs-red);
  font-family: Teko, Impact, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.atf-fs-benefit p,
.atf-fs-steps p {
  margin-bottom: 0;
  color: var(--fs-muted);
  font-size: 0.94rem;
}

.atf-fs-process {
  background: var(--fs-paper);
  color: var(--fs-ink);
}

.atf-fs-process .atf-fs-eyebrow {
  color: var(--fs-red-dark);
}

.atf-fs-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 2px solid #cdd2d6;
  list-style: none;
}

.atf-fs-steps li {
  position: relative;
  min-height: 300px;
  padding: 38px 28px 24px 0;
}

.atf-fs-steps li + li {
  padding-left: 28px;
  border-left: 1px solid #cdd2d6;
}

.atf-fs-steps li::before {
  position: absolute;
  top: -7px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--fs-red);
  content: "";
}

.atf-fs-steps li + li::before {
  left: -6px;
}

.atf-fs-steps p {
  color: #5d6670;
}

.atf-fs-center {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.atf-fs-custom {
  background: var(--fs-ink);
}

.atf-fs-custom__grid,
.atf-fs-tools__grid,
.atf-fs-support__inner,
.atf-fs-faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 86px;
}

.atf-fs-custom__visual {
  position: relative;
  min-height: 460px;
  padding: 44px;
  border: 1px solid #34404a;
  border-radius: 8px;
  background: #0c1115;
  overflow: hidden;
}

.atf-fs-custom__visual::before,
.atf-fs-custom__visual::after {
  position: absolute;
  content: "";
}

.atf-fs-custom__visual::before {
  inset: 20px;
  border: 1px solid #202c34;
}

.atf-fs-custom__visual::after {
  right: 44px;
  bottom: 86px;
  width: 104px;
  height: 104px;
  border: 12px solid var(--fs-cyan);
  border-right-color: var(--fs-green);
  border-radius: 50%;
  opacity: 0.75;
}

.atf-fs-code-label,
.atf-fs-code-status {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--fs-cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.8rem;
  font-weight: 800;
}

.atf-fs-code-status {
  position: absolute;
  right: 44px;
  bottom: 42px;
  left: 44px;
  color: var(--fs-green);
}

.atf-fs-code-lines {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  margin-top: 68px;
}

.atf-fs-code-lines i {
  display: block;
  width: 82%;
  height: 5px;
  background: #2c3942;
}

.atf-fs-code-lines i:nth-child(2) {
  width: 56%;
  background: var(--fs-cyan);
}

.atf-fs-code-lines i:nth-child(3) {
  width: 92%;
}

.atf-fs-code-lines i:nth-child(4) {
  width: 68%;
  background: var(--fs-green);
}

.atf-fs-code-lines i:nth-child(5) {
  width: 44%;
}

.atf-fs-checklist {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.atf-fs-checklist li {
  position: relative;
  padding: 13px 0 13px 30px;
  border-bottom: 1px solid var(--fs-line);
  color: #e5e8eb;
}

.atf-fs-checklist li::before {
  position: absolute;
  top: 19px;
  left: 0;
  width: 12px;
  height: 8px;
  border-bottom: 2px solid var(--fs-green);
  border-left: 2px solid var(--fs-green);
  content: "";
  transform: rotate(-45deg);
}

.atf-fs-tools {
  background: #15191d;
}

.atf-fs-tools__grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
}

.atf-fs-tools__image {
  display: grid;
  min-height: 450px;
  margin: 0;
  place-items: center;
  border: 1px solid var(--fs-line);
  border-radius: 8px;
  background: #eceff1;
}

.atf-fs-tools__image img {
  width: min(82%, 480px);
  filter: drop-shadow(0 28px 35px rgba(0, 0, 0, 0.25));
}

.atf-fs-support {
  border-top: 1px solid #f04f55;
  border-bottom: 1px solid #f04f55;
  background: #a31219;
}

.atf-fs-support__inner {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
}

.atf-fs-support .atf-fs-eyebrow {
  color: #ffd7d9;
}

.atf-fs-support p:not(.atf-fs-eyebrow) {
  max-width: 700px;
  color: #ffe7e8;
}

.atf-fs-support__links {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.atf-fs-support__links a {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  font-weight: 800;
}

.atf-fs-support__links a:hover {
  padding-inline: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.atf-fs-support__links span {
  color: #ffd7d9;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: right;
}

.atf-fs-faq {
  background: var(--fs-paper);
  color: var(--fs-ink);
}

.atf-fs-faq__grid {
  grid-template-columns: minmax(270px, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
}

.atf-fs-faq__items {
  border-top: 1px solid #bcc2c7;
}

.atf-fs-faq details {
  border-bottom: 1px solid #bcc2c7;
}

.atf-fs-faq summary {
  position: relative;
  padding: 24px 52px 24px 0;
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}

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

.atf-fs-faq summary span,
.atf-fs-faq summary span::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 18px;
  height: 2px;
  background: var(--fs-red);
  content: "";
}

.atf-fs-faq summary span::after {
  top: 0;
  right: 0;
  transform: rotate(90deg);
}

.atf-fs-faq details[open] summary span::after {
  transform: rotate(0);
}

.atf-fs-faq details p {
  max-width: 700px;
  padding: 0 52px 24px 0;
  color: #565f68;
}

.atf-fs-final {
  padding-block: 118px;
  background: var(--fs-ink);
}

.atf-fs-final__inner {
  max-width: 920px;
  text-align: center;
}

.atf-fs-final h2,
.atf-fs-final p {
  margin-inline: auto;
}

.atf-fs-final p:not(.atf-fs-eyebrow) {
  max-width: 680px;
  color: var(--fs-muted);
}

.atf-fs-final .atf-fs-actions {
  justify-content: center;
  margin-top: 34px;
}

.atf-fs-footer {
  padding-block: 58px;
  border-top: 1px solid var(--fs-line);
  background: #050608;
}

.atf-fs-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px 70px;
}

.atf-fs-footer__brand img {
  width: 180px;
  height: auto;
  margin-bottom: 16px;
}

.atf-fs-footer__brand p,
.atf-fs-footer__copy {
  margin-bottom: 0;
  color: var(--fs-muted);
  font-size: 0.85rem;
}

.atf-fs-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.atf-fs-footer nav a {
  color: #e7eaed;
  font-size: 0.86rem;
  font-weight: 750;
}

.atf-fs-footer__copy {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid var(--fs-line);
}

.atf-fs-mobile-cta {
  display: none;
}

body.atf-fs-body .atf-cookie-reopen {
  right: 18px;
  left: auto;
}

[data-fs-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-fs-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.atf-fs-body :focus-visible {
  outline: 3px solid var(--fs-cyan);
  outline-offset: 3px;
}

@media (max-width: 1024px) {
  .atf-fs-header__login {
    display: none;
  }

  .atf-fs-hero__points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 0;
  }

  .atf-fs-benefit,
  .atf-fs-benefit:nth-child(4) {
    grid-column: span 3;
  }

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

  .atf-fs-steps li:nth-child(3) {
    border-left: 0;
  }

  .atf-fs-custom__grid,
  .atf-fs-tools__grid,
  .atf-fs-support__inner,
  .atf-fs-faq__grid {
    gap: 52px;
  }
}

@media (max-width: 767px) {
  body.atf-fs-body {
    padding-bottom: 68px;
    font-size: 16px;
  }

  body.atf-fs-body h1 {
    font-size: 3.35rem;
    overflow-wrap: anywhere;
  }

  body.atf-fs-body h2 {
    font-size: 2.65rem;
    overflow-wrap: anywhere;
  }

  body.atf-fs-body h3 {
    font-size: 1.65rem;
  }

  .atf-fs-shell {
    width: min(calc(100% - 32px), var(--fs-shell));
  }

  .atf-fs-header,
  .atf-fs-header__inner {
    min-height: 66px;
  }

  .atf-fs-brand img {
    width: 142px;
  }

  .atf-fs-brand span,
  .atf-fs-header__login,
  .atf-fs-header__register {
    display: none;
  }

  .atf-fs-language a {
    width: 38px;
    height: 36px;
  }

  .atf-fs-hero {
    min-height: min(720px, calc(100svh - 98px));
  }

  .atf-fs-hero__content {
    padding-block: 64px 48px;
  }

  .atf-fs-hero__image {
    object-position: 58% center;
  }

  .atf-fs-hero__shade {
    background: rgba(4, 7, 10, 0.8);
  }

  .atf-fs-hero__lead {
    font-size: 1.03rem;
  }

  .atf-fs-actions .atf-fs-button {
    width: 100%;
  }

  .atf-fs-hero__points {
    grid-template-columns: 1fr 1fr;
    margin-top: 30px;
  }

  .atf-fs-hero__points li {
    min-height: 48px;
    padding-inline: 12px;
    font-size: 0.78rem;
  }

  .atf-fs-section,
  .atf-fs-final {
    padding-block: 76px;
  }

  .atf-fs-heading {
    margin-bottom: 38px;
  }

  .atf-fs-benefits,
  .atf-fs-steps,
  .atf-fs-custom__grid,
  .atf-fs-tools__grid,
  .atf-fs-support__inner,
  .atf-fs-faq__grid {
    grid-template-columns: 1fr;
  }

  .atf-fs-benefit,
  .atf-fs-benefit:nth-child(4) {
    grid-column: auto;
    min-height: 0;
    padding: 24px;
  }

  .atf-fs-benefit > span {
    margin-bottom: 14px;
  }

  .atf-fs-steps {
    border-top: 0;
    gap: 0;
  }

  .atf-fs-steps li,
  .atf-fs-steps li + li {
    min-height: 0;
    padding: 26px 0 28px 56px;
    border-top: 1px solid #cdd2d6;
    border-left: 0;
  }

  .atf-fs-steps li::before,
  .atf-fs-steps li + li::before {
    top: 34px;
    left: 10px;
  }

  .atf-fs-steps > li > span {
    margin-bottom: 10px;
  }

  .atf-fs-custom__grid,
  .atf-fs-tools__grid,
  .atf-fs-support__inner,
  .atf-fs-faq__grid {
    gap: 42px;
  }

  .atf-fs-custom__visual {
    min-height: 330px;
    padding: 30px;
  }

  .atf-fs-code-status {
    right: 30px;
    bottom: 30px;
    left: 30px;
  }

  .atf-fs-custom__visual::after {
    right: 30px;
    bottom: 74px;
    width: 78px;
    height: 78px;
    border-width: 9px;
  }

  .atf-fs-tools__image {
    min-height: 340px;
    order: -1;
  }

  .atf-fs-support__links a {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
  }

  .atf-fs-support__links span {
    text-align: left;
  }

  .atf-fs-footer__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .atf-fs-footer nav {
    justify-content: flex-start;
  }

  .atf-fs-mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1200;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 62px;
    padding: 6px;
    border-top: 1px solid var(--fs-line);
    background: #080a0d;
    transition: transform 180ms ease;
  }

  .atf-fs-mobile-cta.is-hidden {
    transform: translateY(110%);
  }

  .atf-fs-mobile-cta a {
    display: grid;
    min-width: 0;
    padding: 8px 10px;
    place-items: center;
    border: 1px solid #3b424a;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 850;
    line-height: 1.15;
    text-align: center;
  }

  .atf-fs-mobile-cta a + a {
    border-color: var(--fs-red);
    background: var(--fs-red);
  }

  body.atf-fs-body .atf-cookie-reopen {
    right: 14px;
    bottom: 76px;
  }
}

@media (max-width: 390px) {
  body.atf-fs-body h1 {
    font-size: 3rem;
  }

  .atf-fs-hero__points {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

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

  [data-fs-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .atf-fs-button,
  .atf-fs-mobile-cta {
    transition: none;
  }
}
