/* Hallmark · macrostructure: Photographic · tone: consumer-product
 * theme: studied-DNA (source: https://nachoz.app) · paper #ffffff · accent likz-blue
 * display: Plus Jakarta Sans · body: Inter · studied: yes · DNA-source: url
 */
:root {
  --paper: #ffffff;
  --ink: #202020;
  --muted: #6b6b6b;
  --blue: #1e9bf0;
  --green: #5bc940;
  --pink: #f0418a;
  --yellow: #fbbf24;
  --acc-blue: #0b6cb0;
  --acc-green: #2b761a;
  --acc-pink: #b01e5f;
  --acc-amber: #8a5a00;
  --acc-btn: #0d78c4;
  --accent: #e0a020;
  --line: #e8e8e8;
  --radius-pill: 999px;
  --radius-photo: 24px;
  --radius-card: 24px;
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: Inter, system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-motion: 800ms;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --nav-h: 64px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: clip; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img { max-width: 100%; height: auto; display: block; }
.headline {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  overflow-wrap: anywhere;
}
.c-blue { color: var(--blue); }
.c-green { color: var(--green); }
.c-pink { color: var(--pink); }
.c-yellow { color: var(--yellow); }
.headline .c-blue, h1 .c-blue { color: var(--blue); }
.headline .c-green, h1 .c-green { color: var(--green); }
.headline .c-pink, h1 .c-pink { color: var(--pink); }
.headline .c-yellow, h1 .c-yellow { color: var(--yellow); }
.top-mesh {
  pointer-events: none;
  position: fixed;
  inset: 0 0 auto;
  z-index: -1;
  height: 420px;
  background-image:
    radial-gradient(circle at 0 0, rgba(104, 229, 243, 0.42) 3%, transparent 40%),
    radial-gradient(circle at 20% 0, rgba(92, 196, 245, 0.42) 3%, transparent 40%),
    radial-gradient(circle at 40% 0, rgba(100, 164, 247, 0.42) 3%, transparent 40%),
    radial-gradient(circle at 60% 0, rgba(122, 139, 245, 0.4) 3%, transparent 40%),
    radial-gradient(circle at 80% 0, rgba(157, 136, 242, 0.38) 3%, transparent 40%),
    radial-gradient(circle at 100% 0, rgba(248, 182, 89, 0.34) 3%, transparent 40%);
  mask-image: linear-gradient(#000, transparent);
}

.nav-wrap {
  position: sticky;
  top: 1rem;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
}
/* Web glassmorphism approximation of Apple Liquid Glass. Not an Apple-issued package. */
.nav-pill {
  position: relative;
  isolation: isolate;
  overflow: visible;
  display: flex;
  align-items: center;
  gap: 2rem;
  height: var(--nav-h);
  max-height: 64px;
  padding: 0 1.25rem 0 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgb(255 255 255 / 0.38);
  background:
    linear-gradient(135deg, rgb(255 255 255 / 0.42), rgb(255 255 255 / 0.08)),
    rgb(255 255 255 / 0.18);
  backdrop-filter: blur(28px) saturate(180%) contrast(1.05);
  -webkit-backdrop-filter: blur(28px) saturate(180%) contrast(1.05);
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 0.55),
    inset 0 -1px 0 rgb(255 255 255 / 0.12),
    0 18px 40px rgb(0 0 0 / 0.08);
}
.nav-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 0%, rgb(255 255 255 / 0.7), transparent 36%),
    linear-gradient(90deg, rgb(255 255 255 / 0.22), transparent 42%, rgb(255 255 255 / 0.16));
  pointer-events: none;
}
.nav-pill::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: inherit;
  border: 1px solid rgb(255 255 255 / 0.18);
  pointer-events: none;
}
.nav-pill > * {
  position: relative;
  z-index: 1;
}
.nav-pill .brand {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
}
.nav-pill .brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}
.nav-links { display: flex; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); }
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--paper);
  font: 600 0.8125rem/1 var(--font-body);
  padding: 0.45rem 1rem;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary:hover { opacity: 0.9; }
