@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap");

:root {
  --bg: #070b14;
  --panel: #101827;
  --panel-2: #151f31;
  --line: #29354a;
  --ink: #f5f7ff;
  --muted: #98a4b8;
  --mint: #0ab58f;
  --purple: #8c7bff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
}
.wrap {
  width: min(1140px, calc(100% - 48px));
  margin: auto;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2 {
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  letter-spacing: -0.06em;
}
h1 {
  font-size: clamp(3.2rem, 6vw, 5.7rem);
  line-height: 0.98;
}
h2 {
  font-size: clamp(2.3rem, 4.5vw, 4.25rem);
  line-height: 1.06;
}
h1 span,
h2 span {
  color: var(--purple);
  display: block;
}
.eyebrow {
  font-size: 10px;
  color: #8d9ab0;
  letter-spacing: 0.15em;
  font-weight: 800;
  margin-bottom: 18px;
}
.eyebrow i {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--mint);
  border-radius: 50%;
  margin-right: 8px;
}
.header {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img,
footer img {
  display: block;
  width: 119px;
  height: auto;
}
.header nav {
  display: flex;
  gap: 25px;
  align-items: center;
}
.header nav a {
  color: #a6b0c3;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}
.header nav a:hover,
.header nav .login {
  color: #fff;
}
.header nav a.button {
  color: #fff;
  font-weight: 800;
  text-shadow: 0 1px 2px rgba(3, 20, 40, 0.4);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: var(--purple);
  border: 1px solid transparent;
  border-radius: 10px;
  min-height: 51px;
  padding: 0 21px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 28px #6254dd44;
  transition: 0.2s;
}
.button:hover {
  transform: translateY(-2px);
  background: #9a8dff;
}
.button.small {
  min-height: 39px;
  padding: 0 15px;
  font-size: 11px;
}
.button.outline {
  background: transparent;
  border-color: #4d5970;
  box-shadow: none;
}
.button.outline:hover {
  background: #202a3c;
}
.menu {
  display: none;
  color: #fff;
  background: transparent;
  border: 0;
  font-size: 22px;
}
.hero {
  min-height: 670px;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 47px;
  align-items: center;
  padding: 65px 0;
}
.lead {
  max-width: 480px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin: 27px 0;
}
.actions {
  display: flex;
  gap: 24px;
  align-items: center;
}
.link {
  color: #edf0f8;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
.link b {
  color: var(--mint);
  font-size: 18px;
  margin-left: 6px;
}
.quiet {
  color: #748197;
  font-size: 11px;
  margin-top: 20px;
}
.hero-image {
  height: 470px;
  position: relative;
}
.hero-image:before {
  content: "";
  position: absolute;
  inset: 8% 0;
  background: radial-gradient(ellipse, #486fd75e, transparent 66%);
  filter: blur(12px);
}
.hero-image > img {
  position: absolute;
  top: 24px;
  right: 0;
  width: min(680px, 100%);
  height: 405px;
  object-fit: cover;
  object-position: top;
  border: 1px solid #384664;
  border-radius: 14px;
  box-shadow: 0 32px 70px #0008;
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
}
.badge {
  position: absolute;
  z-index: 1;
  display: grid;
  gap: 5px;
  padding: 14px 15px;
  background: #172238ed;
  border: 1px solid #425174;
  border-radius: 10px;
  box-shadow: 0 14px 28px #0006;
  color: #aab5c7;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.badge b {
  color: #fff;
  font-size: 16px;
  letter-spacing: 0;
}
.badge em {
  color: #35d0ad;
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0;
}
.revenue {
  top: 0;
  left: -15px;
}
.saving {
  right: -19px;
  bottom: 18px;
}
.problem {
  padding: 100px 0;
  text-align: center;
}
.problem h2 {
  max-width: 720px;
  margin: auto;
}
.pains {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 45px 0 70px;
  text-align: left;
}
.pains article {
  background: linear-gradient(150deg, #141a29, #0b0f1a);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 22px;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.pains article:hover {
  transform: translateY(-4px);
  border-color: #7a3b48;
  box-shadow: 0 16px 36px -20px rgba(255, 105, 130, 0.45);
}
.pains b {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 22px;
  font-style: normal;
  background: linear-gradient(150deg, #3a1f27, #241019);
  border: 1px solid #542b36;
  margin-bottom: 15px;
}
.pains strong {
  display: block;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 14.5px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 7px;
}
.pains span {
  display: block;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--muted);
}
blockquote {
  font-family: "Plus Jakarta Sans";
  font-size: clamp(1.4rem, 2.7vw, 2.15rem);
  color: #aeb8ca;
  line-height: 1.4;
  letter-spacing: -0.04em;
}
blockquote strong {
  display: block;
  color: #fff;
}
.features {
  padding: 103px 0;
  background: #0c111b;
}
.section-text {
  max-width: 565px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 23px 0 42px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}
.feature-grid article {
  min-height: 200px;
  padding: 26px 25px;
  background: linear-gradient(160deg, #121a2b, #0d1420);
  border: 1px solid #27334a;
  border-radius: 14px;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.feature-grid article:hover {
  transform: translateY(-4px);
  border-color: #7769df;
  box-shadow: 0 18px 40px -22px rgba(140, 123, 255, 0.5);
}
.feature-grid b {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  font-size: 22px;
  color: #cfc7ff;
  background: linear-gradient(150deg, #2b2a55, #1c1b39);
  border: 1px solid #3b3a6b;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.feature-grid h3 {
  font-size: 15.5px;
  letter-spacing: -0.01em;
  margin: 20px 0 10px;
}
.feature-grid p {
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--muted);
}
.showcase {
  padding: 110px 0;
}
.screens {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 15px;
  margin-top: 42px;
}
.screens figure {
  margin: 0;
  padding: 12px;
  background: #111a29;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.screens img {
  display: block;
  width: 100%;
  height: 183px;
  object-fit: cover;
  object-position: top;
  border-radius: 7px;
  transition: 0.3s;
}
.screens figure:hover img {
  transform: scale(1.025);
}
.screens figcaption {
  display: grid;
  gap: 6px;
  padding: 15px 3px 4px;
}
.screens figcaption b {
  font-size: 13px;
}
.screens figcaption span {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}
.note {
  text-align: center;
  color: #718099;
  font-size: 10px;
  margin-top: 16px;
}
.steps {
  padding: 95px 0;
  border-top: 1px solid #202b3d;
}
.steps ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 0;
  margin: 48px 0 0;
  list-style: none;
}
.steps li {
  position: relative;
}
.steps li:not(:last-child):after {
  content: "";
  position: absolute;
  left: 45px;
  right: -18px;
  top: 15px;
  border-top: 1px dashed #586378;
}
.steps li > b {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  background: #2b274c;
  border-radius: 50%;
  color: #aa9fff;
  font-size: 9px;
}
.steps h3 {
  font-size: 14px;
  margin: 21px 0 8px;
}
.steps p {
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
}
.plans {
  padding: 105px 0;
  background: #0d131f;
}
.plans h2 {
  margin-bottom: 44px;
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.plan-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 29px;
  background: #111a29;
  border: 1px solid #2c3850;
  border-radius: 13px;
}
.plan-grid h3 {
  font-size: 20px;
}
.plan-grid p {
  margin: 9px 0 22px;
  color: var(--muted);
  font-size: 12px;
}
.plan-grid strong {
  font-size: 29px;
  letter-spacing: -0.05em;
}
.plan-grid strong small {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0;
}
.plan-grid em {
  color: #8d99af;
  font-size: 10px;
  font-style: normal;
  margin-top: 6px;
}
.plan-grid ul {
  padding: 0;
  list-style: none;
  margin: 27px 0;
}
.plan-grid li {
  font-size: 11px;
  color: #d7dce7;
  margin: 12px 0;
}
.plan-grid li:before {
  content: "✓";
  color: #35d0ad;
  margin-right: 8px;
}
.plan-grid .button {
  margin-top: auto;
}
.plan-grid .pro {
  border-color: #786bf3;
  background: linear-gradient(150deg, #25234f, #111a29 60%);
  box-shadow: 0 19px 45px #32277f49;
}
.pro > span {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #887cff;
  padding: 5px 7px;
  border-radius: 4px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.07em;
}
.faq {
  padding: 110px 0;
  max-width: 900px;
}
.faq h2 {
  margin-bottom: 40px;
}
.faq details {
  border-top: 1px solid #2a354a;
}
.faq details:last-child {
  border-bottom: 1px solid #2a354a;
}
.faq summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  padding: 21px 0;
  font-size: 14px;
  font-weight: 800;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary b {
  font-size: 19px;
  color: #a79cff;
  font-weight: 400;
}
.faq details[open] summary b {
  transform: rotate(45deg);
}
.faq details p {
  max-width: 650px;
  padding-bottom: 20px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}
.cta {
  padding: 110px 0;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 100%, #5146966e, transparent 61%), #101725;
}
.cta h2 {
  max-width: 850px;
  margin: auto;
}
.cta > div > p:not(.eyebrow) {
  max-width: 600px;
  margin: 25px auto 30px;
  color: #abb5c6;
  font-size: 14px;
  line-height: 1.7;
}
.payments {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 40px 0 8px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.payments-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.payments-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.payments-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
.payments-list img {
  display: block;
  height: 34px;
  width: auto;
  border-radius: 7px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}
.payments-processor {
  height: 40px;
  width: auto;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 9px;
  box-sizing: content-box;
}

.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid #ffffff2b;
  border-radius: 50%;
  background: linear-gradient(135deg, #00b99c, #078ee8);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 34px #000a, 0 0 0 6px #078ee81f;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.9);
  transition: opacity 0.25s ease, transform 0.25s ease, filter 0.2s ease;
}
.to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.to-top:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}
@media (max-width: 600px) {
  .to-top {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    width: 44px;
    height: 44px;
  }
}

body > footer {
  border-top: 1px solid var(--line);
  color: #8a96aa;
  font-size: 10px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.15fr 1.2fr;
  gap: 40px;
  padding-top: 56px;
}
.footer-tagline {
  margin-top: 18px;
  max-width: 320px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.footer-col h3 {
  position: relative;
  margin-bottom: 8px;
  padding-bottom: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}
.footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #00b99c, #078ee8);
}
body > footer a {
  color: #abb5c6;
  text-decoration: none;
}
.footer-col a {
  font-size: 12px;
  line-height: 1.4;
  transition:
    color 0.18s ease,
    transform 0.18s ease;
}
.footer-col a:hover,
.footer-col a:focus-visible {
  color: #fff;
  transform: translateX(2px);
}
.footer-parent {
  display: block;
  margin-top: 16px;
  letter-spacing: 0.02em;
}
.footer-parent strong {
  color: #d3dce8;
  font-weight: 700;
}
.footer-contact {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.footer-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--panel);
  color: var(--ink);
  transition:
    border-color 0.18s ease,
    color 0.18s ease;
}
.footer-icon svg {
  width: 16px;
  height: 16px;
}
.footer-contact:hover .footer-icon,
.footer-contact:focus-visible .footer-icon {
  border-color: #078ee8;
  color: #17b8ff;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 24px;
  margin-top: 46px;
  padding-top: 22px;
  padding-bottom: 32px;
  border-top: 1px solid var(--line);
}
@media (max-width: 1000px) {
  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 28px;
  }
  .footer-brand,
  .footer-col:last-of-type {
    grid-column: 1 / -1;
  }
}
@media (max-width: 780px) {
  .wrap {
    width: min(100% - 40px, 1140px);
  }
  .header {
    height: 66px;
  }
  .brand img {
    width: 101px;
  }
  .menu {
    display: block;
  }
  .header nav {
    display: none;
    position: absolute;
    z-index: 10;
    top: 62px;
    left: 20px;
    right: 20px;
    padding: 17px;
    background: #151e2f;
    border: 1px solid #334159;
    border-radius: 12px;
    flex-direction: column;
    align-items: stretch;
  }
  .header nav.open {
    display: flex;
  }
  .header nav .button {
    text-align: center;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 57px 0 52px;
    gap: 22px;
    min-height: 0;
  }
  .hero h1 {
    font-size: 3.35rem;
  }
  .hero-image {
    height: 320px;
  }
  .hero-image > img {
    top: 10px;
    right: -26px;
    width: 500px;
    height: 300px;
    transform: perspective(900px) rotateY(-5deg) scale(0.77);
    transform-origin: top right;
  }
  .badge {
    transform: scale(0.75);
    transform-origin: left top;
  }
  .saving {
    right: -28px;
    bottom: 4px;
    transform-origin: right bottom;
  }
  .pains,
  .feature-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }
  .problem,
  .showcase,
  .faq {
    padding: 75px 0;
  }
  .pains {
    margin: 33px 0 50px;
  }
  .screens {
    grid-template-columns: 1fr 1fr;
    margin-top: 35px;
  }
  .screens .screen-wide {
    grid-column: 1/-1;
  }
  .steps {
    padding: 75px 0;
  }
  .steps ol {
    grid-template-columns: 1fr 1fr;
    gap: 30px 18px;
  }
  .steps li:after {
    display: none;
  }
  .plans {
    padding: 75px 0;
  }
  .cta {
    padding: 80px 0;
  }
  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 22px;
    padding-top: 46px;
  }
  .footer-bottom {
    margin-top: 36px;
    padding-bottom: 28px;
  }
}
