:root {
  color-scheme: light;
  --bg: #f7f5fb;
  --surface: #ffffff;
  --text: #111021;
  --muted: #686777;
  --line: rgba(30, 24, 52, 0.11);
  --accent: #6f35ff;
  --accent-dark: #4b18dc;
  --ink: #17132d;
  --sky: #dfe9ff;
  --purple-soft: #eee8ff;
  --shadow: 0 30px 80px rgba(54, 38, 94, 0.13);
}

* { box-sizing: border-box; }

html { overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.wide { width: min(calc(100% - 48px), 1180px); margin-inline: auto; }
.shell { width: min(calc(100% - 40px), 760px); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 245, 251, 0.82);
  backdrop-filter: blur(18px);
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.site-header.is-scrolled { border-color: rgba(30,24,52,0.07); background: rgba(247,245,251,0.94); box-shadow: 0 10px 35px rgba(35,26,65,0.08); }

.nav-wrap { min-height: 78px; display: flex; align-items: center; gap: 34px; }
.brand { min-height: 44px; display: inline-flex; align-items: center; gap: 11px; font-size: 19px; font-weight: 850; letter-spacing: -0.025em; }
.brand img, .footer-brand img { border-radius: 11px; box-shadow: 0 10px 24px rgba(111, 53, 255, 0.23); }
.nav-links { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav-links a { min-height: 44px; position: relative; display: inline-flex; align-items: center; color: var(--muted); font-size: 14px; font-weight: 700; transition: color 180ms ease; }
.nav-links a::after { content: ""; position: absolute; right: 0; bottom: -9px; left: 0; height: 2px; border-radius: 999px; background: var(--accent); transform: scaleX(0); transform-origin: center; transition: transform 180ms ease; }
.nav-links a:hover, .nav-links a.is-active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.is-active::after { transform: scaleX(1); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(111, 53, 255, 0.22);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}
.button:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 17px 34px rgba(111,53,255,0.28); }
.button:active { transform: translateY(0) scale(0.98); }
.button:focus-visible, .app-store-link:focus-visible, .text-link:focus-visible, .nav-links a:focus-visible, summary:focus-visible { outline: 3px solid rgba(111,53,255,0.34); outline-offset: 4px; }
.button-small { min-height: 44px; padding: 0 18px; font-size: 14px; }
.button-label-compact { display: none; }

.hero-grid {
  min-height: 740px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.98fr);
  align-items: center;
  gap: 56px;
  padding-block: 56px 72px;
}

.hero-copy { position: relative; z-index: 3; }
.eyebrow, .updated {
  margin: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1, h2, h3, p { overflow-wrap: break-word; }
h1 {
  margin: 18px 0 0;
  max-width: 720px;
  font-size: clamp(54px, 6.5vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.062em;
}
h1 span { color: var(--accent); }
.hero-copy h1 { font-size: clamp(54px, 5.6vw, 82px); }
.lead { max-width: 650px; margin: 28px 0 0; color: var(--muted); font-size: clamp(18px, 2vw, 21px); line-height: 1.58; }

.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 34px; }
.app-store-link { display: inline-flex; flex: 0 0 auto; border-radius: 10px; }
.app-store-badge { width: 180px; height: auto; }
.text-link { min-height: 44px; display: inline-flex; align-items: center; gap: 6px; color: var(--accent); font-size: 15px; font-weight: 800; }
.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(4px); }
.proof-row { display: flex; flex-wrap: wrap; gap: 11px 24px; margin: 32px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: 13px; font-weight: 700; }
.proof-row li::before { content: "✓"; margin-right: 7px; color: var(--accent); font-weight: 900; }