.btn-primary:active { transform: scale(0.98); }
.btn-primary:focus-visible { outline: 3px solid var(--acc-blue); outline-offset: 2px; }
.btn-ink {
  background: var(--ink);
  color: var(--paper);
}
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 1.25rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
}
.site-footer nav { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 0.75rem; }
.site-footer a { text-decoration: none; white-space: nowrap; }
.site-footer a:hover { color: var(--ink); }
.site-footer-rich {
  max-width: 72rem;
  margin: 0 auto;
  padding: 4rem 1.25rem 2rem;
  text-align: left;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(16rem, 1.6fr) repeat(3, minmax(9rem, 1fr));
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.footer-brand .brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}
.footer-brand img { width: 40px; height: 40px; border-radius: 10px; }
.footer-brand p { max-width: 24rem; margin: 1rem 0 0; color: var(--muted); }
.footer-column h2 {
  margin: 0 0 1rem;
  font: 700 0.76rem/1 var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-column a { display: block; width: fit-content; margin: 0.7rem 0; color: var(--ink); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer-socials {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.35rem;
}
.footer-socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  color: var(--muted);
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}
.footer-socials a:hover { color: var(--ink); background: var(--panel); }
.footer-socials a:focus-visible { outline: 3px solid var(--acc-blue); outline-offset: 2px; }
.footer-socials svg { display: block; width: 18px; height: 18px; }
.footer-socials .analytics-settings {
  width: 40px;
  height: 40px;
  margin: 0;
  border-radius: var(--radius-pill);
}
.analytics-settings {
  width: 36px;
  height: 36px;
  margin: 0.75rem auto 0;
  border: 0;
  border-radius: 10px;
  padding: 0;
  background: transparent;
  display: grid;
  place-items: center;
  color: var(--muted);
  cursor: pointer;
}
.analytics-settings:hover { color: var(--ink); }
.analytics-settings svg { width: 16px; height: 16px; display: block; }
.analytics-settings:focus-visible {
  outline: 3px solid var(--acc-blue);
  outline-offset: 2px;
}


.photo-slot {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 280px;
  margin: 0;
  border-radius: var(--radius-photo);
  background: #eceff3;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.875rem;
  overflow: hidden;
}
.photo-slot img { width: 100%; height: 100%; object-fit: cover; }
.photo-slot[data-missing="true"]::after { content: attr(data-file); }

.hero { text-align: center; padding: 1.5rem 1.25rem 1.75rem; position: relative; z-index: 1; }
.hero-icon { width: 72px; height: 72px; margin: 0 auto; border-radius: 22%; }
.hero h1 { font-size: 36px; margin: 0.75rem 0 0; color: var(--ink); }
.hero-word {
  display: inline-block;
  animation: word-rise 0.8s var(--ease-out) both;
  animation-delay: var(--word-delay, 0s);
}
.hero .sub {
  max-width: 42rem;
  margin: 1rem auto 0;
  font-size: 1.25rem;
  line-height: 1.45;
  color: #202020;
}
.hero-cta { margin-top: 1.5rem; }
.hero-shot { margin-top: 0.5rem; width: 100%; }
.hero-shot .photo-slot {
  background: transparent;
  min-height: 0;
  border-radius: 0;
}
.hero-shot img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}
.overview { max-width: 64rem; margin: 0 auto; padding: 4rem 1.25rem 3.5rem; }
.overview h2 { font-size: clamp(2rem, 5.5vw, 4rem); color: var(--muted); }
.overview-reveal {
  view-timeline-name: --overview-copy;
  view-timeline-axis: block;
}
.overview-word {
  --word-color: var(--ink);
  color: var(--muted);
  animation-name: overview-to-ink;
  animation-timing-function: linear;
  animation-fill-mode: both;
  animation-timeline: --overview-copy;
  animation-range: cover var(--word-start) cover var(--word-end);
}
.intent-hub { max-width: 72rem; margin: 0 auto; padding: 1.75rem 1.25rem 3rem; }
.intent-head { max-width: 42rem; margin: 0 auto 1.5rem; text-align: center; }
.intent-head h2 { margin: 0.5rem 0 0.65rem; font-size: clamp(2.2rem, 4.5vw, 3.5rem); }
.intent-head > p:last-child { margin: 0; color: var(--muted); font-size: 1rem; }
.intent-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.intent-card {
  min-height: 7.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-photo);
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 10px 28px rgb(32 32 32 / 0.055);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.intent-card:hover { transform: translateY(-2px); box-shadow: 0 15px 36px rgb(32 32 32 / 0.09); border-color: currentColor; }
.intent-card:focus-visible { outline: 3px solid var(--acc-blue); outline-offset: 3px; }
.intent-card span { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.intent-card strong { max-width: 20rem; font-size: clamp(1.05rem, 1.55vw, 1.3rem); line-height: 1.18; }
.intent-blue span { color: var(--acc-blue); }
.intent-green span { color: var(--acc-green); }
.intent-pink span { color: var(--acc-pink); }
.intent-amber span { color: var(--acc-amber); }
.intent-ink { background: var(--ink); color: #fff; }
.powered {
  margin: 3rem 0 1.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.platforms {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.plat {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
}
.plat-mark {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
}
.plat-mac .plat-mark { background: var(--blue); }
.plat-win .plat-mark { background: var(--acc-amber); }
.plat-ios .plat-mark { background: var(--pink); }
.plat-and .plat-mark { background: var(--green); }

.fold { display: grid; gap: 2rem; align-items: end; padding: 4rem 1.25rem 3rem; max-width: 72rem; margin: 0 auto; }
.fold h2 { font-size: clamp(2.5rem, 6vw, 4rem); margin: 1rem 0 0; }
.fold p { max-width: 28rem; color: var(--muted); font-size: 1.125rem; }
.fold-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.fold-nearby, .fold-label.c-blue { color: var(--acc-blue); }
.fold-offline, .fold-label.c-green { color: var(--acc-green); }
.fold-link, .fold-label.c-pink { color: var(--acc-pink); }
.fold-label.c-yellow { color: var(--accent); }
.track-fold {
  position: relative;
  overflow-x: clip;
  display: grid;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 4rem 1.25rem 2rem;
}
.track-copy p { max-width: 28rem; color: var(--muted); font-size: 1.125rem; }
.track-copy h2 { font-size: clamp(2.5rem, 6vw, 4rem); margin: 1rem 0 1.25rem; }
.track-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.track-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.05rem;
}
.track-list li::before {
  content: "";
  width: 0.42em;
  height: 0.75em;
  flex: 0 0 auto;
  margin-top: -0.15em;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
}
.track-visual .photo-slot {
  position: static;
  display: block;
  background: transparent;
  min-height: 0;
}
.track-visual img {
  width: 100%;
  height: auto;
}
.fold-link-section { align-items: center; }
.fold-link-copy { max-width: 30rem; }
.link-transfer-demo {
  isolation: isolate;
  min-width: 0;
  min-height: clamp(20rem, 48vw, 30rem);
  padding: clamp(1.1rem, 3vw, 2.25rem);
  display: grid;
  grid-template-columns: minmax(4.75rem, 0.78fr) minmax(3.6rem, 0.55fr) minmax(9.5rem, 1.35fr);
  align-items: center;
  gap: clamp(0.45rem, 1.5vw, 1rem);
  border: 1px solid color-mix(in srgb, var(--pink) 18%, var(--line));
  background:
    radial-gradient(circle at 15% 25%, rgb(255 255 255 / 0.95), transparent 32%),
    linear-gradient(135deg, color-mix(in srgb, var(--pink) 8%, var(--paper)), color-mix(in srgb, var(--blue) 7%, var(--paper)));
  color: var(--acc-pink);
}
.link-sender {
  position: relative;
  width: 100%;
  max-width: 8.5rem;
  aspect-ratio: 0.54;
  justify-self: end;
  overflow: hidden;
  border: 3px solid currentColor;
  border-radius: clamp(1rem, 2.5vw, 1.7rem);
  background: color-mix(in srgb, var(--paper) 92%, var(--pink));
  box-shadow: 0 16px 32px rgb(176 30 95 / 0.13);
}
.link-phone-speaker {
  position: absolute;
  top: 0.7rem;
  left: 50%;
  width: 34%;
  height: 0.28rem;
  border-radius: var(--radius-pill);
  background: var(--acc-pink);
  transform: translateX(-50%);
}
.link-file-card {
  position: absolute;
  inset: 29% 10% auto;
  padding: 0.65rem 0.45rem;
  border: 1px solid color-mix(in srgb, currentColor 22%, transparent);
  border-radius: 0.75rem;
  background: var(--paper);
  box-shadow: 0 8px 20px rgb(32 32 32 / 0.08);
  text-align: center;
}
.link-file-card i, .link-browser-file i {
  display: block;
  width: 1.25rem;
  height: 1.55rem;
  margin: 0 auto 0.4rem;
  border: 2px solid currentColor;
  border-radius: 0.25rem;
}
.link-file-card b, .link-file-card small, .link-browser-file b, .link-browser-file small { display: block; }
.link-file-card b, .link-browser-file b { color: var(--ink); font-size: clamp(0.58rem, 1.25vw, 0.78rem); }
.link-file-card small, .link-browser-file small { color: var(--muted); font-size: clamp(0.48rem, 1vw, 0.66rem); }
.link-approved {
  position: absolute;
  right: 9%;
  bottom: 11%;
  left: 9%;
  padding: 0.38rem;
  border-radius: var(--radius-pill);
  background: var(--acc-pink);
  color: var(--paper);
  font-size: clamp(0.5rem, 1vw, 0.68rem);
  font-weight: 800;
  text-align: center;
}
.link-route { position: relative; align-self: stretch; min-width: 0; }
.link-route-line {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 2px;
  border-radius: var(--radius-pill);
  background: repeating-linear-gradient(90deg, currentColor 0 7px, transparent 7px 12px);
  opacity: 0.4;
}
.link-route::after {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px color-mix(in srgb, currentColor 14%, transparent);
}
.link-token {
  position: absolute;
  top: calc(50% - 2.35rem);
  left: 50%;
  width: max-content;
  max-width: 6.2rem;
  padding: 0.3rem 0.48rem;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, currentColor 24%, transparent);
  border-radius: var(--radius-pill);
  background: var(--paper);
  box-shadow: 0 6px 16px rgb(32 32 32 / 0.08);
  font-size: clamp(0.45rem, 0.85vw, 0.62rem);
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
  transform: translateX(-50%);
}
.link-browser {
  position: relative;
  width: 100%;
  min-height: clamp(11.5rem, 25vw, 15rem);
  overflow: hidden;
  border: 3px solid currentColor;
  border-radius: clamp(0.85rem, 2vw, 1.25rem);
  background: var(--paper);
  box-shadow: 0 18px 38px rgb(176 30 95 / 0.13);
}
.link-browser-bar {
  height: 2rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0 0.55rem;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--pink) 6%, var(--paper));
}
.link-browser-bar i { width: 0.35rem; height: 0.35rem; flex: 0 0 auto; border-radius: 50%; background: currentColor; opacity: 0.35; }
.link-browser-bar b { min-width: 0; margin-left: 0.25rem; overflow: hidden; color: var(--muted); font-size: clamp(0.45rem, 0.85vw, 0.6rem); text-overflow: ellipsis; white-space: nowrap; }
.link-browser-file { position: absolute; top: 28%; right: 9%; left: 9%; text-align: center; }
.link-download {
  position: absolute;
  right: 10%;
  bottom: 18%;
  left: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.48rem;
  border-radius: var(--radius-pill);
  background: var(--acc-pink);
  color: var(--paper);
  font-size: clamp(0.55rem, 1vw, 0.72rem);
  font-weight: 800;
}
.link-download i { width: 0.45rem; height: 0.55rem; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); }
.link-progress { position: absolute; right: 13%; bottom: 9%; left: 13%; height: 0.25rem; overflow: hidden; border-radius: var(--radius-pill); background: color-mix(in srgb, var(--pink) 12%, var(--line)); }
.link-progress i { display: block; width: 100%; height: 100%; border-radius: inherit; background: currentColor; transform-origin: left; }
@media (min-width: 1024px) {
  .fold { grid-template-columns: 1fr 1.2fr; }
  .fold.rtl { grid-template-columns: 1.2fr 1fr; }
  .fold-link-section { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero h1 { font-size: 56px; }
  .hero-icon { width: 96px; height: 96px; }
  .hero-shot { margin-top: 0.75rem; }
  .track-fold {
    grid-template-columns: minmax(0, 32rem) 1fr;
    align-items: start;
    max-width: none;
    margin: 0;
    padding-left: max(1.25rem, calc((100vw - 72rem) / 2 + 1.25rem));
    padding-right: 0;
    min-height: 28rem;
  }
  .track-visual {
    position: relative;
    height: clamp(28rem, 42vw, 36rem);
    min-height: 0;
    overflow: hidden;
  }
  .track-visual .photo-slot {
    width: 100%;
    height: 100%;
  }
  .track-visual img {
    position: static;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    object-position: right top;
  }
}

.photo-slot[data-missing="true"]:has(.illu) {
  background: color-mix(in srgb, var(--blue) 10%, #eef3f8);
}
.photo-slot[data-missing="true"]:has(.illu) img,
.photo-slot[data-missing="true"]:has(.illu)::after { display: none; }
.photo-slot[data-slot="offline"][data-missing="true"]:has(.illu) { background: color-mix(in srgb, var(--green) 12%, #eef6ea); }
.photo-slot[data-slot="cta-devices"][data-missing="true"]:has(.illu) { background: color-mix(in srgb, var(--yellow) 16%, #f7f3e6); }

.illu {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  pointer-events: none;
}
.dev-phone,
.dev-laptop,
.dev-desktop,
.dev-browser {
  position: relative;
  flex: 0 0 auto;
  border: 3px solid currentColor;
  background: color-mix(in srgb, var(--paper) 70%, transparent);
}
.dev-phone {
  width: 42px;
  height: 76px;
  border-radius: 10px;
}
.dev-phone::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 12px;
  height: 3px;
  border-radius: 2px;
  background: currentColor;
  transform: translateX(-50%);
}
.dev-laptop {
  width: 92px;
  height: 58px;
  border-radius: 8px 8px 4px 4px;
}
.dev-laptop::after {
  content: "";
  position: absolute;
  left: 8%;
  bottom: -8px;
  width: 84%;
  height: 6px;
  border-radius: 0 0 4px 4px;
  background: currentColor;
}
.dev-desktop {
  width: 88px;
  height: 58px;
  border-radius: 6px;
}
.dev-desktop::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 18px;
  height: 10px;
  background: currentColor;
  transform: translateX(-50%);
}
.dev-browser {
  width: 120px;
  height: 78px;
  border-radius: 10px;
}
.dev-browser::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 10px;
  width: 70%;
  height: 8px;
  border-radius: 4px;
  background: currentColor;
  opacity: 0.35;
}
.pkt {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
}
.beam {
  width: 72px;
  height: 3px;
  border-radius: 99px;
  background: currentColor;
  opacity: 0.35;
}
.illu-offline { color: var(--acc-green); }
.illu-nearby { color: var(--acc-blue); }
.illu-hero { color: var(--acc-blue); }
.illu-cta { color: var(--acc-amber); gap: 2rem; }
.illu-offline .ring {
  position: absolute;
  width: 140px;
  height: 140px;
  border: 2px solid currentColor;
  border-radius: 50%;
  opacity: 0.25;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-shot {
    animation: reveal-photo 1s var(--ease-out) 0.35s both;
  }
  .plat { animation: rise var(--dur-motion) var(--ease-out) both; animation-timeline: view(); animation-range: entry 0% entry 30%; }
  .plat-win { animation-range: entry 6% entry 34%; }
  .plat-ios { animation-range: entry 12% entry 38%; }
  .plat-and { animation-range: entry 18% entry 42%; }
  .pkt {
    animation: packet 1.6s var(--ease-out) infinite;
  }
  .pkt-b { animation-delay: 0.7s; }
  .illu-offline .ring {
    animation: ping 2.2s var(--ease-out) infinite;
  }
  .beam {
    animation: beam 1.6s var(--ease-out) infinite;
  }
  .illu-nearby .pkt { animation-name: packet-x; }
  .illu-offline .pkt { animation-name: packet-x; }
  .illu-hero .pkt { animation-name: packet-x; }
  .link-route::after { animation: link-route-travel 2.4s var(--ease-out) infinite; }
  .link-approved { animation: link-approval 2.4s var(--ease-out) infinite; }
  .link-browser-file { animation: link-file-arrive 2.4s var(--ease-out) infinite; }
  .link-download i { animation: link-download-arrow 1.15s var(--ease-out) infinite; }
  .link-progress i { animation: link-progress 2.4s var(--ease-out) infinite; }

  .track-copy,
  .fold > div,
  .powered,
  .bento article,
  .carousel h2,
  .cta h2,
  .cta > p,
  .faq h2,
  .faq details {
    animation: rise 0.85s var(--ease-out) both;
    animation-timeline: view();
    animation-range: entry 0% entry 34%;
  }
  .track-visual img {
    animation: reveal-photo 1s var(--ease-out) both;
    animation-timeline: view();
    animation-range: entry 4% entry 42%;
  }
  .bento article.relay { animation-range: entry 10% entry 40%; }
  .bento article.blue { animation-range: entry 18% entry 46%; }
  .fold .photo-slot,
  .fold-link-section .photo-slot {
    animation: reveal-photo 1s var(--ease-out) both;
    animation-timeline: view();
    animation-range: entry 8% entry 42%;
  }
}

@keyframes packet {
  0%, 100% { transform: translateY(0); opacity: 0.35; }
  50% { transform: translateY(-10px); opacity: 1; }
}
@keyframes packet-x {
  0% { transform: translateX(-28px) scale(0.7); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateX(28px) scale(1); opacity: 0; }
}
@keyframes ping {
  0% { transform: scale(0.7); opacity: 0.4; }
  100% { transform: scale(1.25); opacity: 0; }
}
@keyframes beam {
  0%, 100% { opacity: 0.15; transform: scaleX(0.7); }
  50% { opacity: 0.7; transform: scaleX(1); }
}
@keyframes link-route-travel {
  0%, 12% { transform: translateX(0) scale(0.7); opacity: 0; }
  24% { opacity: 1; }
  66% { transform: translateX(calc(100% - 10px)) scale(1); opacity: 1; }
  76%, 100% { transform: translateX(calc(100% - 10px)) scale(0.8); opacity: 0; }
}
@keyframes link-approval {
  0%, 10%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, currentColor 0%, transparent); }
  22% { box-shadow: 0 0 0 7px color-mix(in srgb, currentColor 16%, transparent); }
  34% { box-shadow: 0 0 0 0 color-mix(in srgb, currentColor 0%, transparent); }
}
@keyframes link-file-arrive {
  0%, 52% { opacity: 0.35; transform: translateY(6px); }
  66%, 100% { opacity: 1; transform: translateY(0); }
}
@keyframes link-download-arrow {
  0%, 100% { transform: translateY(-2px) rotate(45deg); }
  50% { transform: translateY(2px) rotate(45deg); }
}
@keyframes link-progress {
  0%, 62% { transform: scaleX(0.08); }
  96%, 100% { transform: scaleX(1); }
}

.carousel {
  background: var(--ink);
  color: var(--paper);
  padding: 9rem 0;
  text-align: center;
}
.carousel-head { max-width: 56rem; margin: 0 auto; padding: 0 1.25rem; }
.carousel .fold-label { color: var(--accent); }
.carousel h2 {
  font-size: clamp(3.25rem, 8vw, 7rem);
  margin: 1.25rem 0 0;
  line-height: 0.95;
}
.carousel-sub {
  margin: 1.5rem auto 0;
  max-width: 36rem;
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgb(255 255 255 / 0.6);
}
.carousel-bleed {
  position: relative;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  margin-top: 4rem;
  text-align: left;
}
.carousel .track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 1.25rem 1rem;
  scrollbar-width: none;
}
.carousel .track::-webkit-scrollbar { display: none; }
.carousel .card {
  flex: 0 0 min(78vw, calc(72vh * 1129 / 2329));
  width: min(78vw, calc(72vh * 1129 / 2329));
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  overflow: visible;
  background: transparent;
  padding: 0;
  text-align: center;
}
.carousel .card h3 {
  margin: 0;
  padding: 0 0.25rem 0.5rem;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.carousel .phone {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
}
.phone-frame {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.phone-screen {
  position: absolute;
  left: 3.1%;
  top: 0.56%;
  z-index: 0;
  width: 93.8%;
  height: 98.88%;
  object-fit: cover;
  object-position: top center;
  border-radius: 14.16% / 6.51%;
}
.carousel-btn {
  display: none;
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 0.15);
  background: rgb(20 20 20 / 0.8);
  color: #fff;
  backdrop-filter: blur(12px);
  cursor: pointer;
  transform: translateY(-50%);
}
.carousel-btn:hover { background: rgb(20 20 20 / 0.95); }
.carousel-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.carousel-btn.prev { left: 1.5rem; }
.carousel-btn.next { right: 1.5rem; }
.carousel-btn::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}
.carousel-btn.prev::before { transform: rotate(45deg); margin-left: 3px; }
.carousel-btn.next::before { transform: rotate(-135deg); margin-right: 3px; }
@media (min-width: 640px) {
  .carousel .track { padding-left: 2rem; padding-right: 2rem; }
}
@media (min-width: 1024px) {
  .carousel .track {
    padding-left: max(2rem, calc((100vw - 80rem) / 2));
    padding-right: max(2rem, calc((100vw - 80rem) / 2));
  }
  .carousel-btn { display: grid; place-items: center; }
}

