:root {
  --paper: #f9f9f8;
  --paper-2: #edece9;
  --paper-3: #e1dfda;
  --ink: #181818;
  --muted: #75726f;
  --line: #0000001a;
  --blue: #007cfb;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --r: 1.5rem;
  --nav: 3.625rem;
}
* { box-sizing: border-box; margin: 0; }
@view-transition { navigation: auto; }
::view-transition-old(root) {
  animation: 180ms var(--ease-out) both veil-out;
}
::view-transition-new(root) {
  animation: 240ms var(--ease-out) both veil-in;
}
@keyframes veil-out {
  to { opacity: 0; transform: scale(0.985); }
}
@keyframes veil-in {
  from { opacity: 0; transform: scale(0.985) translateY(8px); }
}
.veil {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background: var(--paper);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms var(--ease-out);
}
html.booting .veil,
html.leaving .veil {
  opacity: 1;
}
.veil-trail {
  position: absolute;
  left: 18%;
  right: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ink), transparent);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
}
html.booting .veil-trail {
  animation: trail-in 560ms var(--ease-out) both;
}
html.leaving .veil-trail {
  animation: trail-out 240ms var(--ease-out) both;
}
@keyframes trail-in {
  from { transform: scaleX(0); opacity: 0; }
  60% { opacity: 0.4; }
  to { transform: scaleX(1); opacity: 0.22; }
}
@keyframes trail-out {
  from { transform: scaleX(1); opacity: 0.22; transform-origin: right center; }
  to { transform: scaleX(0); opacity: 0; transform-origin: right center; }
}
.veil-mark {
  width: 44px;
  height: 44px;
  opacity: 0;
}
html.booting .veil-mark,
html.leaving .veil-mark {
  animation: mark-in 520ms var(--ease-out) both;
}
.veil-mark path {
  stroke-dasharray: 52;
  stroke-dashoffset: 52;
}
html.booting .veil-mark path {
  animation: mark-draw 640ms var(--ease-out) 60ms both;
}
html.leaving .veil-mark path {
  stroke-dashoffset: 0;
}
@keyframes mark-in {
  from { opacity: 0; transform: scale(0.92) rotate(-22deg); }
  to { opacity: 1; transform: none; }
}
@keyframes mark-draw {
  to { stroke-dashoffset: 0; }
}
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -0.01em;
  overflow-x: clip;
  min-height: 100dvh;
  -webkit-tap-highlight-color: transparent;
}
a { color: inherit; }
img, video { max-width: 100%; display: block; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
button:focus-visible, .btn:focus-visible { outline-offset: 3px; }

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}
.nav {
  min-height: var(--nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding-top: env(safe-area-inset-top);
  padding-inline: max(16px, env(safe-area-inset-left)) max(16px, env(safe-area-inset-right));
}
.nav-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none;
  min-height: 44px;
  font-weight: 500;
  letter-spacing: -0.03em;
  font-size: 17px;
}
.logo svg { display: block; }
.links {
  display: flex; gap: 6px;
  font-size: 14px;
  font-weight: 500;
}
.links a {
  min-height: 44px;
  padding: 0 12px;
  display: grid; place-items: center;
  text-decoration: none;
  color: var(--muted);
  border-radius: 999px;
  white-space: nowrap;
}
h1 {
  font-size: clamp(2.15rem, 10.5vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  font-weight: 500;
  text-wrap: balance;
}
.lede {
  margin-top: 16px;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.4;
  color: var(--muted);
  max-width: 28em;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  transition: transform 140ms var(--ease-out), background 160ms ease;
}
.btn:active { transform: scale(0.97); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
}
.hero {
  padding: 20px 0 8px;
}
.media {
  margin: 28px auto 0;
  width: min(1120px, calc(100% - 32px));
  border-radius: 1.15rem;
  overflow: hidden;
  background: #d9d7d2;
  aspect-ratio: 4 / 5;
}
.media video, .media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.globe-block {
  width: min(1120px, calc(100% - 32px));
  margin: 36px auto 0;
  text-align: center;
}
.globe-block .lede { margin-left: auto; margin-right: auto; }
.globe {
  position: relative;
  width: min(420px, 100%);
  margin: 8px auto 0;
}
.globe svg { width: 100%; height: auto; display: block; }
.globe-disc { fill: var(--paper-2); }
.globe-rim { fill: none; stroke: var(--ink); stroke-width: 1.35; }
.globe-grid { fill: none; stroke: var(--ink); stroke-width: 0.6; opacity: 0.2; }
.flight {
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-dasharray: 18 260;
  animation: fly 11s linear infinite;
}
.flight.f2 { animation-duration: 14s; animation-delay: -4s; }
.flight.f3 { animation-duration: 12s; animation-delay: -7s; }
@keyframes fly {
  to { stroke-dashoffset: -278; }
}
.craft {
  fill: var(--ink);
  offset-rotate: auto;
  animation: ride 11s linear infinite;
}
.craft.c2 { animation-duration: 14s; animation-delay: -4s; }
.craft.c3 { animation-duration: 12s; animation-delay: -7s; }
@keyframes ride {
  to { offset-distance: 100%; }
}
.c1 { offset-path: path("M 86 208 C 170 72, 310 64, 394 198"); }
.c2 { offset-path: path("M 96 312 C 200 248, 304 176, 392 228"); }
.c3 { offset-path: path("M 118 158 C 210 214, 286 292, 372 328"); }
.node-core { fill: var(--ink); }
.node-ring {
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.2;
  opacity: 0.35;
  transform-origin: 240px 240px;
  animation: ring 2.4s var(--ease-out) infinite;
}
@keyframes ring {
  from { transform: scale(0.92); opacity: 0.4; }
  to { transform: scale(1.55); opacity: 0; }
}
.globe-cap {
  margin: 4px 0 0;
}
.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
}
.usps {
  display: grid;
  gap: 12px;
}
.usp {
  background: var(--paper-2);
  border-radius: var(--r);
  padding: 28px 24px;
}
.usp h2 {
  font-size: 1.6rem;
  font-weight: 450;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.usp p { margin-top: 8px; color: var(--muted); }
.faq h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 450;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
details { border-top: 1px solid var(--line); }
details:last-of-type { border-bottom: 1px solid var(--line); }
summary {
  cursor: pointer;
  list-style: none;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--muted); font-weight: 400; }