.hero-visual { min-height: 650px; position: relative; display: grid; place-items: center; isolation: isolate; }
.hero-phone { position: relative; z-index: 2; width: min(325px, 68%); border-radius: 31px; filter: drop-shadow(0 38px 46px rgba(30,20,69,0.22)); will-change: transform; animation: hero-float 7s ease-in-out infinite; }
.glow { position: absolute; border-radius: 999px; filter: blur(2px); }
.glow-one { inset: 6% 2% 6% 6%; background: linear-gradient(145deg, #d9ceff, #b7c9ff 60%, #fff); transform: rotate(-9deg); }
.glow-two { width: 250px; height: 250px; right: -9%; bottom: -2%; background: rgba(111, 53, 255, 0.13); filter: blur(35px); }
.floating-card { position: absolute; z-index: 4; width: 190px; border: 1px solid rgba(255,255,255,0.7); border-radius: 18px; background: rgba(255,255,255,0.88); padding: 15px 17px; box-shadow: 0 18px 50px rgba(29,22,60,0.16); backdrop-filter: blur(16px); will-change: transform; }
.floating-card strong, .floating-card span { display: block; }
.floating-card strong { font-size: 14px; }
.floating-card span { margin-top: 4px; color: var(--muted); font-size: 11px; line-height: 1.4; }
.card-clean { top: 18%; left: -1%; animation: card-float 6.5s ease-in-out -1.8s infinite; }
.card-private { right: -2%; bottom: 19%; animation: card-float 7.3s ease-in-out -3.2s infinite reverse; }

.feature-strip { border-block: 1px solid var(--line); background: rgba(255,255,255,0.52); }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip-grid > div { min-height: 145px; padding: 28px 24px; border-right: 1px solid var(--line); }
.strip-grid > div:first-child { border-left: 1px solid var(--line); }
.strip-grid span { display: block; color: var(--accent); font-size: 11px; font-weight: 850; letter-spacing: 0.12em; }
.strip-grid strong { display: block; margin-top: 12px; font-size: 18px; }
.strip-grid p { margin: 7px 0 0; color: var(--muted); font-size: 13px; line-height: 1.5; }

.credibility-bar { border-block: 1px solid var(--line); background: rgba(255,255,255,0.62); }
.credibility-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.credibility-grid > div { min-height: 112px; display: flex; flex-direction: column; justify-content: center; padding: 22px 25px; border-right: 1px solid var(--line); }
.credibility-grid > div:first-child { border-left: 1px solid var(--line); }
.credibility-grid strong { font-size: 16px; letter-spacing: -0.02em; }
.credibility-grid span, .credibility-grid a { margin-top: 7px; color: var(--muted); font-size: 12px; font-weight: 680; line-height: 1.4; }
.credibility-grid a:hover { color: var(--accent); }

.section { padding-block: 128px; }
.section-heading { max-width: 720px; }
.section-heading h2, .privacy-section h2, .cta-panel h2 { margin: 13px 0 0; font-size: clamp(40px, 5.5vw, 68px); line-height: 0.98; letter-spacing: -0.052em; }
.section-heading > p:last-child { max-width: 560px; margin: 20px 0 0; color: var(--muted); font-size: 18px; line-height: 1.55; }
.section-heading.compact { max-width: 780px; }

.workflow-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 54px; }
.workflow-card { min-height: 640px; position: relative; overflow: hidden; border: 1px solid rgba(30,24,52,0.05); border-radius: 34px; padding: 32px 30px 0; transition: transform 260ms ease, box-shadow 260ms ease; }
.workflow-card h3 { margin: 17px 0 0; font-size: 27px; line-height: 1.05; letter-spacing: -0.035em; }
.workflow-card p { margin: 13px 0 0; color: rgba(17, 16, 33, 0.66); font-size: 15px; line-height: 1.55; }
.workflow-card img { position: absolute; width: 73%; left: 50%; bottom: -44%; transform: translateX(-50%); border-radius: 28px; box-shadow: 0 22px 55px rgba(24,18,52,0.22); transition: transform 350ms cubic-bezier(.2,.75,.25,1), filter 350ms ease; }
.workflow-card:hover { transform: translateY(-6px); box-shadow: 0 28px 70px rgba(38,30,64,0.13); }
.workflow-card:hover img { transform: translate(-50%, -14px) scale(1.018); }
.card-purple { background: var(--purple-soft); }
.card-sky { background: var(--sky); }
.card-ink { background: var(--ink); color: #fff; }
.card-ink p { color: rgba(255,255,255,0.67); }
.step { display: inline-grid; place-items: center; width: 36px; height: 36px; border: 1px solid currentColor; border-radius: 999px; font-size: 11px; font-weight: 850; }

.feature-section { border-block: 1px solid var(--line); background: #fff; padding-block: 128px; }
.split-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr); gap: 80px; align-items: end; }
.split-heading h2 { max-width: 760px; margin: 13px 0 0; font-size: clamp(40px, 5.5vw, 68px); line-height: 0.98; letter-spacing: -0.052em; }
.split-heading > p { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.6; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; gap: 16px; margin-top: 58px; }
.feature-card { min-height: 300px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 25px; background: var(--bg); padding: 27px; transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
a.feature-card:hover { transform: translateY(-4px); border-color: rgba(111,53,255,0.25); box-shadow: var(--shadow); }
a.feature-card:active { transform: translateY(-1px) scale(0.992); }
.feature-card .feature-icon { transition: transform 220ms ease, background-color 220ms ease; }
a.feature-card:hover .feature-icon { transform: rotate(-5deg) scale(1.08); }
.feature-card-primary { background: var(--ink); color: #fff; }
.feature-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 14px; background: var(--purple-soft); color: var(--accent); font-size: 18px; font-weight: 900; }
.feature-card-primary .feature-icon { background: rgba(255,255,255,0.1); color: #c9b9ff; }
.feature-card h3 { margin: 37px 0 0; font-size: 21px; line-height: 1.12; letter-spacing: -0.03em; }
.feature-card p { margin: 11px 0 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.feature-card-primary p { color: rgba(255,255,255,0.68); }
.feature-card strong { margin-top: auto; padding-top: 24px; color: var(--accent); font-size: 13px; }
.feature-card-primary strong { color: #c9b9ff; }
.feature-footnote { margin: 22px 0 0; color: var(--muted); font-size: 12px; text-align: right; }

.dedicated-section { background: var(--purple-soft); padding-block: 112px; }
.dedicated-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr); gap: 96px; align-items: center; }
.dedicated-copy h2 { margin: 13px 0 0; font-size: clamp(39px, 5vw, 64px); line-height: 0.98; letter-spacing: -0.052em; }
.dedicated-copy > p:not(.eyebrow) { margin: 24px 0 28px; color: var(--muted); font-size: 18px; line-height: 1.65; }
.job-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.job-list > li { display: flex; justify-content: space-between; gap: 30px; border: 1px solid rgba(111,53,255,0.12); border-radius: 18px; background: rgba(255,255,255,0.72); padding: 22px 24px; }
.job-list span { color: var(--muted); font-size: 14px; font-weight: 750; }
.job-list strong { max-width: 330px; text-align: right; font-size: 15px; }
.job-list .job-list-highlight { border-color: transparent; background: var(--accent); color: #fff; box-shadow: 0 22px 48px rgba(111,53,255,0.23); }
.job-list-highlight span { color: rgba(255,255,255,0.72); }

.privacy-section { background: var(--ink); color: #fff; padding-block: 112px; }
.privacy-grid { display: grid; grid-template-columns: 1fr 0.86fr; gap: 110px; align-items: start; }
.eyebrow-light { color: #bda8ff; }
.privacy-copy > p { margin: 0; color: rgba(255,255,255,0.69); font-size: 20px; line-height: 1.6; }
.privacy-points { display: grid; gap: 12px; margin-top: 32px; }
.privacy-points span { padding: 14px 16px; border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; background: rgba(255,255,255,0.05); font-size: 14px; font-weight: 750; }
.privacy-points span::before { content: "✓"; margin-right: 10px; color: #bda8ff; }
.privacy-copy a { display: inline-block; margin-top: 30px; color: #c9b9ff; font-weight: 800; }

.use-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.use-grid article, .use-grid > a { min-height: 245px; border: 1px solid var(--line); border-radius: 24px; background: var(--surface); padding: 26px; box-shadow: 0 16px 50px rgba(38, 30, 64, 0.05); }
.use-grid > a { transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.use-grid > a:hover { transform: translateY(-4px); border-color: rgba(111,53,255,0.22); box-shadow: var(--shadow); }
.use-grid > a > span { transition: transform 200ms ease; }
.use-grid > a:hover > span { transform: rotate(-6deg) scale(1.08); }
.use-grid article > span, .use-grid > a > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: var(--purple-soft); color: var(--accent); font-size: 21px; font-weight: 800; }
.use-grid h3 { margin: 34px 0 0; font-size: 20px; letter-spacing: -0.025em; }
.use-grid p { margin: 10px 0 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.use-grid-six { grid-template-columns: repeat(3, 1fr); }

.reviews-section { border-block: 1px solid var(--line); background: #fff; padding-block: 120px; }
.reviews-grid { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr); gap: 90px; align-items: center; }
.reviews-intro h2 { margin: 13px 0 0; font-size: clamp(40px, 5vw, 64px); line-height: 0.99; letter-spacing: -0.052em; }
.reviews-intro > p:not(.eyebrow) { margin: 23px 0 0; color: var(--muted); font-size: 17px; line-height: 1.6; }
.review-button { min-height: 50px; margin-top: 30px; padding: 0 23px; font-size: 14px; }
.review-stack { display: grid; grid-auto-rows: 1fr; gap: 18px; }
.review-stack blockquote { margin: 0; border: 1px solid var(--line); border-radius: 26px; background: var(--bg); padding: 31px 33px; transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease; }
.review-stack blockquote:hover { transform: translateX(-5px); border-color: rgba(111,53,255,0.2); box-shadow: 0 18px 48px rgba(38,30,64,0.08); }
.stars { color: var(--accent); font-size: 17px; letter-spacing: 0.12em; }
.review-stack blockquote p { margin: 21px 0 0; font-size: clamp(24px, 3vw, 34px); font-weight: 780; line-height: 1.17; letter-spacing: -0.036em; }
.review-stack blockquote footer { margin-top: 24px; border: 0; background: transparent; color: var(--muted); font-size: 13px; font-weight: 700; }

.pricing-section { background: var(--ink); color: #fff; padding-block: 120px; }
.pricing-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(390px, 0.72fr); gap: 100px; align-items: center; }
.pricing-grid h2 { margin: 13px 0 0; font-size: clamp(42px, 5.5vw, 70px); line-height: 0.98; letter-spacing: -0.052em; }
.pricing-lead { max-width: 600px; margin: 24px 0 0; color: rgba(255,255,255,0.68); font-size: 18px; line-height: 1.65; }
.pricing-card { border: 1px solid rgba(255,255,255,0.13); border-radius: 28px; background: rgba(255,255,255,0.06); padding: 33px; }
.pricing-card-head { display: grid; }
.pricing-card-head > span { color: #c9b9ff; font-size: 12px; font-weight: 850; letter-spacing: 0.12em; text-transform: uppercase; }
.pricing-card-head > strong { margin-top: 13px; font-size: 42px; letter-spacing: -0.045em; }
.pricing-card-head small { font-size: 15px; font-weight: 680; letter-spacing: 0; }
.pricing-card-head em { width: max-content; margin-top: 12px; border-radius: 999px; background: #c9b9ff; color: var(--ink); padding: 7px 11px; font-size: 12px; font-style: normal; font-weight: 850; }
.pricing-card ul { display: grid; gap: 13px; margin: 28px 0 0; padding: 0; list-style: none; }
.pricing-card li { color: rgba(255,255,255,0.77); font-size: 14px; }
.pricing-card li::before { content: "✓"; margin-right: 10px; color: #c9b9ff; font-weight: 900; }
.pricing-button { width: 100%; min-height: 52px; margin-top: 29px; padding-inline: 20px; }
.pricing-card > p { margin: 18px 0 0; color: rgba(255,255,255,0.48); font-size: 11px; line-height: 1.55; }

.guides-section { border-block: 1px solid var(--line); background: #fff; padding-block: 120px; }
.guides-heading { max-width: 760px; }
.guides-topline { display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.guides-topline > .text-link { flex: 0 0 auto; margin-bottom: 8px; }
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.guide-card { min-height: 350px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 26px; background: var(--bg); padding: 30px; transition: transform 180ms ease, box-shadow 180ms ease; }
.guide-card:hover { transform: translateY(-5px); border-color: rgba(111,53,255,0.22); box-shadow: var(--shadow); }
.guide-card:active { transform: translateY(-1px) scale(0.994); }
.guide-tag { color: var(--accent); font-size: 11px; font-weight: 850; letter-spacing: 0.1em; }
.guide-card h3 { margin: 24px 0 0; font-size: 25px; line-height: 1.12; letter-spacing: -0.035em; }
.guide-card p { margin: 15px 0 0; color: var(--muted); font-size: 15px; line-height: 1.6; }
.guide-card strong { margin-top: auto; padding-top: 30px; color: var(--accent); font-size: 14px; }
.guide-grid-six .guide-card { min-height: 330px; }

.faq-section { display: grid; grid-template-columns: minmax(280px, 0.64fr) minmax(0, 1fr); gap: 100px; padding-block: 128px; }
.faq-heading { position: sticky; top: 40px; align-self: start; }
.faq-heading h2 { margin: 13px 0 0; font-size: clamp(42px, 5vw, 64px); line-height: 0.98; letter-spacing: -0.052em; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); transition: background-color 200ms ease; }
.faq-list details[open] { background: rgba(255,255,255,0.52); }
.faq-list summary { position: relative; cursor: pointer; list-style: none; padding: 25px 50px 25px 0; font-size: 19px; font-weight: 790; letter-spacing: -0.02em; transition: color 180ms ease, padding-left 180ms ease; }
.faq-list summary:hover { color: var(--accent); padding-left: 8px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 3px; top: 21px; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 999px; background: var(--purple-soft); color: var(--accent); font-size: 20px; transition: transform 220ms ease, background-color 220ms ease, color 220ms ease; }
.faq-list details[open] summary::after { content: "−"; transform: rotate(180deg); background: var(--accent); color: #fff; }
.faq-list details p { margin: -5px 50px 25px 0; color: var(--muted); font-size: 15px; line-height: 1.7; transform-origin: top; animation: answer-in 220ms ease both; }

.cta-section { padding-block: 96px; }
.cta-panel { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 60px; border-radius: 36px; background: linear-gradient(135deg, #6f35ff, #4b18dc); color: #fff; padding: 62px 68px; box-shadow: 0 30px 80px rgba(81,37,209,0.25); }
.cta-panel::after { content: ""; position: absolute; width: 290px; height: 290px; right: -150px; top: -180px; border-radius: 999px; background: rgba(255,255,255,0.18); filter: blur(2px); transition: transform 500ms ease; }
.cta-panel:hover::after { transform: translate(-22px, 24px) scale(1.1); }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { max-width: 700px; font-size: clamp(38px, 4.5vw, 59px); }
.cta-panel > div > p:not(.eyebrow) { margin: 16px 0 0; color: rgba(255,255,255,0.7); font-size: 16px; }
.cta-download { display: flex; align-items: center; gap: 22px; }
.download-qr { width: 112px; height: 112px; border-radius: 16px; background: #fff; padding: 8px; }
.cta-copy-mobile { display: none; }

footer { border-top: 1px solid var(--line); background: #efecf4; }
.footer-main { display: grid; grid-template-columns: 1.6fr repeat(3, 0.72fr); gap: 52px; padding-block: 55px 42px; }
.footer-brand { display: flex; align-items: center; gap: 13px; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand span { margin-top: 3px; color: var(--muted); font-size: 12px; }
.footer-main > div:not(.footer-brand) { display: grid; align-content: start; gap: 12px; }
.footer-main > div:not(.footer-brand) strong { margin-bottom: 5px; font-size: 13px; }
.footer-main > div:not(.footer-brand) a { color: var(--muted); font-size: 13px; font-weight: 700; }
.footer-main a:hover { color: var(--accent); }
.footer-bottom { min-height: 72px; display: flex; justify-content: space-between; gap: 40px; border-top: 1px solid var(--line); padding-block: 23px; }
.footer-bottom p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.footer-bottom p:last-child { max-width: 630px; text-align: right; }

/* Legal, support, and guide documents */
.document { padding: 32px 0 90px; }
.back { display: inline-flex; align-items: center; gap: 10px; color: var(--text); font-size: 15px; font-weight: 850; }
.back::before { content: "←"; color: var(--accent); }
.document h1 { margin: 72px 0 0; font-size: clamp(44px, 8vw, 72px); line-height: 0.98; letter-spacing: -0.052em; }
.document .updated { margin-top: 18px; color: var(--muted); }
.document h2 { margin: 42px 0 10px; font-size: 22px; letter-spacing: -0.025em; }
.document p, .document li { color: var(--muted); font-size: 16px; line-height: 1.72; }
.document p { margin: 0; }
.document p + p { margin-top: 16px; }
.document ul, .document ol { padding-left: 24px; }
.document li + li { margin-top: 8px; }
.document a:not(.back):not(.button) { color: var(--accent); font-weight: 750; text-decoration: underline; text-decoration-color: rgba(111,53,255,0.28); text-underline-offset: 3px; }
.guide-intro { margin-top: 24px !important; font-size: 19px !important; }
.guide-callout { margin: 34px 0; border-left: 4px solid var(--accent); border-radius: 0 16px 16px 0; background: var(--purple-soft); padding: 22px 24px; }
.guide-callout strong { display: block; margin-bottom: 6px; }
.guide-cta { margin-top: 54px; border-radius: 24px; background: var(--ink); color: #fff; padding: 32px; }
.guide-cta p { color: rgba(255,255,255,0.7); }
.guide-cta .button { margin-top: 20px; min-height: 48px; padding: 0 22px; text-decoration: none !important; color: #fff !important; }

/* Feature and guide directory pages */
.directory-hero { padding-block: 94px 64px; }
.directory-hero h1 { max-width: 900px; font-size: clamp(52px, 7vw, 84px); }
.directory-hero .lead { max-width: 760px; }
.directory-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding-bottom: 110px; }
.directory-card { min-height: 300px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 25px; background: #fff; padding: 28px; transition: transform 180ms ease, box-shadow 180ms ease; }
.directory-card:hover { transform: translateY(-4px); border-color: rgba(111,53,255,0.22); box-shadow: var(--shadow); }
.directory-card .feature-icon { margin-bottom: 32px; }
.directory-card .guide-tag { margin-bottom: 32px; }
.directory-card h2 { margin: 0; font-size: 24px; line-height: 1.12; letter-spacing: -0.034em; }
.directory-card p { margin: 13px 0 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.directory-card strong { margin-top: auto; padding-top: 26px; color: var(--accent); font-size: 13px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.article-meta span { border-radius: 999px; background: var(--purple-soft); color: var(--accent); padding: 7px 11px; font-size: 11px; font-weight: 800; }
.article-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 34px 0; padding: 0; list-style: none; }
.article-points li { border: 1px solid var(--line); border-radius: 16px; background: #fff; padding: 17px; color: var(--text); font-size: 14px; font-weight: 720; }
.article-points li::before { content: "✓"; margin-right: 9px; color: var(--accent); }
.article-eyebrow { margin-top: 72px; }
.document .article-eyebrow + h1 { margin-top: 14px; }
.article-related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 22px; }
.document .article-related a { display: flex; align-items: center; min-height: 68px; border: 1px solid var(--line); border-radius: 15px; background: #fff; color: var(--text); padding: 15px 17px; font-size: 13px; font-weight: 790; line-height: 1.35; text-decoration: none; transition: transform 180ms ease, border-color 180ms ease; }
.document .article-related a::after { content: "→"; margin-left: auto; padding-left: 12px; color: var(--accent); }
.document .article-related a:hover { transform: translateY(-2px); border-color: rgba(111,53,255,0.38); }

/* Progressive motion: content remains visible when JavaScript is unavailable. */
.motion-ready .reveal-target { opacity: 0; transform: translateY(26px); transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1); transition-delay: calc(var(--reveal-order, 0) * 55ms); }
.motion-ready .reveal-target.is-visible { opacity: 1; transform: translateY(0); }
.motion-ready .hero-copy > :not(.hero-actions) { animation: hero-copy-in 650ms cubic-bezier(.2,.75,.25,1) both; }
.motion-ready .hero-copy > :nth-child(2) { animation-delay: 70ms; }
.motion-ready .hero-copy > :nth-child(3) { animation-delay: 130ms; }
.motion-ready .hero-copy > :nth-child(4) { animation-delay: 190ms; }
.motion-ready .hero-copy > :nth-child(5) { animation-delay: 250ms; }
.motion-ready .hero-visual { animation: hero-visual-in 800ms cubic-bezier(.2,.75,.25,1) 110ms both; }

@keyframes hero-copy-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes hero-visual-in { from { opacity: 0; transform: translateY(20px) scale(0.985); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes hero-float { 0%, 100% { transform: translateY(0) rotate(-0.25deg); } 50% { transform: translateY(-8px) rotate(0.25deg); } }
@keyframes card-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes answer-in { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; padding-top: 72px; }
  .hero-copy { text-align: center; }
  .hero-copy .lead { margin-inline: auto; }
  .hero-actions, .proof-row { justify-content: center; }
  .hero-visual { min-height: 610px; max-width: 620px; width: 100%; margin-inline: auto; }
  .workflow-grid { grid-template-columns: 1fr; }
  .workflow-card { min-height: 620px; }
  .workflow-card img { width: 300px; bottom: -45%; }
  .privacy-grid { grid-template-columns: 1fr; gap: 50px; }
  .use-grid { grid-template-columns: repeat(2, 1fr); }
  .credibility-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .dedicated-grid, .reviews-grid, .pricing-grid { grid-template-columns: 1fr; gap: 56px; }
  .guide-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-section { grid-template-columns: 1fr; gap: 45px; }
  .faq-heading { position: static; }
  .footer-main { grid-template-columns: 1.4fr repeat(3, 0.8fr); gap: 30px; }
  .directory-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-panel { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 720px) {
  .wide { width: min(calc(100% - 32px), 1180px); }
  .nav-wrap { min-height: 68px; gap: 16px; }
  .nav-links { display: none; }
  .button-small { margin-left: auto; }
  .hero-grid { min-height: auto; gap: 22px; padding-block: 44px 48px; }
  h1 { font-size: clamp(44px, 12.8vw, 54px); }
  .hero-copy h1 { font-size: clamp(44px, 12.8vw, 54px); }
  .hero-copy .lead { margin-top: 22px; font-size: 17px; line-height: 1.52; }
  .hero-actions { gap: 16px; margin-top: 27px; }
  .app-store-badge { width: 174px; }
  .proof-row { justify-content: center; gap: 9px 16px; margin-top: 24px; font-size: 12px; text-align: left; }
  .hero-visual { min-height: 520px; }
  .hero-phone { width: min(250px, 76%); }
  .floating-card { width: 150px; border-radius: 15px; padding: 11px 13px; }
  .card-clean { left: 0; top: 16%; }
  .card-private { right: 0; bottom: 15%; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-grid > div { border-bottom: 1px solid var(--line); }
  .section, .guides-section, .feature-section, .reviews-section, .pricing-section { padding-block: 88px; }
  .split-heading { grid-template-columns: 1fr; gap: 24px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 260px; }
  .dedicated-section { padding-block: 82px; }
  .dedicated-grid { grid-template-columns: 1fr; gap: 44px; }
  .job-list > li { flex-direction: column; gap: 8px; }
  .job-list strong { max-width: none; text-align: left; }
  .workflow-card { min-height: 560px; }
  .workflow-card img { width: 270px; bottom: -50%; }
  .use-grid { grid-template-columns: 1fr; }
  .use-grid > * { min-height: 200px !important; }
  .guide-grid { grid-template-columns: 1fr; }
  .guides-topline { align-items: flex-start; flex-direction: column; gap: 25px; }
  .faq-list summary { font-size: 17px; }
  .cta-section { padding-block: 64px; }
  .cta-panel { padding: 42px 28px; }
  .cta-download { align-items: flex-start; flex-direction: column; }
  .download-qr, .cta-copy-desktop { display: none; }
  .cta-copy-mobile { display: inline; }
  .footer-main { grid-template-columns: repeat(2, 1fr); gap: 34px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 10px; padding-bottom: 88px; }
  .footer-bottom p:last-child { text-align: left; }
  .directory-hero { padding-block: 68px 48px; }
  .directory-grid { grid-template-columns: 1fr; padding-bottom: 80px; }
  .article-points { grid-template-columns: 1fr; }
  .article-related { grid-template-columns: 1fr; }
  .document { padding-bottom: 64px; }
  .document h1 { margin-top: 52px; }
}

@media (max-width: 360px) {
  .wide { width: min(calc(100% - 24px), 1180px); }
  .brand { gap: 9px; font-size: 17px; }
  .brand img { width: 38px; height: 38px; border-radius: 10px; }
  .button-small { padding-inline: 15px; }
  .button-label-wide { display: none; }
  .button-label-compact { display: inline; }
  .hero-grid { padding-top: 38px; }
  .hero-copy .lead { font-size: 16px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .proof-row { gap: 8px 13px; }
  .hero-visual { min-height: 490px; }
  .hero-phone { width: min(232px, 78%); }
  .floating-card { width: 138px; }
  .cta-panel { padding: 36px 22px; border-radius: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .motion-ready .reveal-target { opacity: 1; transform: none; }
}
