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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Mono", monospace;
  color: #171717;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.skip-link {
  position: absolute;
  top: -56px;
  left: 20px;
  z-index: 1400;
  padding: 12px 16px;
  border-radius: 12px;
  background: #fff;
  color: #171717;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 20px;
}

body.page-ready {
  opacity: 1;
}

body.page-exit {
  opacity: 0;
}

a {
  color: #ef3179;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #171717;
  outline-offset: 3px;
}

.simple-header {
  background: #fff;
  position: sticky;
  top: 0;
  padding: 22px 0 18px;
  z-index: 1000;
  box-shadow: 0 4px 14px rgba(239, 49, 121, 0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: padding 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.simple-wrap {
  width: min(1290px, calc(100% - 40px));
  margin: 0 auto;
}

.container {
  width: min(1290px, calc(100% - 40px));
  margin: 0 auto;
}

.simple-header__row {
  min-height: 41px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 1202;
}

.simple-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.simple-logo {
  text-decoration: none;
  color: #171717;
  display: inline-flex;
  align-items: center;
  width: 188px;
  height: 40px;
  flex-shrink: 0;
}

.simple-logo__img {
  display: block;
  width: 188px;
  height: 40px;
}


.simple-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 3vw, 56px);
  flex: 1;
}

.simple-nav a {
  text-decoration: none;
  color: #101010;
  font-family: "Space Mono", monospace;
  font-size: clamp(15px, 1.05vw, 16px);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  padding: 8px 0;
  border-radius: 0;
  transition: color 0.2s ease, transform 0.2s ease, letter-spacing 0.2s ease, opacity 0.2s ease;
}

.simple-nav a:hover,
.simple-nav a:focus-visible {
  opacity: 1;
  color: #ef3179;
  background: transparent;
  box-shadow: none;
  transform: translateY(-1px);
  letter-spacing: 0.04em;
}

.simple-footer__item a:hover,
.simple-footer__item a:focus-visible {
  color: inherit;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.simple-btn {
  width: 142px;
  height: 50px;
  border-radius: 16px;
  background: #ef3179;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: opacity 0.2s ease;
}

.simple-header.sticky {
  padding: 10px 0;
}


.simple-header.sticky .simple-btn {
  width: 123px;
  height: 41px;
  border-radius: 10px;
  font-size: 14px;
  letter-spacing: 0;
}

.simple-btn:hover {
  transform: none;
  box-shadow: none;
}

.simple-hamburger {
  display: none;
  width: 28px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.simple-hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #101010;
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}

.simple-hamburger span:nth-child(1) {
  top: 0;
}

.simple-hamburger span:nth-child(2) {
  top: 10px;
}

.simple-hamburger span:nth-child(3) {
  top: 20px;
}

.simple-hamburger.is-active span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}

.simple-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.simple-hamburger.is-active span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}

.simple-mobile-nav {
  display: none;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .simple-header {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  z-index: 1201;
}


body.menu-open .simple-logo {
  color: #ffffff;
}

body.menu-open .simple-btn {
  background: #ffffff;
  color: #ef3179;
  box-shadow: none;
}

body.menu-open .simple-hamburger span {
  background: #ffffff;
}

.simple-main {
  padding: 100px 0;
}

.simple-panel + .simple-panel {
  margin-top: 28px;
}

.simple-kicker {
  margin: 0 0 18px;
  color: #ef3179;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.05em;
}

.simple-title {
  margin: 0 0 18px;
  font-family: "Lilita One", cursive;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 0.98;
  text-transform: uppercase;
}

.simple-subtitle,
.simple-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #4a4a4a;
}

.simple-section + .simple-section {
  margin-top: 28px;
}

.simple-section h2 {
  margin: 0 0 10px;
  font-family: "Lilita One", cursive;
  font-size: 28px;
  text-transform: uppercase;
}

.simple-section h3 {
  margin: 0 0 8px;
  font-size: 18px;
  text-transform: uppercase;
}

.simple-list {
  margin: 12px 0 0;
  padding-left: 20px;
  color: #4a4a4a;
  line-height: 1.8;
}

.simple-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.footer {
  padding-top: 70px;
  padding-bottom: 44px;
  background: #fff;
}

.footer .container {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 108px;
  align-items: start;
}

.footer-logo svg {
  height: 40px;
  width: auto;
  display: block;
}

.footer-copy {
  margin-top: 18px;
  max-width: 330px;
  font-family: "Space Mono", monospace;
  font-size: 14px;
  line-height: 1.5;
  color: #1A1A1A;
}

.footer-links-title {
  margin-bottom: 24px;
  margin-left: 0;
  font-family: "Space Mono", monospace;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  color: #1A1A1A;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, max-content));
  gap: 24px 120px;
  align-items: start;
  justify-content: start;
}

.footer-links-group {
  display: grid;
  gap: 20px;
}

.footer-links-group:first-child {
  margin-left: 0;
}

.footer-links-group:last-child {
  margin-left: 0;
}

.footer-links-group-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-link-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-link-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #F9CE34 0%, #EE2A7B 55%, #6228D7 100%);
}

.footer-link-item a {
  font-family: "Space Mono", monospace;
  font-size: 16px;
  color: #1A1A1A;
  text-decoration: none;
}

.btn-footer-get-started {
  width: 142px;
  height: 50px;
  border-radius: 16px;
  background: #EF3179;
  color: #fff;
  font-family: "Space Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-top: 30px;
}

.simple-footer {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 30px;
  background: #fff;
}

.simple-footer__row {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 108px;
  align-items: start;
}

.simple-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-column: 1;
  gap: 18px;
}

.simple-logo--footer {
  display: inline-flex;
  width: 188px;
  height: 40px;
}

