:root {
  --bg: #fafafa;
  --surface: #ffffff;
  --surface-soft: #fff7f8;
  --ink: #1e1e26;
  --muted: #70708c;
  --subtle: #9a9aad;
  --line: #ededfa;
  --line-strong: #fecdd3;
  --accent: #f65077;
  --accent-dark: #d9345f;
  --accent-soft: #fff1f2;
  --support: #f43f5e;
  --green: #f65077;
  --blue: #f65077;
  --blue-dark: #d9345f;
  --blue-soft: #fff1f2;
  --cyan: #d9345f;
  --cyan-soft: #fff1f2;
  --tag-bg: #fff1f2;
  --tag-text: #d9345f;
  --brand-gradient: linear-gradient(135deg, #fff7f8 0%, #f65077 44%, #d9345f 100%);
  --shadow: 0 28px 80px rgba(30, 30, 38, 0.10), 0 2px 16px rgba(246, 80, 119, 0.08);
  --shadow-soft: 0 16px 44px rgba(30, 30, 38, 0.08);
  --radius: 8px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Microsoft YaHei", sans-serif;
  --max-w: 1180px;
  --header-h: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
}

a {
  color: inherit;
}

h1, h2, h3, p {
  margin: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  font-size: 21px;
  line-height: 1.25;
}

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

button, a {
  -webkit-tap-highlight-color: transparent;
}

/* ── Scroll reveal ── */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ── Header ── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  width: min(var(--max-w), calc(100% - 40px));
  min-height: var(--header-h);
  margin: 0 auto;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.brand,
.nav,
.actions,
.footer,
.author,
.mock-head,
.mock-tabs,
.store-row,
.video-cover,
.rating-card {
  display: flex;
  align-items: center;
}

.brand,
.nav a,
.header-cta,
.button,
.footer a,
.mock-head a,
.store-row a {
  text-decoration: none;
}

.brand {
  gap: 10px;
  font-size: 18px;
  font-weight: 900;
}

.brand img,
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background:
    linear-gradient(135deg, #fff7f8 0%, #f65077 42%, #d9345f 100%);
  color: #fff;
  box-shadow: 0 9px 18px rgba(246, 80, 119, 0.28);
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
}

.nav {
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nav a {
  white-space: nowrap;
  transition: color 0.2s;
}

.lang-switch {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 12px;
  color: var(--accent-dark);
  background: rgba(255, 255, 255, 0.5);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s, box-shadow 0.2s;
}

/* ── Section container ── */

.section {
  width: min(var(--max-w), calc(100% - 40px));
  margin: 0 auto;
}

/* ── Hero ── */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.78fr);
  gap: 58px;
  align-items: center;
  min-height: calc(100vh - var(--header-h));
  padding: 54px 0 82px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.hero-copy > p {
  max-width: 690px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}

.actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}

.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 34px rgba(246, 80, 119, 0.18);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: #27231f;
}

.store-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.store-row a {
  display: grid;
  gap: 3px;
  min-width: 152px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s, box-shadow 0.2s;
}

.store-row strong {
  font-size: 14px;
  line-height: 1.2;
}

.store-row span {
  color: var(--subtle);
  font-size: 12px;
  font-weight: 700;
}

.social-proof {
  max-width: 620px;
  margin-top: 20px;
  color: var(--subtle);
  font-size: 13px;
  font-weight: 800;
}

.hero-media {
  position: relative;
}

.video-card {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 28px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 250, 242, 0.72)),
    #fff;
  box-shadow: var(--shadow);
}

.video-cover {
  position: relative;
  justify-content: center;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(150deg, rgba(219, 39, 119, 0.12), rgba(6, 167, 195, 0.1)),
    repeating-linear-gradient(0deg, #fff, #fff 22px, #eff6ff 23px);
}

.video-cover::before,
.video-cover::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(215, 200, 182, 0.72);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.video-cover::before {
  inset: 42px 42px auto;
  height: 118px;
}

.video-cover::after {
  right: 42px;
  bottom: 42px;
  width: 58%;
  height: 126px;
}

.video-cover img {
  position: relative;
  z-index: 1;
  width: 104px;
  height: 104px;
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(219, 39, 119, 0.23);
}

.download-badge {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 44px rgba(219, 39, 119, 0.3);
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.rating-card {
  position: absolute;
  right: -16px;
  bottom: 24px;
  display: grid;
  gap: 4px;
  width: min(260px, calc(100% - 32px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.rating-card span {
  color: var(--subtle);
  font-size: 13px;
  font-weight: 800;
}

.rating-card strong {
  font-size: 20px;
  line-height: 1.2;
}

.rating-card em {
  color: var(--accent-dark);
  font-style: normal;
  font-size: 13px;
  font-weight: 900;
}

/* ── Browser strip ── */

.integrations {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
}

.integrations > span {
  color: var(--muted);
  font-weight: 900;
  line-height: 1.45;
}

.integrations > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.integrations article {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px 10px;
  background: #fff;
  transition: transform 0.2s;
}

.integrations b {
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
}

.integrations strong {
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ── Feature sections ── */

.feature-story,
.download-section,
.local-data-section,
.recipes,
.letter,
.privacy-band,
.faq,
.final-cta {
  padding-top: 108px;
}

/* ── Download cards ── */

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

.download-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.download-card.featured {
  border-color: rgba(219, 39, 119, 0.34);
  background:
    linear-gradient(145deg, rgba(253, 242, 248, 0.95), rgba(255, 255, 255, 0.88)),
    #fff;
}

.download-card > b {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: var(--blue);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.download-card p {
  color: var(--muted);
  line-height: 1.7;
}

.download-card .button {
  justify-self: start;
  margin-top: 6px;
}

.download-card > span:not(.store-badge) {
  margin-top: auto;
  color: var(--subtle);
  font-size: 12px;
  font-weight: 800;
  word-break: break-all;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 28px;
  border: 1px solid rgba(246, 80, 119, 0.2);
  border-radius: 999px;
  padding: 0 11px;
  background: rgba(255, 241, 242, 0.82);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
}

.store-badge.edge {
  border-color: rgba(246, 80, 119, 0.18);
  background: rgba(255, 241, 242, 0.76);
  color: var(--accent-dark);
}

.store-badge.firefox {
  border-color: rgba(219, 39, 119, 0.22);
  background: rgba(253, 242, 248, 0.95);
  color: var(--accent-dark);
}

.install-actions {
  display: grid;
  gap: 10px;
  justify-items: start;
  margin-top: 2px;
}

.zip-fallback {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.install-modal[hidden] {
  display: none;
}

.install-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(31, 41, 55, 0.52);
}

.modal-open {
  overflow: hidden;
}

.install-modal__panel {
  position: relative;
  display: grid;
  gap: 16px;
  width: min(520px, 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.install-modal__panel .eyebrow {
  margin-bottom: 0;
}

.install-modal__panel h2 {
  font-size: clamp(26px, 3vw, 34px);
}

.install-modal__panel p {
  color: var(--muted);
  line-height: 1.7;
}

.install-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feedback-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.feedback-copy ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  line-height: 1.5;
}

.feedback-copy li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--accent-dark);
  font-weight: 900;
}

code {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2px 6px;
  background: var(--surface-soft);
  color: var(--accent-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  gap: 42px;
  align-items: center;
  margin-top: 28px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-row.reverse {
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.02fr);
}

.mock-panel,
.mini-screen {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 16px;
  background: #f7f8fa;
  box-shadow: var(--shadow-soft);
}

.mock-head {
  gap: 10px;
}

.mock-head img {
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
}

.mock-head div {
  flex: 1;
  min-width: 0;
}

.mock-head strong,
.mock-head span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mock-head span {
  margin-top: 2px;
  color: #6b7280;
  font-size: 12px;
}

.mock-head a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border-radius: var(--radius);
  padding: 0 12px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.mock-search {
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 11px;
  background: #fff;
  color: #9ca3af;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mock-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  margin-top: 10px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 3px;
}

.mock-tabs b,
.mock-tabs span {
  display: grid;
  place-items: center;
  min-height: 32px;
  border-radius: 6px;
  font-size: 12px;
  line-height: 1.1;
  text-align: center;
}

.mock-tabs b {
  background: #fff;
  color: var(--accent);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}

.mock-tabs span {
  color: #6b7280;
  font-weight: 800;
}

.site-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.site-list article {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}

.site-list em {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-style: normal;
  font-weight: 900;
}

.site-list strong,
.site-list span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-list span {
  margin-top: 3px;
  color: #6b7280;
  font-size: 12px;
}

.feature-copy {
  max-width: 480px;
}

.feature-copy > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.feature-copy p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.mini-screen {
  display: grid;
  gap: 14px;
  background: linear-gradient(180deg, #fff, var(--surface-soft));
}

.content-card,
.progress-card {
  display: grid;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #fff;
}

.content-card b {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 9px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 12px;
}

.content-card strong,
.progress-card strong {
  font-size: 22px;
  line-height: 1.2;
}

.content-card span,
.progress-card span {
  color: var(--muted);
  line-height: 1.65;
}

.import-screen {
  align-content: center;
  min-height: 260px;
}

.progress-card i {
  display: block;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5e7eb;
}

.progress-card i b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
}

.check-list {
  display: grid;
  gap: 8px;
}

.check-list span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-weight: 800;
}

/* ── Local data cards ── */

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

.local-data-grid article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.local-data-grid b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.local-data-grid p {
  color: var(--muted);
  line-height: 1.7;
}

/* ── Recipes ── */

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

.recipe-grid article {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.7);
  transition: transform 0.3s, box-shadow 0.3s;
}

.recipe-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.recipe-grid button {
  justify-self: start;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  background: var(--ink);
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

/* ── Letter ── */

.letter-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 36px;
  align-items: start;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 244, 226, 0.8), rgba(255, 255, 255, 0.76)),
    #fff;
  box-shadow: var(--shadow-soft);
}

.letter-card p {
  grid-column: 1 / -1;
  max-width: 920px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.author {
  gap: 12px;
  align-self: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.74);
}

.author img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
}

.author strong,
.author span {
  display: block;
}

.author strong {
  font-size: 15px;
}

.author span {
  margin-top: 2px;
  color: var(--subtle);
  font-size: 12px;
  font-weight: 800;
}

/* ── Privacy ── */

.privacy-band {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
  margin-top: 108px;
  padding: 44px;
  border-radius: var(--radius);
  background: #111827;
  color: #f3f4f6;
}

.privacy-band .eyebrow {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fbcfe8;
}

.privacy-band p {
  color: #d1d5db;
  font-size: 18px;
  line-height: 1.8;
}

/* ── FAQ ── */

.faq {
  max-width: 920px;
}

.faq details {
  margin-bottom: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.72);
  transition: border-color 0.3s;
}

.faq details[open] {
  border-color: var(--accent);
}

.faq summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.3s;
}

