:root {
  color-scheme: light;
  --bg: #ffffff;
  --surface: #ffffff;
  --ink: #111318;
  --muted: #5e6673;
  --line: rgba(17, 19, 24, 0.1);
  --soft-line: rgba(17, 19, 24, 0.06);
  --blue: #2e6cf6;
  --shadow: 0 26px 70px rgba(17, 19, 24, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Avenir Next", "SF Pro Display", "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

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

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

.site-shell {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
}

.topbar,
.topnav,
.hero-actions,
.footer {
  display: flex;
  align-items: center;
}

.topbar {
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(17, 19, 24, 0.12);
}

.topnav {
  gap: 24px;
  color: var(--muted);
}

.topnav .active,
.topnav a:hover,
.footer a:hover {
  color: var(--ink);
}

.hero,
.showcase-section,
.legal-page {
  animation: rise 700ms ease both;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 34px;
  align-items: center;
  padding: 34px 0 54px;
}

.hero-copy {
  max-width: 560px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Avenir Next Condensed", "SF Pro Display", "Avenir Next", sans-serif;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.hero h1 {
  max-width: 10.5ch;
  font-size: clamp(3.6rem, 6.4vw, 5.8rem);
}

.lede,
.feature-copy p,
.legal-page p,
.legal-copy p,
.footer p {
  color: var(--muted);
  line-height: 1.65;
}

.lede {
  max-width: 54ch;
  margin: 22px 0 0;
  font-size: 1.12rem;
}

.hero-actions {
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.app-store-link img {
  width: 180px;
}

.contact-email {
  color: var(--ink);
  font-weight: 700;
}

.contact-email:hover {
  color: var(--blue);
}

.hero-meta {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.hero-media {
  display: flex;
  justify-content: flex-end;
}

.device-frame {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 34px;
  box-shadow:
    var(--shadow),
    0 12px 28px rgba(255, 118, 164, 0.12),
    0 18px 42px rgba(255, 156, 72, 0.1),
    0 24px 56px rgba(255, 220, 96, 0.08);
}

.hero-primary {
  width: min(300px, 100%);
  margin-left: auto;
}

.showcase-section {
  border-top: 1px solid var(--soft-line);
}

.reviews-section {
  padding: 72px 0 20px;
  border-top: 1px solid var(--soft-line);
}

.reviews-header {
  max-width: 420px;
  margin-bottom: 28px;
}

.reviews-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.45rem);
}

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

.review-item {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px 0 0;
  border-top: 1px solid var(--soft-line);
}

.review-item-interactive {
  cursor: pointer;
  transition: opacity 160ms ease;
}

.review-item-interactive:hover {
  opacity: 0.72;
}

.review-item-interactive:focus-visible {
  outline: 2px solid rgba(17, 19, 24, 0.24);
  outline-offset: 8px;
}

.review-item-featured {
  grid-column: span 2;
  padding-top: 0;
  border-top: 0;
}

.review-stars {
  display: inline-flex;
  gap: 3px;
  margin-bottom: 14px;
}

.review-star {
  color: rgba(17, 19, 24, 0.16);
  font-size: 0.88rem;
  line-height: 1;
}

.review-star.is-filled {
  color: rgba(17, 19, 24, 0.52);
}

.review-quote {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.7;
  letter-spacing: -0.01em;
  color: rgba(17, 19, 24, 0.92);
}

.review-item-featured .review-quote {
  font-size: 1.2rem;
  line-height: 1.58;
  letter-spacing: -0.02em;
}

.review-author {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
  margin-top: 16px;
}

.review-meta .review-author {
  margin: 0;
}

.review-meta-side {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.review-date {
  color: rgba(17, 19, 24, 0.5);
  font-size: 0.84rem;
  white-space: nowrap;
}

.review-verify {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: rgba(17, 19, 24, 0.44);
  text-decoration: none;
  transition: color 160ms ease;
}

.review-verify:hover {
  color: rgba(17, 19, 24, 0.82);
}

.review-verify svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.review-modal-open {
  overflow: hidden;
}

.review-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
}

.review-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 19, 24, 0.36);
  backdrop-filter: blur(12px);
}

