@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  background: #0a0a0f;
  color: #e4e4ec;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #6366f1, #818cf8, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}
.btn--primary {
  background: #6366f1;
  color: #fff;
}
.btn--primary:hover {
  background: #818cf8;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.25);
}
.btn--accent {
  background: rgba(99, 102, 241, 0.12);
  color: #818cf8;
  border: 1px solid rgba(99, 102, 241, 0.25);
}
.btn--accent:hover {
  background: rgba(99, 102, 241, 0.2);
  border-color: #6366f1;
}
.btn--outline {
  background: transparent;
  color: #e4e4ec;
  border: 1px solid #22222a;
}
.btn--outline:hover {
  border-color: #7b7b8a;
  background: rgba(255, 255, 255, 0.03);
}
.btn--lg {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: 12px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #22222a;
  padding: 16px 0;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.header__nav {
  display: flex;
  gap: 32px;
}
.header__nav a {
  font-size: 0.9rem;
  color: #7b7b8a;
  font-weight: 500;
  transition: color 0.2s ease;
}
.header__nav a:hover {
  color: #e4e4ec;
}
.header__nav-link--external {
  color: #818cf8 !important;
  font-weight: 600;
}
.header__nav-link--external:hover {
  color: #a5b4fc !important;
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
}

.hero {
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.25), transparent 70%);
  pointer-events: none;
}
.hero__title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  text-align: center;
}
.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #7b7b8a;
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.hero__price {
  font-size: 1.1rem;
  color: #22c55e;
  font-weight: 700;
  background: rgba(34, 197, 94, 0.1);
  padding: 8px 18px;
  border-radius: 8px;
}
.hero__stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.hero__stat {
  text-align: center;
}
.hero__stat-num {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: #818cf8;
}
.hero__stat-label {
  font-size: 0.85rem;
  color: #7b7b8a;
}

.intro {
  padding: 60px 0 0;
  text-align: center;
}
.intro__text {
  padding: 12px 20px;
  border: 1px solid #22c55e;
  border-radius: 12px;
  text-align: center;
  font-size: 19px;
  color: #e4e4ec;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.65;
}

.problem {
  padding: 80px 0;
}
.problem__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.problem__card {
  background: #111118;
  border: 1px solid #22222a;
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s ease;
}
.problem__card:hover {
  border-color: rgba(239, 68, 68, 0.1);
}
.problem__card .problem__icon img {
  filter: brightness(0) saturate(100%) invert(73%) sepia(57%) saturate(1342%) hue-rotate(356deg) brightness(101%) contrast(97%);
}
.problem__card .problem__icon {
  margin-bottom: 16px;
}
.problem__card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.problem__card p {
  font-size: 0.9rem;
  color: #7b7b8a;
  line-height: 1.65;
}

.feature-hero {
  padding: 100px 0;
  position: relative;
}
.feature-hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08), transparent 70%);
  pointer-events: none;
}
.feature-hero__label {
  display: block;
  width: fit-content;
  margin: 0 auto 16px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #818cf8;
  background: rgba(99, 102, 241, 0.12);
  padding: 6px 14px;
  border-radius: 20px;
}
.feature-hero .section__title {
  text-align: left;
  margin-bottom: 40px;
}
.feature-hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}
.feature-hero__text p {
  font-size: 1rem;
  color: #7b7b8a;
  line-height: 1.75;
  margin-bottom: 16px;
}
.feature-hero__text p strong {
  color: #e4e4ec;
}
.feature-hero__analogy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-hero__bullets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}
@media (max-width: 768px) {
  .feature-hero__content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.analogy-card {
  background: #18181f;
  border: 1px solid #22222a;
  border-radius: 12px;
  padding: 24px;
}
.analogy-card--accent {
  border-color: #6366f1;
}
.analogy-card--accent__icon img {
  width: 32px;
  height: 32px;
  opacity: 0.8;
}
.analogy-card--accent__icon {
  margin-bottom: 16px;
}
.analogy-card__icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) saturate(100%) invert(37%) sepia(80%) saturate(4333%) hue-rotate(226deg) brightness(98%) contrast(97%);
}
.analogy-card__icon {
  margin-bottom: 8px;
}
.analogy-card__title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}
.analogy-card__desc {
  font-size: 0.88rem;
  color: #7b7b8a;
  line-height: 1.5;
}

.bullet {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.bullet__icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%) invert(57%) sepia(84%) saturate(419%) hue-rotate(82deg) brightness(98%) contrast(95%);
}
.bullet__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #18181f;
  border-radius: 10px;
}
.bullet__text strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.bullet__text span {
  font-size: 0.85rem;
  color: #7b7b8a;
  line-height: 1.5;
}