.faq details[open] summary::after {
  content: "\2212";
  transform: rotate(180deg);
}

.faq p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.75;
}

/* ── Final CTA ── */

.final-cta {
  display: grid;
  place-items: center;
  padding-bottom: 98px;
  text-align: center;
}

.final-cta img {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  border-radius: 14px;
}

.final-cta h2 {
  max-width: 780px;
}

.final-cta p {
  max-width: 680px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.final-cta .button {
  margin-top: 26px;
}

/* ── Footer ── */

.footer {
  justify-content: center;
  gap: 18px;
  min-height: 74px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.feedback-panel {
  display: grid;
  gap: 16px;
}

.feedback-copy,
.feedback-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.feedback-copy {
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 1fr);
  align-items: start;
  background:
    linear-gradient(145deg, rgba(255, 247, 237, 0.86), rgba(255, 255, 255, 0.88)),
    var(--surface);
}

.feedback-copy h3,
.feedback-copy p {
  grid-column: 1;
}

.feedback-copy ul {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.feedback-fields-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.58fr);
  gap: 14px;
}

.feedback-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: var(--bg);
  color: var(--ink);
  font: inherit;
}

.feedback-form textarea {
  min-height: 150px;
  resize: vertical;
}

#feedback-status {
  color: var(--muted);
  font-size: 13px;
}

/* ── Hover effects ── */

@media (hover: hover) {
  .nav a:hover,
  .footer a:hover {
    color: var(--accent-dark);
  }

  .button:hover,
  .header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(25, 23, 20, 0.22);
  }

  .store-row a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
  }

  .feature-row:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
  }

  .recipe-grid article:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
  }

  .recipe-grid button:hover,
  .mock-head a:hover {
    transform: translateY(-1px);
  }

  .integrations article:hover {
    transform: translateY(-2px);
  }

  .download-badge:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 22px 52px rgba(219, 39, 119, 0.38);
  }
}

/* ── Responsive: tablet ── */

@media (max-width: 980px) {
  .site-header,
  .section {
    width: min(100% - 28px, var(--max-w));
  }

  .site-header {
    grid-template-columns: auto auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .integrations,
  .feature-row,
  .feature-row.reverse,
  .letter-card,
  .privacy-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 38px;
    padding-top: 36px;
  }

  .hero-media {
    max-width: 620px;
  }

  .video-card {
    min-height: 460px;
  }

  .video-cover {
    min-height: 340px;
  }

  .integrations > div,
  .recipe-grid,
  .local-data-grid,
  .download-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feedback-copy {
    grid-template-columns: 1fr;
  }

  .feedback-copy h3,
  .feedback-copy p,
  .feedback-copy ul {
    grid-column: auto;
    grid-row: auto;
  }

  .feature-story,
  .download-section,
  .recipes,
  .letter,
  .privacy-band,
  .faq,
  .final-cta {
    padding-top: 76px;
  }

  .privacy-band {
    margin-top: 76px;
    padding: 32px;
  }

  .letter-card p {
    grid-column: auto;
  }

  .feature-copy {
    max-width: none;
  }
}

/* ── Responsive: mobile ── */

@media (max-width: 620px) {
  .site-header {
    min-height: 64px;
  }

  .header-cta {
    display: none;
  }

  .brand {
    font-size: 17px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 30px;
  }

  .hero {
    padding-top: 26px;
    padding-bottom: 62px;
  }

  .hero-copy > p,
  .section-heading p,
  .final-cta p,
  .privacy-band p,
  .letter-card p {
    font-size: 16px;
  }

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

  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .store-row,
  .store-row a {
    width: 100%;
  }

  .video-card {
    min-height: 400px;
    padding: 10px;
    border-radius: 22px;
  }

  .video-cover {
    min-height: 292px;
    border-radius: 16px;
  }

  .video-cover::before {
    inset: 28px 24px auto;
    height: 100px;
  }

  .video-cover::after {
    right: 24px;
    bottom: 32px;
    width: 64%;
    height: 100px;
  }

  .video-cover img {
    width: 88px;
    height: 88px;
    border-radius: 18px;
  }

  .download-badge {
    width: 58px;
    height: 58px;
    font-size: 24px;
  }

  .rating-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 10px;
  }

  .integrations,
  .feature-row,
  .letter-card,
  .privacy-band {
    padding: 22px;
    border-radius: 20px;
  }

  .integrations > div,
  .recipe-grid,
  .local-data-grid,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .feedback-fields-row {
    grid-template-columns: 1fr;
  }

  .download-card {
    min-height: auto;
    padding: 22px;
  }

  .download-card .button {
    justify-self: stretch;
  }

  .feature-row {
    gap: 26px;
  }

  .mock-panel,
  .mini-screen {
    padding: 12px;
  }

  .mock-head {
    align-items: flex-start;
  }

  .mock-head a {
    padding: 0 10px;
  }

  .mock-search {
    white-space: normal;
  }

  .recipe-grid article {
    min-height: auto;
  }

  .author {
    align-self: start;
  }

  .faq details {
    padding: 18px;
  }

  .footer {
    flex-wrap: wrap;
    padding: 18px;
  }
}