details[open] summary::after { content: "–"; }
details p {
  padding: 0 0 20px;
  color: var(--muted);
  max-width: 40em;
}
details a { text-decoration: underline; text-underline-offset: 3px; }

.prices { display: grid; gap: 12px; margin-top: 28px; }
.price {
  background: var(--paper-2);
  border-radius: var(--r);
  padding: 24px;
  text-decoration: none;
  display: block;
  transition: transform 140ms var(--ease-out), background 160ms ease;
}
.price:active { transform: scale(0.985); }
button.price { font: inherit; color: inherit; cursor: pointer; text-align: left; border: 0; width: 100%; box-shadow: inset 0 0 0 1px transparent; }
button.price.is-on, a.price.is-on { box-shadow: inset 0 0 0 2px var(--ink); background: #fff; }
.price .who { font-size: 13px; color: var(--muted); font-weight: 500; }
.price b {
  display: block;
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  font-weight: 450;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 8px 0 6px;
}
.price .per { color: var(--muted); font-size: 15px; }
.price .crypto { margin-top: 10px; font-size: 14px; color: var(--ink); }

.inner {
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 calc(64px + env(safe-area-inset-bottom));
}
.inner h1 { margin-bottom: 12px; }
.page-lede { color: var(--muted); margin-bottom: 32px; max-width: 34em; }

footer.site {
  padding: 48px 0 calc(40px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
}
.foot {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  gap: 28px;
}
.foot h2 { font-size: 13px; font-weight: 500; color: var(--muted); margin-bottom: 8px; }
.foot ul { list-style: none; padding: 0; }
.foot ul a {
  display: flex; align-items: center;
  min-height: 44px;
  text-decoration: none;
  color: var(--ink);
}
.foot a.pref-google { gap: 8px; font-weight: 500; }
.foot a.pref-google svg { flex-shrink: 0; display: block; }
.legal { font-size: 13px; color: var(--muted); line-height: 1.45; }
.foot .legal {
  grid-column: 1 / -1;
  max-width: 38em;
  padding-top: 8px;
}
.foot .legal a {
  display: inline;
  min-height: 0;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.subnav {
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-inline: max(16px, env(safe-area-inset-left)) max(16px, env(safe-area-inset-right));
}
.subnav::-webkit-scrollbar { display: none; }
.subnav .nav-inner {
  min-height: 44px;
  gap: 2px;
  justify-content: flex-start;
  padding-inline: 0;
}
.subnav a {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 12px;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  border-radius: 999px;
  white-space: nowrap;
}
.subnav a[aria-current="page"] {
  color: var(--ink);
  background: var(--paper-2);
}

.strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}
.life {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 28px;
}
.life figure {
  margin: 0;
  border-radius: 1.15rem;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--paper-3);
}
.life img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-head {
  width: min(1120px, calc(100% - 32px));
  margin: 16px auto 0;
}
.page-head h1 { margin-bottom: 8px; }
.page-head .lede { margin-top: 0; max-width: 22em; }
.viz {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: min(1120px, calc(100% - 32px));
  margin: 20px auto 8px;
}
.viz.viz-hero,
.viz.viz-3 { grid-template-columns: 1fr; }
.viz figure { margin: 0; }
.viz .shot {
  position: relative;
  border-radius: 1.15rem;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--paper-3);
}
.conn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 7px 12px 7px 10px;
  background: rgba(249, 249, 248, 0.88);
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  border-radius: 999px;
  pointer-events: none;
  box-shadow: 0 8px 24px #00000014;
}
.shot .conn {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
}
.conn i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
  animation: live 1.6s var(--ease-in-out) infinite;
}
@keyframes live {
  50% { opacity: 0.28; }
}
.viz.viz-hero .shot { aspect-ratio: 3 / 4; }
.viz img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.viz figcaption {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.viz figcaption span {
  display: block;
  margin-top: 2px;
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
}
.pick {
  gap: 12px;
}
.pick button {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  border-radius: 1.25rem;
  transition: transform 140ms var(--ease-out);
}
.pick button:active { transform: scale(0.985); }
.pick button.is-on .shot {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}
.pick figure { position: relative; }
.pick figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 4.5rem 1.15rem 1.2rem;
  background: linear-gradient(to top, rgba(0,0,0,.62) 0%, rgba(0,0,0,.28) 42%, transparent 100%);
  color: #fff;
  font-size: clamp(1.75rem, 4.2vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
  pointer-events: none;
  border-radius: 0 0 1.15rem 1.15rem;
  text-shadow: 0 1px 12px rgba(0,0,0,.35);
}
.pick figcaption span {
  margin-top: 6px;
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,.88);
  letter-spacing: -0.02em;
}
.marks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: min(1120px, calc(100% - 32px));
  margin: 8px auto 0;
}
.marks a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 8px 14px 8px 10px;
  background: var(--paper-2);
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
  transition: transform 140ms var(--ease-out), background 160ms ease;
}
.marks a:active { transform: scale(0.97); }
.marks img,
.marks svg {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  object-fit: cover;
  background: #fff;
  flex-shrink: 0;
}
.strip a, .strip figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--paper-3);
  display: block;
}
.strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.strip figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.split {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}
.tweet, .usp-block {
  border-radius: var(--r);
  padding: 22px 22px 18px;
  min-width: 0;
}
.tweet {
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line);
}
.usp-block { background: var(--paper-2); }
.tweet .who, .usp-block .who {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.tweet .handle { text-transform: none; letter-spacing: 0; font-weight: 500; color: var(--ink); }
.tweet blockquote {
  margin: 10px 0 0;
  font-size: 1.08rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 450;
}
.usp-block h2 {
  margin: 8px 0 8px;
  font-size: 1.45rem;
  font-weight: 450;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.15;
}
.usp-block p { margin: 0; color: var(--muted); }
.tweet .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}
.tweet .meta a { color: var(--ink); text-underline-offset: 3px; }