.bento {
  display: grid;
  gap: 1rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 3.5rem 1.25rem;
}
.proof-card {
  border-radius: var(--radius-photo);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  min-width: 0;
  min-height: 18rem;
}
.proof-card h2 { margin: 0; }
.proof-card p { margin: 0; max-width: 34rem; }
.proof-card.ink {
  background: var(--ink);
  color: var(--paper);
}
.proof-card.ink .proof-card-copy > p { color: rgb(255 255 255 / 0.68); }
.proof-card.relay {
  background: color-mix(in srgb, var(--green) 18%, var(--paper));
  color: var(--ink);
}
.proof-card.relay .proof-card-copy > p,
.proof-card.paper .proof-card-copy > p { color: var(--muted); }
.proof-card.blue { background: var(--acc-btn); color: #fff; }
.proof-card.blue .proof-card-copy > p { color: rgb(255 255 255 / 0.82); }
.proof-card.paper {
  background: color-mix(in srgb, var(--pink) 7%, var(--paper));
  color: var(--ink);
}
.proof-card .proof-kicker {
  max-width: none;
  color: var(--acc-pink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}
.proof-card.ink .proof-kicker { color: var(--pink); }
.proof-card.blue .proof-kicker { color: #fff; opacity: 0.76; }
.proof-card.relay .proof-kicker { color: var(--acc-green); }
.proof-card-copy { display: grid; gap: 1.25rem; }
.proof-card-copy > p { font-size: 1rem; line-height: 1.6; }
.proof-hero h2 { font-size: clamp(3rem, 6vw, 5rem); line-height: 1.05; }
.proof-wide h2 { font-size: clamp(2rem, 3vw, 2.25rem); }
.proof-small h2 { font-size: 1.875rem; }
@media (min-width: 768px) {
  .bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-inline: 2rem;
  }
  .proof-hero,
  .proof-wide { grid-column: 1 / -1; }
}
@media (min-width: 1024px) {
  .bento {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: minmax(18rem, auto) minmax(20rem, auto);
  }
  .proof-card { min-height: 0; }
  .proof-hero {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 100%;
    padding: 2.5rem;
  }
  .proof-wide { grid-column: span 2; padding: 2.5rem; }
  .proof-small { padding: 2rem; }
}

.homescreen {
  overflow: hidden;
  padding: 6rem 1.25rem 5rem;
  text-align: center;
}
.homescreen h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 1rem 0 0;
  line-height: 0.95;
}
.homescreen-sub {
  margin: 1.5rem auto 0;
  max-width: 36rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--muted);
}
.discover-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 4rem;
}
.discover-phone {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  height: 360px;
  aspect-ratio: 1129 / 2329;
  width: auto;
}
.discover-phone + .discover-phone { margin-left: -3rem; }
.discover-phone-center {
  z-index: 2;
  height: 400px;
}
.discover-phone .phone-frame {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 640px) {
  .discover-phone + .discover-phone { margin-left: -4rem; }
  .discover-phone-left,
  .discover-phone-right { height: 486px; }
  .discover-phone-center { height: 540px; }
}
@media (min-width: 1024px) {
  .homescreen { min-height: 900px; padding: 9rem 1.25rem 6rem; }
  .discover-phone + .discover-phone { margin-left: -5rem; }
  .discover-phone-left,
  .discover-phone-right { height: 630px; }
  .discover-phone-center { height: 700px; }
}
@media (prefers-reduced-motion: no-preference) {
  .discover-stage .discover-phone-center,
  .discover-stage .discover-phone-left,
  .discover-stage .discover-phone-right {
    opacity: 0;
    will-change: transform, opacity;
  }
  .discover-stage .discover-phone-center { transform: scale(1.2); }
  .discover-stage .discover-phone-left { transform: translate(62%) scale(0.88); }
  .discover-stage .discover-phone-right { transform: translate(-62%) scale(0.88); }
  .discover-stage.is-revealed .discover-phone-center {
    animation: discover-center-settle 0.9s var(--ease-out) forwards;
  }
  .discover-stage.is-revealed .discover-phone-left {
    animation: discover-slide-left 0.95s var(--ease-out) 0.22s forwards;
  }
  .discover-stage.is-revealed .discover-phone-right {
    animation: discover-slide-right 0.95s var(--ease-out) 0.22s forwards;
  }
}
@keyframes discover-center-settle {
  from { opacity: 0; transform: scale(1.2); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes discover-slide-left {
  from { opacity: 0; transform: translate(62%) scale(0.88); }
  to { opacity: 1; transform: translate(0) scale(1); }
}
@keyframes discover-slide-right {
  from { opacity: 0; transform: translate(-62%) scale(0.88); }
  to { opacity: 1; transform: translate(0) scale(1); }
}

.cta {
  overflow: hidden;
  text-align: center;
  padding: 6rem 0 0;
}
.cta-copy {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.25rem 2.75rem;
}
.cta h2 { font-size: clamp(2.2rem, 7vw, 5rem); margin: 0; line-height: 0.95; }
.cta-copy p { margin: 1.25rem auto 0; max-width: 28rem; color: var(--muted); }
.cta-btns { margin: 2rem 0 0; }
.cta-hands-wrap { margin: 0; }
.cta-hands {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 640px) {
  .cta { padding-top: 9rem; }
}

.faq { max-width: 56rem; margin: 0 auto; padding: 3.5rem 1.25rem; }
.faq details {
  margin: 0.75rem 0;
  padding: 0 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--paper);
  box-shadow: 0 10px 28px rgb(32 32 32 / 0.045);
}
.faq summary {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details p { margin: 0 0 1.25rem; max-width: 40rem; color: var(--muted); }

.page-hero { max-width: 48rem; margin: 0 auto; padding: 4rem 1.25rem 2rem; text-align: center; }
.page-hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
.page-hero > p { max-width: 42rem; margin: 1rem auto 0; color: var(--muted); font-size: 1.08rem; }
.availability-note { display: inline-flex; align-items: center; gap: 0.55rem; font-size: 0.86rem !important; }
.availability-note span { width: 0.55rem; height: 0.55rem; border-radius: 50%; background: var(--acc-green); }
.download-grid, .plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 64rem;
  margin: 0 auto;
  padding: 1rem 1.25rem 2rem;
}
.download-card, .plan-card, .benefit-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--paper);
  padding: 1.6rem;
  box-shadow: 0 12px 34px rgb(32 32 32 / 0.06);
}
.download-card h2, .plan-card h2 { margin: 0; font-size: 1.65rem; }
.download-card p { min-height: 1.5rem; margin: 0.65rem 0 1.25rem; color: var(--muted); }
.download-card small { display: block; margin-top: 1rem; color: var(--muted); }
.download-trust { max-width: 52rem; margin: 1rem auto 3rem; padding: 0 1.25rem; color: var(--muted); text-align: center; }
.download-faq, .pricing-faq { padding-top: 2rem; padding-bottom: 5rem; }
.download-faq h2, .pricing-faq h2 { margin: 0.65rem 0 1.5rem; font-size: clamp(2.2rem, 5vw, 3.6rem); }
.plan-card { padding: 2rem; }
.plan-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.plan-pro { position: relative; background: var(--ink); color: #fff; }
.plan-pro p, .plan-pro li { color: rgb(255 255 255 / 0.76); }
.plan-label { margin: 0 0 1.5rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.plan-personal .plan-label { color: var(--acc-green); }
.plan-pro .plan-label { color: var(--yellow); }
.plan-price { margin: 1rem 0 0; font-size: 2.4rem; font-weight: 700; letter-spacing: -0.04em; }
.plan-price .price-currency { font-size: 1.2rem; vertical-align: top; }
.plan-price #pro-amount { font-size: inherit; font-weight: inherit; letter-spacing: inherit; }
.plan-price #pro-period { font-size: 0.82rem; font-weight: 500; letter-spacing: 0; }
.plan-year { margin: 0.25rem 0 0; color: var(--muted); }
.plan-audience { min-height: 3rem; margin: 0.4rem 0 0; color: var(--muted); }
.plan-card > .btn-primary { align-self: flex-start; margin-top: 1.25rem; padding: 0.85rem 1.25rem; }
.plan-card ul { margin: 1.75rem 0 0; padding: 0; color: var(--muted); list-style: none; }
.plan-card li { position: relative; margin: 0; padding: 0.85rem 0 0.85rem 1.5rem; border-top: 1px solid var(--line); }
.plan-card li::before { content: "✓"; position: absolute; left: 0; color: var(--acc-blue); font-weight: 800; }
.plan-card li strong, .plan-card li span { display: block; }
.plan-card li span { margin-top: 0.15rem; font-size: 0.86rem; }
.plan-pro li { border-color: rgb(255 255 255 / 0.14); }
.plan-pro li::before { color: #76d8ff; }
.plan-pro .btn-primary { background: #fff; color: var(--ink); }
.popular-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-pill);
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pricing-hero { max-width: 64rem; padding-bottom: 1.5rem; }
.pricing-success {
  max-width: 64rem;
  margin: 2rem auto 0;
  padding: 1rem 1.25rem;
  border: 1px solid color-mix(in srgb, var(--green) 48%, var(--line));
  border-radius: var(--radius-card);
  background: color-mix(in srgb, var(--green) 9%, var(--paper));
  color: var(--acc-green);
  text-align: center;
}
.pricing-success span { display: block; margin-top: 0.15rem; color: var(--muted); }
.billing-toggle {
  display: inline-flex;
  gap: 0.25rem;
  margin-top: 1.75rem;
  padding: 0.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--panel);
}
.billing-toggle button {
  border: 0;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--muted);
  padding: 0.65rem 1rem;
  font: 700 0.82rem/1 var(--font-body);
  cursor: pointer;
}
.billing-toggle button span { margin-left: 0.3rem; color: var(--acc-green); font-size: 0.68rem; }
.billing-toggle button.is-active { background: var(--paper); color: var(--ink); box-shadow: 0 3px 10px rgb(32 32 32 / 0.1); }
.billing-toggle button:focus-visible { outline: 3px solid var(--acc-blue); outline-offset: 2px; }
.pricing-value { max-width: 64rem; margin: 0 auto; padding: 4rem 1.25rem 2rem; }
.pricing-value-head { max-width: 48rem; }
.pricing-value-head h2 { margin: 0.65rem 0 1rem; font-size: clamp(2.3rem, 5vw, 4rem); }
.pricing-value-head > p:last-child { color: var(--muted); font-size: 1.05rem; }
.pricing-calculator {
  margin-top: 2rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--panel);
}
.volume-copy { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; }
.volume-copy strong { font-size: 1.35rem; }
.volume-copy span { color: var(--muted); font-size: 0.85rem; }
.pricing-calculator input[type="range"] { width: 100%; margin: 1.5rem 0; accent-color: var(--acc-btn); cursor: pointer; }
.pricing-calculator input[type="range"]:focus-visible { outline: 3px solid var(--acc-blue); outline-offset: 4px; }
.cost-grid, .quote-grid, .promise-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.cost-grid article, .quote-grid figure, .promise-grid article {
  min-width: 0;
  margin: 0;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--paper);
}
.cost-grid article > span { display: block; color: var(--muted); font-size: 0.8rem; font-weight: 700; }
.cost-grid article > strong { display: block; margin-top: 0.45rem; font-size: 1.55rem; letter-spacing: -0.03em; }
.cost-grid article p { margin: 0.5rem 0 0; color: var(--muted); font-size: 0.86rem; }
.cost-grid .cost-likz { border-color: color-mix(in srgb, var(--blue) 45%, var(--line)); }
.cost-grid .cost-likz > strong { color: var(--acc-blue); }
.pricing-calculator > small { display: block; margin-top: 1rem; color: var(--muted); }
.pricing-difference, .pricing-proof { max-width: 64rem; margin: 0 auto; padding: 4rem 1.25rem 2rem; }
.pricing-compare-wrap { margin-top: 2rem; overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--paper); }
.pricing-compare-wrap table { width: 100%; min-width: 740px; border-collapse: collapse; }
.pricing-compare-wrap th, .pricing-compare-wrap td { padding: 1rem; border-bottom: 1px solid var(--line); text-align: center; }
.pricing-compare-wrap th:first-child, .pricing-compare-wrap td:first-child { text-align: left; }
.pricing-compare-wrap thead th { background: var(--panel); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; }
.pricing-compare-wrap tbody tr:last-child th, .pricing-compare-wrap tbody tr:last-child td { border-bottom: 0; }
.quote-grid { margin-top: 2rem; }
.quote-grid blockquote { margin: 0.8rem 0 1.25rem; }
.stars { color: var(--yellow); letter-spacing: 0.08em; }
.quote-grid figcaption span { color: var(--muted); font-size: 0.85rem; }
.promise-grid { margin-top: 1rem; }
.promise-grid h3 { margin: 0; }
.promise-grid p { margin: 0.55rem 0 0; color: var(--muted); }
.benefit-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 2rem; }
.benefit-grid h3 { margin: 0 0 0.65rem; }
.benefit-grid p { margin: 0; color: var(--muted); }
.prose { max-width: 44rem; margin: 0 auto; padding: 0 1.25rem 4rem; color: var(--ink); }
.prose h2 { font-family: var(--font-display); letter-spacing: -0.03em; }
.tiles { display: grid; gap: 1rem; max-width: 56rem; margin: 0 auto; padding: 0 1.25rem 4rem; }
@media (min-width: 768px) { .tiles { grid-template-columns: 1fr 1fr; } }
.tiles a, .tiles article {
  border: 1px solid var(--line);
  border-radius: var(--radius-photo);
  padding: 1.5rem;
  text-decoration: none;
}

