:root {
  --bg: #f4efe9;
  --paper: #fffaf6;
  --ink: #24385c;
  --muted: #5f6d87;
  --line: #d5dff0;
  --line-strong: rgba(113, 142, 201, 0.42);
  --line-soft: rgba(113, 142, 201, 0.28);
  --brand: #5176c2;
  --brand-2: #fbbc9b;
  --accent: #e99b76;
  --sky: #718ec9;
  --sun: #fddfc3;
  --btn-text: #ffffff;
  --btn-bg: #007aff;
  --btn-bg-hover: #006ee6;
  --btn-border: #006fe8;
  --btn-border-hover: #0062cf;
  --btn-shadow: 0 6px 14px rgba(0, 122, 255, 0.28);
  --radius: 22px;
  --shadow-soft: 0 24px 52px rgba(36, 56, 92, 0.16);
  --shadow-card: 0 14px 28px rgba(36, 56, 92, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(81, 118, 194, 0.22), transparent 34%),
    radial-gradient(circle at 92% 12%, rgba(251, 188, 155, 0.22), transparent 36%),
    linear-gradient(180deg, #fdf8f4 0%, var(--bg) 54%, #eff4fc 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.1;
}

p {
  margin: 0;
}

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

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(50px);
  pointer-events: none;
  z-index: -2;
}

.bg-orb-a {
  width: 380px;
  height: 380px;
  left: -120px;
  top: -80px;
  background: rgba(81, 118, 194, 0.35);
}

.bg-orb-b {
  width: 460px;
  height: 460px;
  right: -140px;
  top: 180px;
  background: rgba(251, 188, 155, 0.34);
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image: linear-gradient(rgba(81, 118, 194, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(81, 118, 194, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 100%);
}

.site-header,
main,
.site-footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  margin-top: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(113, 142, 201, 0.5);
  border-radius: 16px;
  background: rgba(255, 250, 246, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 24px rgba(36, 56, 92, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(113, 142, 201, 0.45);
  box-shadow: 0 6px 12px rgba(81, 118, 194, 0.25);
}

.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

.site-nav a:not(.btn):hover {
  color: var(--ink);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 10px;
  background: var(--paper);
  font-weight: 700;
  font-size: 13px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 13px;
  border: 1px solid var(--btn-border);
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 800;
  background: var(--btn-bg);
  color: var(--btn-text);
  box-shadow: var(--btn-shadow);
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--btn-bg-hover);
  border-color: var(--btn-border-hover);
  color: var(--btn-text);
}

.btn:active {
  transform: translateY(0);
}

.btn-small {
  padding: 10px 14px;
  font-size: 13px;
}

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

main {
  padding-top: 54px;
}

.hero {
  display: block;
  padding: 34px 28px;
  border-radius: 26px;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at 80% 0%, rgba(251, 188, 155, 0.26), transparent 48%),
    radial-gradient(circle at 0% 100%, rgba(81, 118, 194, 0.2), transparent 52%),
    linear-gradient(180deg, rgba(255, 250, 246, 0.96) 0%, rgba(243, 247, 255, 0.95) 100%);
  box-shadow: var(--shadow-soft);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #3e5785;
  background: linear-gradient(135deg, rgba(81, 118, 194, 0.17), rgba(251, 188, 155, 0.22));
  font-weight: 800;
}

.hero-title-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 740px;
}

.hero h1 {
  font-size: clamp(36px, 5.4vw, 64px);
  max-width: 13ch;
  flex: 1;
}

.hero-title-logo {
  width: clamp(136px, 18vw, 228px);
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  object-fit: cover;
  border: 1px solid rgba(113, 142, 201, 0.5);
  box-shadow: 0 12px 24px rgba(81, 118, 194, 0.24);
  flex-shrink: 0;
}

.ratings {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  margin-top: 14px;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1;
  min-height: 22px;
}

.stars {
  display: flex;
  align-items: center;
  height: 22px;
  color: #ff9500;
  font-size: 1rem;
  line-height: 1;
}

.ratings-line {
  display: flex;
  align-items: center;
  height: 22px;
  font-size: 0.92rem;
  line-height: 1;
  white-space: nowrap;
}

.hero-lead {
  margin-top: 16px;
  color: var(--muted);
  max-width: 56ch;
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.65;
}

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

.hero-meta {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.hero-meta strong {
  color: var(--ink);
}

.screenshots {
  margin-top: 54px;
}

.screenshots-scroller {
  margin-top: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 2px 12px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.screenshots-scroller::-webkit-scrollbar {
  height: 8px;
}

.screenshots-scroller::-webkit-scrollbar-thumb {
  background: rgba(81, 118, 194, 0.4);
  border-radius: 999px;
}

.screenshots-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  width: 100%;
}

.screenshot-card {
  margin: 0;
  flex: 0 0 min(320px, calc((100% - 28px) / 3));
  border-radius: 22px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  scroll-snap-align: start;
}

.screenshot-media {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  display: block;
  object-fit: cover;
  background: #eef3fb;
}

.screenshot-card figcaption {
  padding: 12px 12px 13px;
  font-size: 14px;
  font-weight: 700;
  color: #34507f;
  border-top: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(252, 248, 244, 0.9), rgba(239, 244, 252, 0.9));
}