/* Product launch hero aligned with the ReFind extension UI */
.site-header {
  width: 100%;
  min-height: 58px;
  padding: 0 max(12px, calc((100vw - var(--max-w)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-actions .lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 34px;
  padding: 0 8px;
  border-radius: var(--radius);
  color: var(--muted);
  background: #fff;
  text-decoration: none;
}
.header-actions .header-cta {
  min-height: 36px;
  border-color: var(--blue);
  border-radius: var(--radius);
  background: var(--blue);
  color: #fff;
  box-shadow: none;
}
.brand img {
  border-radius: var(--radius);
}
.nav {
  gap: 34px;
  color: var(--muted);
  font-weight: 600;
}
body {
  background: var(--bg);
}
.hero {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 52px;
  min-height: auto;
  padding: 70px 0 0;
  text-align: center;
}
.hero-copy {
  display: grid;
  justify-items: center;
  width: min(860px, 100%);
}
.hero h1 {
  max-width: 880px;
  font-size: clamp(46px, 5.4vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--ink);
}
.hero-copy > p {
  max-width: 650px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.35;
}
.hero-actions {
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}
.hero-actions .button {
  min-height: 44px;
  border-radius: var(--radius);
  padding: 0 22px;
}
.hero-actions .button-primary {
  gap: 9px;
  background: var(--blue);
  box-shadow: 0 8px 18px rgba(246, 80, 119, 0.2);
}
.chrome-dot {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}
.chevron {
  margin-left: 2px;
  font-size: 16px;
  line-height: 1;
}
.hero-actions .button-secondary {
  border-color: var(--blue);
  background: #fff;
  color: var(--blue);
}
.social-proof {
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}
.social-proof strong {
  color: var(--accent);
}
.hero-preview {
  width: min(760px, 100%);
  margin: 0 auto;
  padding-bottom: 0;
}
.preview-browser {
  display: grid;
  grid-template-columns: 122px minmax(0, 1fr) 190px;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 10px 10px 0 0;
  background: #fff;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.12);
  text-align: left;
}
.preview-sidebar,
.preview-panel {
  background: #f3f6fb;
  padding: 16px 12px;
}
.preview-sidebar {
  border-right: 1px solid #e5e7eb;
}
.preview-sidebar strong {
  display: block;
  margin-bottom: 22px;
  color: #374151;
  font-size: 14px;
  font-weight: 900;
}
.preview-sidebar button {
  width: 100%;
  min-height: 28px;
  border: 0;
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}
.preview-sidebar span {
  display: block;
  margin-top: 26px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}
.preview-sidebar b {
  display: block;
  margin-top: 8px;
  border-radius: 7px;
  padding: 8px;
  background: #dbeafe;
  color: #334155;
  font-size: 11px;
}
.preview-page {
  position: relative;
  background: #fff;
  padding: 18px 26px;
}
.preview-toolbar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 140px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}
.preview-toolbar em {
  border-radius: 999px;
  padding: 6px 10px;
  background: #eef2ff;
  color: var(--tag-text);
  font-style: normal;
}
.preview-content {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 62px;
  color: var(--muted);
  font-size: 12px;
}
.preview-content i {
  display: block;
  width: min(340px, 80%);
  height: 10px;
  border-radius: 999px;
  background: #eef2f7;
}
.preview-content i:nth-child(2) { width: min(260px, 70%); }
.preview-content i:nth-child(3) { width: min(300px, 75%); }
.preview-panel {
  border-left: 1px solid #e5e7eb;
}
.preview-panel-head,
.preview-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.preview-panel-head strong {
  color: var(--ink);
  font-size: 12px;
}
.preview-panel-head button {
  border: 0;
  border-radius: var(--radius);
  padding: 6px 8px;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}
.preview-stats {
  margin-top: 14px;
}
.preview-stats article {
  flex: 1;
  border-radius: 8px;
  padding: 9px;
  background: #fff;
}
.preview-stats small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
}
.preview-stats b {
  display: block;
  margin-top: 4px;
  color: var(--accent);
  font-size: 16px;
}
.preview-search {
  margin-top: 12px;
  border-radius: var(--radius);
  padding: 9px;
  background: #fff;
  color: #94a3b8;
  font-size: 10px;
  font-weight: 700;
}
.preview-card {
  margin-top: 10px;
  border-radius: var(--radius);
  padding: 12px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}
.preview-card strong,
.preview-card span,
.preview-card em {
  display: block;
}
.preview-card strong {
  color: var(--ink);
  font-size: 11px;
  line-height: 1.3;
}
.preview-card span {
  margin-top: 8px;
  color: var(--accent-dark);
  font-size: 9px;
  font-weight: 800;
}
.preview-card em {
  margin-top: 6px;
  color: #64748b;
  font-size: 9px;
  font-style: normal;
}
@media (max-width: 760px) {
  .site-header { grid-template-columns: auto auto; padding: 0 14px; }
  .header-actions .lang-switch { display: none; }
  .hero { padding-top: 46px; }
  .hero h1 { font-size: 42px; }
  .preview-browser { grid-template-columns: 1fr; min-height: auto; }
  .preview-sidebar { display: none; }
  .preview-panel { border-left: 0; border-top: 1px solid #e5e7eb; }
}

/* Detailed walkthrough video in hero preview */
.video-preview {
  width: min(860px, 100%);
}

.walkthrough-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius) var(--radius) 0 0;
  background: #fff;
  box-shadow: var(--shadow);
}

.walkthrough-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #fff;
  object-fit: cover;
}

.walkthrough-caption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--muted);
  text-align: left;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}
.walkthrough-caption strong {
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}
.walkthrough-caption span {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}
@media (max-width: 760px) {
  .walkthrough-caption { display: grid; }
}

/* F092 website visual system */
body {
  position: relative;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0.98) 0%, rgba(239, 246, 255, 0.96) 44%, #ffffff 100%),
    linear-gradient(120deg, rgba(246, 80, 119, 0.12) 0%, rgba(246, 80, 119, 0) 38%),
    linear-gradient(255deg, rgba(217, 52, 95, 0.13) 0%, rgba(217, 52, 95, 0) 42%),
    var(--bg);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(207, 221, 241, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(207, 221, 241, 0.28) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 74%);
  pointer-events: none;
}

.site-header {
  border-bottom: 1px solid rgba(207, 221, 241, 0.86);
  background: rgba(248, 251, 255, 0.86);
  box-shadow: 0 8px 28px rgba(17, 24, 39, 0.05);
}

.brand {
  color: var(--ink);
  letter-spacing: 0;
}

.brand img,
.mock-head img,
.final-cta img {
  background: var(--brand-gradient);
  box-shadow: 0 12px 30px rgba(219, 39, 119, 0.2);
}

.brand img {
  width: 36px;
  height: 36px;
}

.nav a,
.footer a {
  color: var(--muted);
}

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

.header-actions .lang-switch,
.lang-switch {
  border-color: rgba(207, 221, 241, 0.9);
  background: rgba(255, 255, 255, 0.84);
  color: var(--muted);
}

.header-actions .header-cta,
.site-header > .header-cta {
  border-color: transparent;
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(246, 80, 119, 0.22);
}

.section {
  position: relative;
}

.hero {
  gap: 38px;
  padding: 58px 0 42px;
}

.download-section {
  padding-top: 72px;
}

.hero-copy {
  position: relative;
}

.hero h1 {
  color: var(--ink);
  text-wrap: balance;
}

.hero h1::after {
  display: block;
  width: 88px;
  height: 5px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: var(--brand-gradient);
  content: "";
  box-shadow: 0 10px 24px rgba(219, 39, 119, 0.22);
}

.hero-copy > p,
.section-heading p,
.feature-copy p,
.download-card p,
.local-data-grid p,
.feedback-copy p,
.faq p,
.final-cta p {
  color: var(--muted);
}

.social-proof strong {
  color: var(--accent-dark);
}

.button {
  border: 1px solid transparent;
  box-shadow: none;
}

.button-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 62%, #20111a 100%);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(246, 80, 119, 0.24);
}

.button-secondary {
  border-color: rgba(184, 201, 230, 0.94);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.06);
}

.chrome-dot,
.download-badge {
  background: var(--brand-gradient);
  color: #ffffff;
}

.walkthrough-shell {
  position: relative;
  border-color: rgba(184, 201, 230, 0.94);
  background:
    linear-gradient(135deg, rgba(248, 251, 255, 0.9), rgba(253, 242, 248, 0.62)),
    #ffffff;
  box-shadow: 0 30px 90px rgba(17, 24, 39, 0.14), 0 0 0 8px rgba(255, 255, 255, 0.48);
}