@media (max-width: 767px) {
  .nav-links { display: none; }
  .fold { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: opacity 150ms linear !important;
  }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
@keyframes reveal-photo {
  from { opacity: 0; transform: translateY(40px) scale(0.97); }
  to { opacity: 1; transform: none; }
}
@keyframes overview-to-ink {
  from { color: var(--muted); }
  to { color: var(--word-color, var(--ink)); }
}
.animate-rise { animation: rise 0.8s var(--ease-out) both; }
.hero-icon.animate-rise { animation-delay: 0.05s; }
.hero .sub.animate-rise { animation-delay: 0.45s; }
.hero-cta.animate-rise { animation-delay: 0.55s; }

/* Inner-page article chrome — changelog / status / legal / security.
 * Token aliases map clone article CSS onto photographic tokens.
 * Do not restyle nav-pill, site-footer, or homepage marketing sections. */
:root {
  --display: var(--font-display);
  --body: var(--font-body);
  --bg: var(--paper);
  --text: var(--ink);
  --panel: #f4f5f7;
  --bg-2: #f4f5f7;
  --card: var(--paper);
  --yellow-deep: var(--acc-amber);
  --green-deep: var(--acc-green);
  --pink-deep: var(--acc-pink);
  --muted-2: #8b93a0;
  --blue-600: var(--acc-btn);
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: var(--radius-pill);
  --line-strong: #d5dbe6;
  --shadow-sm: 0 8px 24px rgb(32 32 32 / 0.08);
}

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-pill);
  padding: 11px 22px;
}
.btn svg { width: 17px; height: 17px; }
.btn-ghost {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-top: 12px;
}
.section-head p { color: var(--muted); font-size: 17px; margin-top: 14px; }

