:root {
  --bg-0: #0f0816;
  --bg-1: #160b24;
  --bg-2: #221038;
  --bg-3: #2f1446;
  --panel: rgba(28, 20, 42, 0.9);
  --panel-strong: rgba(40, 30, 56, 0.96);
  --panel-soft: rgba(52, 40, 72, 0.84);
  --border: rgba(255, 236, 210, 0.12);
  --border-strong: rgba(216, 176, 114, 0.28);
  --text: #f7f1ff;
  --muted: rgba(247, 241, 255, 0.78);
  --muted-2: rgba(247, 241, 255, 0.58);
  --accent: #d492d8;
  --accent-2: #8f6dff;
  --accent-warm: #d3b06b;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
  background:
    linear-gradient(180deg, #100816 0%, #170b26 38%, #120816 100%);
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), transparent 24%, transparent 76%, rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(236, 171, 121, 0.08), transparent 16%, transparent 84%, rgba(160, 111, 255, 0.08));
  opacity: 0.6;
}

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

figure {
  margin: 0;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
summary {
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 50;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  color: #140b1d;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(16, 8, 22, 0.88), rgba(16, 8, 22, 0.56));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}

.error-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.error-header .language-switcher {
  margin-left: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(210, 146, 216, 0.42), rgba(143, 109, 255, 0.22)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
}

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

.brand-copy {
  min-width: 0;
}

.brand-copy strong,
.brand-copy span {
  display: block;
}

.brand-copy strong {
  font-size: 0.98rem;
  line-height: 1.2;
}

.brand-copy span {
  color: var(--muted-2);
  font-size: 0.8rem;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.site-nav a,
.footer-nav a {
  text-decoration: none;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.site-nav a:hover,
.footer-nav a:hover {
  color: var(--text);
}

.language-switcher {
  position: relative;
  flex: 0 0 auto;
}

.language-switcher summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 800;
  list-style: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

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

.language-switcher summary::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.72;
  transition: transform 0.2s ease;
}

.language-switcher[open] summary {
  border-color: rgba(216, 176, 114, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.language-switcher[open] summary::after {
  transform: translateY(1px) rotate(225deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: max-content;
  min-width: 100%;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(28, 20, 42, 0.98);
  box-shadow: var(--shadow);
}

.language-menu a {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 0 10px;
  border-radius: 6px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.language-menu a:hover,
.language-menu a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.button-primary {
  background:
    linear-gradient(135deg, rgba(212, 146, 216, 0.96), rgba(143, 109, 255, 0.94));
  color: #fff;
  box-shadow: 0 16px 34px rgba(117, 78, 220, 0.26);
}

.button-primary:hover {
  box-shadow: 0 20px 38px rgba(117, 78, 220, 0.34);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

.button-secondary:hover {
  border-color: rgba(216, 176, 114, 0.3);
  background: rgba(255, 255, 255, 0.07);
}

.button-header,
.button-footer {
  white-space: nowrap;
}

.button-label-short {
  display: none;
}

.section {
  padding: clamp(56px, 7vw, 98px) 0 0;
}

.hero {
  padding-top: clamp(32px, 5vw, 72px);
}

.hero-grid,
.problem-grid,
.how-grid {
  display: grid;
  gap: clamp(24px, 4vw, 44px);
}

.hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
}

.contact-stack {
  display: grid;
  gap: 16px;
  align-self: start;
}

.legal-intro {
  max-width: 78ch;
}

.legal-meta {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-meta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.legal-doc {
  display: grid;
  gap: 34px;
  max-width: 78ch;
  margin-inline: auto;
  margin-top: clamp(28px, 4vw, 44px);
}

.legal-section {
  display: grid;
  gap: 14px;
}

.legal-section h2 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.2;
}

.legal-section#storage h2 {
  margin-bottom: 2px;
}

.legal-section h3 {
  margin: 10px 0 0;
  font-size: 1.05rem;
  line-height: 1.35;
}

.legal-section#storage h2 + p {
  margin-top: 18px;
}

.legal-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.legal-callout {
  display: grid;
  gap: 10px;
  padding: 14px 16px;
  border-left: 3px solid rgba(143, 109, 255, 0.72);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.legal-callout--alert {
  border-left-color: rgba(255, 107, 107, 0.78);
}

.legal-spacer-top {
  margin-top: 18px;
}

.caps {
  margin: 0;
  color: var(--text);
  text-transform: uppercase;
  font-weight: 800;
}

.legal-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.75;
}

.legal-list li + li {
  margin-top: 8px;
}

.legal-table-wrap {
  overflow-x: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.legal-table th,
.legal-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  color: #f2d8a7;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.legal-table td {
  color: var(--text);
  line-height: 1.6;
}

.legal-table tr:last-child th,
.legal-table tr:last-child td {
  border-bottom: 0;
}

.legal-footer {
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  max-width: 78ch;
  margin-inline: auto;
}

.legal-footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}

.legal-links a {
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

.legal-links a::after {
  content: "↗";
  margin-left: 6px;
  color: var(--accent);
}

.support-stack {
  display: grid;
  gap: 16px;
  align-self: start;
}

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

.support-checklist {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.support-checklist li + li {
  margin-top: 8px;
}

.support-inline {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(216, 176, 114, 0.24);
  background: rgba(255, 255, 255, 0.05);
  color: #f2d8a7;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-tagline {
  margin: 14px 0 12px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.14rem);
  font-weight: 600;
}

.hero-title {
  margin: 0;
  font-size: clamp(3rem, 5.8vw, 6.15rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-line {
  display: block;
}

.highlight {
  position: relative;
  display: inline-block;
  z-index: 0;
  padding-inline: 0.04em;
}

.highlight::before {
  content: "";
  position: absolute;
  left: -0.08em;
  right: -0.06em;
  bottom: 0;
  height: 0.36em;
  background: rgba(212, 146, 216, 0.7);
  border-radius: 0.08em;
  z-index: -1;
  transform: skewX(-8deg);
}

.hero-subtitle,
.section-text,
.section-copy p,
.trust-copy,
.compare-copy,
.compare-bullets,
.memory-body,
.sample-note-body,
.usecase-card p,
.feature-card p,
.step-card p,
.faq-item p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-subtitle {
  margin: 18px 0 0;
  max-width: 58ch;
  font-size: clamp(1rem, 1.6vw, 1.16rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-helper {
  margin: 18px 0 0;
  max-width: 54ch;
  color: var(--muted-2);
  font-size: 0.95rem;
}

.flow-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.flow-pill,
.sample-tag,
.memory-tag {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 720px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 7% 8% 6% 12%;
  border-radius: 999px;
  border: 1px solid rgba(216, 176, 114, 0.2);
  transform: rotate(-20deg);
  pointer-events: none;
}

.visual-card,
.workflow-shot,
.sample-note,
.step-card,
.usecase-card,
.feature-card,
.compare-card,
.trust-card,
.faq-item,
.finder-shell,
.final-band {
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.visual-card {
  position: absolute;
  overflow: hidden;
  border-radius: 30px;
}

.visual-card img,
.workflow-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-card-a {
  left: 0;
  top: 7%;
  width: 48%;
  transform: rotate(-5deg);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.45);
}

.visual-card-b {
  right: 2%;
  top: 0;
  width: 42%;
  transform: rotate(4deg);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42);
}

.visual-card-c {
  left: 22%;
  bottom: 2%;
  width: 52%;
  transform: rotate(7deg);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.42);
}

.visual-note {
  position: absolute;
  left: 8%;
  bottom: 9%;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(39, 30, 52, 0.9);
  border: 1px solid rgba(216, 176, 114, 0.24);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.section-header {
  margin-bottom: 26px;
}

.section-title {
  margin: 12px 0 0;
  font-size: clamp(2rem, 3.8vw, 3.75rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-text {
  margin: 14px 0 0;
  max-width: 66ch;
  font-size: 1rem;
}

.problem-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: start;
}

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

.pain-list li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
  line-height: 1.65;
}

.pain-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-warm);
  font-size: 1.2rem;
  line-height: 1;
}

.transition-line {
  margin: 22px 0 0;
  color: #f6e8ff;
  font-weight: 800;
}

.sample-note {
  padding: 18px 18px 16px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(47, 38, 68, 0.98), rgba(37, 29, 55, 0.98));
}

.sample-note-large {
  margin-top: 8px;
}

.sample-note-top,
.memory-top,
.sample-note-footer,
.memory-footer,
.compare-card,
.trust-card {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.sample-note-top,
.memory-top {
  align-items: flex-start;
}

.sample-note-date,
.memory-date,
.memory-menu {
  margin: 0;
  color: var(--muted-2);
  font-size: 0.82rem;
}

.sample-note-title,
.memory-title {
  margin: 14px 0 0;
  color: var(--text);
  font-size: 1.28rem;
  line-height: 1.25;
}

.sample-note-body {
  margin: 10px 0 0;
  font-size: 1rem;
}

.sample-note-footer {
  align-items: center;
  margin-top: 22px;
}

.sample-go,
.memory-go {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(143, 109, 255, 0.96), rgba(93, 68, 175, 0.96));
  color: #fff;
  font-size: 1.25rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.section-how {
  padding-top: 68px;
}

.how-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: start;
}

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

.step-card,
.usecase-card,
.feature-card,
.compare-card,
.trust-card,
.faq-item {
  border-radius: 24px;
}

.step-card {
  padding: 22px;
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(216, 176, 114, 0.16);
  color: #f7d99b;
  font-weight: 800;
}

.step-card h3,
.usecase-card h3,
.feature-card h3,
.compare-card h3,
.trust-card h3 {
  margin: 16px 0 0;
  font-size: 1.08rem;
  line-height: 1.3;
}

.step-card p,
.usecase-card p,
.feature-card p,
.trust-copy {
  margin: 10px 0 0;
}

.workflow-visual {
  position: relative;
  min-height: 720px;
  display: grid;
  gap: 14px;
  align-content: start;
}

.workflow-track {
  position: relative;
  min-height: 640px;
}

.workflow-shot {
  position: absolute;
  overflow: hidden;
  border-radius: 30px;
}

.workflow-shot-top {
  left: 0;
  top: 0;
  width: 62%;
  transform: rotate(-1deg);
}

.workflow-shot-bottom {
  right: 0;
  bottom: 18%;
  width: 48%;
  transform: rotate(2deg);
}

.workflow-caption {
  position: relative;
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(39, 30, 52, 0.88);
  border: 1px solid rgba(216, 176, 114, 0.18);
  color: var(--text);
  font-weight: 700;
}

.watch-visual {
  position: relative;
  min-height: 720px;
  display: grid;
  gap: 14px;
  align-content: start;
}

.watch-track {
  position: relative;
  min-height: 640px;
}

.watch-card,
.phone-card {
  position: absolute;
  overflow: hidden;
  border-radius: 30px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.watch-card img,
.phone-card img {
  display: block;
  width: 100%;
  height: auto;
}

.watch-card {
  left: 0;
  top: 6%;
  width: 48%;
  transform: rotate(-4deg);
}

.phone-card {
  right: 2%;
  bottom: 0;
  width: 50%;
  transform: rotate(5deg);
}

.watch-note {
  position: relative;
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(39, 30, 52, 0.88);
  border: 1px solid rgba(216, 176, 114, 0.18);
  color: var(--text);
  font-weight: 700;
}

.summary-hero-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-self: start;
}

.summary-hero-card {
  min-height: 100%;
}

.summary-hero-summary {
  margin-top: 34px;
}

.summary-bullets {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.65;
}

.summary-bullets li + li {
  margin-top: 8px;
}

.summary-mini-card {
  min-height: 180px;
}

.related-feature-card .button {
  margin-top: 18px;
  width: fit-content;
}

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

.comparison-table-wrap {
  overflow-x: auto;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.comparison-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  color: #f2d8a7;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.comparison-table td {
  color: var(--text);
  line-height: 1.6;
}

.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-note {
  margin: 14px 0 0;
  color: var(--muted);
}

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

.related-card {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.related-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.3;
}

.related-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.related-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-weight: 800;
}

.related-card span::after {
  content: "↗";
  color: var(--accent);
}

.section-use-cases,
.section-features,
.section-find,
.section-compare,
.section-trust,
.section-faq,
.final-cta {
  padding-top: 72px;
}

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

.usecase-card,
.feature-card,
.trust-card,
.compare-card,
.faq-item {
  padding: 22px;
}

.usecase-card a,
.feature-links a,
.footer-nav a {
  color: var(--text);
}

.usecase-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-weight: 800;
  text-decoration: none;
}

.usecase-card a::after,
.feature-links a::after {
  content: "↗";
  font-size: 1rem;
}

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

.feature-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.feature-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  font-weight: 700;
}

.saved-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 0;
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
}

.saved-shield {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: #e1b8ff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(216, 176, 114, 0.22);
}

.finder-shell {
  padding: 22px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(33, 24, 46, 0.98), rgba(24, 17, 36, 0.98));
}