.video-preview {
  width: min(760px, 100%);
}

.walkthrough-shell::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  height: 4px;
  content: "";
  background: var(--brand-gradient);
  pointer-events: none;
}

.walkthrough-video {
  background: var(--surface-soft);
}

.walkthrough-caption {
  border-color: rgba(184, 201, 230, 0.94);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.09);
}

.walkthrough-caption strong {
  color: var(--ink);
}

.eyebrow {
  border-color: rgba(219, 39, 119, 0.18);
  background: rgba(253, 242, 248, 0.82);
  color: var(--accent-dark);
}

.integrations,
.download-card,
.feature-row,
.local-data-grid article,
.feedback-copy,
.feedback-form,
.faq details {
  border-color: rgba(207, 221, 241, 0.92);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.integrations {
  margin-top: 96px;
}

.integrations b,
.site-list em,
.local-data-grid b,
.feature-copy > span {
  background: var(--brand-gradient);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(219, 39, 119, 0.2);
}

.integrations article,
.site-list article,
.content-card,
.progress-card,
.check-list span,
.preview-stats article,
.preview-search,
.preview-card {
  border: 1px solid rgba(207, 221, 241, 0.82);
  background: rgba(255, 255, 255, 0.88);
}

.download-card.featured {
  border-color: rgba(219, 39, 119, 0.24);
  background:
    linear-gradient(145deg, rgba(253, 242, 248, 0.88), rgba(248, 251, 255, 0.92)),
    #ffffff;
  box-shadow: 0 22px 58px rgba(219, 39, 119, 0.12);
}

.store-badge {
  border-color: rgba(246, 80, 119, 0.2);
  background: rgba(255, 241, 242, 0.8);
  color: var(--blue-dark);
}

.store-badge.edge {
  border-color: rgba(246, 80, 119, 0.18);
  background: rgba(255, 241, 242, 0.84);
  color: var(--accent-dark);
}

.store-badge.firefox {
  border-color: rgba(219, 39, 119, 0.22);
  background: rgba(253, 242, 248, 0.9);
  color: var(--accent-dark);
}

.mock-panel,
.mini-screen {
  border-color: rgba(184, 201, 230, 0.92);
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0.96), rgba(239, 246, 255, 0.86)),
    var(--surface-soft);
}

.mock-head a,
.preview-panel-head button {
  background: var(--blue);
  color: #ffffff;
}

.mock-tabs {
  border-color: rgba(207, 221, 241, 0.9);
  background: rgba(222, 233, 255, 0.42);
}

.mock-tabs b,
.content-card b {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.mock-search {
  border-color: rgba(207, 221, 241, 0.9);
  color: var(--subtle);
}

.progress-card i {
  background: var(--blue-soft);
}

.progress-card i b {
  background: linear-gradient(90deg, var(--accent), var(--cyan));
}

.privacy-band {
  border: 1px solid rgba(207, 221, 241, 0.94);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 255, 0.84)),
    var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.privacy-band::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: var(--radius) 0 0 var(--radius);
  background: var(--brand-gradient);
  content: "";
}

.privacy-band .eyebrow {
  border-color: rgba(246, 80, 119, 0.18);
  background: rgba(255, 241, 242, 0.72);
  color: var(--blue-dark);
}

.privacy-band p {
  color: var(--muted);
}

.feedback-copy {
  background:
    linear-gradient(145deg, rgba(253, 242, 248, 0.76), rgba(255, 255, 255, 0.9)),
    var(--surface);
}

.feedback-copy li::before {
  color: var(--accent-dark);
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
  border-color: rgba(207, 221, 241, 0.94);
  background: rgba(248, 251, 255, 0.86);
}

.feedback-form input:focus,
.feedback-form select:focus,
.feedback-form textarea:focus {
  border-color: var(--blue);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(246, 80, 119, 0.16);
}

.faq details[open] {
  border-color: rgba(219, 39, 119, 0.34);
}