/* Legal / help / security article */
.legal-hero { padding: 58px 0 6px; text-align: center; }
.legal-hero .eyebrow { display: block; margin-bottom: 13px; }
.legal-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 4.8vw, 54px);
  letter-spacing: -0.03em;
  line-height: 1;
}
.legal-hero .upd { color: var(--muted); font-size: 14px; margin-top: 14px; }
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 26px 28px 92px;
  font-size: 15.5px;
  line-height: 1.72;
  color: var(--muted);
}
.legal .lead { font-size: 17.5px; color: var(--ink); line-height: 1.62; }
.legal .lead-tight { max-width: 52rem; }
.legal h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 40px 0 12px;
  scroll-margin-top: 96px;
}
.legal h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--ink);
  margin: 22px 0 6px;
}
.legal p { margin: 12px 0; }
.legal ul {
  margin: 12px 0;
  padding-left: 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}
.legal li { position: relative; padding-left: 26px; }
.legal li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acc-blue);
}
.legal strong, .legal b { color: var(--ink); font-weight: 600; }
.legal a:not(.btn) { color: var(--acc-blue); font-weight: 600; }
.legal a.btn { text-decoration: none; }
.legal a.btn-primary,
.legal a.btn-primary:hover,
.legal a.btn-primary:focus,
.legal a.btn-primary:active {
  color: #fff !important;
  -webkit-text-fill-color: #fff;
}
.legal a.btn-ghost,
.legal a.btn-ghost:hover,
.legal a.btn-ghost:focus {
  color: var(--ink) !important;
  -webkit-text-fill-color: var(--ink);
}
.legal .note {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px 18px;
  margin: 22px 0;
  font-size: 14px;
  line-height: 1.6;
}
.legal .keypoints {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  margin: 24px 0 6px;
}
.legal .keypoints h3 { margin-top: 0; }
.legal .keypoints .minor-heading { margin: 0 0 0.5rem; font-size: 16.5px; }
.legal ol { margin: 12px 0; padding-left: 1.4rem; }
.legal ol li { padding-left: 0.25rem; margin: 0.65rem 0; }
.legal ol li::before { content: none; }
.flow { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 24px 0; }
.fstep { padding: 16px; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--paper); }
.fstep b { display: block; margin-bottom: 0.4rem; color: var(--ink); }

