@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #0b1b27;
  background: #f8fafc;
  line-height: 1.55;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.005em;
  font-weight: 400;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(21, 50, 67, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: #153243;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  z-index: 100;
  transition: top 0.2s ease;
}

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

.page-hero {
  padding: 80px 0 40px;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  font-size: clamp(2rem, 1.8vw + 1.5rem, 3rem);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  font-weight: 600;
  line-height: 1.15;
  text-wrap: balance;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: #e4edf0;
  color: #153243;
  margin-bottom: 14px;
}

.badge-nav {
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
  margin-left: 6px;
  vertical-align: middle;
}

.badge-nav.new {
  background-color: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.badge-nav.soon {
  background-color: #f1f5f9;
  color: #64748b;
  border: 1px solid #e2e8f0;
}

.opacity-60 {
  opacity: 0.6;
}

.section-subtitle {
  font-size: 1rem;
  color: #3f4c5c;
  margin-bottom: 18px;
  max-width: 70ch;
}

.container {
  width: min(1280px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 8px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  justify-self: center;
}

.logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 500;
  justify-self: end;
}

.nav-toggle {
  display: none;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.nav-toggle:hover {
  background: #f8fafc;
}

.nav a {
  color: #13202b;
  transition: 0.2s ease;
}

.nav a:hover {
  color: #153243;
}

.nav .btn {
  background: linear-gradient(180deg, #ffffff 0%, #f2f5f9 100%);
  border: 1px solid #d8e0ea;
  box-shadow:
    0 10px 18px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.nav .btn:hover {
  background: linear-gradient(180deg, #f8fafc 0%, #e9eef5 100%);
}

.nav>a:not(.btn) {
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #f2f5f9 100%);
  border: 1px solid #d8e0ea;
  box-shadow:
    0 10px 18px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: 0.2s ease;
}

.nav>a:not(.btn):hover {
  background: linear-gradient(180deg, #f8fafc 0%, #e9eef5 100%);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  background: linear-gradient(180deg, #ffffff 0%, #f2f5f9 100%);
  border: 1px solid #d8e0ea;
  border-radius: 999px;
  font: inherit;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  box-shadow:
    0 10px 18px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: 0.2s ease;
}

.nav-caret {
  font-size: 0.7rem;
  color: #64748b;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  min-width: 200px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.14);
  padding: 6px;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown-menu {
  transform-origin: top left;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  animation: dropIn 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}

@keyframes dropIn {
  0% {
    opacity: 0;
    transform: translateY(-4px) scale(0.99);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  transition: background 0.15s ease;
}

.nav-dropdown-menu a:hover {
  background: #f1f5f9;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 900px) {
  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0;
    padding: 8px 0;
  }

  .logo {
    justify-self: start;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0 4px;
    border-top: 1px solid #e2e8f0;
  }

  .nav.is-open {
    display: flex;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    border: 1px solid #e2e8f0;
    margin-top: 6px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 0.2s ease;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

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

.btn:focus-visible {
  outline: 3px solid rgba(21, 50, 67, 0.35);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(180deg, #1c3b4d 0%, #153243 100%);
  color: #ffffff;
  border-color: #153243;
}

.btn-primary:hover {
  background: linear-gradient(180deg, #183343 0%, #0f222c 100%);
}

.btn-ghost {
  border-color: #d5dde7;
  color: #1c2b3a;
  background: #ffffff;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
}

.btn-ghost:hover {
  background: #f1f5f9;
}

.btn-disabled {
  background: #e2e8f0;
  color: #94a3b8;
  border-color: #e2e8f0;
  cursor: not-allowed;
  pointer-events: none;
}

.store-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #0f172a;
  color: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.2);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: 0.2s ease;
}

.store-badge span {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.store-badge:hover {
  transform: translateY(-1px);
}

.hero {
  padding: 90px 0 70px;
  background: linear-gradient(120deg, rgba(21, 50, 67, 0.08) 0%, #f8fafc 60%);
  position: relative;
  overflow: hidden;
}

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

.hero-media {
  display: grid;
  gap: 18px;
}

.preview-image {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 26px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  background: #ffffff;
  margin: 0 auto;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

.fade-up {
  animation: fadeUp 0.8s ease both;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.page-hero .container,
.section .card,
.section .stat-card,
.section .faq-item,
.section .timeline-item,
.hero-card,
.preview-image {
  animation: fadeUp 0.8s ease both;
}

.grid-2 .card:nth-child(2),
.grid-3 .card:nth-child(2),
.stats-grid .stat-card:nth-child(2),
.timeline .timeline-item:nth-child(2),
.faq .faq-item:nth-child(2) {
  animation-delay: 0.1s;
}

.grid-2 .card:nth-child(3),
.grid-3 .card:nth-child(3),
.stats-grid .stat-card:nth-child(3),
.timeline .timeline-item:nth-child(3),
.faq .faq-item:nth-child(3) {
  animation-delay: 0.2s;
}

.grid-2 .card:nth-child(4),
.grid-3 .card:nth-child(4),
.timeline .timeline-item:nth-child(4),
.faq .faq-item:nth-child(4) {
  animation-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {

  .fade-up,
  .page-hero .container,
  .section .card,
  .section .stat-card,
  .section .faq-item,
  .section .timeline-item,
  .hero-card,
  .preview-image {
    animation: none;
  }

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

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    animation: none;
  }

  .card:hover,
  .btn:hover {
    transform: none;
  }
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 2.5vw + 1.8rem, 3.4rem);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  font-weight: 600;
  text-wrap: balance;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: #153243;
  font-weight: 600;
  margin-bottom: 12px;
}

.lead {
  font-size: 1.05rem;
  color: #3f4c5c;
  margin-bottom: 18px;
  line-height: 1.55;
  max-width: 70ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.subtext {
  font-size: 0.9rem;
  color: #3f4c5c;
  max-width: 70ch;
}

.hero-card {
  background: #0f172a;
  color: #ffffff;
  padding: 28px;
  border-radius: 24px;
  display: grid;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.illustration {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 24px;
  min-height: 240px;
  display: grid;
  place-items: center;
  color: #64748b;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.illustration img {
  width: 100%;
  max-width: 520px;
  max-height: 320px;
  height: auto;
  border-radius: 18px;
  display: block;
  object-fit: cover;
  margin: 0 auto;
}

.product-illustration img {
  max-width: 250px;
  max-height: none;
  height: auto;
  object-fit: contain;
}


.product-hero {
  padding: 90px 0 70px;
  background: linear-gradient(120deg, rgba(21, 50, 67, 0.08) 0%, #ffffff 60%);
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

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

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

.product-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  display: grid;
  gap: 12px;
}

.product-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.product-card .status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  background: #e4edf0;
  color: #153243;
}

.product-card .status.soon {
  background: #f1f5f9;
  color: #64748b;
}

.product-detail {
  margin-top: 26px;
}

.product-detail-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

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

.hero::before,
.product-hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(21, 50, 67, 0.22), transparent 65%);
  animation: floatPulse 12s ease-in-out infinite;
  pointer-events: none;
}

.hero::after,
.product-hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  bottom: -220px;
  left: -180px;
  background: radial-gradient(circle, rgba(21, 50, 67, 0.14), transparent 70%);
  animation: floatPulse 14s ease-in-out infinite reverse;
  pointer-events: none;
}

@keyframes floatPulse {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0.6;
  }

  50% {
    transform: translateY(12px) translateX(8px);
    opacity: 0.85;
  }

  100% {
    transform: translateY(0) translateX(0);
    opacity: 0.6;
  }
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #3f4c5c;
  font-size: 0.9rem;
}

.logo-pill {
  padding: 6px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #ffffff;
  color: #304051;
}

.stat {
  background: rgba(255, 255, 255, 0.08);
  padding: 14px 16px;
  border-radius: 16px;
}

.stat-label {
  font-size: 0.85rem;
  color: #e2e8f0;
}

.stat-value {
  font-size: 1.2rem;
  font-weight: 700;
}

.section {
  padding: 56px 0;
}

.section h2 {
  font-size: clamp(1.8rem, 1.4vw + 1.3rem, 2.6rem);
  margin-bottom: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-wrap: balance;
}

h3 {
  line-height: 1.25;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 20px;
}

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

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

/* Animations */
@keyframes pulse-blue {
  0% {
    box-shadow: 0 0 0 0 rgba(21, 50, 67, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(21, 50, 67, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(21, 50, 67, 0);
  }
}

.btn-pulse {
  animation: pulse-blue 2s infinite;
}

.card {
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card h3 {
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #0b1b27;
}

.card p {
  color: #3f4c5c;
  line-height: 1.55;
  font-size: 0.98rem;
}

.card p + p {
  margin-top: 8px;
}

.card a {
  color: #153243;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.card a:hover {
  color: #0f222c;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.highlight {
  background: #0f172a;
  color: #ffffff;
}

.highlight h2,
.highlight h3 {
  color: #f8fafc;
}

.highlight p,
.highlight .list li,
.highlight .section-subtitle {
  color: #cbd5e1;
}

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

.download-card {
  background: #1e293b;
  border-color: #334155;
}

.download-card h3,
.download-card p {
  color: #e2e8f0;
}

.download-card .fine-print {
  color: #cbd5e1;
}

.download-card a,
.highlight .card a {
  color: #7dd3fc;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.download-card a:hover,
.highlight .card a:hover {
  color: #bae6fd;
}

.list {
  list-style: none;
  margin-top: 14px;
}

.list li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #153243;
}

.highlight .list li::before {
  color: #94a3b2;
}

.stats-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.stat-card {
  padding: 18px;
  border-radius: 16px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}

.stat-card strong {
  display: block;
  font-size: 1.4rem;
  color: #153243;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  padding: 16px;
  border-radius: 14px;
  border-left: 4px solid #153243;
  background: #ffffff;
  border: 1px solid #e2e8f0;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  margin: 8px 0;
}

.plan-list {
  list-style: none;
  margin-top: 12px;
  display: grid;
  gap: 6px;
}

.plan-list li::before {
  content: "✓";
  margin-right: 8px;
  color: #153243;
}

.highlight .plan-list li::before {
  color: #94a3b2;
}

.muted {
  color: #4b5a6b;
  font-size: 0.9rem;
}

.contact {
  background: #eff6ff;
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.site-footer {
  padding: 24px 0;
  border-top: 1px solid #e2e8f0;
  background: #ffffff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 14px;
  font-size: 0.9rem;
  color: #3f4c5c;
  flex-wrap: wrap;
}

.fine-print {
  font-size: 0.85rem;
  color: #4b5a6b;
}

@media (max-width: 720px) {
  .nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero {
    padding-top: 70px;
  }
}