.simple-btn--footer {
  width: 142px;
  height: 50px;
  margin-top: 12px;
  background: #EF3179;
}

.simple-footer__copy {
  margin: 0;
  max-width: 330px;
  font-family: "Space Mono", monospace;
  font-size: 14px;
  line-height: 1.5;
  color: #1A1A1A;
}

.simple-footer__copyright {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  line-height: 1.3;
  color: rgba(26, 26, 26, 0.62);
}

.simple-footer__copyright--desktop {
  margin: 70px 0 0;
  grid-column: 1;
  display: block !important;
}

.simple-footer__copyright--mobile {
  display: none !important;
}

.simple-footer__grid {
  grid-column: 2;
  grid-row: 1 / span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 88px;
  align-items: start;
}

.simple-footer__group {
  display: grid;
  gap: 24px;
}

.simple-footer__group:first-child {
  margin-left: 0;
}

.simple-footer__group:last-child {
  margin-left: 0;
}

.simple-footer__title {
  margin: 0 0 16px;
  margin-left: 0;
  font-family: "Space Mono", monospace;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  color: #1A1A1A;
}

.simple-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.simple-footer__item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.simple-footer__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #F9CE34 0%, #EE2A7B 55%, #6228D7 100%);
}

.simple-footer__item a {
  font-family: "Space Mono", monospace;
  font-size: 16px;
  color: #1A1A1A;
  text-decoration: none;
}

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

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (min-width: 901px) {
  .simple-main {
    padding: 100px 0;
  }

  .simple-footer {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 94px;
  }
}

.simple-note {
  margin: 0;
  color: #666;
  line-height: 1.7;
  font-size: 16px;
}

@media (max-width: 900px) {
  .simple-grid {
    grid-template-columns: 1fr;
  }

  .simple-header__row {
    padding: 0;
    align-items: center;
    flex-direction: row;
    gap: 12px;
  }

  .simple-header {
    padding: 16px 0 12px;
    z-index: 1200;
  }

  .simple-header.sticky {
    padding: 10px 0;
  }

  .simple-logo {
    width: 188px;
    height: 40px;
  }

  .simple-nav {
    display: none;
  }

  .simple-btn {
    width: 112px;
    height: 42px;
    font-size: 11px;
    border-radius: 14px;
    padding: 0 10px;
    flex-shrink: 0;
    position: relative;
    left: -10px;
  }

  .simple-header.sticky .simple-btn {
    width: 112px;
    height: 42px;
    font-size: 11px;
    letter-spacing: 0;
    border-radius: 14px;
    left: -10px;
  }

  .simple-header__actions {
    margin-left: auto;
    gap: 10px;
  }

  .simple-hamburger {
    display: block;
  }

  .simple-mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    z-index: 1201;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 0;
    background: linear-gradient(180deg, rgba(113, 43, 212, 0.98) 0%, rgba(239, 49, 121, 0.96) 58%, rgba(255, 97, 58, 0.94) 100%);
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }

  .simple-mobile-nav.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .simple-mobile-nav a {
    display: block;
    width: auto;
    padding: 0;
    border-radius: 0;
    text-decoration: none;
    color: #fff;
    font-family: "Space Mono", monospace;
    font-size: 24px;
    line-height: 1.2;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .simple-mobile-nav.is-open a {
    opacity: 1;
    transform: translateY(0);
  }

  .simple-mobile-nav.is-open a:nth-child(1) {
    transition-delay: 0.04s;
  }

  .simple-mobile-nav.is-open a:nth-child(2) {
    transition-delay: 0.08s;
  }

  .simple-mobile-nav.is-open a:nth-child(3) {
    transition-delay: 0.12s;
  }

  .simple-mobile-nav.is-open a:nth-child(4) {
    transition-delay: 0.16s;
  }

  .footer {
    padding-top: 44px;
    padding-bottom: 30px;
  }

  .footer .container {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-links-title,
  .footer-links-group:first-child,
  .footer-links-group:last-child,
  .footer-links-col:first-child {
    margin-left: 0;
  }

  .footer-links-group-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-link-item a {
    font-size: 14px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .btn-footer-get-started {
    width: 140px;
    height: 46px;
    margin-top: 24px;
  }

  .simple-panel {
    padding: 0;
  }

  .simple-wrap {
    width: min(100% - 24px, 1290px);
  }

  .container {
    width: min(100% - 24px, 1290px);
  }

  .simple-footer {
    margin-top: 0;
    padding-top: 44px;
    padding-bottom: 30px;
  }

  .simple-footer__row {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: flex-start;
  }

  .simple-footer__brand {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 18px;
    row-gap: 18px;
  }

  .simple-logo--footer {
    margin: 0;
    grid-column: 1;
    grid-row: 1;
  }

  .simple-footer__grid {
    grid-column: 1;
    grid-row: 4;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .simple-footer__title,
  .simple-footer__group:first-child,
  .simple-footer__group:last-child,
  .simple-footer__col:first-child {
    margin-left: 0;
  }

  .simple-footer__nav {
    gap: 18px;
  }

  .simple-footer__item a {
    font-size: 14px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .simple-footer__copy {
    max-width: none;
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .simple-btn--footer {
    width: 140px;
    height: 46px;
    margin-top: 8px;
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    justify-self: end;
  }

  .simple-footer__copyright--desktop {
    display: none !important;
  }

  .simple-footer__copyright--mobile {
    display: block !important;
    font-size: 10px;
    margin-top: -30px;
    grid-column: 1 / -1;
    grid-row: 5;
  }
}

@media (prefers-reduced-motion: reduce) {
  body {
    transition: none;
  }

  .simple-btn {
    transition: none;
  }
}