.path-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 22px 0 8px;
}
.path-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-sm);
}
.path-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.path-card p { color: var(--muted); font-size: 0.92rem; margin: 0; line-height: 1.5; }
.path-card .pc-lab {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--acc-btn);
  margin-bottom: 8px;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 8px; }
.mode-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 0.92rem;
}
.mode-table th, .mode-table td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.mode-table th {
  background: var(--panel);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.mode-table td b { color: var(--ink); }
.related {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin: 18px 0;
}
.related a {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--paper);
  font-weight: 600;
  text-decoration: none;
}
.related a:hover { border-color: var(--acc-blue); box-shadow: var(--shadow-sm); }
.related a span {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 4px;
}

/* Changelog */
.chero { padding: 64px 0 8px; text-align: center; }
.chero .eyebrow { color: var(--acc-blue); }
.chero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5.6vw, 68px);
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-top: 14px;
}
.chero p {
  color: var(--muted);
  font-size: 18px;
  max-width: 540px;
  margin: 18px auto 0;
  line-height: 1.6;
}
.chero .rss {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  text-decoration: none;
}
.chero .rss:hover { color: var(--ink); border-color: var(--line-strong); }
.chero .rss svg { width: 15px; height: 15px; color: var(--acc-amber); }
.vlog { padding: 76px 0 40px; }
.timeline { max-width: 820px; margin: 52px auto 0; position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  left: 150px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--line);
}
.rel {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 0;
  position: relative;
  padding-bottom: 44px;
}
.rel:last-child { padding-bottom: 0; }
.rel-side { padding-right: 34px; text-align: right; position: relative; }
.rel-side .ver {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.rel-side .date { color: var(--muted); font-size: 13px; margin-top: 5px; }
.rel-side .dot {
  position: absolute;
  right: -6px;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--acc-blue);
  border: 3px solid var(--paper);
  box-shadow: 0 0 0 1px var(--line);
}
.rel.latest .rel-side .dot {
  background: var(--acc-amber);
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.22);
}
.rel-body { padding-left: 34px; }
.rel-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.rel-body .latest-badge,
.rel-body .rel-mile {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 10px;
  vertical-align: middle;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: var(--radius-pill);
}
.rel-body .latest-badge { color: var(--acc-amber); background: rgba(251, 191, 36, 0.20); }
.rel-body .rel-mile { color: var(--acc-blue); background: rgba(30, 155, 240, 0.12); }
.rel-body .clist {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.ci {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink);
}
.ci .lab {
  flex: none;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 6px;
  margin-top: 1px;
  min-width: 78px;
  text-align: center;
}
.lab.new { background: rgba(91, 201, 64, 0.16); color: var(--acc-green); }
.lab.improved { background: rgba(30, 155, 240, 0.12); color: var(--acc-blue); }
.lab.fixed { background: var(--panel); color: var(--muted); }
.lab.privacy { background: rgba(240, 65, 138, 0.12); color: var(--acc-pink); }
.ci b { font-weight: 700; }
.vlog-foot { text-align: center; color: var(--muted); font-size: 14.5px; margin-top: 44px; }
.vlog-foot a { color: var(--acc-blue); font-weight: 700; }
.timeline-more { display: none; justify-content: center; margin: 4px 0 8px; }
html.js .timeline-more { display: flex; }
html.js .timeline-more[hidden] { display: none; }
html.js .timeline:not(.is-expanded) .rel:nth-child(n+7):not(.is-revealed) { display: none; }
@media print {
  html.js .timeline .rel { display: grid !important; }
  .timeline-more { display: none !important; }
}

