:root {
  --bg: #f4f1ea;
  --bg-soft: #fffcf7;
  --text: #1f2733;
  --muted: #596474;
  --surface: #ffffff;
  --surface-2: #f7fbff;
  --border: #d1dce7;
  --accent: #1766c7;
  --accent-2: #0998d3;
  --accent-soft: #e8f1ff;
  --accent-contrast: #ffffff;
  --shadow-sm: 0 10px 24px rgba(14, 35, 63, 0.08);
  --shadow-lg: 0 22px 45px rgba(14, 35, 63, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1140px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Poppins", sans-serif;
  color: var(--text);
  line-height: 1.55;
  background:
    radial-gradient(circle at 93% -10%, rgba(217, 236, 255, 0.9) 0, rgba(217, 236, 255, 0.2) 33%, transparent 55%),
    radial-gradient(circle at -6% 5%, rgba(255, 236, 214, 0.9) 0, rgba(255, 236, 214, 0.18) 24%, transparent 46%),
    var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #8bb9f0;
  outline-offset: 2px;
}

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

.container {
  width: min(var(--container), 92vw);
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: -120px;
  z-index: 90;
  background: #ffffff;
  color: #1f2733;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.skip-link:focus-visible {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(244, 241, 234, 0.9);
  border-bottom: 1px solid rgba(209, 220, 231, 0.85);
}

.header-inner {
  display: grid;
  grid-template-columns: 220px 1fr auto auto;
  align-items: center;
  gap: 16px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbff 0%, #edf3fb 100%);
  border: 1px solid #d8e2ee;
  box-shadow: 0 2px 7px rgba(25, 58, 95, 0.12);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #1f2733;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  color: #202837;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 0.96rem;
}

.site-nav a:hover {
  color: var(--accent);
}

.site-nav a.active {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  padding: 9px 12px;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.btn.primary {
  background: linear-gradient(135deg, var(--accent), #0b76d8 58%, var(--accent-2));
  color: var(--accent-contrast);
  box-shadow: 0 12px 26px rgba(23, 102, 199, 0.26);
}

.btn.primary:hover {
  box-shadow: 0 14px 28px rgba(23, 102, 199, 0.34);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.58);
  color: #253142;
  border-color: var(--border);
}

.btn.secondary:hover {
  background: #ffffff;
}

.btn.small {
  padding: 10px 16px;
  font-size: 0.88rem;
}

.hero {
  padding: 92px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: 46px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.66);
  color: #273142;
}

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

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.45rem);
}

h3 {
  font-size: clamp(1.08rem, 1.9vw, 1.35rem);
  letter-spacing: -0.012em;
}

.material-symbols-rounded {
  font-family: "Material Symbols Rounded";
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "liga";
}

.heading-with-icon {
  display: flex;
  align-items: center;
  gap: 11px;
}

.heading-with-icon > span:last-child {
  min-width: 0;
}

.heading-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #125fbd;
  background: linear-gradient(145deg, #e5f0ff 0%, #f4f8ff 100%);
  border: 1px solid #cadaf0;
  box-shadow: 0 5px 12px rgba(22, 79, 143, 0.12);
}

.lead {
  font-size: clamp(1.03rem, 1.75vw, 1.22rem);
  color: var(--muted);
  max-width: 62ch;
}

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

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 17px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #324055;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.hero-media {
  position: relative;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 8% -3% -8% 8%;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(225, 240, 255, 0.44), rgba(255, 236, 213, 0.34));
  z-index: 0;
}

.hero-card,
.hero-floating {
  position: relative;
  z-index: 1;
}

.hero-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, var(--surface-2));
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-card img {
  width: 100%;
  height: auto;
  min-height: 220px;
  object-fit: cover;
  background: #eef4fb;
}

.hero-floating {
  position: absolute;
  right: -24px;
  bottom: -18px;
  width: 228px;
  border-radius: 18px;
  overflow: visible;
  box-shadow: var(--shadow-sm);
  background: transparent;
}

.hero-floating img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  border-radius: 18px;
  background: transparent;
}

img[data-custom-base] {
  background: linear-gradient(145deg, #edf4ff, #fdf7ee);
}

section {
  padding: 58px 0;
}

.section-head {
  margin-bottom: 24px;
}

.section-head p {
  max-width: 70ch;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
}

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

.grid.features .card {
  border-color: rgba(209, 220, 231, 0.75);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: none;
}

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.card h3 {
  margin-bottom: 10px;
}

.card .heading-with-icon {
  gap: 10px;
}

.card .heading-icon {
  width: 30px;
  height: 30px;
  flex-basis: 30px;
  border-radius: 10px;
  font-size: 18px;
}

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

.logo-strip {
  padding: 18px 0;
  border-top: 1px solid rgba(209, 220, 231, 0.8);
  background: rgba(255, 255, 255, 0.5);
}

.logo-row {
  min-height: 56px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px 16px;
}

.store-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.95rem;
  color: #2f3d51;
}

