:root {
  color-scheme: light;
  --ink: #172033;
  --muted: #5f6b7b;
  --line: #d9e4ee;
  --sky: #7fc6f3;
  --sky-soft: #edf8ff;
  --gold: #f4c95d;
  --gold-soft: #fff4cf;
  --paper: #fbfdff;
  --navy: #111b35;
  --blue: #235ebd;
  --green: #4d836d;
  --shadow: 0 24px 70px rgba(17, 27, 53, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
}

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

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

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(217, 228, 238, 0.82);
  background: rgba(251, 253, 255, 0.88);
  backdrop-filter: blur(18px);
}

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

.brand-trail {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-link {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
}

.site-link:hover {
  color: var(--navy);
}

.brand-separator {
  color: #94a3b8;
  font-weight: 800;
}

.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.app-brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--navy);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--navy);
  color: white;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(17, 27, 53, 0.18);
}

.button.secondary {
  border-color: var(--line);
  background: white;
  color: var(--navy);
  box-shadow: none;
}

.store-badge {
  width: 180px;
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
}

.store-badge img {
  width: 100%;
}

.store-badge-nav {
  width: 138px;
  flex: 0 0 auto;
}

.hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, #eaf7ff 0%, #f7fbff 52%, #ffffff 100%);
}

.hero-grid {
  min-height: calc(78vh - 72px);
  padding: 38px 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  width: min(100%, 1010px);
  text-align: center;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(35, 94, 189, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #1e56a8;
  font-size: 0.86rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.04;
}

h1 {
  max-width: 860px;
  font-size: 4.85rem;
  letter-spacing: 0;
}

.hero-title-row {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
}

.hero-app-icon {
  width: clamp(104px, 12vw, 168px);
  flex: 0 0 auto;
  border-radius: clamp(24px, 3.8vw, 42px);
  box-shadow: 0 24px 64px rgba(17, 27, 53, 0.18);
}

.lead {
  max-width: 780px;
  margin: 24px auto 0;
  color: #334155;
  font-size: 1.22rem;
  line-height: 1.62;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.hero-proof {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #2f3c50;
  font-weight: 800;
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(35, 94, 189, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.stars {
  color: #c79314;
  letter-spacing: 0;
  white-space: nowrap;
}

.section {
  padding: 64px 0;
}

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

.section-head {
  max-width: 780px;
  margin-bottom: 26px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section h2 {
  font-size: 3.35rem;
}

.section p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.screens {
  display: grid;
  grid-template-columns: repeat(8, minmax(190px, 1fr));
  gap: 18px;
  padding-bottom: 10px;
  overflow-x: auto;
}

.screen {
  min-width: 190px;
  overflow: hidden;
  border-radius: 18px;
  background: #111827;
  box-shadow: 0 18px 45px rgba(17, 27, 53, 0.13);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step {
  position: relative;
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.step-number {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
}

.step h3 {
  margin-top: 18px;
}

.ratings-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
}

.rating-overview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.rating-panel {
  min-height: 226px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(244, 201, 93, 0.42);
  border-radius: 8px;
  background: var(--navy);
  color: white;
  box-shadow: var(--shadow);
}

.rating-score {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
}

.rating-number {
  color: white;
  font-size: 5.1rem;
  font-weight: 900;
  line-height: 0.9;
}

.rating-total {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.2rem;
  font-weight: 800;
}

.rating-panel .stars {
  margin-top: 0;
  color: var(--gold);
  font-size: 1.18rem;
}

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

.review-card {
  min-height: 226px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 34px rgba(17, 27, 53, 0.08);
}

.review-card h3 {
  margin-top: 10px;
  font-size: 1.12rem;
}

.review-card p {
  margin-bottom: 0;
  color: #3c4757;
  font-size: 0.98rem;
}

.review-stars {
  color: #c79314;
  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: 0;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.guide-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 46px rgba(17, 27, 53, 0.13);
}

.keyword {
  width: fit-content;
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  color: #184f9c;
  background: #e6f3ff;
  font-size: 0.8rem;
  font-weight: 800;
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--navy);
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 22px 20px;
}

details a {
  color: var(--blue);
  font-weight: 800;
}

.cta {
  background: var(--navy);
  color: white;
}

.cta h2,
.cta p {
  color: white;
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
}

.footer {
  padding: 34px 0;
  background: #08101f;
  color: rgba(255, 255, 255, 0.76);
}

.footer a {
  color: white;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-copy {
  min-width: 0;
}

.guide-article {
  max-width: 820px;
  margin: 0 auto;
  padding: 46px 0 64px;
}

.guide-article h1 {
  font-size: 4.25rem;
}

.guide-article h2 {
  margin-top: 32px;
  font-size: 2.25rem;
}

.guide-article p,
.guide-article li {
  color: #3d4a58;
  font-size: 1.08rem;
  line-height: 1.78;
}

.guide-article .guide-image {
  width: 100%;
  margin: 28px auto 12px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(17, 27, 53, 0.14);
}

.guide-intro {
  margin-top: 20px;
  font-size: 1.18rem;
}

.guide-note {
  margin: 30px 0;
  padding: 22px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: var(--gold-soft);
}

.guide-article .article-cta {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 24px;
  padding: 28px;
  border-radius: 8px;
  background: var(--navy);
  color: white;
}

.guide-article .article-cta h2,
.guide-article .article-cta p {
  color: white;
}

.guide-article .article-cta h2 {
  margin-top: 0;
}

.guide-article .article-cta p {
  margin-bottom: 16px;
}

.guide-article .article-icon {
  width: 96px;
  margin: 0;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.guide-article .article-cta .store-badge {
  width: 180px;
}

.guide-article .article-cta .store-badge img {
  width: 100%;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.related-guides {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.related-guides h2 {
  margin-top: 0;
}

.related-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.related-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(17, 27, 53, 0.12);
}

.related-card h3 {
  margin-top: 14px;
}

.related-card p {
  margin-bottom: 0;
  font-size: 0.98rem;
}

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

  .cta-box {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .nav-inner {
    gap: 10px;
  }

  .brand-trail {
    gap: 7px;
  }

  .site-link {
    font-size: 0.84rem;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }

  .app-brand span {
    max-width: 118px;
    font-size: 0.92rem;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 34px;
  }

  h1,
  .guide-article h1 {
    font-size: 2.55rem;
  }

  .section h2 {
    font-size: 2.1rem;
  }

  .guide-article h2 {
    font-size: 1.75rem;
  }

  .lead {
    font-size: 1.08rem;
  }

  .rating-number {
    font-size: 4.1rem;
  }

  .hero-title-row {
    flex-direction: column;
    gap: 18px;
  }

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

  .store-badge {
    width: 172px;
  }

  .store-badge-nav {
    width: 108px;
  }

  .hero-app-icon {
    width: 112px;
    border-radius: 24px;
  }

  .section {
    padding: 48px 0;
  }

  .rating-panel,
  .review-card {
    padding: 22px;
  }

  .guide-article .article-cta,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .guide-article .article-icon {
    width: 82px;
  }
}