/* Status */
@keyframes spin { to { transform: rotate(360deg); } }
.shero { padding: 54px 0 8px; }
.shero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 10px 0 12px;
}
.shero p { color: var(--muted); font-size: 17px; max-width: 640px; }
.overall {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 26px 0 0;
  padding: 18px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.overall .big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.overall .meta {
  color: var(--muted);
  font-size: 13px;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.refresh {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: var(--bg-2);
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.refresh svg { width: 14px; height: 14px; }
.refresh[data-busy="1"] svg { animation: spin 1s linear infinite; }
.sdot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex: none;
  background: var(--muted-2);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--muted-2) 18%, transparent);
}
[data-state="ok"] .sdot {
  background: var(--green);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--green) 20%, transparent);
}
[data-state="slow"] .sdot {
  background: var(--acc-amber);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--acc-amber) 20%, transparent);
}
[data-state="down"] .sdot {
  background: var(--pink);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--pink) 20%, transparent);
}
[data-state="p2p"] .sdot {
  background: var(--acc-blue);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--acc-blue) 20%, transparent);
}
.checks { padding: 34px 0 10px; }
.checks .clist, .notes .clist {
  margin-top: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.crow {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}
.crow:last-child { border-bottom: none; }
.crow h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.crow p { color: var(--muted); font-size: 13.5px; margin-top: 3px; }
.cstate { text-align: right; font-size: 13px; font-weight: 700; }
.cstate .lat {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
  font-variant-numeric: tabular-nums;
}
[data-state="ok"] .cstate { color: var(--acc-green); }
[data-state="slow"] .cstate { color: var(--acc-amber); }
[data-state="down"] .cstate { color: var(--acc-pink); }
[data-state="p2p"] .cstate { color: var(--acc-btn); }
.nodep { padding: 44px 0 10px; }
.cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 26px; }
.cards .card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: 22px 24px;
}
.cards .card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  margin: 12px 0 6px;
}
.cards .card p { color: var(--muted); font-size: 14px; }
.cards .card .tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--acc-btn);
}
.notes { padding: 44px 0 80px; }
.notes .clist { padding: 6px 0; }
.notes .note { padding: 18px 22px; border-bottom: 1px solid var(--line); }
.notes .note:last-child { border-bottom: none; }
.notes .note h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 5px;
}
.notes .note p { color: var(--muted); font-size: 14px; }
.notes .note a { color: var(--acc-blue); font-weight: 700; }

@media (max-width: 860px) {
  .cards { grid-template-columns: 1fr; }
  .intent-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
  .benefit-grid, .cost-grid, .quote-grid, .promise-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 18px; }
  .timeline::before { left: 8px; }
  .rel { grid-template-columns: 1fr; gap: 6px; }
  .rel-side { text-align: left; padding-right: 0; padding-left: 30px; }
  .rel-side .dot { right: auto; left: 2px; }
  .rel-body { padding-left: 30px; }
  .overall .meta { margin-left: 0; width: 100%; justify-content: space-between; }
  .crow { grid-template-columns: 18px 1fr; gap: 12px; }
  .cstate { grid-column: 2; text-align: left; }
  .intent-grid, .download-grid, .plan-grid, .flow, .footer-grid { grid-template-columns: 1fr; }
  .volume-copy { align-items: flex-start; flex-direction: column; gap: 0.25rem; }
  .billing-toggle button span { display: block; margin: 0.25rem 0 0; }
  .popular-badge { position: static; align-self: flex-start; margin-bottom: 1rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-socials a, .footer-socials .analytics-settings { width: 44px; height: 44px; }
}
