/* Avelix PDF — Landing Page Styles */
:root {
  --brand: #d32f2f;
  --brand-dark: #b71c1c;
  --brand-light: #ffebee;
  --brand-glow: rgba(211, 47, 47, 0.18);
  --gold: #c5a000;
  --gold-light: rgba(197, 160, 0, 0.12);
  --bg: #f8f9fa;
  --bg-elevated: #ffffff;
  --surface: #ffffff;
  --surface-muted: #f1f3f4;
  --text: #202124;
  --text-muted: #5f6368;
  --border: #e0e0e0;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --nav-height: 72px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Plus Jakarta Sans", var(--font);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --chrome: #e8eaed;
}

[data-theme="dark"] {
  --bg: #121212;
  --bg-elevated: #1a1a1a;
  --surface: #1a1a1a;
  --surface-muted: #242424;
  --text: #e8eaed;
  --text-muted: #9aa0a6;
  --border: #3c4043;
  --brand-light: rgba(211, 47, 47, 0.15);
  --brand-glow: rgba(211, 47, 47, 0.25);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --chrome: #2c2c2c;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-height) + 16px); overflow-x: clip; }
body { margin: 0; font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: clip; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; margin: 0; padding: 0; }
.container { width: min(1140px, calc(100% - 2rem)); margin-inline: auto; }
.skip-link { position: absolute; top: -100%; left: 1rem; z-index: 9999; padding: 0.75rem 1rem; background: var(--brand); color: #fff; border-radius: var(--radius-sm); }
.skip-link:focus { top: 1rem; }

.header { position: fixed; inset: 0 0 auto; z-index: 100; height: var(--nav-height); transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition); }
.header.is-scrolled { background: color-mix(in srgb, var(--bg-elevated) 85%, transparent); backdrop-filter: blur(16px); box-shadow: var(--shadow-sm); border-bottom: 1px solid var(--border); }
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--nav-height); gap: 1rem; }
.nav__brand { display: flex; align-items: center; gap: 0.65rem; font-weight: 700; font-size: 1.05rem; letter-spacing: -0.02em; line-height: 1; }
.nav__brand-text { line-height: 1.1; }
.nav__logo { width: 40px; height: 40px; border-radius: 10px; overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.nav__logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nav__links { display: flex; align-items: center; gap: 0.25rem; }
.nav__link { padding: 0.5rem 0.85rem; font-size: 0.925rem; font-weight: 500; color: var(--text-muted); border-radius: 999px; transition: color var(--transition), background var(--transition); }
.nav__link:hover, .nav__link.is-active { color: var(--text); background: var(--surface-muted); }
.nav__actions { display: flex; align-items: center; gap: 0.5rem; }
.nav__toggle { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 10px; color: var(--text); }
.nav__toggle:hover { background: var(--surface-muted); }
.theme-toggle { display: flex; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 10px; color: var(--text); }
.theme-toggle:hover { background: var(--surface-muted); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem 1.35rem; font-weight: 600; font-size: 0.95rem; border-radius: 12px; transition: transform var(--transition), box-shadow var(--transition), background var(--transition); white-space: nowrap; }
.btn:active { transform: scale(0.98); }
.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 4px 14px var(--brand-glow); }
.btn--primary:hover { background: var(--brand-dark); }
.btn--secondary { background: var(--surface); color: var(--text); border: 1px solid var(--border); }
.btn--secondary:hover { background: var(--surface-muted); }
.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { filter: brightness(1.08); }
.btn--sm { padding: 0.55rem 1rem; font-size: 0.875rem; }
.btn--lg { padding: 0.9rem 1.75rem; font-size: 1rem; }