.store-meta > * + * {
  border-left: 1px solid var(--border);
  padding-left: 12px;
}

.store-meta strong {
  font-size: 1.02rem;
  font-weight: 800;
  color: #1f2733;
}

.store-meta .store-score {
  font-weight: 800;
  color: #1f2733;
}

.testimonial-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, 34%);
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.quote-slide {
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(209, 220, 231, 0.9);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.quote {
  margin-bottom: 12px;
  font-size: 1.02rem;
  line-height: 1.5;
  color: #1f2837;
  font-weight: 600;
}

.quote-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.image-band {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

.image-band .card {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(140deg, #f8fbff, #f2f7ff);
}

.image-band .card:only-child {
  grid-column: 1 / -1;
}

.image-band img {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

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

.price-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.price-card.featured {
  border-color: #9dc7ff;
  box-shadow: 0 20px 40px rgba(23, 102, 199, 0.2);
}

.price {
  font-size: 2.08rem;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.price-note {
  color: var(--muted);
  font-weight: 600;
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.list li {
  position: relative;
  padding-left: 20px;
  color: #344256;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.article {
  max-width: 920px;
  margin: 0 auto;
}

.article .hero-image,
.article-cover {
  margin-bottom: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.article p {
  font-size: 1.03rem;
  color: #2d3748;
}

.post-list {
  display: grid;
  gap: 22px;
}

.post-item {
  display: grid;
  grid-template-columns: 320px 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: linear-gradient(140deg, #ffffff, #f7fbff 55%, #fef8f1);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  color: #1c2738;
  text-decoration: none;
}

.post-item:link,
.post-item:visited,
.post-item:hover,
.post-item:active {
  color: #1c2738;
  text-decoration: none;
}

.post-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: #aec7e5;
}

.post-item img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.post-item .content {
  padding: 24px 24px 22px;
}

.post-item h2,
.post-item h3 {
  margin-bottom: 12px;
  color: #1c2738;
  text-decoration: none;
}

.post-item .heading-with-icon {
  gap: 9px;
}

.post-item .heading-icon {
  width: 28px;
  height: 28px;
  flex-basis: 28px;
  border-radius: 9px;
  font-size: 17px;
}

.post-item:hover h2,
.post-item:hover h3 {
  color: #1c2738;
}

.post-item:visited h2,
.post-item:visited h3,
.post-item:visited p {
  color: #1c2738;
}

.post-item p {
  margin: 0;
  color: #4e5f75;
  text-decoration: none;
}

.post-item *,
.post-item:hover * {
  text-decoration: none;
}

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

details {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 16px 50px 16px 18px;
  font-weight: 700;
  color: #243140;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #c7d8eb;
  background: #f4f9ff;
  color: #26558b;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 700;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.cta-box {
  border: 1px solid #c9dcee;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  background: linear-gradient(145deg, #edf7ff, #fff2e2);
}

.media-gallery {
  overflow: visible;
}

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

.media-tile {
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(145deg, #f7fbff, #fff6ea);
  box-shadow: var(--shadow-sm);
}

.media-tile img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
}

.footer {
  margin-top: 28px;
  padding: 50px 0;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.58);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
}

.footer-links,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-links {
  gap: 10px;
}

.social-links .social-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.74);
  color: #2b3647;
  font-size: 0;
  line-height: 0;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.social-links .social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-links .social-icon:hover {
  transform: translateY(-1px);
  color: var(--accent);
  border-color: #a7c4e8;
  background: #ffffff;
}

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

.footer a {
  color: #2b3647;
  font-weight: 600;
}

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

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1024px) {
  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .site-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 82px;
    z-index: 35;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-lg);
  }

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

  .menu-toggle {
    display: inline-flex;
  }

  .download-btn {
    display: none;
  }

  .hero-grid,
  .pricing-grid,
  .grid.features,
  .grid.three,
  .grid.two,
  .image-band,
  .media-grid,
  .footer-grid,
  .post-item {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-floating {
    width: 175px;
    right: 8px;
    bottom: -12px;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .store-meta {
    width: 100%;
    gap: 8px 12px;
  }

  .store-meta > * + * {
    border-left: 0;
    padding-left: 0;
  }

  .post-item img {
    min-height: 220px;
  }

  .brand-mark {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
    border-radius: 8px;
  }

  .brand-mark img {
    width: 100%;
    height: 100%;
  }

  .brand-text {
    font-size: 1.65rem;
  }

  .heading-with-icon {
    gap: 9px;
  }

  .heading-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    border-radius: 10px;
    font-size: 18px;
  }

  .card .heading-icon,
  .post-item .heading-icon {
    width: 27px;
    height: 27px;
    flex-basis: 27px;
    border-radius: 9px;
    font-size: 16px;
  }
}
