:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-2: #f8fbff;
  --text: #1d2430;
  --muted: #5a6778;
  --primary: #13a57d;
  --primary-dark: #0f805f;
  --line: #dde6f1;
  --shadow: 0 12px 30px rgba(19, 28, 45, 0.08);
  --radius: 16px;
  --logo-get: #5d9be4;
  --logo-to: #5f6b7c;
  --logo-weight: #ec9747;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: linear-gradient(180deg, #f7fbff 0%, #f1f5fb 100%);
  color: var(--text);
  line-height: 1.55;
}

a {
  color: #0e76c2;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, calc(100% - 2.2rem));
  margin: 0 auto;
}

.narrow {
  max-width: 780px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 248, 253, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

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

.brand {
  font-weight: 800;
  font-size: 1.1rem;
}

.wordmark {
  display: inline-block;
  letter-spacing: 0.2px;
}

.wordmark .get {
  color: var(--logo-get);
}

.wordmark .to {
  color: var(--logo-to);
}

.wordmark .weight {
  color: var(--logo-weight);
}

.main-nav {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.main-nav a {
  color: #304259;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  color: #304259;
  border-radius: 10px;
  padding: 0.48rem 0.75rem;
  font-weight: 600;
}

.section {
  padding: 74px 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(221, 230, 241, 0.7);
  border-bottom: 1px solid rgba(221, 230, 241, 0.7);
}

.hero {
  padding-top: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.4rem;
  align-items: stretch;
}

.kicker {
  color: var(--primary-dark);
  font-weight: 700;
  margin: 0 0 0.65rem;
  letter-spacing: 0.2px;
}

h1, h2, h3 {
  margin-top: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  margin-bottom: 0.8rem;
}

h2 {
  font-size: clamp(1.55rem, 2.5vw, 2.1rem);
  margin-bottom: 0.85rem;
}

h3 {
  font-size: 1.07rem;
  margin-bottom: 0.45rem;
}

.lead {
  font-size: 1.1rem;
  color: #2f4055;
}

.muted {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.3rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.66rem 1rem;
  border-radius: 11px;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

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

.btn-secondary {
  background: #fff;
  border-color: var(--line);
  color: #2a3f5a;
}

.hero-card,
.card,
.contact-box,
.about-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.1rem 1.1rem 1rem;
}

.hero-card ul {
  margin: 0.7rem 0 0;
  padding-left: 1.1rem;
}

.hero-card li {
  margin-bottom: 0.45rem;
}

.top-banners {
  padding-top: 34px;
  padding-bottom: 18px;
}

.banner-rotator {
  position: relative;
  min-height: 280px;
}

.banner-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.banner-hero-slide.active {
  opacity: 1;
  transform: translateY(0);
  z-index: 2;
}

.banner-hero-slide img,
.banner-break-frame img {
  width: 100%;
  max-height: 420px;
  min-height: 260px;
  object-fit: cover;
}

.banner-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 4;
}

.banner-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(32, 47, 69, 0.2);
}

.banner-dots .dot.active {
  background: #ffffff;
  border-color: rgba(32, 47, 69, 0.45);
}

.banner-break {
  padding-top: 28px;
  padding-bottom: 28px;
}

.banner-break-frame figcaption {
  text-align: center;
}

.preview-grid {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 1rem;
  align-items: start;
}

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

.media-frame {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  display: block;
  object-fit: cover;
  background: #eef3fb;
}

.banner-frame img {
  min-height: 280px;
  max-height: 460px;
}

.app-shot img {
  aspect-ratio: 9 / 19;
}

.media-frame figcaption {
  font-size: 0.92rem;
  color: #425267;
  padding: 0.7rem 0.8rem 0.82rem;
}

.missing-note {
  display: none;
  margin: 0;
  padding: 0.4rem 0.8rem 0.9rem;
  color: #6c7787;
  font-size: 0.88rem;
}

.media-frame.is-missing {
  border-style: dashed;
  background: #f8fbff;
}

.media-frame.is-missing img {
  display: none;
}

.media-frame.is-missing .missing-note {
  display: block;
}

.cards {
  display: grid;
  gap: 1rem;
}

.cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  padding: 1rem;
}

.steps {
  margin: 0;
  padding-left: 1.15rem;
}

.steps li {
  margin-bottom: 1rem;
  padding-left: 0.35rem;
}

.footer-links-inline {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.faq-group {
  margin-top: 2.2rem;
}

.faq-group details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  margin-bottom: 0.65rem;
}

.faq-group summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-group details p {
  margin: 0.62rem 0 0;
  color: #3d4b5d;
}

.contact-box {
  margin-top: 2.1rem;
  padding: 1rem;
}

.about-block {
  margin-top: 1rem;
  padding: 1rem;
}

.about-list {
  margin: 0.2rem 0 0.8rem;
  padding-left: 1.1rem;
}

.disclaimer {
  background: #fffaf1;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #f2f7fc;
}

.footer-grid {
  min-height: 82px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 0;
}

.footer-legal {
  width: 100%;
  margin: 0;
  color: #7b8797;
  font-size: 0.9rem;
  text-align: center;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .cards.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .top-banners {
    padding-top: 22px;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    background: #f7fbff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 0.8rem 1.1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

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

  .cards.two,
  .cards.three {
    grid-template-columns: 1fr;
  }

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

  .banner-hero-slide img,
  .banner-break-frame img {
    min-height: 210px;
  }

  .banner-hero-slide figcaption {
    display: none;
  }

  .section {
    padding: 62px 0;
  }
}