.finder-toolbar {
  display: grid;
  gap: 14px;
}

.finder-search {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 10px 12px 10px 14px;
  border-radius: 999px;
  background: rgba(243, 214, 170, 0.18);
  border: 1px solid rgba(216, 176, 114, 0.46);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.finder-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.78);
}

.finder-icon svg {
  width: 100%;
  height: 100%;
}

.finder-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-weight: 800;
}

.finder-search input::placeholder {
  color: rgba(255, 255, 255, 0.9);
}

.finder-clear {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.finder-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.finder-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.finder-chip.is-active {
  background: linear-gradient(135deg, rgba(82, 72, 146, 0.98), rgba(66, 53, 112, 0.98));
  color: #fff;
  border-color: rgba(143, 109, 255, 0.34);
}

.finder-count {
  display: inline-grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: inherit;
  font-size: 0.84rem;
  font-weight: 800;
}

.memory-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.memory-card {
  padding: 18px 18px 16px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(48, 42, 66, 0.98), rgba(36, 31, 52, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.memory-card[hidden] {
  display: none;
}

.memory-title {
  margin-top: 10px;
  font-size: 1.08rem;
}

.memory-body {
  margin: 8px 0 0;
}

.memory-footer {
  align-items: center;
  margin-top: 18px;
}

.memory-tag {
  min-height: 34px;
  font-size: 0.84rem;
}

.memory-go {
  width: 46px;
  height: 46px;
  font-size: 1.1rem;
}

.memory-empty {
  margin: 14px 0 0;
  color: var(--muted-2);
}

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

.compare-card {
  flex-direction: column;
  justify-content: flex-start;
}

.trust-card {
  flex-direction: column;
  justify-content: flex-start;
}

.compare-label {
  margin: 0;
  color: #f1d29b;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.compare-label-after {
  color: #caaaff;
}

.compare-copy,
.compare-bullets {
  margin: 14px 0 0;
}

.compare-bullets {
  padding-left: 18px;
}

.trust-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

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

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  font-weight: 800;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--accent-warm);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
}

.faq-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faq-nav a {
  text-decoration: none;
}

section[id] {
  scroll-margin-top: 96px;
}

.final-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(47, 35, 74, 0.98), rgba(28, 21, 44, 0.98));
}