.stats,
.importance,
.features,
.steps,
.reviews,
.faq,
.cta {
  margin-top: 82px;
}

.stats {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stats article {
  border: 1px solid var(--line-strong);
  background: var(--paper);
  border-radius: 16px;
  padding: 20px 16px;
  box-shadow: var(--shadow-card);
}

.stats h2 {
  font-size: 28px;
}

.stats p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.importance-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.importance-card {
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  padding: 22px 18px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 240px;
}

.importance-card h3 {
  font-size: 23px;
  line-height: 1.22;
  text-wrap: balance;
}

.importance-card p {
  margin-top: 9px;
  color: var(--muted);
  line-height: 1.65;
  text-wrap: pretty;
  overflow-wrap: anywhere;
}

.importance-note {
  margin-top: 16px;
  border-radius: 14px;
  border: 1px solid rgba(233, 155, 118, 0.45);
  background: linear-gradient(135deg, rgba(233, 155, 118, 0.2), rgba(253, 223, 195, 0.38));
  padding: 15px 16px;
  color: #643f32;
  line-height: 1.6;
  box-shadow: var(--shadow-card);
}

.importance-note p {
  margin: 0;
}

.section-head {
  max-width: 740px;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.feature-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  padding: 22px 18px;
  box-shadow: var(--shadow-card);
}

.feature-card h3 {
  font-size: 24px;
}

.feature-card p {
  margin-top: 9px;
  color: var(--muted);
  line-height: 1.6;
}

.steps-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.steps-grid article {
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  padding: 22px 18px;
}

.step-index {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--brand-2));
  box-shadow: 0 6px 12px rgba(233, 155, 118, 0.3);
}

.steps-grid h3 {
  margin-top: 14px;
  font-size: 24px;
}

.steps-grid p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

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

blockquote {
  margin: 0;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  padding: 22px 18px;
  font-size: 18px;
  line-height: 1.55;
  box-shadow: var(--shadow-card);
}

cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.faq-list {
  margin-top: 18px;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.faq-item + .faq-item {
  border-top: 1px solid var(--line-soft);
}

.faq-question {
  width: 100%;
  border: 0;
  margin: 0;
  background: transparent;
  text-align: left;
  color: var(--ink);
  padding: 20px 20px;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  position: relative;
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 18px;
  color: var(--brand);
  font-size: 26px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  color: var(--muted);
  line-height: 1.65;
}

.faq-item.open .faq-answer {
  max-height: 220px;
  padding: 0 20px 18px;
}

.cta {
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  padding: 36px 24px;
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(251, 188, 155, 0.34), transparent 40%),
    radial-gradient(circle at top left, rgba(81, 118, 194, 0.28), transparent 45%),
    linear-gradient(180deg, #fcf8f4 0%, #eef4fc 100%);
  box-shadow: var(--shadow-soft);
}

.cta h2 {
  font-size: clamp(30px, 4vw, 46px);
}

.cta p {
  margin: 10px auto 0;
  max-width: 58ch;
  color: var(--muted);
}

.cta .btn {
  margin-top: 18px;
}

.site-footer {
  margin-top: 44px;
  margin-bottom: 22px;
  padding: 14px 4px 20px;
  border-top: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a:hover {
  color: var(--ink);
}

@media (max-width: 1040px) {
  .hero h1 {
    max-width: 100%;
  }

  .screenshots-grid {
    gap: 12px;
  }

  .screenshot-card {
    flex-basis: calc((100% - 12px) / 2);
  }

  .stats,
  .importance-grid,
  .feature-grid,
  .steps-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 10px;
    margin-top: 10px;
    padding: 10px 12px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    margin: 0 auto;
    width: 100%;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    background: rgba(255, 250, 246, 0.98);
    padding: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

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

  .site-nav a {
    padding: 8px 10px;
    border-radius: 10px;
  }

  .site-nav a:not(.btn):hover {
    background: #f6efe8;
  }

  main {
    padding-top: 40px;
  }

  .hero-title-row {
    gap: 12px;
  }

  .hero-title-logo {
    width: clamp(112px, 32vw, 156px);
    border-radius: 22px;
  }

  .ratings {
    flex-wrap: wrap;
    gap: 8px;
  }

  .ratings-line {
    white-space: normal;
    height: auto;
    line-height: 1.3;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .screenshots-grid {
    gap: 10px;
  }

  .screenshot-card {
    flex-basis: min(340px, 82vw);
  }

  .stats,
  .importance-grid,
  .feature-grid,
  .steps-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
