:root {
  --bg: #171717;
  --panel: #202024;
  --panel-2: #2b2b31;
  --blue: #2f7cff;
  --blue-dark: #1f4589;
  --text: #f5f7fb;
  --muted: #9da3b2;
  --line: rgba(255, 255, 255, 0.08);
  --soft-line: rgba(255, 255, 255, 0.14);
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

* {
  border-radius: 0 !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  background: #141414;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  isolation: isolate;
}

.hero-shell::before,
.hero-shell::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
}

.hero-shell::before {
  background:
    linear-gradient(rgba(7, 8, 12, 0.72), rgba(7, 8, 12, 0.82)),
    radial-gradient(circle at 50% 44%, rgba(47, 124, 255, 0.16), transparent 34rem),
    url("background.gif");
  background-position: center;
  background-size: cover;
  animation: none;
}

.hero-shell::after {
  opacity: 0.58;
  background:
    linear-gradient(180deg, rgba(20, 20, 20, 0), #141414 92%),
    radial-gradient(circle at 50% 40%, transparent 0%, rgba(0, 0, 0, 0.38) 72%);
  animation: none;
}

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

.topbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  margin: 20px auto 0;
  padding: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: 154px;
  height: auto;
}

.nav {
  display: flex;
  gap: 6px;
  flex-wrap: nowrap;
}

.nav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.nav a:hover {
  color: var(--text);
  border-color: rgba(47, 124, 255, 0.35);
  background: rgba(47, 124, 255, 0.12);
}

.nav svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #202024;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(1320px, calc(100% - 32px));
  min-height: calc(100svh - 96px);
  margin: 0 auto;
  padding: 56px 0 96px;
  text-align: center;
  animation: hero-enter 900ms ease both;
}

.hero-copy {
  max-width: 860px;
}

.hero h1,
.hero .lead,
.hero-actions {
  animation: hero-item-enter 720ms ease both;
}

.hero h1 {
  animation-delay: 120ms;
}

.hero .lead {
  animation-delay: 220ms;
}

.hero-actions {
  animation-delay: 320ms;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: none;
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 4.15vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h1 span {
  color: var(--blue);
}

.title-line {
  display: block;
  color: var(--text);
  white-space: nowrap;
}

.title-line span {
  color: var(--blue);
}

h2 {
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.lead {
  max-width: 66ch;
  margin-inline: auto;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 900;
}

.btn.primary {
  background: var(--blue);
}

.btn.ghost {
  background: #2b2b31;
}

.btn,
.buy-btn,
.placeholder-btn,
.billing-option {
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover,
.buy-btn:hover {
  transform: translateY(-2px);
}

.btn.primary:hover,
.buy-btn:hover {
  background: #1f6eff;
  box-shadow: 0 14px 30px rgba(47, 124, 255, 0.3);
}

.btn.ghost:hover {
  background: #35353d;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-item-enter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tech-glow {
  from {
    filter: brightness(0.95);
    transform: translate3d(-16px, -10px, 0) scale(1);
  }

  to {
    filter: brightness(1.08);
    transform: translate3d(16px, 10px, 0) scale(1.025);
  }
}

@keyframes tech-drift {
  from {
    background-position: 0 0, 0 0, 0 0;
  }

  to {
    background-position: 76px -76px, 240px 0, 0 240px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero,
  .hero h1,
  .hero .lead,
  .hero-actions {
    animation: none;
  }

  .hero-shell::before,
  .hero-shell::after {
    animation: none;
  }
}

.contact-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--text);
  font-size: 0.95rem;
}

.clients-band {
  overflow: hidden;
  padding: 54px 0 58px;
  color: #151821;
  background: #f3f5f8;
}

.section-heading {
  width: min(880px, calc(100% - 32px));
  margin: 0 auto 24px;
  text-align: center;
}

.section-heading p {
  margin-bottom: 0;
  color: #607086;
}

.resource-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.resource-marquee::before,
.resource-marquee::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 9%;
  pointer-events: none;
  content: "";
}

.resource-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #f3f5f8, rgba(243, 245, 248, 0));
}

.resource-marquee::after {
  right: 0;
  background: linear-gradient(90deg, rgba(243, 245, 248, 0), #f3f5f8);
}

.resource-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: resource-scroll 34s linear infinite;
}

.resource-track article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  width: 270px;
  min-height: 82px;
  flex: 0 0 auto;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 96px !important;
  background:
    linear-gradient(145deg, rgba(47, 124, 255, 0.12), transparent 46%),
    #202024;
  box-shadow: 0 18px 45px rgba(20, 37, 70, 0.12);
}

.resource-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #dce4f0;
  border-radius: 50% !important;
  color: var(--blue);
  background: #eef5ff;
  box-shadow: 0 10px 24px rgba(47, 124, 255, 0.12);
  font-size: 0.78rem;
  font-weight: 900;
}

.resource-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.resource-track h3 {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 1.02rem;
  line-height: 1.12;
}

@keyframes resource-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

.plans-band {
  padding: 64px 0;
  background: var(--blue);
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plans-heading {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto 42px;
  color: #ffffff;
  text-align: center;
}

.plans-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}

.plans-heading p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.6;
}

.bot-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 64px;
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
}

.bot-card {
  position: relative;
  min-height: 380px;
  padding: 26px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #202024;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.bot-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: #24242a;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
  transform: translateY(-8px);
}

.bot-card.active {
  min-height: 444px;
  text-align: center;
}

