:root {
  color-scheme: dark;
  --bg: #090a0c;
  --surface: #151618;
  --surface-2: #1b1c1f;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f5f5f7;
  --muted: #a5a5ad;
  --primary: #8f8cff;
  --primary-strong: #6366f1;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[hidden] { display: none !important; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 10, 12, 0.78);
  backdrop-filter: blur(20px) saturate(140%);
}
.nav-inner {
  width: min(calc(100% - 40px), var(--max));
  height: 72px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 720; }
.brand img { width: 30px; height: 30px; border-radius: 7px; }
.nav-links { display: flex; align-items: center; gap: 28px; color: #cacacf; font-size: 14px; }
.nav-links a:hover, .footer a:hover { color: var(--text); }
.share-nav-actions { display: flex; align-items: center; gap: 20px; color: #cacacf; font-size: 14px; }

.button {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font: inherit;
  font-weight: 650;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: #b1afff; color: #1719a7; }
.button-primary:hover { background: #c0beff; }
.button-secondary { background: rgba(255,255,255,.055); border-color: var(--line); color: var(--text); }
.button-small { min-height: 40px; padding: 0 16px; font-size: 14px; }
.button svg { width: 18px; height: 18px; }
.button.disabled { opacity: .46; pointer-events: none; }
.store-badges { margin-top: 20px; display: flex; gap: 10px; flex-wrap: wrap; }
.store-badge {
  min-width: 148px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  display: grid;
  line-height: 1.1;
  background: rgba(255,255,255,.055);
}
.store-badge span { color: var(--muted); font-size: 11px; }
.store-badge strong { margin-top: 3px; color: var(--text); font-size: 16px; }

.container { width: min(calc(100% - 40px), var(--max)); margin: auto; }
.eyebrow { color: var(--primary); font-size: 14px; font-weight: 680; }
.hero { padding: 104px 0 64px; text-align: center; }
.hero h1 {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(48px, 7.3vw, 92px);
  line-height: .98;
  font-weight: 760;
}
.hero p { max-width: 660px; margin: 28px auto 0; color: var(--muted); font-size: 19px; line-height: 1.55; }
.hero-actions { margin-top: 34px; display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

.hero-product {
  min-height: min(790px, calc(100svh - 72px));
  padding: 72px 0 68px;
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(520px, 1.16fr);
  align-items: center;
  gap: 54px;
  text-align: left;
}
.hero-product .hero-copy { position: relative; z-index: 2; }
.hero-product h1 {
  max-width: 650px;
  margin: 12px 0 0;
  font-size: clamp(48px, 5.1vw, 72px);
  line-height: 1.01;
}
.hero-product .hero-copy > p {
  max-width: 590px;
  margin: 24px 0 0;
  font-size: 18px;
}
.hero-product .hero-actions { justify-content: flex-start; margin-top: 30px; }
.hero-trust { margin: 14px 0 0 !important; color: #85858e !important; font-size: 12px !important; }
.availability { display: flex; flex-wrap: wrap; gap: 8px 18px; color: #85858e !important; font-size: 13px !important; }
.availability span:last-child { color: #b2b0ff; }
.hero-mockup {
  position: relative;
  min-height: 560px;
  isolation: isolate;
}
.hero-mockup::before {
  content: "";
  position: absolute;
  inset: 18% 8% 13% 12%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(99, 102, 241, .14);
  filter: blur(64px);
}
.hero-mockup figure { margin: 0; overflow: hidden; background: #0b0c0e; border: 1px solid rgba(255,255,255,.14); box-shadow: 0 28px 72px rgba(0,0,0,.48); }
.hero-mockup img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.mockup-desktop img { object-position: center; transform: scale(1.12); }
.mockup-desktop {
  position: absolute;
  inset: 72px 0 auto 22px;
  height: 430px;
  border-radius: 12px;
}
.mockup-phone {
  position: absolute;
  width: 174px;
  height: 376px;
  border-radius: 28px;
}
.mockup-phone-primary { left: -22px; bottom: 0; transform: rotate(-2deg); }
.mockup-phone-secondary { right: -18px; bottom: -8px; transform: rotate(2deg); }

.hero-device {
  position: relative;
  width: min(100%, 410px);
  justify-self: center;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 42px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  box-shadow: 0 34px 90px rgba(0,0,0,.55);
}
.hero-device::before {
  content: "";
  position: absolute;
  inset: 9% -16% 12% -14%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(99,102,241,.22);
  filter: blur(70px);
}
.hero-device picture,
.hero-device img {
  width: 100%;
  border-radius: 31px;
  overflow: hidden;
}
.hero-device img {
  height: auto;
  border: 1px solid rgba(255,255,255,.08);
  background: #0b0c0e;
  object-fit: contain;
}

.hero-composite {
  position: relative;
  width: min(100%, 780px);
  aspect-ratio: 1.48;
  justify-self: center;
  isolation: isolate;
}
.hero-composite::before {
  content: "";
  position: absolute;
  inset: 18% 4% 10% 14%;
  z-index: -1;
  border-radius: 999px;
  background: rgba(99,102,241,.2);
  filter: blur(74px);
}
.hero-shot {
  margin: 0;
  overflow: hidden;
  background: #0b0c0e;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 34px 90px rgba(0,0,0,.55);
}
.hero-shot img {
  display: block;
  width: 100%;
  height: auto;
}
.hero-macos-shot {
  position: absolute;
  left: 0;
  right: 7%;
  bottom: 0;
  width: 93%;
  border-radius: 18px;
}
.hero-ios-shot {
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(138px, 23%, 198px);
  padding: 5px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.035));
  box-shadow: 0 28px 76px rgba(0,0,0,.66);
  transform: translateX(1.5%);
}
.hero-ios-shot picture { display: block; }
.hero-ios-shot img {
  border-radius: 22px;
}

.product-stage { position: relative; margin: 44px auto 0; max-width: 1120px; }
.product-stage::before {
  content: "";
  position: absolute;
  inset: 12% 14% -4%;
  background: rgba(99, 102, 241, .16);
  filter: blur(70px);
  pointer-events: none;
}
.window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  background: #0b0c0e;
  box-shadow: 0 32px 90px rgba(0,0,0,.5);
}
.window-bar { height: 34px; border-bottom: 1px solid var(--line); display: flex; align-items: center; padding: 0 14px; gap: 7px; }
.window-dot { width: 8px; height: 8px; border-radius: 50%; background: #52535a; }
.window img, .window-media { width: 100%; object-fit: cover; object-position: top; }
.window-media { display: block; aspect-ratio: 720 / 332; background: #090a0c; }

.section { padding: 104px 0; }
.section-header { max-width: 680px; margin-bottom: 48px; }
.section-header h2 { margin: 10px 0 0; font-size: clamp(34px, 5vw, 58px); line-height: 1.06; }
.section-header p { margin: 18px 0 0; color: var(--muted); font-size: 18px; line-height: 1.6; }
.features { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature { min-height: 220px; padding: 34px 28px; border-right: 1px solid var(--line); }
.feature:last-child { border-right: 0; }
.feature-icon { width: 36px; height: 36px; color: var(--primary); }
.feature h3 { margin: 42px 0 9px; font-size: 18px; }
.feature p { margin: 0; color: var(--muted); line-height: 1.55; font-size: 14px; }

.feature-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.feature-card {
  min-width: 0;
  min-height: 560px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(210px, .78fr);
  gap: 24px;
  align-items: center;
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  overflow: hidden;
}
.feature-card-wide { grid-column: 1 / -1; min-height: 480px; grid-template-columns: minmax(0, .8fr) minmax(260px, .55fr); }
.feature-card-copy {
  min-height: 300px;
  grid-template-columns: 1fr;
  align-items: end;
}
.feature-card-copy p { max-width: 620px; }
.feature-card h3 { margin: 24px 0 10px; font-size: clamp(25px, 3vw, 38px); line-height: 1.08; }
.feature-card p { max-width: 430px; margin: 0; color: var(--muted); line-height: 1.6; font-size: 16px; }
.feature-card picture {
  align-self: stretch;
  min-height: 420px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 24px;
  overflow: hidden;
  background: #0b0c0e;
  box-shadow: 0 22px 58px rgba(0,0,0,.34);
}
.feature-card img { width: 100%; height: 100%; object-fit: contain; object-position: top center; background: #0b0c0e; }

.seo-links .section-header { max-width: 760px; }
.seo-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.seo-link-grid a {
  min-height: 76px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--surface);
  font-weight: 680;
}
.seo-link-grid span { color: var(--primary); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.step { padding: 38px; background: var(--bg); min-height: 230px; }
.step-number { color: var(--primary); font-variant-numeric: tabular-nums; }
.step h3 { margin: 54px 0 10px; font-size: 23px; }
.step p { color: var(--muted); line-height: 1.6; }

.product-proof .section-header { max-width: 760px; }
.proof-grid { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(260px, .55fr); gap: 22px; align-items: stretch; }
.proof-grid figure { margin: 0; min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); }
.proof-grid img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.proof-grid figcaption { padding: 15px 18px; color: var(--muted); font-size: 13px; border-top: 1px solid var(--line); }
.proof-wide img { aspect-ratio: 1.63 / 1; }
.proof-wide img { object-position: center; transform: scale(1.12); }
.proof-tall img { aspect-ratio: 1.63 / 1; object-position: 50% 18%; }

.faq-section { scroll-margin-top: 88px; }
.faq-list { max-width: 860px; margin-left: auto; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 76px; padding: 22px 4px; display: flex; align-items: center; justify-content: space-between; gap: 24px; font-size: 18px; font-weight: 650; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary svg { flex: 0 0 20px; width: 20px; color: var(--primary); transition: transform .2s ease; }
.faq-list details[open] summary svg { transform: rotate(45deg); }
.faq-list details p { max-width: 700px; margin: -3px 0 24px; color: var(--muted); line-height: 1.7; }

.compact-cta { padding: 48px; display: flex; align-items: center; justify-content: space-between; gap: 36px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); }
.compact-cta h2 { max-width: 700px; margin: 8px 0 0; font-size: clamp(30px, 4vw, 48px); line-height: 1.08; }
.compact-cta p { margin: 12px 0 0; color: var(--muted); }

.blog-hero { padding: 100px 0 54px; }
.blog-hero h1 { max-width: 830px; margin: 12px 0 0; font-size: clamp(46px, 7vw, 78px); line-height: 1; }
.blog-hero p { max-width: 660px; margin: 22px 0 0; color: var(--muted); font-size: 18px; line-height: 1.6; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding-bottom: 60px; }
.blog-card { min-height: 330px; padding: 30px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); }
.blog-card-meta, .article-meta { display: flex; gap: 12px; color: #888891; font-size: 12px; }
.blog-card-meta span::before, .article-meta span::before { content: "·"; margin-right: 12px; }
.blog-card h2 { margin: 38px 0 13px; font-size: 25px; line-height: 1.18; }
.blog-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.text-link { margin-top: auto; padding-top: 28px; color: var(--primary); font-weight: 650; }
.article-shell { width: min(calc(100% - 40px), 820px); margin: 0 auto; padding: 92px 0 110px; }
.article-back { color: var(--primary); font-size: 14px; font-weight: 650; }
.article-header h1 { margin: 30px 0 0; font-size: clamp(44px, 7vw, 72px); line-height: 1.02; }
.article-header > p { margin: 22px 0; color: var(--muted); font-size: 19px; line-height: 1.6; }
.article-content { margin-top: 68px; color: #d7d7db; font-size: 18px; line-height: 1.78; }
.article-content h1 { display: none; }
.article-content h2 { margin: 60px 0 16px; color: var(--text); font-size: 30px; line-height: 1.2; }
.article-content h3 { margin-top: 34px; color: var(--text); }
.article-content p { margin: 0 0 25px; }
.article-content li { margin: 7px 0; }
.article-content strong { color: var(--text); }
.article-content a { color: var(--primary); border-bottom: 1px solid rgba(143,140,255,.35); }
.article-cta { margin-top: 72px; padding: 34px; display: flex; align-items: center; justify-content: space-between; gap: 32px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); }
.article-cta h2 { margin: 7px 0; font-size: 25px; }
.article-cta p { max-width: 500px; margin: 0; color: var(--muted); line-height: 1.55; }
.related-links { margin-top: 64px; padding-top: 36px; border-top: 1px solid var(--line); }
.related-links h2 { font-size: 22px; }
.related-links a { padding: 14px 0; display: flex; justify-content: space-between; gap: 20px; color: #d8d8dd; border-bottom: 1px solid var(--line); }

.download-hero { padding: 84px 0 40px; text-align: center; }
.download-hero h1 { max-width: 850px; margin: 10px auto 0; font-size: clamp(44px, 7vw, 76px); line-height: 1.02; }
.download-hero p { max-width: 650px; margin: 22px auto 0; color: var(--muted); font-size: 18px; line-height: 1.6; }
.download-hero h1,
.download-hero p,
.download-panel h2,
.download-panel > p { overflow-wrap: anywhere; }
.download-flow { padding-bottom: 70px; }
.download-primary-action { margin-top: 28px; display: grid; justify-items: center; gap: 10px; }
.section-kicker { margin: 0 0 18px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 13px; }
.download-grid { min-width: 0; margin-top: 50px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: center; }
.download-grid-install { margin-top: 0; grid-template-columns: minmax(0, 1fr) minmax(280px, .54fr); align-items: start; }
.product-carousel {
  position: relative;
  min-width: 0;
  padding: 14px 14px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
  overflow: hidden;
}
.carousel-viewport { overflow: hidden; border-radius: 7px; background: #0b0c0e; }
.carousel-track { display: flex; transition: transform .52s cubic-bezier(.22, .78, .2, 1); touch-action: pan-y pinch-zoom; }
.carousel-slide { position: relative; min-width: 100%; margin: 0; aspect-ratio: 1176 / 1460; overflow: hidden; }
.carousel-slide img { width: 100%; height: 100%; object-fit: contain; background: #0b0c0e; user-select: none; -webkit-user-drag: none; }
.carousel-slide figcaption { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.carousel-button {
  position: absolute;
  top: calc(50% - 26px);
  z-index: 2;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text);
  background: rgba(18, 19, 22, .76);
  backdrop-filter: blur(14px) saturate(130%);
  cursor: pointer;
  transition: background .18s ease, transform .18s ease, opacity .18s ease;
}
.carousel-button:hover { background: rgba(31, 32, 37, .9); transform: scale(1.04); }
.carousel-button svg { width: 21px; height: 21px; }
.carousel-previous { left: 25px; }
.carousel-next { right: 25px; }
.carousel-footer { min-height: 48px; padding: 12px 4px 0; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.carousel-caption { margin: 0; color: #d8d8dd; font-size: 13px; font-weight: 620; }
.carousel-dots { display: flex; align-items: center; gap: 8px; }
.carousel-dot { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 50%; background: #55565e; cursor: pointer; transition: width .22s ease, border-radius .22s ease, background .22s ease; }
.carousel-dot.is-active { width: 20px; border-radius: 5px; background: var(--primary); }
.download-panel { padding: 20px 0 20px 50px; }
.download-panel-primary {
  min-width: 0;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
}
.download-panel h2 { font-size: 36px; margin: 0 0 12px; }
.download-panel > p { color: var(--muted); line-height: 1.6; }
.store-list { min-width: 0; display: grid; gap: 12px; margin-top: 30px; }
.store-button { width: 100%; min-width: 0; min-height: 86px; padding: 12px 16px; justify-content: flex-start; gap: 14px; background: var(--surface); border: 1px solid var(--line); color: var(--text); }
.store-button.is-recommended {
  border-color: rgba(143, 140, 255, .56);
  background: linear-gradient(135deg, rgba(99,102,241,.18), rgba(255,255,255,.045));
  box-shadow: 0 18px 48px rgba(99,102,241,.12);
}
.store-button.is-selected {
  border-color: rgba(143, 140, 255, .72);
  background: linear-gradient(135deg, rgba(99,102,241,.22), rgba(255,255,255,.055));
}
.platform-icon {
  position: relative;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #eeedf5;
  background: rgba(255, 255, 255, .055);
}
.platform-icon > i:first-child { font-size: 25px; }
.platform-icon-ios > i:first-child,
.platform-icon-macos > i:first-child { font-size: 31px; }
.platform-icon-android { color: #a8e6b2; background: rgba(61, 220, 132, .08); }
.platform-icon-android > i:first-child { font-size: 28px; }
.platform-icon-chrome {
  background: rgba(255, 255, 255, .07);
}
.chrome-logo {
  width: 34px;
  height: 34px;
  display: block;
  filter: drop-shadow(0 5px 12px rgba(0,0,0,.24));
}
.platform-icon-windows { color: #9bc8ff; background: rgba(0, 120, 212, .09); }
.platform-icon-linux { color: #d6d6dc; background: rgba(255, 255, 255, .045); }
.platform-brand-mark {
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #151618;
  background: #f2f2f5;
  font-size: 10px;
  box-shadow: 0 0 0 2px var(--surface);
}
.platform-brand-mark i { display: block; font-size: 10px; line-height: 1; transform: translateY(-.2px); }
.store-copy { min-width: 0; display: grid; text-align: left; line-height: 1.15; }
.store-copy small { color: var(--muted); font-size: 11px; font-weight: 500; }
.store-copy strong { min-width: 0; font-size: 16px; overflow-wrap: anywhere; }
.store-requirement { margin-top: 5px; color: #7f8088; font-size: 11px; font-weight: 500; }
.store-button-disabled { opacity: .48; cursor: not-allowed; pointer-events: none; filter: saturate(.55); }
.open-status { min-height: 22px; margin-top: 18px; color: var(--muted); font-size: 13px; }
.download-qr-card {
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  background:
    radial-gradient(circle at 70% 20%, rgba(99,102,241,.18), transparent 34%),
    var(--surface);
}
.download-qr-card h2 { margin: 8px 0 10px; font-size: 28px; line-height: 1.08; }
.download-qr-card p { margin: 0; color: var(--muted); line-height: 1.6; }
.qr-copy-block { max-width: 290px; }
.qr-preview {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}
.download-qr-card img {
  width: 142px;
  height: 142px;
  padding: 12px;
  border-radius: 14px;
  background: #f6f6fb;
  box-shadow: 0 18px 50px rgba(0,0,0,.32);
}
.qr-preview span {
  display: inline-flex;
  width: fit-content;
  padding: 5px 9px;
  border: 1px solid rgba(143, 140, 255, .24);
  border-radius: 999px;
  color: #c6c4ff;
  background: rgba(99,102,241,.12);
  font-size: 11px;
  font-weight: 700;
}
.qr-preview strong {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-size: 17px;
}
.qr-preview small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.download-showcase { padding: 74px 0 0; }
.download-showcase .product-carousel { width: min(100%, 680px); margin: 0 auto; }
.features-three { grid-template-columns: repeat(3, 1fr); }
.features-three .feature:nth-child(3) { border-right: 0; }
.download-faq { padding-top: 24px; }
.faq-list-compact { max-width: 900px; margin: 0 auto; }
.download-share-mode #app-preview { display: none; }
.download-share-mode .download-benefits { padding-top: 54px; }

.download-toast {
  position: fixed;
  left: 50%;
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 40;
  width: max-content;
  max-width: min(calc(100% - 32px), 480px);
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  color: var(--text);
  background: rgba(27, 28, 32, .92);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .45);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
  backdrop-filter: blur(18px) saturate(130%);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 14px);
  transition: opacity .2s ease, transform .2s ease;
}
.download-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.share-shell { width: min(calc(100% - 32px), 820px); margin: 58px auto 90px; }
.share-hero-image { position: relative; aspect-ratio: 16/9; overflow: hidden; border-radius: 10px; border: 1px solid var(--line); background: var(--surface) url('/static/assets/product/thumbnail-placeholder.png') center/cover no-repeat; }
.share-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.duration { position: absolute; right: 12px; bottom: 12px; padding: 5px 8px; border-radius: 6px; background: rgba(0,0,0,.74); font-size: 13px; }
.share-title { margin: 30px 0 8px; font-size: clamp(32px, 5vw, 52px); line-height: 1.1; }
.generated { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 14px; }
.generated svg { width: 17px; color: var(--primary); }
.preview { margin-top: 50px; padding: 36px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); }
.preview h2 { margin: 0 0 18px; color: #b2b0ff; font-size: 24px; display: flex; gap: 10px; align-items: center; }
.preview h2 svg { width: 23px; }
.preview p { color: #d1d1d5; font-size: 17px; line-height: 1.78; }
.moments { margin-top: 48px; }
.moments-intro { color: var(--muted); }
.moment { position: relative; padding: 0 0 30px 40px; }
.moment::before { content: ""; position: absolute; left: 9px; top: 20px; bottom: 0; width: 1px; background: #373842; }
.moment:last-child::before { display: none; }
.moment-dot { position: absolute; left: 3px; top: 7px; width: 13px; height: 13px; border: 3px solid var(--primary); background: var(--surface); border-radius: 50%; }
.moment time { color: var(--primary); font-weight: 650; }
.moment h3 { margin: 7px 0 4px; font-size: 17px; }
.moment p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.share-moments-fade { max-height: 245px; overflow: hidden; -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 58%, rgba(0,0,0,.62) 78%, transparent 100%); mask-image: linear-gradient(to bottom, #000 0%, #000 58%, rgba(0,0,0,.62) 78%, transparent 100%); }
.timeline-continue { padding: 24px 20px 4px; text-align: center; }
.timeline-continue h2 { justify-content: center; margin-bottom: 8px; font-size: 26px; }
.timeline-continue p { max-width: 460px; margin: 0 auto 20px; color: var(--muted); font-size: 15px; line-height: 1.55; }
.blur-gate { position: relative; margin-top: -10px; padding: 100px 24px 40px; text-align: center; overflow: hidden; }
.blur-gate::before { content: ""; position: absolute; inset: 0 0 42%; background: linear-gradient(to bottom, rgba(9,10,12,0), var(--bg)); backdrop-filter: blur(5px); }
.blur-gate > * { position: relative; }
.blur-gate h2 { margin: 0; font-size: 30px; }
.blur-gate p { max-width: 470px; margin: 12px auto 24px; color: var(--muted); line-height: 1.55; }

.legal { width: min(calc(100% - 40px), 760px); margin: 80px auto; }
.legal h1 { font-size: 48px; }
.legal h2 { margin-top: 42px; }
.legal p, .legal li { color: #c3c3c8; line-height: 1.7; }
.state { padding: 80px 20px; text-align: center; color: var(--muted); }

.footer { border-top: 1px solid var(--line); padding: 30px 0 40px; color: var(--muted); font-size: 13px; }
.footer-inner { width: min(calc(100% - 40px), var(--max)); margin: auto; display: flex; justify-content: space-between; gap: 24px; }
.footer-links { display: flex; gap: 22px; }
.footer-expanded { padding: 58px 0 28px; }
.footer-expanded .footer-inner { align-items: flex-start; }
.footer-brand p { margin: 14px 0 0; }
.footer-columns { display: grid; grid-template-columns: repeat(3, minmax(110px, 1fr)); gap: 54px; }
.footer-columns div { display: grid; gap: 12px; }
.footer-columns strong { margin-bottom: 3px; color: var(--text); font-size: 12px; }
.footer-copyright { width: min(calc(100% - 40px), var(--max)); margin: 52px auto 0; padding-top: 22px; border-top: 1px solid var(--line); }

@media (max-width: 800px) {
  .nav-inner, .container { width: min(calc(100% - 32px), var(--max)); }
  .nav-links > a:not(.button) { display: none; }
  .hero { padding: 76px 0 46px; }
  .hero h1 { font-size: clamp(46px, 15vw, 66px); }
  .hero p { font-size: 17px; }
  .hero-product { min-height: auto; padding: 66px 0 54px; grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero-product h1 { max-width: 680px; margin-inline: auto; font-size: clamp(46px, 11vw, 66px); }
  .hero-product .hero-copy > p { margin-inline: auto; }
  .hero-product .hero-actions { justify-content: center; }
  .hero-trust { text-align: center; }
  .availability { justify-content: center; }
  .store-badges { justify-content: center; }
  .hero-device { width: min(100%, 380px); border-radius: 0; padding: 0; border: 0; background: transparent; box-shadow: none; }
  .hero-device picture, .hero-device img { border-radius: 18px; }
  .hero-composite { width: min(100%, 660px); margin: 0 auto; }
  .hero-macos-shot { border-radius: 14px; }
  .hero-ios-shot { width: clamp(108px, 24%, 156px); right: 0; bottom: 0; border-radius: 22px; }
  .hero-ios-shot img { border-radius: 17px; }
  .hero-mockup { width: min(100%, 660px); min-height: 390px; margin: 0 auto; }
  .mockup-desktop { inset: 36px 18px auto; height: 330px; }
  .mockup-phone { width: 130px; height: 282px; border-radius: 22px; }
  .mockup-phone-primary { left: 0; }
  .mockup-phone-secondary { right: 0; }
  .section { padding: 78px 0; }
  .features { grid-template-columns: 1fr 1fr; }
  .feature-showcase { grid-template-columns: 1fr; }
  .feature-card, .feature-card-wide { grid-column: auto; min-height: auto; grid-template-columns: 1fr; }
  .feature-card picture { min-height: 520px; max-height: 720px; }
  .seo-link-grid { grid-template-columns: 1fr; }
  .feature:nth-child(2) { border-right: 0; }
  .feature:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .steps { grid-template-columns: 1fr; }
  .download-grid { grid-template-columns: 1fr; }
  .download-grid-install { grid-template-columns: 1fr; }
  .download-panel { order: -1; padding: 0 0 24px; }
  .download-panel-primary { order: 0; padding: 28px; }
  .download-qr-card { min-height: auto; }
  .qr-copy-block { max-width: none; }
  .product-carousel { width: min(100%, 560px); margin: 0 auto; }
  .share-shell { margin-top: 28px; }
  .preview { padding: 26px 22px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-tall { display: none; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card { min-height: 270px; }
  .compact-cta, .article-cta { align-items: flex-start; flex-direction: column; }
  .footer-expanded .footer-inner { flex-direction: column; }
  .footer-columns { width: 100%; margin-top: 24px; }
}

@media (max-width: 520px) {
  .nav-inner { height: 64px; }
  .download-flow { width: 100%; padding-left: 16px; padding-right: 16px; }
  .brand span { display: none; }
  .hero-actions .button { width: 100%; }
  .store-badges { display: grid; grid-template-columns: 1fr 1fr; }
  .store-badge { min-width: 0; text-align: left; }
  .hero-product { padding: 48px 0 40px; gap: 28px; }
  .hero-product .hero-copy { width: min(100%, 350px); margin: 0 auto; }
  .hero-product h1 { max-width: 350px; font-size: 39px; line-height: 1.06; overflow-wrap: normal; }
  .hero-product .hero-copy > p { margin-top: 18px; font-size: 16px; }
  .hero-product .hero-actions { margin-top: 24px; }
  .hero-product .hero-actions,
  .hero-product .store-badges {
    width: min(100%, 350px);
    margin-left: auto;
    margin-right: auto;
  }
  .hero-product .hero-actions .button {
    min-width: 0;
    max-width: 100%;
  }
  .availability { margin-top: 16px !important; font-size: 12px !important; }
  .hero-composite { width: min(100%, 360px); }
  .hero-ios-shot { width: 25%; min-width: 86px; padding: 3px; border-radius: 17px; }
  .hero-ios-shot img { border-radius: 13px; }
  .hero-mockup { min-height: 180px; }
  .mockup-desktop { inset: 16px 8px auto; height: 150px; border-radius: 8px; }
  .mockup-phone { width: 72px; height: 156px; border-radius: 13px; }
  .mockup-phone-primary { left: -2px; }
  .mockup-phone-secondary { right: -2px; }
  .window { border-radius: 9px; }
  .features { grid-template-columns: 1fr; }
  .feature-card { padding: 22px; }
  .feature-card picture { min-height: 430px; }
  .feature { min-height: 180px; border-right: 0; border-bottom: 1px solid var(--line); }
  .feature:last-child { border-bottom: 0; }
  .feature h3 { margin-top: 28px; }
  .download-hero { padding-top: 60px; }
  .download-hero h1 { max-width: 320px; font-size: 42px; line-height: 1.08; }
  .download-hero p { max-width: 320px; font-size: 16px; }
  .download-panel h2 { font-size: 30px; line-height: 1.1; }
  .section-kicker { align-items: flex-start; flex-direction: column; gap: 6px; }
  .download-panel-primary, .download-qr-card { padding: 22px; }
  .download-qr-card { align-items: stretch; }
  .qr-preview { grid-template-columns: auto 1fr; gap: 13px; }
  .download-qr-card img { width: 108px; height: 108px; padding: 9px; border-radius: 12px; }
  .download-qr-card h2 { font-size: 24px; }
  .features-three { grid-template-columns: 1fr; }
  .features-three .feature { border-right: 0; border-bottom: 1px solid var(--line); }
  .features-three .feature:last-child { border-bottom: 0; }
  .product-carousel { padding: 10px 10px 9px; }
  .carousel-button { width: 38px; height: 38px; top: calc(50% - 24px); }
  .carousel-previous { left: 18px; }
  .carousel-next { right: 18px; }
  .carousel-footer { min-height: 44px; padding-top: 9px; }
  .carousel-caption { max-width: 68%; font-size: 12px; }
  .share-title { font-size: 32px; }
  .preview p { font-size: 16px; }
  .footer-inner { flex-direction: column; }
  .faq-list summary { min-height: 68px; padding-block: 19px; font-size: 16px; }
  .compact-cta { padding: 30px 24px; }
  .compact-cta .button { width: 100%; }
  .blog-hero { padding: 70px 0 40px; }
  .blog-hero h1 { font-size: 45px; }
  .blog-card { padding: 25px; }
  .article-shell { width: min(calc(100% - 32px), 820px); padding: 62px 0 80px; }
  .article-header h1 { font-size: 42px; }
  .article-header > p { font-size: 17px; }
  .article-content { margin-top: 50px; font-size: 17px; }
  .article-content h2 { margin-top: 48px; font-size: 26px; }
  .article-cta { padding: 27px 24px; }
  .article-cta .button { width: 100%; }
  .footer-columns { grid-template-columns: 1fr 1fr; gap: 36px 28px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
