:root {
  color-scheme: light;
  --bg: #f4f6fb;
  --bg-soft: #ffffff;
  --bg-card: rgba(255, 255, 255, 0.9);
  --text: #0f141b;
  --muted: #5f6b7a;
  --accent: #3b7bff;
  --accent-strong: #5aa7ff;
  --line: rgba(14, 20, 30, 0.08);
  --shadow: 0 18px 40px rgba(15, 20, 27, 0.12);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", "Helvetica Neue", "Arial", sans-serif;
  background: radial-gradient(circle at 5% 5%, rgba(90, 167, 255, 0.2), transparent 45%),
    radial-gradient(circle at 95% 15%, rgba(59, 123, 255, 0.14), transparent 45%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.aurora {
  position: fixed;
  inset: -30% 0 auto 0;
  height: 55vh;
  background: conic-gradient(from 210deg, rgba(90, 167, 255, 0.22), rgba(59, 123, 255, 0.18), transparent 70%);
  filter: blur(120px);
  opacity: 0.65;
  pointer-events: none;
  z-index: 0;
}

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

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

.container {
  width: min(var(--max-width), 92vw);
  margin: 0 auto;
}

.container-wide {
  width: min(1400px, 96vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 20px;
}

.logo {
  font-family: "Unbounded", "Space Grotesk", sans-serif;
  font-weight: 600;
  letter-spacing: 0.6px;
}

.nav {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
  color: var(--muted);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle {
  background: rgba(14, 20, 30, 0.04);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: transform 0.2s ease, border 0.2s ease, color 0.2s ease;
}

.lang-toggle.is-active {
  border-color: rgba(59, 123, 255, 0.5);
  color: var(--accent);
}

.lang-toggle:hover {
  transform: translateY(-1px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(59, 123, 255, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(59, 123, 255, 0.36);
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.85);
}

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

.btn-light {
  background: rgba(15, 20, 27, 0.06);
  border: 1px solid rgba(15, 20, 27, 0.12);
  color: var(--text);
}

.btn-mono {
  gap: 10px;
  padding: 12px 18px;
}

.btn-mono-logo {
  width: 92px;
  height: auto;
  display: block;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 27, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 200;
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: min(460px, 92vw);
  max-height: calc(100dvh - 48px - env(safe-area-inset-bottom, 0px));
  overflow: auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  display: grid;
  gap: 16px;
}

.modal-card h3 {
  font-size: 1.35rem;
}

.modal-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

.modal-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.modal-input:focus {
  outline: none;
  border-color: rgba(59, 123, 255, 0.6);
  box-shadow: 0 0 0 3px rgba(59, 123, 255, 0.2);
}

.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.modal-error {
  color: #d93025;
  font-size: 0.95rem;
  min-height: 20px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--muted);
}

.modal-close:hover {
  color: var(--text);
}

.thanks-card {
  background: var(--bg-soft);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow);
  text-align: center;
  display: grid;
  gap: 18px;
  max-width: 680px;
  margin: 40px auto;
}

.thanks-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  background: rgba(59, 123, 255, 0.12);
  color: var(--accent);
  border-radius: 50%;
  font-size: 1.6rem;
}

.thanks-steps {
  text-align: left;
  display: grid;
  gap: 10px;
  font-size: 1rem;
  color: var(--muted);
}

.thanks-step {
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(59, 123, 255, 0.08);
}

.thanks-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.thanks-subscription {
  display: none;
  text-align: left;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(59, 123, 255, 0.12);
  color: var(--text);
}

.thanks-subscription.is-visible {
  display: block;
}

.hero {
  position: relative;
  padding: 110px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.08;
  margin: 16px 0 20px;
}

.hero-copy p {
  font-size: 1.12rem;
  color: var(--muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
}

.hero-cta {
  margin: 28px 0;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.trust-number {
  font-size: 1.6rem;
  font-weight: 600;
}

.trust-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  border-radius: 0;
  box-shadow: none;
  border: none;
  width: min(96vw, 1220px);
}

.floating-card {
  display: none;
}

.card-1 {
  top: 12%;
  right: 8%;
}

.card-2 {
  bottom: 12%;
  left: 6%;
}

.section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.marquee {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  display: block;
}

.marquee-inner {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: rgba(15, 20, 27, 0.7);
}

.marquee-track:first-child {
  margin-right: 32px;
}

.marquee-track span {
  padding: 6px 18px;
  border-radius: 999px;
  background: rgba(15, 20, 27, 0.05);
  border: 1px solid rgba(15, 20, 27, 0.08);
}

.marquee:hover .marquee-inner {
  animation-play-state: paused;
}

.section.glow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(59, 123, 255, 0.12), transparent 55%);
  z-index: -1;
}

.section.soft {
  background: var(--bg-soft);
}

.section-title {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 760px;
}

.timeline-subtitle {
  color: rgba(15, 20, 27, 0.9);
}

.value-grid,
.feature-grid,
.screens-grid,
.pricing-grid,
.faq-grid {
  display: grid;
  gap: 24px;
}

.value-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.value-card {
  padding: 28px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.feature-card {
  padding: 26px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature-grid.killer .feature-card {
  position: relative;
  overflow: hidden;
}

.feature-grid.killer .feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(90, 167, 255, 0.45), rgba(59, 123, 255, 0.25)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  border-radius: 14px;
  background: rgba(15, 20, 27, 0.06);
  border: 1px solid rgba(15, 20, 27, 0.12);
  margin-bottom: 14px;
  box-shadow: 0 12px 24px rgba(15, 20, 27, 0.12);
}

.feature-card h3 {
  margin-bottom: 10px;
}

.feature-card p,
.value-card p,
.faq-item p {
  color: var(--muted);
}

.features-cta {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.btn-accent {
  position: relative;
  color: #ffffff;
  border: none;
  background: linear-gradient(135deg, rgba(59, 123, 255, 0.9), rgba(90, 167, 255, 0.9));
  box-shadow: 0 12px 28px rgba(59, 123, 255, 0.35);
  padding: 12px 26px;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(59, 123, 255, 0.4);
}

.btn-accent::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.screens-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.screen {
  border-radius: var(--radius-md);
  border: none;
  box-shadow: var(--shadow);
}

.screens-list {
  display: grid;
  gap: 56px;
}

.screen-row {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(520px, 2.4fr);
  gap: 40px;
  align-items: center;
}

.screen-copy h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.screen-copy p {
  color: var(--muted);
  font-size: 1.02rem;
}

.screen-media img {
  width: 100%;
  height: auto;
  border-radius: 0;
  box-shadow: none;
}

.journey {
  display: flex;
  gap: 18px;
  align-items: stretch;
  flex-wrap: wrap;
}

.journey-step {
  flex: 1 1 220px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.journey-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(15, 20, 27, 0.5);
  font-size: 1.6rem;
  min-width: 24px;
}

.journey-step span {
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 600;
}

.pricing {
  background: linear-gradient(180deg, rgba(246, 247, 251, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.compare-card {
  margin-top: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.compare-head,
.compare-row {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) 120px 120px;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
}

.compare-head {
  background: rgba(59, 123, 255, 0.08);
  font-weight: 600;
}

.compare-row:nth-child(even) {
  background: rgba(15, 20, 27, 0.03);
}

.compare-col {
  color: var(--muted);
  font-size: 0.95rem;
}

.compare-col.feature-col {
  color: var(--text);
  font-weight: 500;
}

.compare-col.pro {
  color: var(--accent);
  font-weight: 600;
}

.cta {
  background: linear-gradient(135deg, rgba(90, 167, 255, 0.2), rgba(59, 123, 255, 0.12));
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 20, 27, 0.08);
  background: rgba(255, 255, 255, 0.8);
}

.cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pricing-offer {
  background: linear-gradient(135deg, rgba(90, 167, 255, 0.12), rgba(255, 255, 255, 0.9));
}

.pricing-offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.offer-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.offer-buttons {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.offer-card ul {
  flex: 1;
}

.offer-card .price {
  font-size: 2rem;
  font-weight: 600;
}

.offer-card .price span {
  font-size: 1rem;
  color: var(--muted);
}

.price-old {
  font-size: 1.2rem;
  color: var(--muted);
  text-decoration: line-through;
  margin-right: 6px;
}

.contact-card {
  margin-top: 30px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
}

.contact-card p {
  color: var(--muted);
  margin: 10px auto 18px;
  max-width: 560px;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(15, 20, 27, 0.04);
  color: var(--accent);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-icon:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-email {
  font-weight: 600;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.timeline {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.timeline-item {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.timeline-future {
  background: rgba(59, 123, 255, 0.06);
  border: 1px dashed rgba(59, 123, 255, 0.35);
}

.timeline-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(59, 123, 255, 0.08);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.timeline-item h3 {
  margin-bottom: 8px;
}

.timeline-item p {
  color: var(--muted);
  margin-bottom: 14px;
}

.timeline-list {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.feature-catalog {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.catalog-block {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.catalog-block h3 {
  margin-bottom: 12px;
}

.catalog-list {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.anchor-target {
  scroll-margin-top: 110px;
}

.catalog-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
}

.catalog-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(59, 123, 255, 0.12);
  color: var(--accent);
  font-size: 0.95rem;
}

.faq-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.faq-item {
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 50px 0 30px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-title {
  margin-bottom: 10px;
  font-weight: 600;
}

.footer-bottom {
  margin-top: 30px;
  color: var(--muted);
  font-size: 0.85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero {
    padding-top: 70px;
  }

  .floating-card {
    display: none;
  }

  .screen-row {
    grid-template-columns: 1fr;
  }

  .compare-head,
  .compare-row {
    grid-template-columns: 1fr 80px 80px;
    padding: 14px 16px;
  }

  .journey {
    flex-direction: column;
  }

  .journey-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 600px) {
  .header-inner {
    flex-direction: column;
  }

  .cta-inner {
    padding: 24px;
  }

  .screen-row {
    gap: 20px;
  }

  .modal-overlay {
    align-items: flex-start;
    padding: 12px;
    padding-top: max(20px, env(safe-area-inset-top, 0px));
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }

  .modal-card {
    width: min(100%, 520px);
    margin-top: 0;
    border-radius: 20px;
    padding: 22px;
    max-height: calc(100dvh - 24px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px));
  }
}