.bot-card.active:hover {
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 30px 82px rgba(0, 0, 0, 0.4), 0 0 0 5px rgba(255, 255, 255, 0.06);
}

.bot-card.disabled {
  color: #858894;
}

.bot-card.disabled p {
  margin: 70px 0 28px;
  color: #a7aab4;
  font-size: 1.2rem;
  font-weight: 800;
  text-align: center;
}

.card-bar {
  width: 84%;
  height: 18px;
  margin: 0 auto 48px;
  border-radius: 999px;
  background: #151515;
}

.empty-lines {
  display: grid;
  gap: 11px;
  margin: 0 0 22px;
}

.empty-lines span {
  display: block;
  height: 39px;
  border-radius: 7px;
  background: #151515;
}

.tag {
  position: absolute;
  top: -12px;
  left: 50%;
  padding: 5px 18px;
  border-radius: 3px;
  color: #171717;
  background: #ffdf39;
  font-size: 0.68rem;
  font-weight: 900;
  transform: translateX(-50%);
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 20px;
  font-size: 3.3rem;
  font-weight: 900;
  line-height: 1;
  cursor: default;
  -webkit-user-select: none;
  user-select: none;
}

.price-wrap {
  position: relative;
  cursor: default;
  -webkit-user-select: none;
  user-select: none;
}

.price small,
.price em {
  color: var(--muted);
  font-size: 1.05rem;
  font-style: normal;
}

.price em {
  font-size: 0.88rem;
  font-weight: 800;
}

.billing-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 4px 0 18px;
  padding: 5px;
  border-radius: 999px;
  background: #151515;
}

.billing-option {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  color: #b9bfcc;
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.billing-option.active {
  color: #ffffff;
  background: var(--blue);
}

.billing-option:hover {
  color: #ffffff;
  background: rgba(47, 124, 255, 0.22);
}

.billing-option.active:hover {
  background: #1f6eff;
}

.billing-discount {
  display: none;
  margin-left: 6px;
  color: #35e36f;
  font-size: 0.72rem;
  font-weight: 900;
}

.billing-option.active .billing-discount {
  display: inline;
}

.bot-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
  position: relative;
  z-index: 2;
}

.bot-card li {
  position: relative;
  padding: 8px 10px;
  border-radius: 5px;
  color: #d8dde7;
  background: #171717;
  font-size: 0.78rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.bot-card.active li {
  padding-left: 32px;
  cursor: default;
  transform-origin: center;
}

.bot-card.active li:hover {
  z-index: 4;
  color: #ffffff;
  background: #101012;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(47, 124, 255, 0.24);
  transform: scale(1.08) translateX(2px);
}

.bot-card.active li::before {
  position: absolute;
  top: 50%;
  left: 10px;
  display: grid;
  width: 14px;
  height: 14px;
  place-items: center;
  border-radius: 50%;
  color: #06210f;
  background: #35e36f;
  content: "\2713";
  font-size: 0.68rem;
  font-weight: 900;
  transform: translateY(-50%);
}

.bot-card.disabled li {
  color: #696c76;
}

.buy-btn,
.placeholder-btn {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border-radius: 7px;
  font-size: 0.82rem;
  font-weight: 900;
}

.buy-btn {
  background: var(--blue);
}

.placeholder-btn {
  color: #777b86;
  background: #151515;
}

.placeholder-btn:hover {
  color: #9da3b2;
  background: #19191d;
}

.contact-section {
  padding: 64px 0;
  background: #171717;
}

.contact-box {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
}

.contact-brand,
.contact-card {
  border-radius: 8px;
  background: #29282e;
}

.contact-brand {
  padding: 28px;
}

.contact-brand img {
  width: 128px;
}

.contact-brand p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.contact-grid {
  display: grid;
  gap: 14px;
}

.contact-card {
  padding: 18px 20px;
}

.footer {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0 34px;
  color: var(--muted);
  text-align: center;
}

.footer p {
  margin: 0;
}

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

  .hero {
    width: min(720px, calc(100% - 32px));
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: min(100%, 260px);
    margin-inline: auto;
  }

  .btn {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.4rem, 8vw, 4.2rem);
  }

  .title-line {
    white-space: normal;
  }

  .bot-cards {
    grid-template-columns: 1fr;
    gap: 18px;
    width: min(420px, calc(100% - 32px));
  }

  .bot-card.active {
    order: -1;
  }

  .resource-track article {
    width: 260px;
  }
}

@media (max-width: 700px) {
  .topbar {
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
    width: min(100% - 32px, 560px);
  }

  .brand img {
    width: 112px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 20;
    display: none;
    min-width: 210px;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: #202024;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    justify-content: flex-start;
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .nav svg {
    width: 15px;
    height: 15px;
  }

  .hero {
    min-height: calc(100svh - 88px);
    padding-top: 56px;
    width: min(100% - 24px, 560px);
  }

  h1 {
    font-size: clamp(2.45rem, 11vw, 3.45rem);
    line-height: 1.03;
  }

  .hero-copy {
    max-width: 100%;
  }

  .lead {
    max-width: 31ch;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    width: min(100%, 280px);
    margin-inline: auto;
    gap: 10px;
  }

  .btn {
    width: 100%;
    min-height: 50px;
    padding: 0 10px;
    font-size: 0.86rem;
    white-space: nowrap;
  }

  .resource-track article {
    width: 240px;
    padding: 14px;
  }

  .bot-card.disabled p {
    margin-top: 28px;
  }
}
