:root {
  color-scheme: light;
  --ink: #111318;
  --ink-soft: #262a32;
  --muted: #656b76;
  --line: #e5e8ee;
  --soft: #f5f7fb;
  --surface: #ffffff;
  --blue: #1687f8;
  --blue-dark: #0569cf;
  --blue-soft: #e9f4ff;
  --pink: #ff4fb7;
  --green: #28c867;
  --violet: #8e6cf4;
  --orange: #ff9a3e;
  --measure: 74rem;
  --shadow: 0 24px 70px rgba(20, 28, 48, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; }
body { margin: 0; background: var(--surface); color: var(--ink); font: 400 17px/1.58 -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif; -webkit-font-smoothing: antialiased; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-underline-offset: .2em; }
a:hover { color: var(--blue-dark); }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }
.skip-link { position: fixed; z-index: 100; top: .75rem; left: .75rem; padding: .7rem 1rem; border-radius: 999px; background: var(--ink); color: white; transform: translateY(-180%); }
.skip-link:focus { transform: none; }

.site-header { position: sticky; z-index: 50; top: 0; border-bottom: 1px solid rgba(229, 232, 238, .88); background: rgba(255, 255, 255, .9); backdrop-filter: blur(18px) saturate(160%); }
.header-inner { width: min(var(--measure), calc(100% - 2rem)); min-height: 4.6rem; margin: 0 auto; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 2.25rem; }
.brand { display: inline-flex; align-items: center; gap: .72rem; color: var(--ink); font-size: 1.12rem; font-weight: 790; letter-spacing: -.025em; text-decoration: none; }
.brand:hover { color: var(--ink); }
.brand img { border-radius: 10px; box-shadow: 0 5px 14px rgba(17, 19, 24, .12); }
.site-header nav { display: flex; align-items: center; justify-content: center; gap: 1.65rem; }
.site-header nav a, .locale-picker { color: #4e535d; font-size: .88rem; font-weight: 650; text-decoration: none; white-space: nowrap; }
.site-header nav a:hover { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: .85rem; }
.locale-picker { position: relative; }
.locale-picker summary { min-height: 2.75rem; display: flex; align-items: center; gap: .48rem; padding: .42rem .62rem .42rem .48rem; border: 1px solid transparent; border-radius: 999px; background: rgba(245, 247, 251, .78); cursor: pointer; list-style: none; transition: border-color .18s ease, background .18s ease, box-shadow .18s ease; }
.locale-picker summary::-webkit-details-marker { display: none; }
.locale-picker summary:hover { border-color: #d8e0ea; background: white; box-shadow: 0 5px 16px rgba(20, 28, 48, .08); color: var(--ink); }
.locale-picker[open] summary { border-color: #cbd8e7; background: white; color: var(--ink); box-shadow: 0 5px 16px rgba(20, 28, 48, .08); }
.locale-picker__globe { width: 1.9rem; height: 1.9rem; display: grid; place-items: center; flex: 0 0 auto; border-radius: 999px; background: linear-gradient(145deg, #2196ff, #0879e7); color: white; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35); }
.locale-picker__globe svg { fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.locale-picker__current { max-width: 8rem; overflow: hidden; text-overflow: ellipsis; }
.locale-picker__chevron { width: .48rem; height: .48rem; margin: -.18rem .16rem 0 .08rem; border-right: 1.8px solid #7c838e; border-bottom: 1.8px solid #7c838e; transform: rotate(45deg); transition: transform .18s ease; }
.locale-picker[open] .locale-picker__chevron { margin-top: .18rem; transform: rotate(225deg); }
.locale-picker__menu { position: absolute; z-index: 80; top: calc(100% + .65rem); right: 0; width: 15rem; display: grid; gap: .16rem; padding: .55rem; border: 1px solid rgba(210, 217, 228, .92); border-radius: 20px; background: rgba(255, 255, 255, .94); box-shadow: 0 22px 60px rgba(20, 28, 48, .18), 0 2px 7px rgba(20, 28, 48, .05); backdrop-filter: blur(24px) saturate(180%); transform-origin: top right; animation: locale-pop .16s ease-out; }
.locale-picker__title { padding: .38rem .72rem .45rem; color: #8a909b; font-size: .68rem; font-weight: 790; letter-spacing: .08em; text-transform: uppercase; }
.locale-picker__menu a { min-height: 2.75rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .62rem .72rem; border-radius: 12px; color: #3f454f; text-decoration: none; }
.locale-picker__menu a:hover { background: var(--soft); color: var(--ink); }
.locale-picker__menu a[aria-current="true"] { background: var(--blue-soft); color: var(--blue-dark); font-weight: 760; }
.locale-picker__check { opacity: 0; color: var(--blue-dark); font-size: .88rem; font-weight: 850; }
.locale-picker__menu a[aria-current="true"] .locale-picker__check { opacity: 1; }
@keyframes locale-pop { from { opacity: 0; transform: translateY(-5px) scale(.97); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .locale-picker__menu { animation: none; } .locale-picker__chevron { transition: none; } }

main { width: min(var(--measure), calc(100% - 2rem)); margin: 0 auto; }
.breadcrumbs { min-height: 3.4rem; display: flex; align-items: center; gap: .55rem; color: var(--muted); font-size: .8rem; border-bottom: 1px solid var(--line); }
.breadcrumbs a { text-decoration: none; }

.hero { min-height: 36rem; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(18rem, .75fr); align-items: center; gap: clamp(3rem, 7vw, 6rem); padding: clamp(4rem, 8vw, 7rem) 0; }
.hero--home { min-height: 43rem; grid-template-columns: minmax(0, .96fr) minmax(28rem, .94fr); padding: clamp(3.5rem, 7vw, 6.5rem) 0 clamp(4rem, 7vw, 6rem); }
.hero--legal { min-height: auto; display: block; padding: 5rem 0; }
.hero-copy { max-width: 42rem; }
.eyebrow, .section-kicker { margin: 0 0 1.1rem; color: var(--blue-dark); font-size: .77rem; line-height: 1.2; font-weight: 820; letter-spacing: .11em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; color: var(--ink); font-family: inherit; letter-spacing: -.048em; text-wrap: balance; }
h1 { max-width: 13ch; font-size: clamp(3.4rem, 6vw, 5.5rem); line-height: .98; font-weight: 820; }
.hero--home h1 { max-width: 10.5ch; font-size: clamp(3.6rem, 5.7vw, 5.35rem); }
.hero--legal h1 { font-size: clamp(3rem, 5.3vw, 4.8rem); }
h2 { font-size: clamp(2.35rem, 4.2vw, 4rem); line-height: 1.02; font-weight: 790; }
h3 { font-size: 1.45rem; line-height: 1.12; font-weight: 760; }
.lede { max-width: 39rem; margin-top: 1.65rem; color: var(--muted); font-size: clamp(1.12rem, 1.8vw, 1.32rem); line-height: 1.52; letter-spacing: -.018em; }
.lede p { margin: .4rem 0; }
.meta { display: inline-block; margin-bottom: 1rem; color: var(--muted); font-size: .95rem; }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 2rem; }
.button { min-height: 3.35rem; display: inline-flex; align-items: center; justify-content: center; gap: .58rem; padding: .78rem 1.3rem; border: 1px solid var(--blue); border-radius: 999px; background: var(--blue); color: white; font-size: .92rem; font-weight: 760; text-decoration: none; box-shadow: 0 12px 28px rgba(22, 135, 248, .2); transition: transform .18s ease, background .18s ease, box-shadow .18s ease; }
.button__apple { width: 1.12rem; height: 1.12rem; flex: 0 0 auto; filter: brightness(0) invert(1); }
.button:hover { background: var(--blue-dark); color: white; transform: translateY(-1px); box-shadow: 0 14px 32px rgba(5, 105, 207, .24); }
.button--disabled { border-color: var(--ink); background: var(--ink); color: white; cursor: default; box-shadow: 0 12px 28px rgba(17, 19, 24, .16); }
.button--disabled:hover { background: var(--ink); color: white; transform: none; box-shadow: 0 12px 28px rgba(17, 19, 24, .16); }
.button--nav { min-height: 2.55rem; padding: .58rem 1rem; font-size: .79rem; box-shadow: none; }
.button--nav .button__apple { width: .94rem; height: .94rem; }
.text-link, .inline-arrow { display: inline-flex; align-items: center; gap: .35rem; font-size: .95rem; font-weight: 730; text-decoration: none; }
.text-link span, .inline-arrow span { transition: transform .18s ease; }
.text-link:hover span, .inline-arrow:hover span { transform: translateX(3px); }
.pending-note { margin: .78rem 0 0; color: #8a8f98; font-size: .78rem; }

.hero-aside { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; background: var(--soft); font-size: .9rem; }
.hero-aside strong, .hero-aside span { padding: .9rem 1rem; border-bottom: 1px solid var(--line); }
.hero-aside span:last-child { border-bottom: 0; }

.hero-product { position: relative; min-height: 36.5rem; align-self: stretch; overflow: hidden; border-radius: 42px; background: linear-gradient(145deg, #e6f4ff 0%, #f6eaff 45%, #ffe8f4 100%); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .8); isolation: isolate; }
.hero-product::before, .hero-product::after { position: absolute; z-index: -1; content: ""; border-radius: 999px; filter: blur(2px); }
.hero-product::before { width: 19rem; height: 19rem; right: -4rem; top: -4rem; background: rgba(255, 79, 183, .2); }
.hero-product::after { width: 18rem; height: 18rem; left: -6rem; bottom: -4rem; background: rgba(22, 135, 248, .2); }
.hero-product__wash { position: absolute; inset: 18% 7% 5%; border-radius: 999px; background: rgba(255, 255, 255, .52); filter: blur(32px); }
.phone-shell { position: relative; aspect-ratio: 1320 / 2868; overflow: hidden; border: 8px solid #111318; border-radius: 46px; background: #f1f2f7; box-shadow: var(--shadow); }
.phone-shell picture, .phone-shell img, .phone-shell video { width: 100%; height: 100%; display: block; object-fit: cover; }
.hero-phone { position: absolute; z-index: 2; width: 18.8rem; left: 50%; bottom: -5.2rem; transform: translateX(-50%) rotate(-1deg); }
.source-pill, .result-pill { position: absolute; z-index: 3; display: flex; align-items: center; gap: .7rem; padding: .78rem .92rem; border: 1px solid rgba(255, 255, 255, .8); border-radius: 18px; background: rgba(255, 255, 255, .94); box-shadow: 0 14px 35px rgba(25, 31, 49, .14); backdrop-filter: blur(12px); }
.source-pill { top: 3.2rem; left: 1.3rem; }
.result-pill { right: 1.3rem; bottom: 6.1rem; }
.source-pill__mark, .result-pill__icon { display: grid; place-items: center; flex: 0 0 auto; width: 2.3rem; height: 2.3rem; border-radius: 12px; background: #e8faef; color: #1d9b4e; font-size: .8rem; font-weight: 850; }
.result-pill__icon { background: #fff0f3; color: #e44358; font-size: .63rem; }
.source-pill span:last-child, .result-pill span:last-child { display: flex; flex-direction: column; line-height: 1.2; }
.source-pill small, .result-pill small { color: var(--muted); font-size: .65rem; }
.source-pill strong, .result-pill strong { margin-top: .18rem; font-size: .78rem; }
.hero-format-row { position: absolute; z-index: 3; top: 1.1rem; right: 1.1rem; display: flex; gap: .35rem; }
.hero-format-row span { padding: .35rem .5rem; border-radius: 999px; background: rgba(255, 255, 255, .86); color: #525865; font-size: .55rem; font-weight: 820; box-shadow: 0 7px 17px rgba(30, 36, 54, .08); }

.benefit-bar { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-bottom: 1rem; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); box-shadow: 0 12px 38px rgba(27, 34, 52, .06); }
.benefit-bar > div { min-height: 5.2rem; display: flex; align-items: center; justify-content: center; gap: .7rem; padding: 1rem 1.25rem; text-align: center; }
.benefit-bar > div + div { border-left: 1px solid var(--line); }
.benefit-bar span { display: grid; place-items: center; width: 2rem; height: 2rem; border-radius: 10px; background: var(--blue-soft); color: var(--blue-dark); font-size: .95rem; }
.benefit-bar strong { font-size: .9rem; }

.visual-proof { padding: clamp(5rem, 9vw, 8rem) 0; }
.product-tour__heading { max-width: 52rem; margin: 0 auto; text-align: center; }
.product-tour__heading h2 { max-width: 18ch; margin: 0 auto; }
.product-tour__heading > p:last-child { max-width: 42rem; margin: 1.25rem auto 0; color: var(--muted); font-size: 1.05rem; }
.tour-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; margin-top: 3.4rem; }
.tour-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: white; box-shadow: 0 14px 40px rgba(25, 33, 51, .07); }
.tour-card__visual { position: relative; height: 24rem; overflow: hidden; }
.tour-card__visual--sky { background: linear-gradient(145deg, #e7f4ff, #f4f9ff); }
.tour-card__visual--violet { background: linear-gradient(145deg, #eee9ff, #f8f5ff); }
.tour-card__visual--pink { background: linear-gradient(145deg, #ffe8f4, #fff5fa); }
.mini-phone { position: absolute; width: 14.7rem; left: 50%; top: 2.3rem; aspect-ratio: 1320 / 2868; overflow: hidden; border: 7px solid #171920; border-radius: 34px; background: #f0f1f6; transform: translateX(-50%); box-shadow: 0 22px 45px rgba(27, 33, 50, .18); }
.mini-phone picture, .mini-phone img { width: 100%; height: 100%; display: block; object-fit: cover; }
.floating-formats { position: absolute; right: 1rem; bottom: 1rem; display: grid; gap: .35rem; }
.floating-formats span { padding: .42rem .6rem; border-radius: 10px; background: white; color: var(--ink); font-size: .65rem; font-weight: 840; box-shadow: 0 8px 20px rgba(28, 34, 50, .13); }
.tour-card__copy { min-height: 11.8rem; padding: 1.5rem; }
.tour-number { width: 2rem; height: 2rem; display: grid; place-items: center; margin-bottom: 1rem; border-radius: 999px; background: var(--ink); color: white; font-size: .75rem; font-weight: 820; }
.tour-card h3 { font-size: 1.45rem; }
.tour-card p { margin: .75rem 0 0; color: var(--muted); font-size: .92rem; line-height: 1.5; }

.feature-visual { max-width: 64rem; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(15rem, .65fr); align-items: center; gap: clamp(3rem, 8vw, 7rem); }
.feature-visual--compact .feature-visual__copy { align-self: center; }
.feature-visual--compact .screen-window { max-height: 34rem; }
.feature-visual__copy h2, .output-visual__copy h2 { max-width: 18ch; }
.feature-visual__copy > p:not(.eyebrow), .output-visual__copy > p:not(.eyebrow) { max-width: 41rem; color: var(--muted); }
.visual-checks, .clean-checks { display: grid; gap: .65rem; margin: 1.6rem 0; padding: 0; list-style: none; }
.visual-checks li, .clean-checks li { position: relative; padding-left: 1.55rem; color: var(--ink); font-size: .93rem; font-weight: 650; }
.visual-checks li::before, .clean-checks li::before { position: absolute; left: 0; content: "✓"; color: var(--green); font-weight: 850; }
.compact-screen { width: min(100%, 18rem); justify-self: center; border: 7px solid #16181d; border-radius: 36px; box-shadow: var(--shadow); }
.screen-window { aspect-ratio: 4 / 5; overflow: hidden; border-radius: 24px; background: #eef0f5; }
.screen-window picture { display: block; width: 100%; height: 100%; }
.screen-window img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.output-visual { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(22rem, .95fr); align-items: center; gap: clamp(3rem, 8vw, 7rem); }
.output-files { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
.output-files > div { min-height: 8rem; display: flex; flex-direction: column; justify-content: space-between; gap: 1rem; padding: 1.1rem; border: 1px solid var(--line); border-radius: 18px; background: var(--soft); }
.output-files strong { color: var(--blue-dark); font-size: 1.25rem; }
.output-files span { color: var(--muted); font-size: .82rem; }

.content-flow { border-top: 1px solid var(--line); }
.content-section { display: grid; grid-template-columns: 3.5rem minmax(0, 1fr); gap: 1.5rem; padding: clamp(4.5rem, 8vw, 7rem) 0; border-bottom: 1px solid var(--line); }
.section-number { color: var(--blue-dark); font-size: .72rem; font-weight: 820; letter-spacing: .12em; }
.content-section h2 { max-width: 19ch; margin-bottom: 2.3rem; }
.content-section p, .content-section li { max-width: 49rem; color: var(--muted); }
.page-privacy .content-section h3,
.page-terms .content-section h3 {
  max-width: 34rem;
  margin: 2.2rem 0 .85rem;
  font-size: 1.22rem;
  letter-spacing: -.025em;
}
.page-privacy .content-section h2 + .legal-subsection h3,
.page-terms .content-section h2 + .legal-subsection h3 { margin-top: 0; }
.page-privacy .content-section p,
.page-terms .content-section p { margin: .8rem 0; }
.legal-subsection + .legal-subsection { margin-top: 2.7rem; }
.legal-list {
  display: grid;
  gap: .5rem;
  max-width: 49rem;
  margin: 1rem 0 1.35rem;
  padding-left: 1.35rem;
}
.legal-list li { padding-left: .25rem; }
.page-privacy .content-section a,
.page-terms .content-section a { color: var(--blue-dark); }
.content-section--disclosure { padding-top: 2.2rem; padding-bottom: 2.2rem; }
.content-disclosure { min-width: 0; }
.content-disclosure > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  cursor: pointer;
  list-style: none;
}
.content-disclosure > summary::-webkit-details-marker { display: none; }
.content-disclosure > summary h2 { margin: 0; }
.content-disclosure > summary > span {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--soft);
}
.content-disclosure > summary > span::before,
.content-disclosure > summary > span::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: .8rem;
  height: 2px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
}
.content-disclosure > summary > span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform .18s ease;
}
.content-disclosure[open] > summary > span::after { transform: translate(-50%, -50%) rotate(0); }
.content-disclosure__body { padding-top: 2rem; }
.split-copy { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 3rem; }
.split-copy p { margin: 0; }
.route-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.route-grid a { min-height: 13rem; display: flex; flex-direction: column; gap: 1rem; padding: 1.45rem; border: 1px solid var(--line); border-radius: 20px; background: var(--soft); text-decoration: none; }
.route-grid strong { font-size: 1.28rem; line-height: 1.15; }
.route-grid span { color: var(--muted); font-size: .9rem; }
.proof-strip, .comparison { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .8rem; }
.proof-strip p, .comparison > div { margin: 0; padding: 1.25rem; border: 1px solid var(--line); border-radius: 18px; background: var(--soft); }
.comparison { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.comparison > div { display: flex; flex-direction: column; gap: .55rem; }
.comparison span { color: var(--muted); }
.format-list { display: flex; flex-wrap: wrap; gap: .65rem; padding: 0; list-style: none; }
.format-list li { padding: .55rem .82rem; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); font-weight: 700; }
.check-list, .steps { padding-left: 1.25rem; }
.check-list li, .steps li { margin: .7rem 0; padding-left: .4rem; }
.note { padding: 1rem 0 1rem 1.2rem; border-left: 3px solid var(--blue); }

.page-home .content-flow { display: grid; gap: 2rem; border-top: 0; }
.page-home .content-section { display: block; padding: clamp(5rem, 9vw, 8rem) 0; border: 0; }
.page-home .content-section > .section-number { display: none; }
.page-home .content-section > div > h2 { max-width: 18ch; margin: 0 auto 3.2rem; text-align: center; }
.page-home .content-section--2 { padding-right: clamp(1.25rem, 5vw, 4rem); padding-left: clamp(1.25rem, 5vw, 4rem); border-radius: 38px; background: var(--soft); }
.page-home .content-section--3 { padding: clamp(3rem, 7vw, 5rem); border-radius: 38px; background: #121923; color: white; }
.page-home .content-section--3 h2 { color: white; }
.page-home .content-section--4 { padding-top: clamp(4rem, 7vw, 6rem); }

.demo-story { display: grid; grid-template-columns: minmax(18rem, .82fr) minmax(0, 1.18fr); align-items: center; gap: clamp(3rem, 8vw, 7rem); max-width: 63rem; margin: 0 auto; }
.demo-story__device { min-height: 36rem; display: grid; place-items: center; border-radius: 34px; background: linear-gradient(145deg, #dff1ff, #f5eaff 52%, #ffe9f5); }
.phone-shell--video { width: min(75%, 17rem); }
.demo-video { cursor: pointer; }
.demo-toggle { position: absolute; z-index: 3; right: .7rem; bottom: .7rem; min-height: 2rem; padding: .4rem .65rem; border: 1px solid rgba(255, 255, 255, .55); border-radius: 999px; background: rgba(17, 19, 24, .82); color: white; font: 740 .63rem/1 -apple-system, BlinkMacSystemFont, sans-serif; cursor: pointer; backdrop-filter: blur(10px); }
.demo-toggle:hover { background: var(--blue-dark); }
.demo-story__copy h3 { max-width: 15ch; font-size: clamp(2rem, 4vw, 3.3rem); }
.demo-story__copy > p:not(.section-kicker):not(.sr-only) { margin: 1.3rem 0 0; color: var(--muted); font-size: 1.03rem; }
.demo-story__copy .inline-arrow { margin-top: .5rem; }

.audience-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.audience-card { min-height: 16rem; display: flex; flex-direction: column; align-items: flex-start; padding: 1.65rem; border: 1px solid rgba(17, 19, 24, .06); border-radius: 24px; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease; }
.audience-card:hover { color: var(--ink); transform: translateY(-3px); box-shadow: 0 18px 34px rgba(29, 35, 51, .09); }
.audience-card--blue { background: #e5f3ff; }
.audience-card--green { background: #e7f9ee; }
.audience-card--violet { background: #eee9ff; }
.audience-card--orange { background: #fff0df; }
.audience-icon { width: 2.8rem; height: 2.8rem; display: grid; place-items: center; margin-bottom: auto; border-radius: 14px; background: rgba(255, 255, 255, .75); font-size: 1.3rem; font-weight: 790; box-shadow: 0 8px 18px rgba(31, 37, 55, .08); }
.audience-card strong { margin-top: 2rem; font-size: 1.25rem; line-height: 1.2; }
.audience-card > span:last-child { margin-top: .65rem; color: #5d626c; font-size: .9rem; }

.privacy-story { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: clamp(3rem, 8vw, 6rem); align-items: start; }
.privacy-story > div:first-child > p:not(.section-kicker) { color: #b9c2cf; font-size: 1.02rem; }
.privacy-story .section-kicker { color: #6cb8ff; }
.privacy-story .inline-arrow { margin-top: 1rem; color: white; }
.privacy-points { display: grid; gap: .75rem; }
.privacy-points > div { display: grid; grid-template-columns: 2.3rem 1fr; column-gap: 1rem; padding: 1.2rem; border: 1px solid #2c3746; border-radius: 18px; background: #182230; }
.privacy-points span { grid-row: 1 / span 2; color: #6cb8ff; font-size: .7rem; font-weight: 820; letter-spacing: .09em; }
.privacy-points strong { color: white; }
.privacy-points p { margin: .32rem 0 0; color: #aeb8c5; font-size: .84rem; }

.format-showcase { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .8rem; }
.format-showcase a { min-height: 9rem; display: flex; flex-direction: column; justify-content: space-between; padding: 1.2rem; border: 1px solid var(--line); border-radius: 20px; background: white; color: var(--ink); text-decoration: none; box-shadow: 0 9px 28px rgba(24, 31, 48, .05); transition: transform .18s ease, border-color .18s ease; }
.format-showcase a:hover { transform: translateY(-2px); border-color: #badcff; color: var(--ink); }
.format-showcase strong { color: var(--blue-dark); font-size: 1.5rem; }
.format-showcase span { color: var(--muted); font-size: .84rem; }
.format-note { max-width: 42rem !important; margin: 1.2rem auto 0; text-align: center; font-size: .85rem; }

.faq { padding: clamp(5rem, 9vw, 8rem) 0; }
.faq > .eyebrow, .faq > h2 { text-align: center; }
.faq h2 { max-width: 17ch; margin: 0 auto 3rem; }
.faq details { max-width: 52rem; margin: 0 auto; border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { padding: 1.25rem 2.5rem 1.25rem 0; cursor: pointer; font-weight: 730; }
.faq details p { max-width: 47rem; margin: 0 0 1.4rem; color: var(--muted); }

.final-cta { margin: 1rem 0 5rem; padding: clamp(3rem, 7vw, 5.5rem); overflow: hidden; border-radius: 38px; background: linear-gradient(135deg, #187ff0 0%, #8a6cf3 58%, #ec55b2 100%); color: white; text-align: center; }
.final-cta .eyebrow { color: rgba(255, 255, 255, .75); }
.final-cta h2 { max-width: 18ch; margin: 0 auto; color: white; }
.final-cta > p:not(.eyebrow) { max-width: 38rem; margin: 1.2rem auto 0; color: rgba(255, 255, 255, .8); }
.final-cta .actions { justify-content: center; }
.final-cta .button--disabled { border-color: white; background: white; color: var(--ink); box-shadow: 0 12px 30px rgba(18, 24, 43, .18); }
.final-cta .text-link { color: white; }

.site-footer { width: min(var(--measure), calc(100% - 2rem)); margin: 0 auto; display: grid; grid-template-columns: 2.1fr repeat(3, 1fr); gap: 3rem; padding: 3.5rem 0 5rem; border-top: 1px solid var(--line); }
.site-footer > div { display: flex; flex-direction: column; align-items: flex-start; gap: .65rem; }
.site-footer p { max-width: 28rem; margin: .5rem 0; color: var(--muted); }
.site-footer a { color: #525862; font-size: .85rem; text-decoration: none; }
.site-footer a:hover { color: var(--ink); }
.site-footer strong { margin-bottom: .35rem; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.fine { font-size: .75rem; }

@media (max-width: 980px) {
  .header-inner { grid-template-columns: auto 1fr; }
  .site-header nav { grid-column: 1 / -1; grid-row: 2; justify-content: flex-start; gap: 1.25rem; padding: .75rem 0; border-top: 1px solid var(--line); overflow-x: auto; }
  .header-actions { justify-self: end; }
  .hero--home { grid-template-columns: minmax(0, .92fr) minmax(23rem, .78fr); gap: 2.5rem; }
  .hero-product { min-height: 32rem; }
  .hero-phone { width: 16.4rem; }
  .source-pill { top: 2.4rem; }
  .result-pill { bottom: 4.5rem; }
  .tour-card__visual { height: 20rem; }
  .mini-phone { width: 12.2rem; }
  .privacy-story { gap: 2.5rem; }
}

@media (max-width: 760px) {
  .button--nav { display: none; }
  .hero, .hero--home { min-height: auto; grid-template-columns: 1fr; gap: 2.7rem; padding: 3.5rem 0 4rem; }
  .hero-product { width: min(100%, 34rem); min-height: 35rem; margin: 0 auto; }
  .hero-phone { width: 18rem; }
  .benefit-bar { grid-template-columns: 1fr; }
  .benefit-bar > div { justify-content: flex-start; min-height: 4.4rem; }
  .benefit-bar > div + div { border-top: 1px solid var(--line); border-left: 0; }
  .tour-grid { grid-template-columns: 1fr; }
  .tour-card { display: grid; grid-template-columns: minmax(13rem, .9fr) minmax(0, 1.1fr); }
  .tour-card__visual { height: 22rem; }
  .tour-card__copy { min-height: auto; display: flex; flex-direction: column; justify-content: center; }
  .demo-story, .privacy-story, .feature-visual, .output-visual, .split-copy { grid-template-columns: 1fr; }
  .demo-story__device { min-height: 34rem; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: 14rem; }
  .format-showcase { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .route-grid, .proof-strip, .comparison { grid-template-columns: 1fr; }
  .content-section { grid-template-columns: 2.5rem minmax(0, 1fr); gap: .75rem; }
  .site-footer { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .header-inner, main, .site-footer { width: min(100% - 1.25rem, var(--measure)); }
  .header-inner { min-height: 4.25rem; }
  .brand { font-size: 1rem; }
  .brand img { width: 34px; height: 34px; }
  .site-header nav a:nth-child(4) { display: none; }
  .locale-picker { font-size: .8rem; }
  .locale-picker summary { max-width: 10.5rem; }
  .locale-picker__current { max-width: 6.8rem; }
  .locale-picker__menu { position: fixed; top: 4.7rem; right: .75rem; left: .75rem; width: auto; max-height: calc(100dvh - 5.5rem); overflow: auto; }
  h1, .hero--home h1 { font-size: clamp(3rem, 15vw, 4.25rem); }
  h2 { font-size: clamp(2.15rem, 10vw, 3rem); }
  .hero--home { padding-top: 2.6rem; }
  .lede { font-size: 1.05rem; }
  .hero-product { min-height: 29rem; border-radius: 30px; }
  .hero-phone { width: 14.2rem; bottom: -4rem; }
  .source-pill { top: 2.4rem; left: .7rem; transform: scale(.9); transform-origin: left; }
  .result-pill { right: .7rem; bottom: 3.5rem; transform: scale(.9); transform-origin: right; }
  .hero-format-row { display: none; }
  .visual-proof { padding: 4.6rem 0; }
  .product-tour__heading { text-align: left; }
  .product-tour__heading h2 { margin: 0; }
  .product-tour__heading > p:last-child { margin-left: 0; }
  .tour-grid { margin-top: 2.3rem; }
  .tour-card { display: block; }
  .tour-card__visual { height: 19rem; }
  .mini-phone { width: 11.5rem; top: 1.7rem; }
  .page-home .content-flow { gap: 1rem; }
  .page-home .content-section { padding: 4.5rem 0; }
  .page-home .content-section > div > h2 { margin-bottom: 2.3rem; text-align: left; }
  .page-home .content-section--2, .page-home .content-section--3 { padding: 2.2rem 1rem; border-radius: 26px; }
  .demo-story__device { min-height: 30rem; border-radius: 26px; }
  .phone-shell--video { width: 14rem; }
  .demo-story__copy h3 { font-size: 2.35rem; }
  .audience-card { min-height: 13.5rem; padding: 1.3rem; }
  .privacy-points > div { grid-template-columns: 1.8rem 1fr; padding: 1rem; }
  .format-showcase { grid-template-columns: 1fr 1fr; gap: .6rem; }
  .format-showcase a { min-height: 8rem; padding: 1rem; }
  .content-section { grid-template-columns: 1fr; }
  .section-number { margin-bottom: -1rem; }
  .final-cta { margin-bottom: 3rem; padding: 3rem 1.25rem; border-radius: 28px; text-align: left; }
  .final-cta h2 { margin: 0; }
  .final-cta > p:not(.eyebrow) { margin-left: 0; }
  .final-cta .actions { justify-content: flex-start; }
  .site-footer { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
}

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

@media (prefers-contrast: more) {
  :root { --line: #707781; --muted: #343941; }
}

/* Home: product-led redesign */
.page-home {
  --home-blue: #0a84ff;
  --home-blue-dark: #0067d8;
  --home-ink: #0b0c0f;
  --home-muted: #686d76;
  --home-soft: #f4f5f7;
}

.page-home main { overflow: clip; }
.page-home .hero--home {
  min-height: 44rem;
  grid-template-columns: minmax(0, .86fr) minmax(31rem, 1.14fr);
  gap: clamp(3rem, 6vw, 6.5rem);
  padding: clamp(3.2rem, 6vw, 5.5rem) 0 clamp(3.8rem, 7vw, 6.5rem);
}
.page-home .hero-copy { max-width: 34rem; }
.hero-app-icon {
  width: 4.75rem;
  height: 4.75rem;
  margin: 0 0 2.2rem;
  border-radius: 1.15rem;
  box-shadow: 0 14px 34px rgba(10, 132, 255, .22);
}
.page-home .hero--home .eyebrow {
  margin-bottom: 1rem;
  color: var(--home-blue-dark);
  font-size: .74rem;
}
.page-home .hero--home h1 {
  max-width: 10ch;
  color: var(--home-ink);
  font-size: clamp(3.65rem, 5.65vw, 5.5rem);
  line-height: .96;
  font-weight: 830;
  letter-spacing: -.06em;
}
.page-home .hero--home .lede {
  max-width: 31rem;
  margin-top: 1.7rem;
  color: var(--home-muted);
  font-size: 1.12rem;
  line-height: 1.55;
}
.page-home .button--disabled {
  border-color: var(--home-blue);
  background: var(--home-blue);
  cursor: default;
  box-shadow: 0 12px 28px rgba(10, 132, 255, .22);
}
.page-home .button--disabled:hover { border-color: var(--home-blue); background: var(--home-blue); }
.page-home .hero--home .text-link { color: var(--home-ink); }
.page-home .pending-note { color: #858a93; }
.home-highlights {
  padding: clamp(5rem, 9vw, 7.5rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.home-highlights__header { max-width: 49rem; margin: 0 auto; text-align: center; }
.home-highlights__header h2 { max-width: 18ch; margin: 0 auto; }
.home-highlights__header > p:last-child { max-width: 43rem; margin: 1.25rem auto 0; color: var(--home-muted); font-size: 1rem; }
.home-highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 3.5rem;
}
.home-highlights article {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e4e7eb;
  border-radius: 1.65rem;
  background: #f8f9fb;
}
.home-highlight__visual {
  position: relative;
  height: 15rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid #e4e7eb;
  background: #f2f4f7;
}
.home-highlight__copy { min-height: 14rem; padding: 1.7rem; background: white; }
.home-highlight__copy > span {
  color: var(--home-blue-dark);
  font-size: .7rem;
  font-weight: 820;
  letter-spacing: .12em;
}
.home-highlight__copy h3 { max-width: 16ch; margin-top: 1rem; font-size: 1.45rem; line-height: 1.08; letter-spacing: -.035em; }
.home-highlight__copy p { margin: .9rem 0 0; color: var(--home-muted); font-size: .9rem; line-height: 1.55; }
.highlight-apps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 1.2rem;
}
.highlight-apps .chat-app { gap: 0; }
.highlight-apps .chat-app__icon { width: 3.7rem; height: 3.7rem; border-radius: 1.05rem; }
.highlight-apps .chat-app__icon img { width: 2rem; height: 2rem; }
.highlight-apps .chat-app small { display: none; }
.highlight-apps .instagram-mark { width: 1.9rem; height: 1.9rem; border-width: .16rem; border-radius: .55rem; }
.highlight-apps .instagram-mark::before { width: .64rem; height: .64rem; border-width: .16rem; }
.highlight-apps .instagram-mark::after { width: .23rem; height: .23rem; right: .28rem; top: .28rem; }
.highlight-apps .imessage-mark { width: 2rem; height: 1.45rem; }
.highlight-files { display: flex; align-items: flex-end; gap: .7rem; }
.highlight-file {
  width: 4.6rem;
  height: 6.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  border: 1px solid #dfe3e8;
  border-radius: .45rem;
  background: white;
  box-shadow: 0 15px 28px rgba(24, 30, 40, .13);
  font-size: .78rem;
}
.highlight-file img { width: 2rem; height: 2rem; }
.highlight-file--pdf { transform: rotate(-4deg) translateY(.4rem); }
.highlight-file--csv { transform: translateY(-.45rem); }
.highlight-file--txt { transform: rotate(4deg) translateY(.4rem); }
.highlight-file--pdf img { filter: invert(24%) sepia(91%) saturate(3564%) hue-rotate(350deg) brightness(93%) contrast(90%); }
.highlight-file--csv img { filter: invert(37%) sepia(27%) saturate(1214%) hue-rotate(103deg) brightness(90%) contrast(95%); }
.highlight-file--txt img { filter: invert(42%) sepia(74%) saturate(1905%) hue-rotate(192deg) brightness(97%) contrast(104%); }
.highlight-phone { position: absolute; width: 9.2rem; left: 50%; top: 1.3rem; border-width: 5px; border-radius: 1.8rem; transform: translateX(-50%); }
.highlight-search-card {
  position: absolute;
  right: .9rem;
  bottom: .9rem;
  display: flex;
  flex-direction: column;
  padding: .75rem .85rem;
  border: 1px solid rgba(17, 19, 24, .08);
  border-radius: .8rem;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 28px rgba(24, 30, 40, .14);
}
.highlight-search-card strong { font-size: .72rem; }
.highlight-search-card span { margin-top: .24rem; color: #7a7f88; font-size: .58rem; }

.hero-scene {
  position: relative;
  min-height: 39rem;
  align-self: stretch;
  overflow: hidden;
  border: 1px solid #e6e8ec;
  border-radius: 2rem;
  background: #f4f6f8;
  isolation: isolate;
}
.hero-conversion__rail {
  position: absolute;
  z-index: 1;
  left: 17%;
  right: 12%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(37, 211, 102, .24), rgba(10, 132, 255, .42), rgba(228, 49, 43, .28));
  transform: rotate(-8deg);
}
.hero-conversion__rail span {
  position: absolute;
  width: .55rem;
  height: .55rem;
  top: 50%;
  border-top: 2px solid rgba(10, 132, 255, .58);
  border-right: 2px solid rgba(10, 132, 255, .58);
  transform: translateY(-50%) rotate(45deg);
}
.hero-conversion__rail span:first-child { left: 38%; }
.hero-conversion__rail span:last-child { right: 5%; }
.hero-output-files {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}
.hero-document {
  position: absolute;
  width: 6.7rem;
  height: 8.6rem;
  border: 1px solid #dfe3e8;
  border-radius: .32rem;
  background: white;
  box-shadow: 0 20px 40px rgba(17, 23, 34, .18);
}
.hero-document::before {
  position: absolute;
  width: 1.35rem;
  height: 1.35rem;
  right: -.05rem;
  top: -.05rem;
  background: linear-gradient(225deg, #f4f6f8 0 47%, #d7dce2 48% 51%, white 52%);
  content: "";
}
.hero-document__lines {
  position: absolute;
  inset: 1rem .8rem 1.15rem;
  opacity: .7;
  background: repeating-linear-gradient(to bottom, #cfd4db 0 1px, transparent 1px .52rem);
}
.hero-document--pdf { right: .6rem; top: 34%; transform: rotate(3deg); }
.hero-document--csv { left: 35%; top: 57%; transform: rotate(-4deg); }
.hero-document--csv .hero-document__lines {
  background-image: linear-gradient(#d4d9df 1px, transparent 1px), linear-gradient(90deg, #d4d9df 1px, transparent 1px);
  background-size: .65rem .55rem;
}
.hero-document__badge {
  position: absolute;
  right: -.9rem;
  bottom: .75rem;
  display: flex;
  min-width: 4.65rem;
  height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: .38rem;
  border-radius: .55rem;
  color: white;
  box-shadow: 0 10px 22px rgba(20, 25, 35, .22);
  font-size: .83rem;
}
.hero-document__badge img { width: 1.45rem; height: 1.45rem; filter: brightness(0) invert(1); }
.hero-document--pdf .hero-document__badge { background: #e3342f; }
.hero-document--csv .hero-document__badge { background: #198754; }
.hero-scene__source {
  position: absolute;
  width: 15.5rem;
  left: 2.1rem;
  bottom: -3.1rem;
  overflow: hidden;
  border: 7px solid #17181b;
  border-radius: 2.65rem;
  background: white;
  box-shadow: 0 24px 50px rgba(16, 20, 28, .17);
  transform: rotate(-2.5deg);
}
.hero-scene__source img { width: 100%; height: auto; }
.hero-scene__app {
  position: absolute;
  width: 18.2rem;
  right: 2.6rem;
  bottom: -3.8rem;
  border-width: 8px;
  transform: rotate(1.25deg);
}
.brand-icon {
  width: 2.55rem;
  height: 2.55rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: .8rem;
}
.brand-icon img { width: 1.35rem; height: 1.35rem; }
.brand-icon--whatsapp { background: #25d366; }
.brand-icon--adobe-acrobat-reader { background: #e4312b; }
.brand-icon--whatsapp img,
.brand-icon--adobe-acrobat-reader img { filter: invert(1); }
.hero-scene__badge {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: .75rem;
  min-width: 12.5rem;
  padding: .72rem .82rem;
  border: 1px solid rgba(19, 22, 29, .08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 36px rgba(19, 24, 34, .12);
  backdrop-filter: blur(12px);
}
.hero-scene__badge--source {
  left: 1.15rem;
  top: 1.35rem;
}
.hero-scene__badge--review {
  left: 50%;
  top: 1.35rem;
  transform: translateX(-50%);
}
.hero-scene__badge--output {
  left: auto;
  top: 1.35rem;
  right: 1.15rem;
  bottom: auto;
}
.hero-scene__badge > span:last-child { display: flex; flex-direction: column; line-height: 1.2; }
.hero-scene__badge small { color: #7a7f87; font-size: .65rem; }
.hero-scene__badge strong { margin-top: .18rem; font-size: .76rem; }
.hero-conversion .hero-scene__badge {
  min-width: 0;
  max-width: calc(33.333% - 1.35rem);
  gap: .5rem;
  padding: .62rem .7rem;
}
.hero-conversion .hero-scene__badge .brand-icon,
.hero-conversion .hero-conversion__app-icon {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: .68rem;
}
.hero-conversion .hero-scene__badge .brand-icon img { width: 1.1rem; height: 1.1rem; }
.hero-conversion .hero-scene__badge > span:last-child { min-width: 0; }
.hero-conversion .hero-scene__badge small,
.hero-conversion .hero-scene__badge strong { overflow-wrap: anywhere; }
.hero-conversion .hero-scene__badge small { font-size: .58rem; }
.hero-conversion .hero-scene__badge strong { font-size: .68rem; }
.hero-conversion__app-icon {
  width: 2.55rem;
  height: 2.55rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: .8rem;
  box-shadow: 0 7px 16px rgba(22, 60, 120, .18);
}
.hero-conversion__app-icon img { width: 100%; height: 100%; }
.hero-conversion--hub { min-height: 36rem; }
.hero-conversion--hub .hero-scene__badge--review { display: none; }
.hero-conversion--hub .hero-scene__badge { max-width: calc(50% - 1.65rem); }

@media (min-width: 761px) {
  .hero-conversion--hub .hero-scene__source { width: 13rem; left: .7rem; bottom: -2.4rem; }
  .hero-conversion--hub .hero-scene__app { width: 15.4rem; right: .7rem; bottom: -3rem; }
}

.page-home .benefit-bar {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}
.page-home .benefit-bar > div { min-height: 6rem; gap: .8rem; }
.page-home .benefit-bar > div + div { border-left: 1px solid var(--line); }
.page-home .benefit-bar .brand-icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: .72rem;
}
.page-home .benefit-bar .brand-icon img { width: 1.2rem; height: 1.2rem; }
.page-home .benefit-bar .brand-icon--whatsapp { background: #25d366; }
.page-home .benefit-bar .brand-icon--adobe-acrobat-reader { background: #e4312b; }
.page-home .benefit-bar .feature-icon {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: .72rem;
  background: #e8f3ff;
}
.page-home .benefit-bar .feature-icon img {
  width: 1.2rem;
  height: 1.2rem;
  filter: invert(40%) sepia(96%) saturate(2013%) hue-rotate(193deg) brightness(101%) contrast(102%);
}
.benefit-platform {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: .62rem;
  background: var(--home-ink);
  color: white;
  font-size: 1rem;
}
.page-home .benefit-bar .benefit-platform {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: .72rem;
  background: #111318;
  color: white;
  font-size: 1.15rem;
}

.app-compatibility {
  padding: clamp(5rem, 9vw, 7.5rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.app-compatibility__copy { max-width: 50rem; margin: 0 auto; }
.app-compatibility__copy h2 { max-width: 18ch; margin: 0 auto; }
.app-compatibility__copy > p:last-child {
  max-width: 46rem;
  margin: 1.25rem auto 0;
  color: var(--home-muted);
  font-size: 1rem;
}
.chat-apps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  max-width: 52rem;
  margin: 3rem auto 0;
}
.chat-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .65rem;
}
.chat-app__icon {
  display: grid;
  width: 4.6rem;
  height: 4.6rem;
  place-items: center;
  border-radius: 1.35rem;
  box-shadow: 0 13px 27px rgba(22, 27, 38, .13);
}
.chat-app__icon img {
  width: 2.55rem;
  height: 2.55rem;
  filter: brightness(0) invert(1);
}
.instagram-mark {
  position: relative;
  width: 2.45rem;
  height: 2.45rem;
  border: .2rem solid white;
  border-radius: .72rem;
}
.instagram-mark::before {
  position: absolute;
  width: .85rem;
  height: .85rem;
  left: 50%;
  top: 50%;
  border: .2rem solid white;
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}
.instagram-mark::after {
  position: absolute;
  width: .3rem;
  height: .3rem;
  right: .36rem;
  top: .36rem;
  border-radius: 50%;
  background: white;
  content: "";
}
.imessage-mark {
  position: relative;
  width: 2.55rem;
  height: 1.9rem;
  border-radius: 50%;
  background: white;
}
.imessage-mark::after {
  position: absolute;
  width: .82rem;
  height: .68rem;
  left: .16rem;
  bottom: -.26rem;
  background: white;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  content: "";
  transform: rotate(-8deg);
}
.chat-app small { color: #555a63; font-size: .72rem; font-weight: 680; }
.chat-app--imessage .chat-app__icon { background: linear-gradient(145deg, #69ef76, #27c840); }
.chat-app--whatsapp .chat-app__icon { background: linear-gradient(145deg, #54e96b, #20c355); }
.chat-app--instagram .chat-app__icon { background: linear-gradient(145deg, #6c4df6 5%, #e92b86 50%, #ff9d32); }
.chat-app--messenger .chat-app__icon { background: linear-gradient(145deg, #178cff, #9d3df5); }
.chat-app--telegram .chat-app__icon { background: #2aa9e0; }
.chat-app--signal .chat-app__icon { background: #3a76f0; }
.platform-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  margin: 2.2rem 0 0;
  color: #747982;
  font-size: .82rem;
  font-weight: 650;
}
.platform-line img { width: 1rem; height: 1rem; }

.page-home .visual-proof { padding: clamp(5rem, 9vw, 8rem) 0; }
.demo-feature {
  min-height: 34rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, .72fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
  padding: clamp(2.8rem, 6vw, 4.5rem);
  overflow: hidden;
  border-radius: 2rem;
  background: linear-gradient(145deg, #f7f9fc, #eef5fc);
}
.demo-feature__copy { max-width: 33rem; }
.demo-feature__copy h2 { max-width: 12ch; }
.demo-feature__copy > p:not(.section-kicker) {
  margin: 1.3rem 0 0;
  color: var(--home-muted);
  font-size: 1.04rem;
}
.demo-facts {
  display: grid;
  gap: .7rem;
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
}
.demo-facts li {
  position: relative;
  padding-left: 1.55rem;
  color: #272a30;
  font-size: .92rem;
  font-weight: 650;
}
.demo-facts li::before {
  position: absolute;
  left: 0;
  color: var(--home-blue);
  content: "✓";
}
.demo-feature__visual { display: grid; place-items: center; }
.demo-feature .phone-shell--video { width: min(100%, 19rem); }
.demo-feature .demo-video { background: white; }
.demo-example { margin-top: 1.35rem !important; color: #8a8f98 !important; font-size: .78rem !important; }

.page-home .content-flow { display: block; border-top: 1px solid var(--line); }
.page-home .content-section {
  display: block;
  padding: clamp(5rem, 9vw, 8rem) 0;
  border-bottom: 1px solid var(--line);
  background: white;
}
.page-home .content-section > .section-number { display: none; }
.page-home .content-section > div > h2 {
  max-width: 17ch;
  margin: 0 0 clamp(2.8rem, 6vw, 4.5rem);
  text-align: left;
}
.page-home .content-section--2,
.page-home .content-section--3,
.page-home .content-section--4 {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
  background: white;
  color: var(--home-ink);
}
.page-home .content-section--3 h2 { color: var(--home-ink); }

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.workflow-grid article { min-width: 0; }
.workflow-screen {
  position: relative;
  height: 26rem;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border: 1px solid #e7e9ed;
  border-radius: 1.5rem;
  background: var(--home-soft);
}
.workflow-screen .mini-phone {
  width: 13.25rem;
  top: 2rem;
  border-color: #151619;
  border-width: 7px;
}
.workflow-grid article > span {
  color: var(--home-blue-dark);
  font-size: .7rem;
  font-weight: 820;
  letter-spacing: .12em;
}
.workflow-grid h3 { margin-top: .6rem; font-size: 1.35rem; }
.workflow-grid p { margin: .75rem 0 0; color: var(--home-muted); font-size: .9rem; }

.case-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.case-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e5e8ed;
  border-radius: 1.5rem;
  background: white;
  color: var(--home-ink);
  text-decoration: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.case-card:hover {
  border-color: #cfd8e5;
  color: var(--home-ink);
  box-shadow: 0 1.4rem 3rem rgba(38, 72, 110, .1);
  transform: translateY(-.22rem);
}
.case-card__visual {
  position: relative;
  height: clamp(17rem, 30vw, 23rem);
  overflow: hidden;
  border-bottom: 1px solid #e5e8ed;
  background: linear-gradient(145deg, #f8fafc, #edf3f9);
}
.case-card__visual--client { background: linear-gradient(145deg, #f7faf8, #edf7f2); }
.case-card__visual--hr { background: linear-gradient(145deg, #faf8f6, #f4efeb); }
.case-card__visual--research { background: linear-gradient(145deg, #f7f8fd, #eef2fb); }
.case-card__visual picture { display: block; height: 100%; }
.case-card__visual img {
  position: absolute;
  top: 1.25rem;
  left: 50%;
  width: min(14.5rem, 64%);
  height: auto;
  border: 6px solid #151619;
  border-radius: 2.4rem 2.4rem 0 0;
  background: white;
  box-shadow: 0 1.2rem 2.8rem rgba(24, 45, 72, .16);
  transform: translateX(-50%);
}
.case-card__copy {
  position: relative;
  display: grid;
  gap: .55rem;
  min-height: 11.5rem;
  padding: 1.65rem 4.2rem 1.75rem 1.75rem;
}
.case-card__copy > span {
  color: var(--home-blue-dark);
  font-size: .7rem;
  font-weight: 820;
  letter-spacing: .12em;
}
.case-card__copy > strong { font-size: 1.28rem; }
.case-card__copy > p { margin: 0; color: var(--home-muted); font-size: .9rem; }
.case-card__copy > b {
  position: absolute;
  right: 1.75rem;
  top: 1.65rem;
  color: var(--home-blue);
  font-size: 1.25rem;
  transition: transform .18s ease;
}
.case-card:hover .case-card__copy > b { transform: translateX(.3rem); }

.integrity-panel {
  display: grid;
  grid-template-columns: minmax(17rem, .78fr) minmax(0, 1.22fr);
  gap: clamp(3rem, 9vw, 8rem);
  align-items: start;
}
.integrity-panel > div > p {
  max-width: 31rem;
  margin: 0;
  color: var(--home-muted);
  font-size: 1.07rem;
}
.integrity-panel .inline-arrow { margin-top: 1.4rem; }
.integrity-panel ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.integrity-panel li {
  position: relative;
  display: grid;
  gap: .35rem;
  padding: 1.35rem 0 1.35rem 3.4rem;
  border-bottom: 1px solid var(--line);
}
.integrity-panel li::before {
  position: absolute;
  left: 0;
  top: 1.35rem;
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e8f3ff;
  color: var(--home-blue-dark);
  content: "✓";
  font-weight: 820;
}
.integrity-panel li > span { color: var(--home-muted); font-size: .88rem; }

.format-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.format-strip a {
  min-height: 10rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: .35rem;
  padding: 1.15rem;
  text-decoration: none;
}
.format-strip a + a { border-left: 1px solid var(--line); }
.format-strip a:hover { background: #f8f9fa; color: var(--home-ink); }
.format-strip strong { font-size: 1.25rem; }
.format-strip small { color: var(--home-muted); font-size: .74rem; line-height: 1.35; }
.format-file {
  width: 2.65rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border: 1px solid #e0e2e6;
  border-radius: .45rem;
  background: white;
  box-shadow: 0 8px 18px rgba(25, 29, 37, .08);
}
.format-file img { width: 1.7rem; height: 1.7rem; }
.format-file--pdf img { filter: invert(24%) sepia(91%) saturate(3564%) hue-rotate(350deg) brightness(93%) contrast(90%); }
.format-file--csv img { filter: invert(37%) sepia(27%) saturate(1214%) hue-rotate(103deg) brightness(90%) contrast(95%); }
.format-file--html img { filter: invert(43%) sepia(96%) saturate(2571%) hue-rotate(351deg) brightness(99%) contrast(89%); }
.format-file--txt img { filter: invert(42%) sepia(74%) saturate(1905%) hue-rotate(192deg) brightness(97%) contrast(104%); }
.format-file--png img { filter: invert(44%) sepia(66%) saturate(1153%) hue-rotate(227deg) brightness(91%) contrast(92%); }
.format-file--rsmf img { filter: invert(41%) sepia(44%) saturate(1088%) hue-rotate(134deg) brightness(91%) contrast(90%); }
.page-home .format-note { max-width: none !important; margin: 1.2rem 0 0; text-align: left; }

.page-home .final-cta {
  margin: clamp(4.5rem, 8vw, 7rem) 0;
  border-radius: 2rem;
  background: var(--home-blue);
}
.page-home .final-cta .button--disabled {
  border-color: white;
  background: white;
  color: var(--home-ink);
}
.page-home .final-cta .button--disabled .button__apple { filter: none; }
.page-home .final-cta .button--disabled:hover { border-color: white; background: white; color: var(--home-ink); }

@media (max-width: 1080px) {
  .page-home .hero--home { grid-template-columns: minmax(0, .88fr) minmax(27rem, 1fr); gap: 2.75rem; }
  .hero-scene { min-height: 35rem; }
  .hero-scene__source { width: 13.2rem; left: 1.2rem; }
  .hero-scene__app { width: 16.3rem; right: 1.35rem; }
  .hero-conversion .hero-scene__badge--review { display: none; }
  .hero-conversion .hero-scene__badge { max-width: calc(50% - 1.65rem); }
  .format-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .format-strip a:nth-child(4) { border-left: 0; }
  .format-strip a:nth-child(n + 4) { border-top: 1px solid var(--line); }
}

@media (max-width: 760px) {
  .page-home .hero--home { grid-template-columns: 1fr; gap: 3rem; padding-top: 3rem; }
  .page-home .hero-copy { max-width: 37rem; }
  .home-highlights__header { text-align: left; }
  .home-highlights__header h2 { margin-left: 0; }
  .home-highlights__header > p:last-child { margin-left: 0; }
  .home-highlights__grid { grid-template-columns: 1fr; gap: 1rem; margin-top: 2.5rem; }
  .home-highlight__copy { min-height: 0; }
  .hero-scene { width: min(100%, 36rem); min-height: 39rem; margin: 0 auto; }
  .hero-scene__source { width: 15rem; }
  .hero-scene__app { width: 18.2rem; }
  .page-home .benefit-bar { grid-template-columns: 1fr; }
  .page-home .benefit-bar > div { justify-content: flex-start; min-height: 4.6rem; }
  .page-home .benefit-bar > div + div { border-top: 1px solid var(--line); border-left: 0; }
  .chat-apps { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 28rem; }
  .demo-feature { grid-template-columns: 1fr; }
  .demo-feature__copy h2 { max-width: 14ch; }
  .workflow-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .workflow-grid article { display: grid; grid-template-columns: minmax(14rem, .8fr) minmax(0, 1.2fr); column-gap: 1.5rem; align-items: start; }
  .workflow-screen { grid-row: 1 / span 4; height: 24rem; margin: 0; }
  .case-list { grid-template-columns: 1fr; }
  .case-card__visual { height: 22rem; }
  .integrity-panel { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hero-app-icon { width: 4rem; height: 4rem; margin-bottom: 1.7rem; border-radius: .95rem; }
  .page-home .hero--home h1 { font-size: clamp(3rem, 14.5vw, 4.25rem); }
  .hero-scene { min-height: 31rem; border-radius: 1.5rem; }
  .hero-scene__source { width: 11.3rem; left: .8rem; border-width: 5px; border-radius: 2rem; }
  .hero-scene__app { width: 13.9rem; right: .65rem; border-width: 6px; }
  .hero-scene__badge { min-width: 0; padding: .55rem; border-radius: .8rem; }
  .hero-scene__badge--source {
    left: .75rem;
    top: .75rem;
  }
  .hero-scene__badge--review { display: none; }
  .hero-scene__badge--output {
    left: auto;
    top: .75rem;
    right: .75rem;
    bottom: auto;
  }
  .hero-scene__badge .brand-icon { width: 2rem; height: 2rem; border-radius: .65rem; }
  .hero-scene__badge .brand-icon img { width: 1rem; height: 1rem; }
  .hero-scene__badge small { display: none; }
  .hero-scene__badge strong { margin: 0; font-size: .66rem; }
  .hero-output-files {
    inset: 0;
  }
  .hero-document { width: 5.1rem; height: 6.7rem; }
  .hero-document--pdf { right: .2rem; top: 34%; }
  .hero-document--csv { left: 31%; top: 58%; }
  .hero-document__badge { right: -.55rem; min-width: 3.7rem; height: 2.55rem; font-size: .69rem; }
  .hero-document__badge img { width: 1.05rem; height: 1.05rem; }
  .app-compatibility { padding: 4.5rem 0; }
  .app-compatibility__copy { text-align: left; }
  .app-compatibility__copy h2 { margin: 0; }
  .app-compatibility__copy > p:last-child { margin-left: 0; }
  .chat-apps { gap: 1.35rem .5rem; margin-top: 2.25rem; }
  .chat-app__icon { width: 3.9rem; height: 3.9rem; border-radius: 1.15rem; }
  .chat-app__icon img { width: 2.15rem; height: 2.15rem; }
  .instagram-mark { width: 2.05rem; height: 2.05rem; border-width: .17rem; border-radius: .6rem; }
  .instagram-mark::before { width: .7rem; height: .7rem; border-width: .17rem; }
  .instagram-mark::after { width: .25rem; height: .25rem; right: .3rem; top: .3rem; }
  .imessage-mark { width: 2.15rem; height: 1.6rem; }
  .page-home .visual-proof { padding: 4rem 0; }
  .demo-feature { padding: 2.5rem 1.1rem; border-radius: 1.5rem; }
  .demo-feature .phone-shell--video { width: 14.5rem; }
  .page-home .content-section { padding: 4.5rem 0; }
  .workflow-grid article { display: block; }
  .workflow-screen { height: 23rem; margin-bottom: 1.4rem; }
  .case-card__visual { height: 18rem; }
  .case-card__visual img { width: 12rem; }
  .case-card__copy { min-height: 0; padding: 1.45rem 3.6rem 1.55rem 1.4rem; }
  .case-card__copy > b { right: 1.4rem; top: 1.45rem; }
  .format-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .format-strip a:nth-child(odd) { border-left: 0; }
  .format-strip a:nth-child(even) { border-left: 1px solid var(--line); }
  .format-strip a:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .page-home .final-cta { border-radius: 1.5rem; }
}

/* Editorial conversion layer: real product screens, short paths, dense internal links. */
.hero--article,
.hero--article-hub {
  grid-template-columns: minmax(0, 1.12fr) minmax(18rem, .62fr);
  min-height: 41rem;
}
.hero--article h1,
.hero--article-hub h1 { max-width: 14ch; font-size: clamp(3.2rem, 5.5vw, 5.1rem); }
.article-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem 1.1rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 680;
}
.article-hero-meta span + span::before { margin-right: 1.1rem; color: #bec3ca; content: "·"; }
.article-hero-visual,
.article-hub-visual {
  position: relative;
  min-height: 34rem;
  overflow: hidden;
  border: 1px solid #dce9f6;
  border-radius: 2.2rem;
  background: #edf6ff;
  isolation: isolate;
}
.article-hero-visual::before,
.article-hub-visual::before {
  position: absolute;
  inset: 1.25rem;
  border: 1px solid rgba(22, 135, 248, .16);
  border-radius: 1.5rem;
  content: "";
}
.article-hero-visual__screen {
  position: absolute;
  left: 50%;
  bottom: -8.5rem;
  width: min(72%, 17rem);
  overflow: hidden;
  border: 7px solid #15171b;
  border-radius: 2.35rem;
  background: white;
  box-shadow: 0 1.5rem 3.5rem rgba(17, 38, 64, .2);
  transform: translateX(-50%);
}
.article-hero-visual__formats {
  position: absolute;
  z-index: 2;
  right: 1.7rem;
  top: 1.7rem;
  display: grid;
  gap: .4rem;
}
.article-hero-visual__formats span,
.article-hub-visual > span {
  padding: .45rem .65rem;
  border: 1px solid rgba(202, 218, 234, .9);
  border-radius: .65rem;
  background: rgba(255, 255, 255, .94);
  color: var(--blue-dark);
  font-size: .66rem;
  font-weight: 820;
  box-shadow: 0 .55rem 1.5rem rgba(27, 48, 71, .1);
}
.article-hub-visual > div {
  position: absolute;
  width: min(56%, 14rem);
  overflow: hidden;
  border: 6px solid #15171b;
  border-radius: 2rem;
  background: white;
  box-shadow: 0 1.4rem 3rem rgba(17, 38, 64, .18);
}
.article-hub-visual > div:first-child { left: 1.8rem; top: 4rem; transform: rotate(-4deg); }
.article-hub-visual > div:nth-child(2) { right: 1.7rem; top: 1.9rem; transform: rotate(5deg); }
.article-hub-visual > span { position: absolute; z-index: 3; left: 1.5rem; bottom: 1.5rem; }

.article-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  background: var(--soft);
}
.article-path > div { min-height: 8rem; display: flex; flex-direction: column; justify-content: space-between; gap: 1rem; padding: 1.35rem; }
.article-path > div + div { border-left: 1px solid var(--line); }
.article-path span { color: var(--blue-dark); font-size: .7rem; font-weight: 840; letter-spacing: .12em; }
.article-path strong { max-width: 14rem; font-size: 1rem; line-height: 1.25; }

.article-library,
.related-reading,
.home-reading { padding: clamp(4.5rem, 8vw, 7rem) 0; border-top: 1px solid var(--line); }
.article-library > h2,
.related-reading > h2,
.home-reading > div > h2 { max-width: 15ch; margin-bottom: 2.5rem; }
.article-cluster { padding: 3.6rem 0; border-top: 1px solid var(--line); }
.article-cluster:first-of-type { margin-top: 1rem; }
.article-cluster > header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: .4rem 2rem;
  margin-bottom: 1.6rem;
}
.article-cluster > header .section-kicker { grid-column: 1 / -1; margin: 0; }
.article-cluster > header h2 { max-width: 22ch; margin: 0; font-size: clamp(2rem, 3.2vw, 3.2rem); }
.article-cluster > header > span { color: var(--muted); font-size: .78rem; font-weight: 720; white-space: nowrap; }
.article-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.article-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.45rem;
  background: white;
  color: var(--ink);
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.article-card:hover { color: var(--ink); border-color: #b8d9f8; box-shadow: 0 1.25rem 2.8rem rgba(27, 44, 68, .09); transform: translateY(-3px); }
.article-card__visual { position: relative; height: 15rem; overflow: hidden; background: #edf6ff; }
.article-card__visual picture { display: block; height: 100%; }
.article-card__visual img {
  position: absolute;
  left: 50%;
  top: 1.3rem;
  width: min(13rem, 64%);
  height: auto;
  border: 6px solid #15171b;
  border-radius: 2rem 2rem 0 0;
  box-shadow: 0 1rem 2.4rem rgba(20, 42, 70, .17);
  transform: translateX(-50%);
}
.article-card__copy { position: relative; display: flex; min-height: 18rem; flex-direction: column; padding: 1.45rem 3.4rem 1.45rem 1.45rem; }
.article-card__copy > span { color: var(--blue-dark); font-size: .68rem; font-weight: 820; letter-spacing: .08em; text-transform: uppercase; }
.article-card__copy h3 { margin-top: .65rem; font-size: 1.35rem; }
.article-card__copy p { margin: .8rem 0 1.2rem; color: var(--muted); font-size: .86rem; line-height: 1.5; }
.article-card__copy small { margin-top: auto; color: #818791; font-size: .7rem; }
.article-card__copy b { position: absolute; right: 1.45rem; top: 1.45rem; color: var(--blue); font-size: 1.15rem; }

.article-section > div { max-width: 58rem; }
.article-section h2 { max-width: 22ch; }
.article-section p,
.article-section li { font-size: 1rem; line-height: 1.7; }
.page-articles .content-flow { margin-bottom: 2rem; }
.home-reading {
  display: grid;
  grid-template-columns: minmax(14rem, .38fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.home-reading .inline-arrow { margin-top: -.8rem; }
.article-grid--home .article-card__visual,
.article-grid--related .article-card__visual { height: 11rem; }
.article-grid--home .article-card__copy,
.article-grid--related .article-card__copy { min-height: 15rem; }
.related-reading { margin-top: 1rem; }
.related-reading > h2 { margin-bottom: 2.5rem; }

@media (max-width: 900px) {
  .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-reading { grid-template-columns: 1fr; }
  .article-grid--home .article-card:last-child { display: none; }
}

@media (max-width: 760px) {
  .hero--article,
  .hero--article-hub { grid-template-columns: 1fr; min-height: auto; padding-top: 3.2rem; }
  .article-hero-visual,
  .article-hub-visual { width: min(100%, 34rem); min-height: 31rem; margin: 0 auto; }
  .article-grid { grid-template-columns: 1fr; }
  .article-grid--home .article-card:last-child { display: block; }
  .article-card { display: grid; grid-template-columns: minmax(10rem, .72fr) minmax(0, 1.28fr); }
  .article-card__visual { height: 100%; min-height: 19rem; }
  .article-card__visual img { width: min(12rem, 78%); }
  .article-card__copy { min-height: 19rem; }
}

@media (max-width: 560px) {
  .hero--article h1,
  .hero--article-hub h1 { font-size: clamp(2.85rem, 13.5vw, 4rem); }
  .article-hero-meta { gap: .3rem .65rem; }
  .article-hero-meta span + span::before { margin-right: .65rem; }
  .article-hero-visual,
  .article-hub-visual { min-height: 27rem; border-radius: 1.5rem; }
  .article-hero-visual__screen { bottom: -6.8rem; width: 13rem; border-width: 6px; }
  .article-hub-visual > div { width: 11rem; }
  .article-hub-visual > div:first-child { left: .9rem; }
  .article-hub-visual > div:nth-child(2) { right: .8rem; }
  .article-path { grid-template-columns: 1fr; }
  .article-path > div { min-height: 6.7rem; }
  .article-path > div + div { border-top: 1px solid var(--line); border-left: 0; }
  .article-card { display: block; }
  .article-card__visual { height: 13rem; min-height: 0; }
  .article-card__copy { min-height: 0; padding-right: 3.2rem; }
  .article-card__copy small { margin-top: 1rem; }
  .article-library,
  .related-reading,
  .home-reading { padding: 4rem 0; }
  .article-cluster { padding: 3rem 0; }
  .article-cluster > header { grid-template-columns: 1fr; }
  .article-cluster > header > span { margin-top: .2rem; }
}