.how {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.how-step {
  background: var(--paper-2);
  border-radius: var(--r);
  padding: 22px 20px;
  min-width: 0;
}
.how-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.how-ico svg { display: block; }
.how-step .n { margin-bottom: 6px; }
.how-step h3 {
  font-size: 1.2rem;
  font-weight: 450;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 6px;
}
.how-step p { margin: 0; color: var(--muted); font-size: 15px; }

@media (min-width: 720px) {
  .strip { grid-template-columns: repeat(4, 1fr); }
  .life { grid-template-columns: repeat(4, 1fr); }
  .viz.viz-3 { grid-template-columns: 1fr 1fr 1fr; }
  .viz.viz-hero .shot { aspect-ratio: 16 / 9; }
  .viz.pick {
    width: min(720px, calc(100% - 40px));
    gap: 14px;
  }
  .pick figcaption {
    font-size: clamp(1.35rem, 2.1vw, 1.85rem);
    padding: 3.25rem 1.05rem 1.05rem;
  }
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: stretch;
  }
  .how { grid-template-columns: 1fr 1fr; }
  .how.how-3 { grid-template-columns: 1fr 1fr 1fr; }
  .charts-3 { grid-template-columns: 1fr; }
}
@media (min-width: 960px) {
  .how { grid-template-columns: repeat(5, 1fr); }
  .how.how-3 { grid-template-columns: 1fr 1fr 1fr; }
  .charts-3 { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 719px) {
  .col-billed, .col-notes { display: none; }
}
@media (hover: hover) and (pointer: fine) {
  .subnav a:hover { background: var(--paper-2); color: var(--ink); }
  .marks a:hover { background: var(--paper-3); }
}

label.field, .field {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}
input, select, textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  border: 0;
  background: var(--paper-2);
  color: var(--ink);
  font-family: inherit;
  font-size: 16px;
  padding: 14px 16px;
  min-height: 48px;
  border-radius: 14px;
}
textarea { min-height: 96px; resize: vertical; }
.pills { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; }
.pills-3 { grid-template-columns: 1fr 1fr 1fr; }
.pills input { position: absolute; opacity: 0; pointer-events: none; }
.pills span {
  display: grid; place-items: center;
  min-height: 48px;
  background: var(--paper-2);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.pills input:focus-visible + span { outline: 2px solid var(--ink); outline-offset: 2px; }
.pills input:checked + span { background: var(--ink); color: #fff; }

.gets { list-style: none; padding: 0; }
.gets li {
  border-top: 1px solid var(--line);
  padding: 16px 0;
  color: var(--muted);
}
.gets li:last-child { border-bottom: 1px solid var(--line); }
.gets b {
  display: block;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 450;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}
.fine { margin-top: 14px; font-size: 14px; color: var(--muted); }
.fine a { text-decoration: underline; text-underline-offset: 3px; }
.done {
  display: none;
  margin-top: 20px;
  padding: 18px;
  background: var(--paper-2);
  border-radius: var(--r);
}
.done.is-on { display: block; }
.copybox {
  margin-top: 12px;
  padding: 12px;
  background: #fff;
  border-radius: 12px;
  font-size: 13px;
  white-space: pre-wrap;
  word-break: break-word;
}
button.copy {
  margin-top: 12px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}
.acts a {
  display: block;
  background: var(--paper-2);
  text-decoration: none;
  padding: 22px 22px 18px;
  margin-bottom: 10px;
  border-radius: var(--r);
  min-height: 44px;
  transition: transform 140ms var(--ease-out);
}
.acts a:active { transform: scale(0.985); }
.acts b {
  display: block;
  font-size: 1.35rem;
  font-weight: 450;
  letter-spacing: -0.03em;
}
.acts span { display: block; margin-top: 4px; font-size: 15px; color: var(--muted); }

ol.setup { list-style: none; padding: 0; }
ol.setup li {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
ol.setup li:last-child { border-bottom: 1px solid var(--line); }
ol.setup b {
  display: block;
  font-size: 1.25rem;
  font-weight: 450;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

input[type=search] {
  width: 100%;
  max-width: 420px;
  border-radius: 999px;
  background: var(--paper-2);
}
.table-wrap { margin-top: 20px; overflow-x: auto; -webkit-overflow-scrolling: touch; max-width: 100%; }
table { width: 100%; border-collapse: collapse; font-size: 16px; }
th, td { text-align: left; padding: 16px 10px; border-top: 1px solid var(--line); vertical-align: top; }
th { font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500; color: var(--muted); }
.pill { font-size: 12px; font-weight: 500; }
.yes { color: #0b7a3b; }
.travel { color: #8a5a00; }
.hard { color: #b42318; }
.note { font-size: 15px; color: var(--muted); max-width: 40em; margin: 0 0 24px; }
.empty { margin-top: 20px; color: var(--muted); display: none; }
.meta { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.inner h2 {
  font-size: 1.5rem;
  font-weight: 450;
  letter-spacing: -0.03em;
  margin: 32px 0 10px;
}
.inner p, .inner li { color: var(--muted); margin-bottom: 10px; }
.inner ul { padding-left: 1.2em; margin-bottom: 12px; }
.inner p a, .inner li a { color: var(--ink); }
.n { font-size: 12px; font-weight: 500; color: var(--muted); margin-bottom: 8px; letter-spacing: 0.06em; }
.uri, .ip {
  margin-top: 12px;
  padding: 12px 14px;
  background: var(--paper-2);
  border-radius: 12px;
  font-size: 13px;
  word-break: break-all;
}
img.qr { display: block; width: 168px; height: 168px; margin-top: 14px; background: #fff; padding: 8px; border-radius: 16px; }
.scans-wrap { margin: 8px 0 28px; }
.scans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 18px 0 14px;
}
.scans figure {
  margin: 0;
  padding: 18px;
  background: var(--paper-2);
  border-radius: var(--r);
}
.scans img.qr { margin: 0 0 12px; }
.scans figcaption {
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.scans figcaption span {
  display: block;
  margin-top: 2px;
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
}
.scans .uri { margin-top: 12px; }
@media (min-width: 720px) {
  .scans { grid-template-columns: 1fr 1fr; }
}
body[data-pack="wait"] .pack-only { display: none; }
body[data-pack="ready"] .until-pack { display: none; }
.bar {
  position: fixed; left: 50%; bottom: calc(12px + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  width: min(640px, calc(100% - 32px));
  z-index: 5;
}
.bar a {
  background: var(--ink); color: #fff;
  min-height: 48px; border-radius: 999px;
  font-size: 15px; font-weight: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; text-decoration: none;
}
.bar a:active { transform: scale(0.97); }

.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.block-title {
  font-size: clamp(1.75rem, 6vw, 3.25rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 12px;
  text-wrap: balance;
}
.charts {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}
.chart {
  background: var(--paper-2);
  border-radius: var(--r);
  padding: 24px 22px 20px;
}
.chart h3 {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 18px;
}
.chart-row {
  display: grid;
  grid-template-columns: 7.5rem 1fr 3.4rem;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
}
.chart-row span:first-child {
  font-size: 14px;
  font-weight: 500;
}
.chart-row .val {
  font-size: 13px;
  color: var(--muted);
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.track {
  height: 8px;
  background: #fff;
  border-radius: 999px;
  overflow: hidden;
}
.fill {
  height: 100%;
  width: var(--w);
  border-radius: 999px;
  background: var(--paper-3);
}
.chart-row.hi .fill { background: var(--ink); }
.chart-row.hi .val { color: var(--ink); font-weight: 500; }
.plats { margin-top: 36px; display: grid; gap: 28px; }
.plats h3 {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.plat-row { display: flex; flex-wrap: wrap; gap: 8px; }
.plat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--paper-2);
  border-radius: 999px;
  padding: 8px 14px 8px 10px;
  min-height: 44px;
  font-size: 14px;
  font-weight: 500;
}
.plat img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: block;
  border-radius: 6px;
  object-fit: cover;
  background: #fff;
}

.callout {
  background: var(--paper-2);
  border-radius: var(--r);
  padding: 22px 24px;
  margin: 8px 0 28px;
}
.callout b {
  display: block;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.callout p { margin: 0; color: var(--muted); max-width: 40em; }
.hint {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.45;
  max-width: 40em;
}
.compare-grid {
  display: grid;
  gap: 12px;
  margin: 24px 0 8px;
}
.compare-card {
  background: var(--paper-2);
  border-radius: var(--r);
  padding: 22px 20px;
  text-decoration: none;
  display: block;
  min-height: 44px;
  transition: transform 140ms var(--ease-out), background 160ms ease;
}
.compare-card:active { transform: scale(0.985); }
.compare-card b {
  display: block;
  font-size: 1.15rem;
  font-weight: 450;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.compare-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 15px;
}
tr.hi td { color: var(--ink); background: #fff; }
.toc { list-style: none; padding: 0; margin: 0 0 28px; }
.toc a {
  display: flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
  color: var(--ink);
  border-top: 1px solid var(--line);
  font-weight: 500;
}
.toc li:last-child a { border-bottom: 1px solid var(--line); }
.wide { width: min(960px, calc(100% - 32px)); }

.vs-hero {
  position: relative;
  margin: 12px auto 8px;
  width: min(1120px, calc(100% - 32px));
  border-radius: 1.15rem;
  overflow: hidden;
  background: #d9d7d2;
  aspect-ratio: 4 / 5;
}
.vs-hero .banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vs-overlay {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 8px 10px;
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-radius: 1.15rem;
}
.vs-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  min-height: 44px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.vs-mark:last-child { justify-content: flex-start; }
.vs-mark:first-child { justify-content: flex-end; }
.vs-mark img, .vs-mark svg, .vs-letter {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
  display: block;
}
.vs-mark svg { padding: 3px; }
.vs-letter {
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}
.vs-mark span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vs-dot {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: lowercase;
}
.th-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  text-transform: none;
  letter-spacing: -0.02em;
  font-size: 14px;
}
.th-brand img, .th-brand svg {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  object-fit: cover;
  background: #fff;
}
.compare-card .card-brands {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.compare-card .card-brands img,
.compare-card .card-brands svg {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  object-fit: cover;
  background: #fff;
}
.compare-card .card-brands .vs {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

@media (min-width: 720px) {
  .vs-hero { aspect-ratio: 16 / 9; border-radius: var(--r); }
  .vs-overlay {
    left: 16px;
    right: auto;
    bottom: 16px;
    width: min(420px, calc(100% - 32px));
    border-radius: 999px;
    padding: 6px 14px;
  }
  .vs-mark { font-size: 15px; }
}

@media (min-width: 720px) {
  .compare-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .col-region { display: none; }
  .chart-row { grid-template-columns: 1fr 2.8rem; gap: 8px; }
  .chart-row span:first-child { grid-column: 1 / -1; }
  .cta-row .btn { flex: 1 1 100%; }
  .inner { width: min(720px, calc(100% - 32px)); padding-top: 16px; }
  .wrap { width: min(1120px, calc(100% - 32px)); }
  .usp { padding: 22px 18px; }
  .chart { padding: 20px 16px 16px; }
  .section { padding: 40px 0; }
  .hero { padding-top: 12px; }
  .links { gap: 0; }
  .links a { padding: 0 10px; font-size: 13px; }
}
@media (min-width: 720px) {
  .usps, .prices { grid-template-columns: 1fr 1fr; }
  .usps { grid-template-columns: 1fr 1fr 1fr; }
  .usps.usps-4 { grid-template-columns: 1fr 1fr; }
  .foot { grid-template-columns: 1.2fr 1fr 1fr; }
  .charts { grid-template-columns: 1fr 1fr; }
  .charts.charts-3 { grid-template-columns: 1fr 1fr; }
  .section { padding: 72px 0; }
  .media { aspect-ratio: 16 / 9; border-radius: var(--r); }
  .hero { padding: 36px 0 12px; }
  .cta-row .btn { min-width: 180px; }
}
@media (min-width: 960px) {
  .how { grid-template-columns: repeat(5, 1fr); }
  .how.how-3 { grid-template-columns: 1fr 1fr 1fr; }
  .charts.charts-3 { grid-template-columns: 1fr 1fr 1fr; }
}
@media (min-width: 720px) {
  .nav .links a:last-child {
    background: var(--ink);
    color: #fff;
    padding: 0 16px;
  }
  .nav .links a:last-child:hover { background: #000; color: #fff; }
}
@media (hover: hover) and (pointer: fine) {
  .links a:hover { background: var(--paper-2); color: var(--ink); }
  .nav .links a:last-child:hover { background: #000; color: #fff; }
  .btn:hover { background: #000; }
  .btn-ghost:hover { background: var(--paper-2); }
  .price:hover { background: var(--paper-3); }
  .compare-card:hover { background: var(--paper-3); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .media video { display: none; }
  .media { background: #d9d7d2 url("sky.jpg") center / cover; }
  .btn, .price, .acts a { transition: none; }
  @view-transition { navigation: none; }
  .veil, .veil-mark, .veil-mark path, .veil-trail { animation: none; transition: none; }
  html.booting .veil, html.leaving .veil { opacity: 0; }
  .flight, .craft, .conn i, .node-ring { animation: none; }
  .flight { stroke-dasharray: none; opacity: 0.45; }
  .node-ring { opacity: 0.2; transform: none; }
}
.dock { display: none; }

@media (max-width: 719px) {
  .subnav { display: none; }
  .nav .links { display: none; }
  .bar { display: none; }
  .dock {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    background: color-mix(in srgb, var(--paper) 92%, transparent);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid var(--line);
    padding: 4px 6px calc(6px + env(safe-area-inset-bottom));
  }
  .dock a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-height: 52px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--muted);
    border-radius: 12px;
  }
  .dock a[aria-current="page"] { color: var(--ink); }
  .dock svg { display: block; }
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
}

@media (prefers-reduced-transparency: reduce) {
  .nav { background: var(--paper); backdrop-filter: none; }
  .vs-overlay { background: var(--paper); backdrop-filter: none; }
  .dock { background: var(--paper); backdrop-filter: none; }
}
