@import url("https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@500&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");

:root {
  --bg: #0b0b0f;
  --bg-soft: #111217;
  --surface: #161821;
  --surface-elev: #1b1f2b;
  --text: #f5f5f7;
  --muted: #a7a7b1;
  --line: #2a2d37;
  --primary: #0a84ff;
  --primary-strong: #3399ff;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow-md: 0 22px 48px rgba(0, 0, 0, 0.42);
  --shadow-sm: 0 12px 28px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  background:
    radial-gradient(860px 520px at 85% -8%, rgba(10, 132, 255, 0.18), transparent 62%),
    radial-gradient(760px 420px at -12% 26%, rgba(84, 84, 105, 0.22), transparent 64%),
    linear-gradient(180deg, #090a0f 0%, #0b0b10 40%, #10121a 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.container {
  width: min(1140px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  z-index: 999;
  border-radius: 999px;
  background: #1f2230;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 0.55rem 0.9rem;
  font-weight: 700;
}

.skip-link:focus {
  left: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background-color 0.25s ease;
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
}

.site-header.is-scrolled {
  border-color: rgba(53, 57, 69, 0.72);
  background: rgba(10, 11, 17, 0.78);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.brand-mark {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background-color: #0a84ff;
  background-image: url("../images/favicon.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  box-shadow: 0 0 18px rgba(10, 132, 255, 0.34);
}

.brand-text {
  font-family: "Lexend Deca", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #f4f6ff;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.main-nav a {
  color: #b7bac6;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-current {
  color: #ffffff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.78rem 1.3rem;
  font-weight: 700;
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(10, 132, 255, 0.3);
  transition: background-color 0.25s ease, transform 0.2s ease, color 0.28s ease, box-shadow 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--primary-strong);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(10, 132, 255, 0.36);
}

.btn-sm {
  padding: 0.56rem 1rem;
  font-size: 0.86rem;
}

.main-nav .btn {
  background: #202736;
  border-color: #36415a;
  color: #dbe9ff;
  box-shadow: none;
}

.main-nav .btn:hover,
.main-nav .btn:focus-visible {
  background: var(--primary);
  color: #ffffff;
}

.btn-ghost {
  background: transparent;
  border-color: #3c404f;
  color: #edf2ff;
  box-shadow: none;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: #1c2130;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #343847;
  border-radius: 11px;
  background: #161a26;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #f5f5f7;
  margin: 0 auto 5px;
}

.menu-toggle span:last-child {
  margin-bottom: 0;
}

.section {
  padding: 5.6rem 0;
}

.section-alt {
  background: linear-gradient(180deg, #11131c 0%, #10121a 100%);
  border-top: 1px solid #252a37;
  border-bottom: 1px solid #252a37;
}

.kicker {
  margin: 0 0 0.8rem;
  color: #89c2ff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.018em;
}

h1 {
  font-size: clamp(2.15rem, 5vw, 4.4rem);
  max-width: 16ch;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin-bottom: 1.15rem;
  max-width: 22ch;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 6.4rem 0 5.8rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(560px 320px at 78% 28%, rgba(10, 132, 255, 0.18), transparent 65%),
    radial-gradient(520px 300px at 12% 82%, rgba(129, 129, 148, 0.15), transparent 64%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 2.2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.lead {
  margin: 1.35rem 0 1.6rem;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.hero-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.52rem;
}

.hero-points li {
  color: #c0c3cf;
}

.hero-points li::before,
.check-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  display: inline-block;
  margin-right: 0.6rem;
  background: #52a9ff;
}

.phone-cluster {
  position: relative;
  min-height: 530px;
}

.phone-card {
  position: absolute;
  width: 250px;
  border-radius: 34px;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.45);
}

.phone-card img {
  width: 100%;
  height: auto;
}

.phone-card-front {
  right: -10px;
  top: 64px;
  z-index: 2;
  animation: float-card 5.8s ease-in-out infinite;
}

.phone-card-back {
  left: -4px;
  top: -2px;
  z-index: 1;
  animation: float-card 6.2s ease-in-out infinite reverse;
}

.hero .phone-card-front,
.hero .phone-card-back {
  animation: none;
}

@keyframes float-card {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.feature-grid {
  margin-top: 1.9rem;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  border-radius: var(--radius-md);
  border: 1px solid #2c3040;
  background: var(--surface);
  padding: 1.35rem;
  box-shadow: var(--shadow-sm);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.feature-primary {
  grid-column: span 7;
}

.feature-accent {
  grid-column: span 5;
  background: linear-gradient(145deg, #1b253a 0%, #192238 100%);
}

.feature-grid .feature-card:not(.feature-primary):not(.feature-accent) {
  grid-column: span 4;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.steps article {
  border: 1px solid #2c3040;
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  padding: 0.18rem 0.6rem;
  border: 1px solid #39415a;
  border-radius: 999px;
  font-weight: 700;
  color: #8ec7ff;
  margin-bottom: 0.75rem;
}

.steps p {
  color: var(--muted);
  margin: 0.45rem 0 0;
}

.screens-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.screen-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.screen-btn {
  border: 1px solid #364052;
  border-radius: 999px;
  background: #1a1f2c;
  color: #bec2ce;
  font-weight: 700;
  padding: 0.46rem 0.88rem;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.screen-btn:hover,
.screen-btn:focus-visible {
  border-color: #4a5f83;
  color: #ffffff;
}

.screen-btn.is-active {
  background: #23324e;
  border-color: #3d5f92;
  color: #dceaff;
}

.screen-stage {
  margin: 0;
  min-height: 650px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  border: 1px solid #2c3040;
  background: var(--surface-elev);
  box-shadow: var(--shadow-md);
  padding: 1.2rem 1rem 1rem;
}

.screen-stage img {
  width: min(100%, 258px);
  height: auto;
  aspect-ratio: 1470 / 3000;
  object-fit: contain;
  border-radius: 28px;
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.44);
  transition: opacity 0.25s ease;
}

.screen-stage figcaption {
  margin-top: 1rem;
  color: var(--muted);
  text-align: center;
}

.faq-wrap {
  max-width: 840px;
}

details {
  margin-top: 0.72rem;
  border: 1px solid #2b2f40;
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 0.92rem 1rem;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

details p {
  margin: 0.62rem 0 0;
  color: var(--muted);
}

.cta {
  padding-top: 4.8rem;
}

.cta-inner {
  border-radius: 32px;
  border: 1px solid #2f3b58;
  background: linear-gradient(135deg, #1a2538 0%, #182132 100%);
  box-shadow: var(--shadow-md);
  padding: 2rem;
  text-align: center;
}

.cta-inner h2 {
  margin: 0 auto 0.7rem;
}

.cta-inner p {
  margin: 0 auto 1.2rem;
  max-width: 60ch;
  color: #b9bfcb;
}

.store-link {
  display: inline-flex;
}

.site-footer {
  margin-top: 3.4rem;
  padding: 2.8rem 0 2.2rem;
  border-top: 1px solid #262a38;
  background: #0f1119;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.2rem;
  align-items: start;
}

.footer-copy {
  margin: 0.72rem 0 0;
  color: var(--muted);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 0.6rem 1rem;
}

.footer-links a {
  color: #bdc1cc;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
}

.footer-meta {
  margin-top: 1.8rem;
  border-top: 1px solid #242838;
  padding-top: 0.95rem;
  color: var(--muted);
}

.page-hero {
  padding-bottom: 2.2rem;
}

.page-hero .lead {
  margin-bottom: 0;
}

.content-card {
  border: 1px solid #2c3040;
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem;
}

.policy-section {
  padding-top: 2rem;
}

.policy-content h2 {
  max-width: none;
  font-size: 1.3rem;
  margin: 1.35rem 0 0.5rem;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p {
  margin: 0;
  color: var(--muted);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.plan-card {
  border: 1px solid #2c3040;
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 1.35rem;
}

.plan-card h2 {
  margin: 0.6rem 0 1rem;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.plan-card h2 span {
  font-size: 0.95rem;
  color: var(--muted);
}

.plan-cycle {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #89c2ff;
}

.plan-recommended {
  border-color: #3a4f78;
  background: linear-gradient(145deg, #1d2940 0%, #1a2438 100%);
}

.plan-badge {
  margin: 0 0 0.65rem;
  display: inline-flex;
  border: 1px solid #3e5f94;
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  font-size: 0.74rem;
  font-weight: 700;
  color: #d9e9ff;
  background: #253654;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.52rem;
}

.check-list li {
  color: var(--muted);
}

.download-grid .check-list {
  margin-bottom: 1.2rem;
}

.download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.download-showcase {
  position: relative;
  min-height: 530px;
  width: min(100%, 340px);
  margin-inline: auto;
}

.download-showcase .phone-card {
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.5);
}

.download-showcase .phone-card-front,
.download-showcase .phone-card-back {
  animation: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-card h2 {
  max-width: none;
  font-size: 1.26rem;
}

.contact-card p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.form-embed-wrap {
  margin-top: 1rem;
}

.form-embed-wrap iframe {
  width: 100%;
  min-height: 760px;
  border: 1px solid #2b3144;
  border-radius: 20px;
  background: #121623;
}

@media (max-width: 980px) {
  .hero-grid,
  .screens-wrap,
  .pricing-grid,
  .download-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .phone-cluster {
    margin-inline: auto;
    width: min(100%, 340px);
  }

  .feature-primary,
  .feature-accent,
  .feature-grid .feature-card:not(.feature-primary):not(.feature-accent) {
    grid-column: span 12;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .download-showcase {
    min-height: 530px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(2, auto);
    justify-content: start;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.65rem);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    border: 1px solid #34394a;
    border-radius: 16px;
    background: rgba(18, 20, 30, 0.95);
    box-shadow: var(--shadow-md);
    padding: 1rem;
  }

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

  .main-nav .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 5.4rem;
  }

  .section {
    padding: 4.7rem 0;
  }

  .download-showcase {
    min-height: 530px;
  }

  .screen-stage {
    min-height: 575px;
  }

  .form-embed-wrap iframe {
    min-height: 620px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