.features-grid {
  padding: 80px 0;
}
.features-grid__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}

.feat-card {
  background: #111118;
  border: 1px solid #22222a;
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.feat-card:hover {
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-2px);
}
.feat-card__icon img {
  width: 32px;
  height: 32px;
  opacity: 0.85;
  filter: brightness(0) saturate(100%) invert(57%) sepia(84%) saturate(419%) hue-rotate(82deg) brightness(98%) contrast(95%);
}
.feat-card__icon {
  margin-bottom: 16px;
}
.feat-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.feat-card p {
  font-size: 0.88rem;
  color: #7b7b8a;
  line-height: 1.6;
}

.compare {
  padding: 80px 0;
}
.compare__table-wrap {
  overflow-x: auto;
  border: 1px solid #22222a;
  border-radius: 16px;
  background: #111118;
}
.compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 700px;
}
.compare__table th, .compare__table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid #22222a;
}
.compare__table th:not(:first-child), .compare__table td:not(:first-child) {
  text-align: center;
}
.compare__table thead th {
  font-weight: 700;
  color: #7b7b8a;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(0, 0, 0, 0.3);
}
.compare__table tbody tr:last-child td {
  border-bottom: none;
}
.compare__table tbody td {
  font-size: 0.9rem;
}
.compare__table .check {
  color: #22c55e;
  font-weight: 600;
  text-align: center;
}
.compare__table .cross {
  color: #ef4444;
  text-align: center;
}
.compare__table .partial {
  color: #f59e0b;
  text-align: center;
  font-size: 0.8rem;
}
.compare__table .compare__col--bird {
  color: #818cf8;
}
.compare__table__price-row td {
  padding: 18px 20px;
  font-size: 1rem;
}

.roadmap {
  padding: 80px 0;
}
.roadmap__list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.roadmap__item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-left: 2px solid #22222a;
  padding-left: 28px;
  position: relative;
}
.roadmap__item::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 24px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22222a;
}
.roadmap__item--done::before {
  background: #22c55e;
}
.roadmap__item--current::before {
  background: #6366f1;
  box-shadow: 0 0 12px rgba(99, 102, 241, 0.25);
}
.roadmap__item:first-child {
  padding-top: 0;
}
.roadmap__item:first-child::before {
  top: 4px;
}
.roadmap__marker {
  font-size: 1.25rem;
  flex-shrink: 0;
}
.roadmap__date {
  font-size: 0.8rem;
  color: #818cf8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.roadmap__title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.roadmap__desc {
  font-size: 0.88rem;
  color: #7b7b8a;
  line-height: 1.5;
}

.cta {
  padding: 80px 0 100px;
  text-align: center;
}
.cta__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.cta__subtitle {
  font-size: 1.1rem;
  color: #7b7b8a;
  max-width: 500px;
  margin: 0 auto 48px;
}
.cta__pricing {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.cta__note {
  font-size: 0.85rem;
  color: #7b7b8a;
}

.pricing-card {
  background: #111118;
  border: 1px solid #6366f1;
  border-radius: 16px;
  padding: 40px 48px;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.1);
}
.pricing-card__amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}
.pricing-card__period {
  font-size: 1rem;
  color: #22c55e;
  font-weight: 700;
  margin-bottom: 28px;
}
.pricing-card__features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}
.pricing-card__features li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: #7b7b8a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.pricing-card__features li::before {
  content: "✓";
  color: #22c55e;
  margin-right: 10px;
  font-weight: 700;
}
.pricing-card__features li:last-child {
  border-bottom: none;
}
.pricing-card .btn {
  width: 100%;
}

.footer {
  border-top: 1px solid #22222a;
  padding: 40px 0;
}
.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__brand p {
  font-size: 0.85rem;
  color: #7b7b8a;
}
.footer__links {
  display: flex;
  gap: 24px;
}
.footer__links a {
  font-size: 0.85rem;
  color: #7b7b8a;
  transition: color 0.2s ease;
}
.footer__links a:hover {
  color: #e4e4ec;
}
.footer__copy {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: #7b7b8a;
  margin-top: 8px;
}
@media (max-width: 600px) {
  .footer .container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 0 60px;
  }
  .hero__stats {
    gap: 24px;
  }
  .features-grid__list {
    grid-template-columns: 1fr;
  }
  .compare__table {
    font-size: 0.78rem;
  }
  .compare__table th, .compare__table td {
    padding: 10px 12px;
  }
  .pricing-card {
    padding: 28px 24px;
  }
}
/*# sourceMappingURL=style.css.map */