.final-copy {
  max-width: 62ch;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  padding: 72px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
  display: grid;
  gap: 18px;
}

.footer-brand-link {
  width: fit-content;
}

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

.footer-title {
  margin: 0 0 12px;
  color: #f3d7a0;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-nav a {
  display: block;
  width: fit-content;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 600;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

html.js [data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

mark {
  padding: 0 0.14em;
  border-radius: 0.18em;
  background: rgba(212, 146, 216, 0.62);
  color: #fff;
}

@media (max-width: 1100px) {
  .hero-grid,
  .problem-grid,
  .how-grid,
  .compare-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    display: none;
  }

  .hero-visual,
  .workflow-visual {
    min-height: 0;
  }

  .hero-visual {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .visual-card {
    position: relative;
    width: auto;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
  }

  .visual-note {
    position: relative;
    left: auto;
    bottom: auto;
    align-self: end;
    grid-column: 1 / -1;
  }

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

  .workflow-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 72%;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
    padding-bottom: 8px;
  }

  .workflow-caption {
    grid-column: 1 / -1;
  }

  .usecase-grid,
  .feature-grid,
  .support-help-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .summary-hero-summary {
    margin-top: 0;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .header-inner {
    padding: 12px 0;
  }

  .brand-copy span,
  .button-label-full {
    display: none;
  }

  .button-label-short {
    display: inline;
  }

  .language-switcher {
    margin-left: auto;
  }

  .language-switcher[open]::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 30;
    background: rgba(12, 6, 18, 0.72);
  }

  .language-switcher summary {
    position: relative;
    z-index: 32;
    min-width: 48px;
    min-height: 40px;
    padding: 0 12px;
  }

  .language-menu {
    position: fixed;
    top: 33vh;
    right: auto;
    left: 50%;
    z-index: 31;
    width: min(calc(100vw - 32px), 320px);
    min-width: 0;
    padding: 10px;
    transform: translate(-50%, -33%);
  }

  .language-menu a {
    min-height: 46px;
    padding: 0 14px;
    font-size: 1rem;
  }

  .button-header {
    display: inline-flex;
    min-height: 44px;
    padding: 0 14px;
    font-size: 0.88rem;
  }

  .hero-title {
    font-size: clamp(2.6rem, 15vw, 4.2rem);
  }

  .step-grid,
  .usecase-grid,
  .feature-grid,
  .support-help-grid,
  .benefit-grid,
  .related-grid,
  .compare-grid,
  .trust-grid,
  .footer-nav {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .problem-grid,
  .how-grid {
    gap: 18px;
  }

  .summary-hero-visual {
    gap: 12px;
  }

  .hero-visual,
  .workflow-track {
    grid-template-columns: 72% 72% 72%;
    gap: 12px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .watch-visual {
    min-height: 0;
  }

  .workflow-visual {
    gap: 12px;
  }

  .summary-mini-card {
    min-height: 0;
  }

  .workflow-track {
    min-height: 0;
  }

  .workflow-shot {
    position: relative;
    width: auto;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
  }

  .watch-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 72%;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
    min-height: 0;
    padding-bottom: 8px;
  }

  .watch-card,
  .phone-card {
    position: relative;
    width: auto;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    transform: none;
  }

  .hero-visual::-webkit-scrollbar,
  .workflow-track::-webkit-scrollbar {
    display: none;
  }

  .watch-track::-webkit-scrollbar,
  .comparison-table-wrap::-webkit-scrollbar {
    display: none;
  }

  .visual-card,
  .workflow-shot {
    scroll-snap-align: start;
    border-radius: 24px;
  }

  .watch-card,
  .phone-card {
    scroll-snap-align: start;
    border-radius: 24px;
  }

  .visual-note,
  .workflow-caption,
  .watch-note {
    font-size: 0.92rem;
  }

  .final-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

  .final-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .button,
  .finder-chip,
  .feature-links a,
  .usecase-card a,
  .faq-item summary,
  .sample-go,
  .memory-go {
    min-height: 44px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