.review-modal-dialog {
  position: relative;
  width: min(680px, calc(100vw - 32px));
  max-height: min(80vh, 760px);
  margin: min(10vh, 80px) auto 0;
  padding: 28px 28px 24px;
  overflow: auto;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(17, 19, 24, 0.16);
}

.review-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 19, 24, 0.06);
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.review-modal-stars {
  margin-bottom: 14px;
}

.review-modal-body p {
  margin: 0 0 16px;
  font-size: 1.05rem;
  line-height: 1.8;
  letter-spacing: -0.01em;
  color: rgba(17, 19, 24, 0.94);
}

.review-modal-meta {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
}

.review-modal-author {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.review-modal-meta-side {
  margin-top: 0;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 68px 0;
  border-bottom: 1px solid var(--soft-line);
}

.filter-row {
  padding: 68px 0;
  border-bottom: 1px solid var(--soft-line);
}

.filter-gallery {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-top: 30px;
  width: 100%;
}

.filter-shot {
  margin: 0;
  width: min(220px, 100%);
  flex: 0 1 220px;
}

.feature-row.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.84fr);
}

.feature-row.reverse .feature-copy {
  order: 2;
}

.feature-row.reverse .feature-shot {
  order: 1;
}

.feature-copy h2,
.legal-page h1 {
  font-size: clamp(2.05rem, 4vw, 3.1rem);
}

.feature-copy p:not(.eyebrow) {
  max-width: 44ch;
  margin: 18px 0 0;
  font-size: 1rem;
}

.feature-shot {
  width: min(280px, 100%);
  margin-left: auto;
}

.feature-row.reverse .feature-shot {
  margin-left: 0;
}

.compact-row .feature-copy p:not(.eyebrow) + p:not(.eyebrow) {
  margin-top: 12px;
}

.legal-page {
  max-width: 820px;
  min-height: 68vh;
  padding: 76px 0 40px;
}

.legal-updated {
  margin: 18px 0 0;
  font-weight: 600;
  color: var(--ink);
}

.legal-copy {
  margin-top: 34px;
}

.legal-copy section {
  padding: 0;
}

.legal-copy > p + section,
.legal-copy section + p {
  margin-top: 22px;
}

.legal-copy section + section {
  margin-top: 22px;
}

.legal-copy h2 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.footer {
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0 56px;
  border-top: 1px solid var(--soft-line);
  color: var(--muted);
}

.footer nav {
  display: flex;
  gap: 20px;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .hero,
  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 24px;
    padding-top: 24px;
  }

  .hero-media {
    justify-content: flex-start;
  }

  .hero-primary {
    width: min(420px, 100%);
    max-height: 560px;
    margin: 0;
  }

  .feature-row {
    gap: 28px;
    padding: 56px 0;
  }

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

  .review-item-featured {
    grid-column: span 2;
  }

  .filter-row {
    padding: 56px 0;
  }

  .filter-gallery {
    gap: 18px;
  }

  .filter-shot {
    max-width: none;
  }

  .feature-row.reverse .feature-copy,
  .feature-row.reverse .feature-shot {
    order: initial;
  }

  .feature-shot,
  .feature-row.reverse .feature-shot {
    margin-left: 0;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(100% - 24px, 100%);
  }

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

  .topnav,
  .footer nav {
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 14vw, 4.6rem);
  }

  .feature-row,
  .footer {
    padding: 52px 0;
  }

  .filter-row {
    padding: 52px 0;
  }

  .reviews-section {
    padding: 52px 0 12px;
  }

  .filter-gallery {
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
  }

  .filter-shot {
    width: min(280px, 100%);
    flex-basis: auto;
  }

  .device-frame {
    border-radius: 24px;
  }

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

  .review-item,
  .review-item-featured {
    grid-column: auto;
    padding: 20px 0 0;
  }

  .review-item-featured .review-quote {
    font-size: 1.12rem;
  }
}