.hero { position: relative; padding: calc(var(--nav-height) + 3rem) 0 5rem; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__gradient { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 70% 20%, var(--brand-glow), transparent 60%), radial-gradient(ellipse 50% 40% at 10% 80%, rgba(29, 78, 216, 0.06), transparent 50%); }
.hero__grid { position: absolute; inset: 0; background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px); background-size: 48px 48px; mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black, transparent); opacity: 0.35; }
.hero__inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.hero__badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 0.85rem; background: var(--brand-light); color: var(--brand); border-radius: 999px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1.25rem; }
.hero__title { font-family: var(--font-display); font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; margin: 0 0 1.25rem; }
.hero__title span { color: var(--brand); background: linear-gradient(135deg, var(--brand), #e53935); -webkit-background-clip: text; background-clip: text; }
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .hero__title span { color: transparent; }
}
.hero__desc { font-size: 1.125rem; color: var(--text-muted); max-width: 32rem; margin: 0 0 2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.5rem; }
.hero__stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.hero__stat strong { display: block; font-size: 1.25rem; font-weight: 700; }
.hero__stat span { font-size: 0.85rem; color: var(--text-muted); }
.hero__floats { position: absolute; inset: 0; pointer-events: none; }
.float-icon { position: absolute; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow-md); animation: float 6s ease-in-out infinite; }
.float-icon svg { width: 22px; height: 22px; color: var(--brand); }
.float-icon:nth-child(1) { top: 15%; left: 5%; }
.float-icon:nth-child(2) { top: 25%; right: 8%; animation-delay: 1s; }
.float-icon:nth-child(3) { bottom: 30%; left: 8%; animation-delay: 2s; }
.float-icon:nth-child(4) { bottom: 20%; right: 5%; animation-delay: 0.5s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.hero__visual { position: relative; display: flex; justify-content: center; }
.phone { position: relative; width: min(280px, 100%); aspect-ratio: 9 / 19.5; background: #111; border-radius: 36px; padding: 10px; box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.08); }
.phone::before { content: ""; position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 80px; height: 22px; background: #000; border-radius: 999px; z-index: 2; }
/* Phone mockups always use light app UI for readable text */
.phone__screen {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #e8eaed;
  color: #202124;
}
.phone__status { display: flex; justify-content: space-between; padding: 28px 16px 8px; font-size: 0.65rem; font-weight: 600; color: #202124; }
.phone__header { position: relative; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 0 14px 10px; color: #202124; min-height: 34px; }
.phone__header-brand { display: flex; align-items: center; justify-content: center; gap: 8px; min-width: 0; max-width: calc(100% - 28px); }
.phone__header-menu { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); flex-shrink: 0; font-size: 0.85rem; line-height: 1; }
.phone__header h4 { margin: 0; font-size: 0.85rem; font-weight: 700; color: #202124; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-align: center; }
.phone__header img { width: 24px; height: 24px; border-radius: 6px; flex-shrink: 0; display: block; object-fit: cover; }
.phone__splash { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 8px; flex: 1; padding: 0 12px 12px; }
.phone__splash img { width: 64px; height: 64px; border-radius: 14px; display: block; object-fit: cover; }
.phone__splash strong { font-size: 0.75rem; line-height: 1.35; color: #202124; }
.phone__content { flex: 1; padding: 0 12px 12px; overflow: hidden; color: #202124; }
.phone__search { background: #ffffff; border-radius: 10px; padding: 8px 12px; font-size: 0.65rem; color: #5f6368; margin-bottom: 10px; border: 1px solid #e0e0e0; }
.phone__tools { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.phone__tool { background: #ffffff; border-radius: 12px; padding: 10px; font-size: 0.6rem; border: 1px solid #e8eaed; color: #202124; }
.phone__tool-icon { width: 24px; height: 24px; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 4px; font-size: 0.7rem; }
.phone__tool-icon--red { background: #ffebee; color: #d32f2f; }
.phone__tool-icon--blue { background: #eff6ff; color: #1d4ed8; }
.phone__tool-icon--green { background: #ecfdf5; color: #059669; }
.phone__tool-icon--orange { background: #fff7ed; color: #d97706; }
.phone__tool strong { display: block; font-size: 0.62rem; margin-bottom: 2px; color: #202124; }
.phone__tool span { color: #5f6368; line-height: 1.3; }
.phone__nav { display: flex; justify-content: space-around; padding: 10px 0 14px; background: #ffffff; border-top: 1px solid #e0e0e0; font-size: 0.55rem; color: #5f6368; }
.phone__nav-item { text-align: center; }
.phone__nav-item.is-active { color: #d32f2f; font-weight: 600; }
.phone--secondary { position: absolute; right: -20%; top: 15%; width: 220px; opacity: 0.85; transform: rotate(6deg); z-index: -1; }
.screen-reader .phone__content { background: #ffffff; margin: 0 8px; border-radius: 8px; padding: 8px; }
.screen-reader .doc-line { height: 4px; background: #dadce0; border-radius: 2px; margin-bottom: 6px; }
.screen-reader .doc-line:nth-child(3) { width: 70%; }
.screen-reader .doc-line:nth-child(5) { width: 85%; }
.screen-premium { background: linear-gradient(180deg, #fff8e1 0%, #f1f3f4 45%, #e8eaed 100%); }
.screen-premium .phone__content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  text-align: center;
  gap: 6px;
  padding-top: 4px;
  min-height: 0;
}
.premium-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #202124;
  margin-bottom: 2px;
}
.screen-premium .premium-star { font-size: 1rem; color: #c5a000; line-height: 1; }
.premium-plan { width: 100%; text-align: left; padding: 8px 10px; }
.premium-plan strong { display: block; font-size: 0.62rem; margin-bottom: 2px; color: #202124; }
.premium-plan span { color: #5f6368; font-size: 0.55rem; line-height: 1.35; }
.premium-plan--featured { border-color: #d32f2f; background: #ffffff; box-shadow: 0 0 0 1px rgba(211, 47, 47, 0.15); }
.premium-features {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: grid;
  gap: 4px;
  text-align: left;
}
.premium-features li {
  font-size: 0.55rem;
  color: #202124;
  padding-left: 14px;
  position: relative;
}
.premium-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #388e3c;
  font-weight: 700;
}

.section { padding: 5rem 0; }
.section--muted { background: var(--surface-muted); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section__eyebrow { display: inline-flex; font-size: 0.85rem; font-weight: 600; color: var(--brand); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75rem; }
.section__title { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; letter-spacing: -0.02em; margin: 0 0 0.75rem; }
.section__desc { color: var(--text-muted); font-size: 1.05rem; margin: 0; }

.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; }
.feature-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; transition: transform var(--transition), box-shadow var(--transition); }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card__icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: var(--brand-light); color: var(--brand); border-radius: 12px; margin-bottom: 1rem; }
.feature-card__icon svg { width: 22px; height: 22px; }
.feature-card h3 { margin: 0 0 0.5rem; font-size: 1rem; font-weight: 700; }
.feature-card p { margin: 0; font-size: 0.9rem; color: var(--text-muted); }

.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.why-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem 1.5rem; text-align: center; transition: transform var(--transition), box-shadow var(--transition); }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.why-card__icon { width: 56px; height: 56px; margin: 0 auto 1.25rem; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--brand-light), transparent); color: var(--brand); border-radius: 16px; }
.why-card__icon svg { width: 28px; height: 28px; }
.why-card h3 { margin: 0 0 0.5rem; font-size: 1.05rem; font-weight: 700; }
.why-card p { margin: 0; font-size: 0.9rem; color: var(--text-muted); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.pricing-card { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; display: flex; flex-direction: column; }
.pricing-card--featured { border: 2px solid var(--gold); box-shadow: 0 8px 40px var(--gold-light); transform: scale(1.03); }
.pricing-card__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #fff; font-size: 0.75rem; font-weight: 700; padding: 0.35rem 0.85rem; border-radius: 999px; white-space: nowrap; }
.pricing-card__name { font-size: 1.25rem; font-weight: 800; margin: 0 0 0.25rem; }
.pricing-card__tagline { font-size: 0.875rem; color: var(--text-muted); margin: 0 0 1.25rem; }
.pricing-card__price { font-size: 2rem; font-weight: 800; margin-bottom: 1.5rem; }
.pricing-card__price small { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); }
.pricing-card__savings { font-size: 0.85rem; font-weight: 600; color: var(--gold); margin: -0.75rem 0 1.25rem; }
.pricing-note { text-align: center; font-size: 0.875rem; color: var(--text-muted); margin-top: 1.5rem; max-width: 520px; margin-inline: auto; }
.pricing-card__features { flex: 1; margin-bottom: 1.5rem; }
.pricing-card__features li { display: flex; align-items: flex-start; gap: 0.6rem; padding: 0.4rem 0; font-size: 0.9rem; }
.pricing-card__features svg { width: 18px; height: 18px; color: #388e3c; flex-shrink: 0; margin-top: 2px; }
.pricing-card .btn { width: 100%; }

/* App preview — continuous sliding marquee (desktop) / arrow carousel (mobile) */
#screenshots { overflow: hidden; }
#screenshots .section__head { max-width: 640px; margin-inline: auto; padding-inline: 1rem; }
.screenshot-marquee {
  overflow: hidden;
  width: 100%;
  padding: 1rem 0 0.5rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.screenshot-marquee__viewport {
  overflow: hidden;
  width: 100%;
}
.screenshot-marquee__track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: screenshot-scroll 45s linear infinite;
  will-change: transform;
}
.screenshot-marquee__track:hover { animation-play-state: paused; }
.screenshot-nav {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  flex-shrink: 0;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: background var(--transition), opacity var(--transition);
}
.screenshot-marquee__controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1rem;
}
.screenshot-marquee__counter {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  min-width: 3.5rem;
  text-align: center;
}
.screenshot-nav:hover:not(:disabled) { background: var(--surface-muted); }
.screenshot-nav:disabled { opacity: 0.35; cursor: not-allowed; }
.screenshot-nav svg { width: 22px; height: 22px; }
@keyframes screenshot-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.screenshot-item {
  flex: 0 0 auto;
  width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.screenshot-item .phone { width: 100%; margin: 0 auto; flex-shrink: 0; }
.screenshot-item__caption {
  width: 100%;
  margin: 1.25rem 0 0;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  white-space: nowrap;
}
@media (prefers-reduced-motion: reduce) {
  .screenshot-marquee:not(.is-carousel) .screenshot-marquee__track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; max-width: 1100px; margin: 0 auto; }
}

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.testimonial-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; }
.testimonial-card__stars { display: flex; gap: 2px; color: var(--gold); margin-bottom: 1rem; }
.testimonial-card__stars svg { width: 16px; height: 16px; fill: currentColor; }
.testimonial-card blockquote { margin: 0 0 1.25rem; font-size: 0.95rem; font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-card__avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), #e53935); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 0.85rem; }
.testimonial-card__name { font-weight: 600; font-size: 0.9rem; }
.testimonial-card__role { font-size: 0.8rem; color: var(--text-muted); }

.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 0.75rem; background: var(--surface); overflow: hidden; }
.faq-item__question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.15rem 1.25rem; text-align: left; font-weight: 600; font-size: 0.95rem; color: var(--text); }
.faq-item__question:hover { background: var(--surface-muted); }
.faq-item__icon { width: 20px; height: 20px; flex-shrink: 0; transition: transform var(--transition); color: var(--brand); }
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item__answer-inner { padding: 0 1.25rem 1.15rem; color: var(--text-muted); font-size: 0.925rem; }
.faq-item.is-open .faq-item__answer { max-height: 300px; }

.download { padding: 5rem 0; }
.download__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2.5rem 3rem;
  align-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  border-radius: var(--radius-lg);
  padding: 3rem 3.5rem;
  color: #fff;
}
.download__content { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; min-width: 0; max-width: 34rem; text-align: left; }
.download__eyebrow { margin: 0 0 0.75rem; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255, 255, 255, 0.82); }
.download__visual { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.download__visual .phone { width: min(240px, 34vw); margin: 0; }
.download__title { font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.35rem); font-weight: 800; margin: 0 0 0.75rem; line-height: 1.15; text-wrap: balance; text-align: left; }
.download__desc { opacity: 0.92; margin: 0 0 1.75rem; max-width: 30rem; line-height: 1.65; text-align: left; }
.download__store-link { display: inline-block; line-height: 0; border-radius: 8px; transition: transform var(--transition), opacity var(--transition); }
.download__store-link:hover { transform: translateY(-2px); opacity: 0.92; }
.download__store-link img { display: block; width: 200px; max-width: 100%; height: auto; }

.footer {
  padding: 3rem 0 1.5rem;
  background: #111111;
  color: #e8eaed;
  border-top: 3px solid var(--brand);
  text-align: left;
}
.footer__grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 2rem; margin-bottom: 2.5rem; text-align: left; }
.footer__brand { text-align: left; }
.footer__brand .nav__brand { color: #ffffff; }
.footer__brand .nav__brand-text { color: #ffffff; }
.footer__brand p { color: #9aa0a6; font-size: 0.9rem; margin: 0.75rem 0 0; max-width: 280px; text-align: left; }
.footer__social { display: flex; gap: 0.75rem; margin-top: 0.75rem; }
.footer__social-heading {
  margin: 1.25rem 0 0;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #e8eaed;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.footer__social-link:hover { background: var(--brand); color: #fff; transform: translateY(-2px); }
.footer__social-link svg { width: 20px; height: 20px; }
.footer__heading { font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; color: #ffffff; text-align: left; }
.footer__links { text-align: left; }
.footer__links li { margin-bottom: 0.5rem; }
.footer__links a { font-size: 0.9rem; color: #9aa0a6; }
.footer__links a:hover { color: #ef9a9a; }
.footer__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.35rem 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  color: #9aa0a6;
  text-align: left;
}
.footer__bottom p { margin: 0; text-align: left; }
.footer__bottom a, .legal-content a, .contact-card a { color: #ef5350; }
.footer__bottom a:hover, .legal-content a:hover, .contact-card a:hover { color: #ff8a80; }

[data-theme="dark"] .footer {
  background: #0a0a0a;
  border-top-color: var(--brand);
}

.back-to-top { position: fixed; bottom: 1.5rem; right: 1.5rem; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: var(--brand); color: #fff; border-radius: 12px; box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity var(--transition), visibility var(--transition), transform var(--transition); z-index: 90; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 20px; height: 20px; }

/* Scroll & entrance animations — content stays readable if JS is slow */
.reveal {
  opacity: 1;
  transform: none;
  will-change: transform, opacity;
}

.js-ready .reveal {
  opacity: 1;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js-ready .reveal--left { transform: translateX(-36px); }
.js-ready .reveal--right { transform: translateX(36px); }
.js-ready .reveal--scale { transform: translateY(28px) scale(0.94); }

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Keep screenshot carousel layout stable — no entrance shift on the track */
.js-ready #app-slides.reveal,
.js-ready #app-slides.reveal.is-visible {
  transform: none;
}

/* Subtle float on hero phone after entrance */
.js-ready .hero__visual.is-visible .phone {
  animation: hero-phone-float 5s ease-in-out 0.9s infinite;
}

@keyframes hero-phone-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.mobile-nav { position: fixed; inset: 0; z-index: 200; pointer-events: none; visibility: hidden; }
.mobile-nav.is-open { pointer-events: auto; visibility: visible; }
.mobile-nav__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; transition: opacity var(--transition); }
.mobile-nav.is-open .mobile-nav__backdrop { opacity: 1; }
.mobile-nav__panel { position: absolute; top: 0; right: 0; width: min(320px, 85vw); height: 100%; background: var(--surface); padding: 1.5rem; transform: translateX(100%); transition: transform var(--transition); display: flex; flex-direction: column; gap: 1rem; }
.mobile-nav.is-open .mobile-nav__panel { transform: translateX(0); }
.mobile-nav__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: var(--text); }
.mobile-nav__head .nav__brand { font-size: 1rem; }
.mobile-nav__head .nav__logo { width: 32px; height: 32px; }
.mobile-nav__list a { display: block; padding: 0.85rem 0; font-weight: 500; border-bottom: 1px solid var(--border); color: var(--text); }
.page-hero { padding: calc(var(--nav-height) + 3rem) 0 2rem; text-align: center; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; margin: 0 0 0.75rem; color: var(--text); }
.page-hero p { color: var(--text-muted); max-width: 540px; margin: 0 auto; }
.page-section { padding: 0 0 4rem; }

/* —— Legal pages (Privacy, Terms) —— */
.page-hero--legal {
  position: relative;
  padding: calc(var(--nav-height) + 3.5rem) 0 3rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% -20%, var(--brand-glow), transparent),
    linear-gradient(180deg, var(--surface-muted) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.page-hero--legal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d32f2f' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}
.page-hero--legal .container { position: relative; z-index: 1; }
.legal-hero__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--brand);
  box-shadow: var(--shadow-sm);
}
.legal-hero__icon svg { width: 28px; height: 28px; }
.legal-hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
  margin-bottom: 0.75rem;
}
.page-hero--legal h1 { margin-bottom: 0.5rem; letter-spacing: -0.03em; }
.legal-hero__meta {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0 auto 1.5rem;
}
.legal-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  max-width: 640px;
  margin: 0 auto;
}
.legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.legal-badge svg { width: 14px; height: 14px; color: var(--brand); flex-shrink: 0; }

.page-section--legal { padding: 3rem 0 5rem; background: var(--bg); }
.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
.legal-toc {
  position: sticky;
  top: calc(var(--nav-height) + 1.5rem);
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.legal-toc__title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin: 0 0 0.85rem;
}
.legal-toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: toc;
}
.legal-toc li { margin: 0; }
.legal-toc a {
  display: block;
  padding: 0.45rem 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--text-muted);
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--brand);
  background: var(--brand-light);
}
.legal-toc a.is-active {
  color: var(--brand);
  background: var(--brand-light);
  font-weight: 600;
}

.legal-content { max-width: 720px; margin: 0 auto; padding: 0 0 4rem; }
.legal-content--pro { max-width: none; padding: 0; }
.legal-content > p:first-of-type { color: var(--text); font-size: 1.05rem; }
.legal-content h2 { font-size: 1.25rem; font-weight: 700; margin: 2rem 0 0.75rem; color: var(--text); }
.legal-content p, .legal-content li { color: var(--text-muted); line-height: 1.7; margin: 0 0 1rem; }

.legal-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.legal-summary__item {
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.legal-summary__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 0.65rem;
  border-radius: 10px;
  background: var(--brand-light);
  color: var(--brand);
}
.legal-summary__icon svg { width: 20px; height: 20px; }
.legal-summary__item strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.legal-summary__item span {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.legal-intro {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text);
  margin: 0 0 1.5rem;
}
.legal-note {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin: 0 0 2rem;
  padding: 1.15rem 1.35rem;
  border: 1px solid rgba(211, 47, 47, 0.2);
  border-left: 4px solid var(--brand);
  background: var(--brand-light);
  border-radius: var(--radius);
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.9375rem;
}
.legal-note__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--brand);
  margin-top: 2px;
}
.legal-note__icon svg { width: 22px; height: 22px; }
.legal-note p { margin: 0; color: var(--text-muted); }
.legal-note strong { color: var(--text); }

.legal-section {
  scroll-margin-top: calc(var(--nav-height) + 1.5rem);
  margin-bottom: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.legal-section:hover {
  border-color: rgba(211, 47, 47, 0.25);
  box-shadow: var(--shadow-md);
}
.legal-section__head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.legal-section__num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--brand);
  background: var(--brand-light);
  border-radius: 10px;
  font-family: var(--font-display);
}
.legal-section h2 {
  margin: 0;
  padding-top: 0.35rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.3;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section--contact { background: linear-gradient(135deg, var(--surface) 0%, var(--surface-muted) 100%); }

.legal-contact-card {
  margin-top: 2rem;
  padding: 2rem;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.legal-contact-card h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
  color: var(--text);
}
.legal-contact-card p {
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  max-width: 420px;
  margin-inline: auto;
}
.legal-contact-card__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

[data-theme="dark"] .page-hero--legal {
  background:
    radial-gradient(ellipse 80% 60% at 50% -20%, rgba(211, 47, 47, 0.12), transparent),
    linear-gradient(180deg, #1a1a1a 0%, var(--bg) 100%);
}
[data-theme="dark"] .legal-note {
  background: rgba(211, 47, 47, 0.08);
  border-color: rgba(211, 47, 47, 0.3);
}
[data-theme="dark"] .legal-section:hover {
  border-color: rgba(211, 47, 47, 0.35);
}

@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; gap: 2rem; }
  .legal-toc {
    position: static;
    padding: 1rem 1.15rem;
  }
  .legal-toc ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
  }
  .legal-toc a { padding: 0.35rem 0.65rem; font-size: 0.75rem; }
  .legal-summary { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .legal-section { padding: 1.25rem; }
  .legal-section__head { gap: 0.75rem; }
  .legal-section__num { width: 32px; height: 32px; font-size: 0.8125rem; }
}
@media print {
  .header, .footer, .legal-toc, .theme-toggle, .skip-link { display: none !important; }
  .page-hero--legal { padding-top: 1rem; background: none; border: none; }
  .legal-section { break-inside: avoid; box-shadow: none; border: 1px solid #ccc; }
}
.contact-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.contact-card p { color: var(--text-muted); margin: 0 0 0.75rem; }
.contact-card h2 { color: var(--text); }

/* About page */
.about-intro { max-width: 720px; margin: 0 auto 2rem; text-align: center; }
.about-intro p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; }
.about-block { max-width: 720px; margin: 0 auto 2.5rem; }
.about-block h2 { font-size: 1.25rem; font-weight: 700; margin: 0 0 0.75rem; color: var(--text); }
.about-block p { color: var(--text-muted); line-height: 1.7; margin: 0 0 1rem; }
.about-features { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.65rem; }
.about-features li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.about-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}
.about-card {
  max-width: 720px;
  margin: 0 auto 2rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.about-card strong { color: var(--text); }
.page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

/* Plan comparison */
.plan-compare-wrap { overflow-x: auto; margin-top: 2.5rem; }
.plan-compare {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.plan-compare th, .plan-compare td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.925rem;
}
.plan-compare thead th {
  background: var(--surface-muted);
  font-weight: 700;
  color: var(--text);
}
.plan-compare tbody tr:last-child td { border-bottom: none; }
.plan-compare td:first-child { font-weight: 600; color: var(--text); }
.plan-compare .plan-compare__yes { color: #2e7d32; font-weight: 600; }
.plan-compare .plan-compare__no { color: var(--text-muted); }
[data-theme="dark"] .plan-compare .plan-compare__yes { color: #81c784; }

/* Trust section */
.trust-section { padding: 4rem 0; }
.trust-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  background: linear-gradient(135deg, var(--brand-light), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.trust-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin: 0 0 1rem;
  color: var(--text);
}
.trust-panel p { color: var(--text-muted); line-height: 1.7; margin: 0 0 1rem; }
.trust-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.75rem; }
.trust-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.trust-list li::before {
  content: "✓";
  color: var(--brand);
  font-weight: 700;
  flex-shrink: 0;
}
.trust-list a { color: #ef5350; }

/* Help page */
.help-section-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 2.25rem 0 1rem;
  color: var(--text);
  scroll-margin-top: calc(var(--nav-height) + 1.5rem);
}
.help-section-title:first-of-type { margin-top: 0; }
.help-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.help-grid--single { grid-template-columns: 1fr; max-width: 100%; }
.help-topic {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.help-topic:hover {
  border-color: rgba(211, 47, 47, 0.25);
  box-shadow: var(--shadow-md);
}
.help-topic__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}
.help-topic__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--brand-light);
  color: var(--brand);
}
.help-topic__icon svg { width: 18px; height: 18px; }
.help-topic h3 { font-size: 1rem; font-weight: 700; margin: 0; color: var(--text); line-height: 1.3; }
.help-topic p { margin: 0; color: var(--text-muted); font-size: 0.925rem; line-height: 1.65; }
.help-topic a { color: #ef5350; }
.help-faq {
  max-width: 100%;
  margin: 0;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.help-faq__title {
  text-align: center;
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
}
[data-theme="dark"] .help-topic:hover { border-color: rgba(211, 47, 47, 0.35); }

@media (max-width: 768px) {
  .trust-panel { grid-template-columns: 1fr; padding: 1.75rem; }
  .help-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__desc, .hero__cta, .hero__stats { margin-inline: auto; justify-content: center; }
  .hero__visual { order: -1; }
  .phone--secondary { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .pricing-card--featured { transform: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .download__inner { grid-template-columns: 1fr; padding: 2.5rem 1.75rem; gap: 2rem; }
  .download__content { max-width: none; align-items: flex-start; }
  .download__visual { width: 100%; justify-content: center; }
  .download__visual .phone { width: min(220px, 72vw); margin: 0 auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .screenshot-marquee__track { gap: 0; }
}
@media (max-width: 768px) {
  .nav__links, .nav__actions .btn--primary { display: none; }
  .nav__toggle { display: flex; }
  .why-grid, .features-grid { grid-template-columns: 1fr; }
  #pricing .section__head { text-align: center; }
  .pricing-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
  }
  .pricing-card {
    text-align: center;
    align-items: center;
    width: min(100%, 420px);
  }
  .pricing-card__features {
    width: 100%;
    max-width: 300px;
    margin-inline: auto;
  }
  .pricing-card__features li { justify-content: center; }
  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .footer__brand {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer__brand p { text-align: center; margin-inline: auto; }
  .footer__social-heading { text-align: center; }
  .footer__social { justify-content: center; }
  .footer__social-link { width: 44px; height: 44px; }
  .footer__social-link svg { width: 22px; height: 22px; }
  .footer__heading { text-align: center; }
  .footer__links { text-align: center; }
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer__bottom p { text-align: center; }
  #screenshots { overflow: hidden; }
  .screenshot-marquee.is-carousel {
    display: block;
    width: 100%;
    max-width: 100%;
    padding-inline: 1rem;
    box-sizing: border-box;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .screenshot-marquee.is-carousel .screenshot-marquee__viewport {
    width: 100%;
    overflow: hidden;
    touch-action: pan-y pinch-zoom;
  }
  .screenshot-marquee.is-carousel .screenshot-marquee__track {
    display: flex;
    flex-wrap: nowrap;
    animation: none !important;
    gap: 0;
    width: max-content;
    will-change: transform;
    position: relative;
  }
  .screenshot-marquee.is-carousel .screenshot-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    padding: 0;
    box-sizing: border-box;
  }
  .screenshot-marquee.is-carousel .screenshot-item .phone {
    width: min(220px, 68vw);
    max-width: 100%;
    margin-inline: auto;
  }
  .screenshot-marquee.is-carousel .screenshot-item__caption {
    margin-top: 0.875rem;
    white-space: normal;
    text-align: center;
    padding-inline: 0.5rem;
  }
  .screenshot-marquee.is-carousel .screenshot-marquee__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1.25rem;
  }
  .screenshot-marquee.is-carousel .screenshot-nav {
    display: flex;
    width: 48px;
    height: 48px;
  }
  .screenshot-marquee.is-carousel .screenshot-nav svg { width: 24px; height: 24px; }
  .float-icon { display: none; }
  .download__inner { justify-items: center; text-align: center; }
  .download__content { align-items: center; text-align: center; }
  .download__eyebrow,
  .download__title,
  .download__desc { text-align: center; margin-inline: auto; }
  .download__store-link { margin-inline: auto; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .js-ready .reveal { opacity: 1 !important; transform: none !important; transition: none !important; animation: none !important; }
  .js-ready .hero__visual.is-visible .phone { animation: none !important; }
  .screenshot-marquee:not(.is-carousel) .screenshot-marquee__track { animation: none; }
  .float-icon { animation: none; }
}