.faq summary::after {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.final-cta {
  padding-top: 116px;
}

.final-cta img {
  width: 72px;
  height: 72px;
}

.footer {
  background: rgba(248, 251, 255, 0.78);
}

code {
  background: var(--surface-soft);
  color: var(--accent-dark);
}

@media (hover: hover) {
  .button:hover,
  .header-cta:hover {
    box-shadow: 0 20px 46px rgba(246, 80, 119, 0.24);
  }

  .button-secondary:hover {
    box-shadow: 0 18px 42px rgba(17, 24, 39, 0.1);
  }

  .download-card:hover,
  .local-data-grid article:hover,
  .faq details:hover {
    border-color: rgba(219, 39, 119, 0.24);
  }
}

@media (max-width: 760px) {
  .hero {
    gap: 26px;
    padding: 36px 0 26px;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.02;
  }

  .hero-copy > p {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.45;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero h1::after {
    margin-top: 16px;
  }

  .video-preview {
    width: min(340px, 100%);
  }

  .walkthrough-caption {
    padding: 11px 12px;
  }

  .walkthrough-caption span {
    font-size: 12px;
  }

  .integrations {
    margin-top: 56px;
  }

  .download-section {
    padding-top: 42px;
  }
}

/* F092 high-visibility pass */
.site-header {
  background:
    linear-gradient(90deg, rgba(253, 242, 248, 0.94), rgba(248, 251, 255, 0.9) 48%, rgba(230, 251, 255, 0.88)),
    rgba(255, 255, 255, 0.92);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--brand-gradient);
}

.hero {
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 18px 0 24px;
  z-index: -1;
  border: 1px solid rgba(219, 39, 119, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(253, 242, 248, 0.9) 0%, rgba(248, 251, 255, 0.84) 46%, rgba(230, 251, 255, 0.72) 100%),
    linear-gradient(90deg, rgba(219, 39, 119, 0.12), rgba(6, 167, 195, 0.1));
  box-shadow: 0 34px 90px rgba(17, 24, 39, 0.08);
  content: "";
}

.hero h1 {
  background: linear-gradient(135deg, #111827 0%, #111827 55%, #f65077 78%, #d9345f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.button-primary,
.header-actions .header-cta,
.site-header > .header-cta {
  background: var(--brand-gradient);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(219, 39, 119, 0.24);
}

.hero-actions .button-secondary {
  border-color: rgba(219, 39, 119, 0.28);
  color: var(--accent-dark);
}

.download-card.featured,
.feedback-form,
.faq details[open] {
  box-shadow: 0 22px 58px rgba(219, 39, 119, 0.13);
}

.feature-row {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 251, 255, 0.72)),
    rgba(253, 242, 248, 0.35);
}

@media (max-width: 760px) {
  .hero::before {
    inset: 8px -8px 14px;
    border-radius: 22px;
  }
}

/* 2026-06-20 reference-inspired ReFind product site redesign */
.home-page {
  --bg: #fafafa;
  --surface: #ffffff;
  --surface-soft: #fff1f2;
  --ink: #1e1e26;
  --muted: #70708c;
  --subtle: #8b8ba5;
  --line: #ededfa;
  --line-strong: #fecdd3;
  --accent: #f65077;
  --accent-dark: #d9345f;
  --accent-soft: #fff1f2;
  --blue: #f65077;
  --blue-dark: #d9345f;
  --brand-gradient: linear-gradient(135deg, #fff7f8 0%, #f65077 44%, #d9345f 100%);
  --shadow: 0 28px 80px rgba(21, 25, 35, 0.13);
  --shadow-soft: 0 16px 48px rgba(21, 25, 35, 0.08);
  background:
    radial-gradient(circle at 12% 6%, rgba(246, 80, 119, 0.11), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(217, 52, 95, 0.10), transparent 24%),
    linear-gradient(180deg, #fafafa 0%, #ffffff 62%, #fff7f8 100%);
  color: var(--ink);
}

.home-page::before {
  opacity: 0.58;
  background-image:
    linear-gradient(rgba(197, 210, 227, 0.34) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 210, 227, 0.34) 1px, transparent 1px);
  background-size: 48px 48px;
}

.home-page .site-header {
  min-height: 68px;
  border-bottom: 1px solid rgba(219, 227, 239, 0.86);
  background: rgba(247, 249, 253, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.home-page .site-header::after,
.home-page .hero::before,
.home-page .hero h1::after {
  display: none;
}

.home-page .brand {
  font-weight: 850;
}

.home-page .brand img {
  background: var(--brand-gradient);
  box-shadow: 0 10px 26px rgba(246, 80, 119, 0.18);
}

.home-page .nav {
  gap: 28px;
}

.home-page .nav a,
.home-page .lang-switch,
.home-page .footer a {
  color: var(--muted);
  font-weight: 750;
}

.home-page .header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-page .header-actions .header-cta,
.home-page .button-primary {
  border-color: transparent;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 16px 34px rgba(21, 25, 35, 0.18);
}

.home-page .header-actions .lang-switch {
  border-color: rgba(219, 227, 239, 0.92);
  background: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.home-page .section {
  width: min(1160px, calc(100% - 40px));
}

.home-page .hero {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  justify-items: center;
  gap: 34px;
  min-height: auto;
  padding: clamp(46px, 7dvh, 86px) 0 30px;
  text-align: center;
}

.home-page .hero-copy {
  width: min(850px, 100%);
}

.home-page .hero h1 {
  max-width: 780px;
  margin: 0 auto;
  font-size: clamp(44px, 6.2vw, 76px);
  line-height: 0.98;
  color: var(--ink);
  letter-spacing: 0;
}

.home-page .hero-copy > p {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.home-page .hero-actions {
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.home-page .button {
  min-height: 46px;
  border-radius: 8px;
  padding: 0 18px;
  line-height: 1;
  white-space: nowrap;
}

.home-page .button-secondary {
  border-color: rgba(197, 210, 227, 0.94);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
}

.home-page .chrome-dot {
  background: var(--accent);
}

.home-page .video-preview {
  width: min(1040px, 100%);
}

.home-page .walkthrough-shell {
  overflow: hidden;
  border: 1px solid rgba(197, 210, 227, 0.96);
  border-radius: 18px 18px 0 0;
  background: var(--surface);
  box-shadow: 0 34px 90px rgba(21, 25, 35, 0.14);
}

.home-page .walkthrough-shell::before {
  display: none;
}

.home-page .walkthrough-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.home-page .walkthrough-caption {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(197, 210, 227, 0.96);
  border-top: 0;
  border-radius: 0 0 18px 18px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.9);
  text-align: left;
}

.home-page .walkthrough-caption strong {
  flex: 0 0 auto;
}

.home-page .walkthrough-caption span {
  max-width: 640px;
}

.source-strip {
  display: grid;
  grid-template-columns: minmax(210px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 20px 22px;
  border: 1px solid rgba(219, 227, 239, 0.94);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
}

.source-strip > span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.4;
}

.source-strip > div {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px;
}

.source-strip strong {
  display: grid;
  place-items: center;
  min-height: 38px;
  border: 1px solid rgba(219, 227, 239, 0.9);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  line-height: 1;
}

.home-page .download-section,
.home-page .feature-story,
.home-page .local-data-section,
.home-page #feedback,
.home-page .faq,
.home-page .final-cta {
  padding-top: 96px;
}

.home-page .section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.home-page .section-heading h2,
.workflow-copy h2,
.home-page .privacy-band h2,
.home-page .final-cta h2 {
  max-width: 760px;
  color: var(--ink);
}

.home-page .section-heading p,
.workflow-copy p,
.home-page .privacy-band p,
.home-page .final-cta p {
  max-width: 650px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.home-page .download-grid {
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 14px;
}

.home-page .download-card {
  min-height: 238px;
  border: 1px solid rgba(219, 227, 239, 0.96);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
}

.home-page .download-card.featured {
  border-color: rgba(232, 117, 0, 0.28);
  background:
    linear-gradient(145deg, rgba(255, 244, 231, 0.92), rgba(255, 255, 255, 0.86)),
    #fff;
}

.home-page .download-card p {
  line-height: 1.55;
}

.home-page .store-badge {
  border-color: rgba(36, 111, 229, 0.22);
  background: rgba(36, 111, 229, 0.09);
  color: var(--blue-dark);
}

.home-page .store-badge.firefox {
  border-color: rgba(232, 117, 0, 0.24);
  background: var(--accent-soft);
  color: var(--accent-dark);
}

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

.feature-card {
  display: grid;
  align-content: start;
  overflow: hidden;
  border: 1px solid rgba(219, 227, 239, 0.96);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.feature-card-large {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: center;
}

.feature-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--surface-soft);
}

.feature-card-large img {
  aspect-ratio: 16 / 9;
}

.feature-card div {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.feature-card span {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 850;
}

.feature-card h3 {
  max-width: 470px;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.12;
}

.feature-card:not(.feature-card-large) h3 {
  font-size: 24px;
}

.feature-card p {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.6;
}

.workflow-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 34px;
  align-items: start;
  padding-top: 96px;
}

.workflow-copy {
  position: sticky;
  top: 92px;
}

.workflow-steps {
  display: grid;
  gap: 12px;
}

.workflow-steps article {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 104px;
  border: 1px solid rgba(219, 227, 239, 0.96);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
}

.workflow-steps strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.1;
}

.workflow-steps span {
  color: var(--muted);
  line-height: 1.55;
}

.home-page .privacy-band {
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.28fr);
  gap: 28px;
  margin-top: 96px;
  padding: 28px;
  border: 1px solid rgba(219, 227, 239, 0.96);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(21, 25, 35, 0.96), rgba(33, 41, 55, 0.95)),
    var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.home-page .privacy-band::before {
  display: none;
}

.home-page .privacy-band h2 {
  color: #fff;
}

.home-page .privacy-band p {
  color: rgba(255, 255, 255, 0.76);
}

.home-page .privacy-band img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.home-page .local-data-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home-page .local-data-grid article {
  min-height: 232px;
  border: 1px solid rgba(219, 227, 239, 0.96);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
}

.home-page .local-data-grid b {
  width: fit-content;
  min-width: 52px;
  height: 34px;
  border-radius: 8px;
  padding: 0 10px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 13px;
}

.home-page .feedback-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: 16px;
}

.home-page .feedback-copy,
.home-page .feedback-form {
  border: 1px solid rgba(219, 227, 239, 0.96);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.home-page .feedback-copy {
  grid-template-columns: 1fr;
}

.home-page .feedback-copy h3,
.home-page .feedback-copy p,
.home-page .feedback-copy ul {
  grid-column: auto;
  grid-row: auto;
}

.home-page .feedback-copy ul {
  display: grid;
  gap: 10px;
  padding: 0;
}

.home-page .feedback-copy li {
  list-style: none;
}

.home-page .feedback-copy li::before {
  color: var(--accent-dark);
}

.home-page .feedback-form input,
.home-page .feedback-form select,
.home-page .feedback-form textarea {
  border-color: rgba(197, 210, 227, 0.96);
  background: #f9fbff;
  color: var(--ink);
}

.home-page .feedback-form input::placeholder,
.home-page .feedback-form textarea::placeholder {
  color: #6d7889;
}

.home-page .faq {
  max-width: 920px;
}

.home-page .faq details {
  border: 1px solid rgba(219, 227, 239, 0.96);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.home-page .faq details[open] {
  border-color: rgba(36, 111, 229, 0.28);
}

.home-page .faq summary::after {
  background: rgba(36, 111, 229, 0.09);
  color: var(--blue-dark);
}

.home-page .final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  justify-items: start;
  padding-bottom: 96px;
  text-align: left;
}

.home-page .final-cta img {
  grid-row: 1 / span 4;
  width: 100%;
  max-width: 440px;
  height: auto;
  margin: 0;
  border: 1px solid rgba(219, 227, 239, 0.96);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.home-page .final-cta h2,
.home-page .final-cta p {
  margin-left: 0;
}

.home-page .final-cta .button {
  margin-top: 4px;
}

.home-page .footer {
  min-height: 76px;
  border-top: 1px solid rgba(219, 227, 239, 0.96);
  background: rgba(247, 249, 253, 0.82);
}

.home-page .reveal {
  opacity: 1;
  transform: none;
}

@media (hover: hover) {
  .home-page .nav a:hover,
  .home-page .footer a:hover {
    color: var(--accent-dark);
  }

  .home-page .button:hover,
  .home-page .header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 44px rgba(21, 25, 35, 0.2);
  }

  .source-strip strong:hover,
  .home-page .download-card:hover,
  .feature-card:hover,
  .workflow-steps article:hover,
  .home-page .local-data-grid article:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 46px rgba(21, 25, 35, 0.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page *,
  .home-page *::before,
  .home-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 980px) {
  .home-page .site-header {
    grid-template-columns: auto auto;
    padding: 0 18px;
  }

  .home-page .nav {
    display: none;
  }

  .home-page .hero {
    min-height: auto;
    padding-top: 40px;
  }

  .source-strip,
  .workflow-section,
  .home-page .privacy-band,
  .home-page .feedback-panel,
  .home-page .final-cta,
  .feature-card-large {
    grid-template-columns: 1fr;
  }

  .source-strip > div {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .home-page .download-grid,
  .home-page .local-data-grid {
    grid-template-columns: 1fr;
  }

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

  .workflow-copy {
    position: static;
  }

  .home-page .privacy-band {
    margin-top: 76px;
  }

  .home-page .privacy-band img {
    min-width: 0;
  }

  .home-page .feedback-panel {
    gap: 14px;
  }

  .home-page .final-cta {
    justify-items: center;
    text-align: center;
  }

  .home-page .final-cta img {
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .home-page .section {
    width: min(100% - 28px, 1160px);
  }

  .home-page .site-header {
    min-height: 64px;
  }

  .home-page .header-actions .lang-switch {
    display: inline-flex;
  }

  .home-page .header-actions .header-cta {
    display: none;
  }

  .home-page .hero {
    gap: 24px;
    padding: 34px 0 14px;
  }

  .home-page .hero h1 {
    font-size: clamp(38px, 12vw, 48px);
    line-height: 1.02;
  }

  .home-page .hero-copy > p {
    font-size: 16px;
    line-height: 1.5;
  }

  .home-page .hero-actions,
  .home-page .actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .home-page .button {
    width: 100%;
    min-height: 48px;
    white-space: normal;
    line-height: 1.2;
  }

  .home-page .walkthrough-shell {
    border-radius: 12px 12px 0 0;
  }

  .home-page .walkthrough-caption {
    display: grid;
    border-radius: 0 0 12px 12px;
    padding: 12px;
  }

  .source-strip {
    margin-top: 30px;
    padding: 16px;
  }

  .source-strip > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .download-section,
  .home-page .feature-story,
  .workflow-section,
  .home-page .local-data-section,
  .home-page #feedback,
  .home-page .faq,
  .home-page .final-cta {
    padding-top: 68px;
  }

  .home-page .section-heading h2,
  .workflow-copy h2,
  .home-page .privacy-band h2,
  .home-page .final-cta h2 {
    font-size: 30px;
  }

  .home-page .download-card,
  .feature-card div,
  .workflow-steps article,
  .home-page .privacy-band,
  .home-page .local-data-grid article,
  .home-page .feedback-copy,
  .home-page .feedback-form {
    padding: 20px;
  }

  .workflow-steps article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .home-page .feedback-fields-row {
    grid-template-columns: 1fr;
  }

  .home-page .faq details {
    padding: 18px;
  }

  .home-page .final-cta {
    padding-bottom: 72px;
  }
}

/* 2026-06-20 premium polish pass */
.home-page {
  overflow-x: hidden;
  max-width: 100%;
}

html,
body {
  max-width: 100%;
}

.home-page main,
.home-page .section,
.home-page .hero,
.home-page .hero-copy,
.home-page .hero-preview,
.home-page .walkthrough-shell,
.home-page .walkthrough-caption,
.feature-grid,
.feature-card,
.workflow-section,
.home-page .privacy-band,
.home-page .feedback-panel,
.home-page .final-cta {
  min-width: 0;
}

.home-page .hero {
  position: relative;
}

.home-page .hero::after {
  position: absolute;
  top: 118px;
  left: 50%;
  z-index: -1;
  width: min(980px, 88vw);
  height: 430px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 22% 44%, rgba(36, 111, 229, 0.22), transparent 34%),
    radial-gradient(circle at 78% 28%, rgba(232, 117, 0, 0.22), transparent 30%);
  filter: blur(42px);
  content: "";
  transform: translateX(-50%);
}

.home-page .hero h1 {
  max-width: 820px;
  text-wrap: balance;
}

.home-page .hero-copy > p {
  text-wrap: balance;
}

.home-page .walkthrough-shell {
  position: relative;
  isolation: isolate;
  border-radius: 24px 24px 0 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 249, 253, 0.92)),
    var(--surface);
}

.home-page .walkthrough-shell::after {
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 16px;
  content: "";
  pointer-events: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    inset 0 -1px 0 rgba(21, 25, 35, 0.04);
}

.home-page .walkthrough-video {
  display: block;
  transform: scale(1.012);
}

.home-page .walkthrough-caption {
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  border-radius: 0 0 24px 24px;
}

.feature-card {
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.feature-card img {
  border-bottom: 1px solid rgba(219, 227, 239, 0.9);
  filter: saturate(1.02) contrast(1.01);
}

.feature-card-large {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 244, 231, 0.62)),
    #fff;
}

.feature-card:nth-child(3) {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(238, 244, 255, 0.72)),
    #fff;
}

.workflow-steps article:nth-child(even) {
  transform: translateX(18px);
}

.home-page .privacy-band {
  overflow: hidden;
}

.home-page .privacy-band::after {
  position: absolute;
  right: -90px;
  bottom: -130px;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: rgba(232, 117, 0, 0.18);
  filter: blur(20px);
  content: "";
}

.home-page .privacy-band img {
  position: relative;
  z-index: 1;
}

.home-page .final-cta {
  border-top: 1px solid rgba(219, 227, 239, 0.8);
}

@media (hover: hover) {
  .feature-card:hover {
    border-color: rgba(36, 111, 229, 0.22);
  }
}

@media (max-width: 980px) {
  .workflow-steps article:nth-child(even) {
    transform: none;
  }

  .home-page .walkthrough-caption {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 620px) {
  .home-page .hero {
    overflow: hidden;
  }

  .home-page .hero h1 {
    max-width: 315px;
    font-size: clamp(32px, 9.2vw, 36px);
    line-height: 1.08;
    text-wrap: wrap;
    overflow-wrap: normal;
    word-break: normal;
  }

  .home-page .hero-copy {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .home-page .hero-copy > p {
    width: 100%;
    max-width: 300px;
    font-size: 15px;
    margin-right: auto;
    margin-left: auto;
    text-wrap: wrap;
    overflow-wrap: break-word;
  }

  .home-page .walkthrough-video {
    object-fit: contain;
    background: #fff;
  }

  .home-page .hero::after {
    top: 82px;
    width: 520px;
    height: 320px;
    filter: blur(36px);
  }

  .home-page .walkthrough-shell {
    border-radius: 14px 14px 0 0;
  }

  .home-page .walkthrough-shell::after {
    inset: 7px;
    border-radius: 10px;
  }

  .home-page .walkthrough-video {
    transform: none;
  }

  .home-page .walkthrough-caption {
    border-radius: 0 0 14px 14px;
  }

}

/* 2026-06-20 close reference-style product site */
body.home-page {
  --bg: #fafafa;
  --surface: #ffffff;
  --surface-soft: #fff1f2;
  --ink: #1e1e26;
  --muted: #70708c;
  --subtle: #8b8ba5;
  --line: #ededfa;
  --line-strong: #fecdd3;
  --accent: #f65077;
  --accent-dark: #d9345f;
  --accent-soft: #fff1f2;
  --blue: #f65077;
  --blue-dark: #d9345f;
  --brand-gradient: linear-gradient(135deg, #f65077 0%, #d9345f 100%);
  --shadow: 0 2px 15px rgba(112, 112, 140, 0.25);
  --shadow-soft: 0 2px 15px rgba(112, 112, 140, 0.14);
  --font: "Open Sans", "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  overflow-x: hidden;
  max-width: 100%;
  background: #fafafa;
  color: var(--ink);
  font-family: var(--font);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.5;
}

body.home-page::before {
  display: none;
}

.home-page main,
.home-page .section,
.home-page .hero,
.home-page .hero-copy,
.home-page .product-preview,
.home-page .preview-frame,
.home-page .feature-split,
.home-page .feature-copy,
.home-page .feature-image,
.home-page .site-footer,
.home-page .feedback-form {
  min-width: 0;
  max-width: 100%;
}

.home-page main {
  overflow-x: clip;
}

.home-page h1,
.home-page h2,
.home-page h3,
.home-page p {
  margin: 0;
  letter-spacing: 0;
}

.home-page .section {
  width: min(1180px, calc(100% - 48px));
  max-width: calc(100% - 48px);
  margin: 0 auto;
  scroll-margin-top: 88px;
}

.home-page .site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  width: 100%;
  min-height: 74px;
  margin: 0;
  padding: 0 max(24px, calc((100vw - 1280px) / 2));
  border-bottom: 0;
  background: rgba(250, 250, 250, 0.86);
  box-shadow: none;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.home-page .site-header::after,
.home-page .hero::before,
.home-page .hero::after,
.home-page .hero h1::after,
.home-page .walkthrough-shell::after,
.home-page .walkthrough-shell::before {
  display: none;
}

.home-page .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0;
}

.home-page .brand img,
.home-page .brand-mark {
  width: 33px;
  height: 33px;
  border-radius: 8px;
}

.home-page .brand img {
  background: transparent;
  box-shadow: none;
}

.home-page .nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 300;
}

.home-page .nav a,
.home-page .footer a,
.home-page .package-links a,
.home-page .text-link {
  color: inherit;
  text-decoration: none;
}

.home-page .header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-page .lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 0 11px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.home-page .header-cta,
.home-page .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 0 30px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.home-page .header-cta {
  min-height: 40px;
  padding: 0 18px;
  font-size: 14px;
}

.home-page .button-primary,
.home-page .header-cta {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  box-shadow: none;
}

.home-page .button-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.home-page .hero {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 0;
  min-height: auto;
  padding: 106px 0 42px;
  text-align: center;
}

.home-page .hero-copy {
  display: grid;
  justify-items: center;
  width: min(790px, 100%);
  overflow: visible;
}

.home-page .hero h1 {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(42px, 5.2vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  text-wrap: balance;
}

.home-page .hero-copy > p {
  max-width: 600px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 300;
  line-height: 1.55;
  text-wrap: balance;
}

.home-page .hero-actions,
.home-page .actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.home-page .product-preview {
  position: relative;
  z-index: 1;
  margin-top: 4px;
  overflow: visible;
}

.home-page .product-preview::before {
  position: absolute;
  top: 10%;
  left: -12%;
  z-index: -1;
  width: min(300px, 34vw);
  height: min(300px, 34vw);
  border-radius: 42% 58% 61% 39%;
  background: rgba(246, 80, 119, 0.13);
  content: "";
  transform: rotate(-12deg);
}

.home-page .product-preview::after {
  position: absolute;
  right: -10%;
  bottom: 5%;
  z-index: -1;
  width: min(260px, 30vw);
  height: min(260px, 30vw);
  background-image: radial-gradient(rgba(112, 112, 140, 0.22) 1.4px, transparent 1.4px);
  background-size: 18px 18px;
  content: "";
  opacity: 0.55;
}

.home-page .preview-frame {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid #ededfa;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 2px 15px rgba(112, 112, 140, 0.25);
}

.home-page .walkthrough-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #fff;
  object-fit: cover;
  transform: none;
}

.home-page .trust-band {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 50vh;
  padding: 82px 0;
}

.home-page .trust-band::before {
  position: absolute;
  top: 20%;
  left: -9%;
  z-index: 0;
  width: min(250px, 32vw);
  height: min(250px, 32vw);
  border-radius: 58% 42% 43% 57%;
  background: rgba(246, 80, 119, 0.12);
  content: "";
  transform: rotate(18deg);
}

.home-page .trust-band h2 {
  position: relative;
  z-index: 1;
  max-width: 810px;
  color: #363643;
  font-size: clamp(32px, 4.2vw, 54px);
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.home-page .feature-split {
  position: relative;
  display: flex;
  align-items: center;
  gap: 56px;
  min-height: 50vh;
  padding: 80px 0;
}

.home-page .feature-split.reverse {
  flex-direction: row-reverse;
}

.home-page .feature-copy,
.home-page .feature-image {
  flex: 1 1 0;
}

.home-page .feature-copy {
  display: grid;
  gap: 12px;
  justify-content: start;
  text-align: left;
}

.home-page .feature-copy h2 {
  max-width: 580px;
  color: #363643;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.2;
}

.home-page .feature-copy p {
  max-width: 580px;
  color: #363643;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 300;
  line-height: 1.55;
}

.home-page .feature-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-page .feature-image img {
  width: 100%;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 2px 15px rgba(112, 112, 140, 0.25);
}

.home-page .feature-image-wide img {
  max-width: 752px;
}

.home-page .feature-image-tall img {
  max-width: 380px;
}

.home-page .feature-image-card img {
  max-width: 560px;
}

.home-page .privacy-story::before {
  position: absolute;
  top: 12%;
  left: 4%;
  z-index: -1;
  width: min(380px, 46vw);
  height: min(360px, 42vw);
  border-radius: 52% 48% 45% 55%;
  background: rgba(246, 80, 119, 0.1);
  content: "";
  transform: rotate(-10deg);
}

.home-page .text-link {
  width: fit-content;
  color: var(--accent);
  font-size: 16px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.home-page .final-install-cta {
  position: relative;
  overflow: hidden;
  margin-top: 120px;
  border-top: 1px solid #fecdd3;
  border-bottom: 1px solid #fecdd3;
  background: #fff1f2;
  text-align: center;
  scroll-margin-top: 74px;
}

.home-page .final-install-cta::before {
  position: absolute;
  top: 70px;
  left: -60px;
  width: min(420px, 46vw);
  height: min(420px, 46vw);
  border-radius: 45% 55% 52% 48%;
  background: rgba(246, 80, 119, 0.16);
  content: "";
}

.home-page .final-install-cta::after {
  position: absolute;
  top: 66px;
  left: 18%;
  width: min(560px, 56vw);
  height: min(460px, 48vw);
  border-radius: 61% 39% 46% 54%;
  background: rgba(255, 255, 255, 0.72);
  content: "";
}

.home-page .final-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 112px 0 0;
}

.home-page .final-cta-inner h2 {
  color: #363643;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.15;
}

.home-page .final-cta-inner p {
  max-width: 620px;
  margin-top: 10px;
  color: #363643;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 300;
  line-height: 1.35;
}

.home-page .final-cta-inner .button {
  margin-top: 28px;
}

.home-page .package-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
}

.home-page .package-links a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.home-page .final-cta-inner img {
  width: min(1024px, 100%);
  margin-top: 46px;
  border-radius: 5px 5px 0 0;
  background: #fff;
  box-shadow: 0 2px 15px rgba(112, 112, 140, 0.25);
}

.home-page .site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(130px, 0.55fr) minmax(130px, 0.55fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  width: min(1280px, calc(100% - 48px));
  min-height: auto;
  margin: 0 auto;
  padding: 76px 0;
  border-top: 0;
  background: #fafafa;
  color: #363643;
  text-align: left;
  scroll-margin-top: 88px;
}

.home-page .footer-brand {
  display: grid;
  justify-items: start;
  gap: 22px;
}

.home-page .footer-brand .brand img,
.home-page .footer-brand .brand-mark {
  width: 34px;
  height: 34px;
}

.home-page .footer-brand p {
  max-width: 500px;
  color: #363643;
  font-size: 16px;
  line-height: 1.55;
}

.home-page .footer-brand nav,
.home-page .site-footer nav,
.home-page .footer-feedback {
  display: grid;
  gap: 16px;
}

.home-page .footer-brand nav {
  display: flex;
  gap: 22px;
}

.home-page .site-footer h2 {
  margin: 0;
  color: #363643;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.home-page .site-footer a {
  color: #363643;
  font-size: 16px;
  font-weight: 300;
}

.home-page .feedback-form.compact {
  display: grid;
  gap: 10px;
  width: 100%;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .feedback-form.compact label {
  display: grid;
  gap: 5px;
  color: #363643;
  font-size: 13px;
  font-weight: 600;
}

.home-page .feedback-form.compact input,
.home-page .feedback-form.compact select,
.home-page .feedback-form.compact textarea {
  width: 100%;
  border: 1px solid #ededfa;
  border-radius: 5px;
  padding: 10px 11px;
  background: #fff;
  color: #1e1e26;
  font: inherit;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.25;
}

.home-page .feedback-form.compact input::placeholder,
.home-page .feedback-form.compact textarea::placeholder {
  color: #70708c;
}

.home-page .feedback-form.compact textarea {
  min-height: 78px;
  resize: vertical;
}

.home-page .feedback-form.compact .button {
  justify-self: start;
  min-height: 40px;
  padding: 0 18px;
  font-size: 14px;
}

.home-page #feedback-status {
  color: #70708c;
  font-size: 13px;
  font-weight: 400;
}

@media (hover: hover) {
  .home-page .button-primary:hover,
  .home-page .header-cta:hover {
    background: #e24168;
    box-shadow: 0 2px 15px rgba(112, 112, 140, 0.25);
    transform: translateY(-1px);
  }

  .home-page .nav a:hover,
  .home-page .site-footer a:hover,
  .home-page .package-links a:hover,
  .home-page .text-link:hover {
    color: var(--accent);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page *,
  .home-page *::before,
  .home-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1020px) {
  .home-page .site-header {
    grid-template-columns: auto auto;
    padding: 0 24px;
  }

  .home-page .nav {
    display: none;
  }

  .home-page .feature-split,
  .home-page .feature-split.reverse {
    flex-direction: column-reverse;
    gap: 34px;
    min-height: auto;
    padding: 72px 0;
    text-align: center;
  }

  .home-page .feature-copy {
    justify-content: center;
    justify-items: center;
    text-align: center;
  }

  .home-page .feature-image-tall img,
  .home-page .feature-image-card img {
    max-width: min(560px, 100%);
  }

  .home-page .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  body.home-page {
    font-size: 18px;
  }

  .home-page .section {
    width: min(100% - 28px, 1180px);
    max-width: calc(100% - 28px);
  }

  .home-page .site-header {
    min-height: 64px;
    padding: 0 14px;
  }

  .home-page .brand span {
    font-size: 17px;
  }

  .home-page .header-actions .header-cta {
    display: none;
  }

  .home-page .header-actions .lang-switch {
    display: inline-flex;
  }

  .home-page .hero {
    padding: 56px 0 28px;
  }

  .home-page .hero h1 {
    max-width: 350px;
    font-size: clamp(38px, 11.4vw, 48px);
    line-height: 1.08;
  }

  .home-page .hero-copy > p {
    max-width: 335px;
    font-size: 16px;
    line-height: 1.5;
  }

  .home-page .hero-actions,
  .home-page .actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .home-page .hero-actions .button,
  .home-page .actions .button {
    width: 100%;
    max-width: 300px;
  }

  .home-page .product-preview::before {
    top: 22%;
    left: -34%;
    width: 220px;
    height: 220px;
  }

  .home-page .product-preview::after {
    display: none;
  }

  .home-page .trust-band {
    display: block;
    min-height: auto;
    padding: 70px 0 44px;
  }

  .home-page .trust-band h2 {
    width: 100%;
    min-width: 0;
    max-width: 292px;
    margin: 0 auto;
    font-size: clamp(23px, 6vw, 26px);
    line-height: 1.24;
    text-align: center;
    text-wrap: wrap;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .home-page .product-preview {
    overflow: hidden;
  }

  .home-page .preview-frame {
    width: 100%;
  }

  .home-page .walkthrough-video {
    object-fit: contain;
  }

  .home-page .feature-split,
  .home-page .feature-split.reverse {
    padding: 58px 0;
  }

  .home-page .feature-copy h2 {
    font-size: 28px;
  }

  .home-page .feature-copy p {
    font-size: 16px;
  }

  .home-page .final-install-cta {
    margin-top: 72px;
  }

  .home-page .final-cta-inner {
    padding-top: 76px;
  }

  .home-page .final-cta-inner h2 {
    font-size: 34px;
  }

  .home-page .final-cta-inner p {
    font-size: 16px;
  }

  .home-page .package-links {
    gap: 12px;
    font-size: 14px;
  }

  .home-page .site-footer {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 1180px);
    gap: 34px;
    padding: 56px 0;
    text-align: left;
  }

  .home-page .feedback-form.compact .button {
    width: 100%;
  }
}

/* 2026-06-20 demo discoverability and rose color alignment */
body.demo-modal-open {
  overflow: hidden;
}

.home-page {
  --green: #f65077;
  --blue: #f65077;
  --blue-dark: #d9345f;
  --blue-soft: #fff1f2;
  --cyan: #d9345f;
  --cyan-soft: #fff1f2;
}

.home-page .store-badge,
.home-page .store-badge.edge {
  border-color: rgba(246, 80, 119, 0.18);
  background: rgba(255, 241, 242, 0.92);
  color: var(--accent-dark);
}

.home-page .chrome-dot,
.home-page .download-badge {
  background: var(--accent);
  box-shadow: 0 16px 38px rgba(246, 80, 119, 0.28);
}

.home-page .preview-card span,
.home-page .preview-sidebar b,
.home-page .preview-toolbar em {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.home-page .preview-demo-heading {
  display: grid;
  justify-items: center;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto 22px;
  text-align: center;
}

.home-page .preview-demo-heading .eyebrow {
  margin: 0;
}

.home-page .preview-demo-heading h2 {
  max-width: 680px;
  color: var(--ink);
  font-size: clamp(30px, 4.6vw, 54px);
  font-weight: 300;
  line-height: 1.06;
  text-wrap: balance;
}

.home-page .preview-demo-heading p {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.55;
}

.home-page .preview-frame {
  position: relative;
  isolation: isolate;
  border-color: var(--line);
  box-shadow: 0 2px 15px rgba(112, 112, 140, 0.22), 0 18px 60px rgba(246, 80, 119, 0.10);
}

.home-page .preview-frame::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(30, 30, 38, 0) 58%, rgba(30, 30, 38, 0.18) 100%),
    linear-gradient(135deg, rgba(246, 80, 119, 0.10), rgba(217, 52, 95, 0));
  content: "";
  pointer-events: none;
}

.home-page .demo-play-button {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 5px;
  padding: 0 18px;
  background: rgba(246, 80, 119, 0.96);
  color: #fff;
  box-shadow: 0 16px 42px rgba(217, 52, 95, 0.35);
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.home-page .demo-play-icon {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid currentColor;
  transform: translateX(1px);
}

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 24px;
}

.demo-modal.is-open {
  display: grid;
}

.demo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 30, 38, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.demo-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-height: calc(100dvh - 48px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 30px 100px rgba(30, 30, 38, 0.32);
}

.demo-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.demo-modal-header h2 {
  color: var(--ink);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  line-height: 1.15;
}

.demo-modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 26px;
  line-height: 1;
}

.demo-modal-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
}

@media (hover: hover) {
  .home-page .demo-play-button:hover {
    background: var(--accent-dark);
    box-shadow: 0 18px 48px rgba(217, 52, 95, 0.42);
    transform: translateY(-1px);
  }

}

@media (max-width: 760px) {
  .home-page .preview-demo-heading {
    margin-bottom: 16px;
    gap: 10px;
  }

  .home-page .preview-demo-heading h2 {
    max-width: 330px;
    font-size: clamp(26px, 7.2vw, 32px);
    line-height: 1.14;
  }

  .home-page .preview-demo-heading p {
    max-width: 330px;
    font-size: 15px;
  }

  .home-page .demo-play-button {
    right: 10px;
    bottom: 10px;
    min-height: 40px;
    max-width: calc(100% - 20px);
    padding: 0 12px;
    font-size: 13px;
  }

  .home-page .demo-play-icon {
    border-top-width: 6px;
    border-bottom-width: 6px;
    border-left-width: 9px;
  }

  .demo-modal {
    padding: 10px;
  }

  .demo-modal-panel {
    max-height: calc(100dvh - 20px);
    padding: 10px;
  }
}
